X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Flogicsegment.hpp;h=2b67c0edb81ddad6165597499bf4d704d185a483;hb=883041605ce8536ece950b1de191cfe71068dfba;hp=1f151eeb7a71e2e0f5e931f6ec0f3a7a08d7e0b4;hpb=1f3033cb3e63de7cfe98dab537460443917fece3;p=pulseview.git diff --git a/pv/data/logicsegment.hpp b/pv/data/logicsegment.hpp index 1f151eeb..2b67c0ed 100644 --- a/pv/data/logicsegment.hpp +++ b/pv/data/logicsegment.hpp @@ -75,9 +75,29 @@ public: virtual ~LogicSegment(); + /** + * Using enable_shared_from_this prevents the normal use of shared_ptr + * instances by users of LogicSegment instances. Instead, shared_ptrs may + * only be created by the instance itself. + * See https://en.cppreference.com/w/cpp/memory/enable_shared_from_this + */ + shared_ptr get_shared_ptr() const; + void append_payload(shared_ptr logic); void append_payload(void *data, uint64_t data_size); + /** + * Appends sample data for a single channel where each byte + * represents one sample - if it's 0 the state is low, if 1 high. + * Other values are not permitted. + * Assumes that all channels are having samples added and in the + * order of 0..n, not n..0. + * Also assumes the the number of samples added for each channel + * is constant for every invokation for 0..n. The number of samples + * hence may only change when index is 0. + */ + void append_subsignal_payload(unsigned int index, void *data, uint64_t data_size); + void get_samples(int64_t start_sample, int64_t end_sample, uint8_t* dest) const; /**