X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdata%2Flogicsegment.hpp;h=43fd41126617bd0b9d76dbc0f8bbf7875c5569bd;hb=26a883ede0bcf68d087eda5dd2082890d36c7aef;hp=c9e85593961d2bfbed83ed0797862ec594df0811;hpb=223d0c3748033130e9f11ff9af3dc29661f380e9;p=pulseview.git diff --git a/pv/data/logicsegment.hpp b/pv/data/logicsegment.hpp index c9e8559..43fd411 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 @@ -41,6 +40,12 @@ struct LongPulses; namespace pv { namespace data { +typedef struct { + uint64_t sample_index, chunk_num, chunk_offs; + uint8_t* chunk; + uint8_t* value; +} SegmentLogicDataIterator; + class LogicSegment : public Segment { private: @@ -62,15 +67,17 @@ public: typedef std::pair EdgePair; public: - LogicSegment(std::shared_ptr logic, - uint64_t samplerate, uint64_t expected_num_samples = 0); + LogicSegment(std::shared_ptr logic, 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) const; + void continue_sample_iteration(SegmentLogicDataIterator* it, uint64_t increase) const; + void end_sample_iteration(SegmentLogicDataIterator* it) const; private: uint64_t unpack_sample(const uint8_t *ptr) const; @@ -80,7 +87,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: /**