forked from Ivasoft/DSView
118 lines
2.4 KiB
C++
118 lines
2.4 KiB
C++
/*
|
|
* This file is part of the DSView project.
|
|
* DSView is based on PulseView.
|
|
*
|
|
* Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
|
|
* Copyright (C) 2013 DreamSourceLab <support@dreamsourcelab.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
|
|
#include "snapshot.h"
|
|
|
|
#include <QDebug>
|
|
|
|
#include <assert.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
using namespace boost;
|
|
|
|
namespace pv {
|
|
namespace data {
|
|
|
|
Snapshot::Snapshot(int unit_size, uint64_t total_sample_count, unsigned int channel_num) :
|
|
_data(NULL),
|
|
_capacity(0),
|
|
_channel_num(channel_num),
|
|
_sample_count(0),
|
|
_total_sample_count(total_sample_count),
|
|
_ring_sample_count(0),
|
|
_unit_size(unit_size),
|
|
_memory_failed(false),
|
|
_last_ended(true)
|
|
{
|
|
assert(_unit_size > 0);
|
|
}
|
|
|
|
Snapshot::~Snapshot()
|
|
{
|
|
free_data();
|
|
}
|
|
|
|
void Snapshot::free_data()
|
|
{
|
|
if (_data) {
|
|
free(_data);
|
|
_data = NULL;
|
|
_capacity = 0;
|
|
_sample_count = 0;
|
|
}
|
|
_ch_index.clear();
|
|
}
|
|
|
|
bool Snapshot::memory_failed() const
|
|
{
|
|
return _memory_failed;
|
|
}
|
|
|
|
bool Snapshot::empty() const
|
|
{
|
|
if (get_sample_count() == 0)
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
|
|
bool Snapshot::last_ended() const
|
|
{
|
|
return _last_ended;
|
|
}
|
|
|
|
void Snapshot::set_last_ended(bool ended)
|
|
{
|
|
_last_ended = ended;
|
|
}
|
|
|
|
uint64_t Snapshot::get_sample_count() const
|
|
{
|
|
boost::lock_guard<boost::recursive_mutex> lock(_mutex);
|
|
return _sample_count;
|
|
}
|
|
|
|
const void* Snapshot::get_data() const
|
|
{
|
|
return _data;
|
|
}
|
|
|
|
int Snapshot::unit_size() const
|
|
{
|
|
return _unit_size;
|
|
}
|
|
|
|
unsigned int Snapshot::get_channel_num() const
|
|
{
|
|
return _channel_num;
|
|
}
|
|
|
|
void Snapshot::capture_ended()
|
|
{
|
|
set_last_ended(true);
|
|
}
|
|
|
|
} // namespace data
|
|
} // namespace pv
|