X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Flogicsegment.hpp;h=c450f0a905d9a96391e5ca759a65f06279acc225;hp=6f19c1cb28e3bb58f65ef712e6112541ae78762b;hb=c70e34649be658e7a443d5e68abe16dd55d53bf2;hpb=a38268f064687eff3e5395da6bb7f39e55dcd60f diff --git a/pv/data/logicsegment.hpp b/pv/data/logicsegment.hpp index 6f19c1cb..c450f0a9 100644 --- a/pv/data/logicsegment.hpp +++ b/pv/data/logicsegment.hpp @@ -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 . */ #ifndef PULSEVIEW_PV_DATA_LOGICSEGMENT_HPP @@ -26,6 +25,8 @@ #include #include +#include + namespace sigrok { class Logic; } @@ -41,8 +42,18 @@ struct LongPulses; namespace pv { namespace data { -class LogicSegment : public Segment +class Logic; + +typedef struct { + uint64_t sample_index, chunk_num, chunk_offs; + uint8_t* chunk; + uint8_t* value; +} SegmentLogicDataIterator; + +class LogicSegment : public QObject, public Segment { + Q_OBJECT + private: struct MipMapLevel { @@ -62,15 +73,17 @@ public: typedef std::pair EdgePair; public: - LogicSegment(std::shared_ptr logic, - uint64_t samplerate, uint64_t expected_num_samples = 0); + LogicSegment(pv::data::Logic& owner, std::shared_ptr data, uint64_t samplerate); virtual ~LogicSegment(); void append_payload(std::shared_ptr logic); - void get_samples(uint8_t *const data, - int64_t start_sample, int64_t end_sample) const; + const uint8_t* get_samples(int64_t start_sample, int64_t end_sample) const; + + SegmentLogicDataIterator* begin_sample_iteration(uint64_t start); + void continue_sample_iteration(SegmentLogicDataIterator* it, uint64_t increase); + void end_sample_iteration(SegmentLogicDataIterator* it); private: uint64_t unpack_sample(const uint8_t *ptr) const; @@ -80,7 +93,7 @@ private: void append_payload_to_mipmap(); - uint64_t get_sample(uint64_t index) const; + uint64_t get_unpacked_sample(uint64_t index) const; public: /** @@ -92,7 +105,7 @@ public: * @param[in] min_length The minimum number of samples that * can be resolved at this level of detail. * @param[in] sig_index The index of the signal. - **/ + */ void get_subsampled_edges(std::vector &edges, uint64_t start, uint64_t end, float min_length, int sig_index); @@ -103,6 +116,8 @@ private: static uint64_t pow2_ceil(uint64_t x, unsigned int power); private: + Logic& owner_; + struct MipMapLevel mip_map_[ScaleStepCount]; uint64_t last_append_sample_;