X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Flogic.cpp;h=038da649896a0f915883403fb420a37d9d36db0d;hp=b34635319c934c1618a81bfd0bf961c82044df8b;hb=144e72c9ec677e7df35d37d7de6e8a18bb3f2ba1;hpb=e45b13b536666034c9b6fe52a9321d749dae3c02 diff --git a/pv/data/logic.cpp b/pv/data/logic.cpp index b3463531..038da649 100644 --- a/pv/data/logic.cpp +++ b/pv/data/logic.cpp @@ -14,8 +14,7 @@ * 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 @@ -33,6 +32,7 @@ namespace data { Logic::Logic(unsigned int num_channels) : SignalData(), + samplerate_(1), // Default is 1 Hz to prevent division-by-zero errors num_channels_(num_channels) { assert(num_channels_ > 0); @@ -43,10 +43,9 @@ unsigned int Logic::num_channels() const return num_channels_; } -void Logic::push_segment( - shared_ptr &segment) +void Logic::push_segment(shared_ptr &segment) { - segments_.push_front(segment); + segments_.push_back(segment); } const deque< shared_ptr >& Logic::logic_segments() const @@ -54,26 +53,53 @@ const deque< shared_ptr >& Logic::logic_segments() const return segments_; } +deque< shared_ptr >& Logic::logic_segments() +{ + return segments_; +} + vector< shared_ptr > Logic::segments() const { - return vector< shared_ptr >( - segments_.begin(), segments_.end()); + return vector< shared_ptr >(segments_.begin(), segments_.end()); +} + +uint32_t Logic::get_segment_count() const +{ + return (uint32_t)segments_.size(); } void Logic::clear() { segments_.clear(); + + samples_cleared(); +} + +void Logic::set_samplerate(double value) +{ + samplerate_ = value; +} + +double Logic::get_samplerate() const +{ + return samplerate_; } uint64_t Logic::max_sample_count() const { uint64_t l = 0; - for (std::shared_ptr s : segments_) { + for (const shared_ptr& s : segments_) { assert(s); l = max(l, s->get_sample_count()); } return l; } +void Logic::notify_samples_added(shared_ptr segment, uint64_t start_sample, + uint64_t end_sample) +{ + samples_added(segment, start_sample, end_sample); +} + } // namespace data } // namespace pv