X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Flogic.cpp;h=e78c28468d71ef42da07e7e0eb102076889cfd38;hp=4317d44d5922b71a76aa598aa4af2b2530e8fc1d;hb=f228f00ed2c11ce4c9c36e0b758132a075e251da;hpb=caabb84c559023f179bf2c4600a5ebce34eab081 diff --git a/pv/data/logic.cpp b/pv/data/logic.cpp index 4317d44d..e78c2846 100644 --- a/pv/data/logic.cpp +++ b/pv/data/logic.cpp @@ -14,45 +14,75 @@ * 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 + * along with this program; if not, see . */ -#include "logic.h" -#include "logicsnapshot.h" +#include -using namespace boost; -using namespace std; +#include "logic.hpp" +#include "logicsegment.hpp" + +using std::deque; +using std::max; +using std::shared_ptr; +using std::vector; namespace pv { namespace data { -Logic::Logic(unsigned int num_probes) : +Logic::Logic(unsigned int num_channels) : SignalData(), - _num_probes(num_probes) + num_channels_(num_channels) +{ + assert(num_channels_ > 0); +} + +unsigned int Logic::num_channels() const +{ + return num_channels_; +} + +void Logic::push_segment(shared_ptr &segment) { - assert(_num_probes > 0); + segments_.push_back(segment); } -int Logic::get_num_probes() const +const deque< shared_ptr >& Logic::logic_segments() const { - return _num_probes; + return segments_; } -void Logic::push_snapshot( - shared_ptr &snapshot) +vector< shared_ptr > Logic::segments() const { - _snapshots.push_front(snapshot); + return vector< shared_ptr >(segments_.begin(), segments_.end()); } -deque< shared_ptr >& Logic::get_snapshots() +uint32_t Logic::get_segment_count() const { - return _snapshots; + return (uint32_t)segments_.size(); } void Logic::clear() { - _snapshots.clear(); + segments_.clear(); + + samples_cleared(); +} + +uint64_t Logic::max_sample_count() const +{ + uint64_t l = 0; + for (shared_ptr s : segments_) { + assert(s); + l = max(l, s->get_sample_count()); + } + return l; +} + +void Logic::notify_samples_added(QObject* segment, uint64_t start_sample, + uint64_t end_sample) +{ + samples_added(segment, start_sample, end_sample); } } // namespace data