]> sigrok.org Git - libsigrok.git/blame_incremental - bindings/cxx/include/libsigrok/libsigrok.hpp
bindings: Add Session::filename() and corresponding SWIG attribute.
[libsigrok.git] / bindings / cxx / include / libsigrok / libsigrok.hpp
... / ...
CommitLineData
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013-2014 Martin Ling <martin-sigrok@earth.li>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20/**
21
22@mainpage API Reference
23
24Introduction
25------------
26
27The sigrok++ API provides an object-oriented C++ interface to the functionality
28in libsigrok, including automatic memory and resource management.
29
30It is built on top of the public libsigrok C API, and is designed to be used as
31a standalone alternative API. Programs should not mix usage of the C and C++
32APIs; the C++ interface code needs to have full control of all C API calls for
33resources to be managed correctly.
34
35Memory management
36-----------------
37
38All runtime objects created through the C++ API are passed and accessed via
39shared pointers, using the C++11 std::shared_ptr implementation. This means
40that a reference count is kept for each object.
41
42Shared pointers can be copied and assigned in a user's program, automatically
43updating their reference count and deleting objects when they are no longer in
44use. The C++ interface code also keeps track of internal dependencies between
45libsigrok resources, and ensures that objects are not prematurely deleted when
46their resources are in use by other objects.
47
48This means that management of sigrok++ objects and their underlying libsigrok
49resources can be treated as fully automatic. As long as all shared pointers to
50objects are deleted or reassigned when no longer in use, all underlying
51resources will be released at the right time.
52
53Getting started
54---------------
55
56Usage of the C++ API needs to begin with a call to sigrok::Context::create().
57This will create the global libsigrok context and returns a shared pointer to
58the sigrok::Context object. Methods on this object provide access to the
59hardware drivers, input and output formats supported by the library, as well
60as means of creating other objects such as sessions and triggers.
61
62Error handling
63--------------
64
65When any libsigrok C API call returns an error, a sigrok::Error exception is
66raised, which provides access to the error code and description.
67
68*/
69
70#ifndef LIBSIGROK_HPP
71#define LIBSIGROK_HPP
72
73#include "libsigrok/libsigrok.h"
74#include <glibmm-2.4/glibmm.h>
75
76#include <stdexcept>
77#include <memory>
78#include <vector>
79#include <map>
80#include <set>
81
82namespace sigrok
83{
84
85using namespace std;
86
87/* Forward declarations */
88class SR_API Error;
89class SR_API Context;
90class SR_API Driver;
91class SR_API Device;
92class SR_API HardwareDevice;
93class SR_API Channel;
94class SR_API EventSource;
95class SR_API Session;
96class SR_API ConfigKey;
97class SR_API InputFormat;
98class SR_API OutputFormat;
99class SR_API LogLevel;
100class SR_API ChannelGroup;
101class SR_API Trigger;
102class SR_API TriggerStage;
103class SR_API TriggerMatch;
104class SR_API TriggerMatchType;
105class SR_API ChannelType;
106class SR_API Packet;
107class SR_API PacketPayload;
108class SR_API PacketType;
109class SR_API Quantity;
110class SR_API Unit;
111class SR_API QuantityFlag;
112class SR_API Input;
113class SR_API InputDevice;
114class SR_API Output;
115class SR_API DataType;
116class SR_API Option;
117
118/** Exception thrown when an error code is returned by any libsigrok call. */
119class SR_API Error: public exception
120{
121public:
122 Error(int result);
123 ~Error() throw();
124 const int result;
125 const char *what() const throw();
126};
127
128/* Base template for classes whose resources are owned by a parent object. */
129template <class Class, class Parent, typename Struct>
130class SR_API ParentOwned
131{
132protected:
133 /* Parent object which owns this child object's underlying structure.
134
135 This shared pointer will be null when this child is unused, but
136 will be assigned to point to the parent before any shared pointer
137 to this child is handed out to the user.
138
139 When the reference count of this child falls to zero, this shared
140 pointer to its parent is reset by a custom deleter on the child's
141 shared pointer.
142
143 This strategy ensures that the destructors for both the child and
144 the parent are called at the correct time, i.e. only when all
145 references to both the parent and all its children are gone. */
146 shared_ptr<Parent> _parent;
147
148 /* Weak pointer for shared_from_this() implementation. */
149 weak_ptr<Class> _weak_this;
150
151public:
152 /* Get parent object that owns this object. */
153 shared_ptr<Parent> parent()
154 {
155 return _parent;
156 }
157
158 /* Note, this implementation will create a new smart_ptr if none exists. */
159 shared_ptr<Class> shared_from_this()
160 {
161 shared_ptr<Class> shared;
162
163 if (!(shared = _weak_this.lock()))
164 {
165 shared = shared_ptr<Class>((Class *) this, reset_parent);
166 _weak_this = shared;
167 }
168
169 return shared;
170 }
171
172 shared_ptr<Class> get_shared_pointer(shared_ptr<Parent> parent)
173 {
174 if (!parent)
175 throw Error(SR_ERR_BUG);
176 this->_parent = parent;
177 return shared_from_this();
178 }
179
180 shared_ptr<Class> get_shared_pointer(Parent *parent)
181 {
182 if (!parent)
183 throw Error(SR_ERR_BUG);
184 return get_shared_pointer(parent->shared_from_this());
185 }
186protected:
187 static void reset_parent(Class *object)
188 {
189 if (!object->_parent)
190 throw Error(SR_ERR_BUG);
191 object->_parent.reset();
192 }
193
194 Struct *_structure;
195
196 ParentOwned<Class, Parent, Struct>(Struct *structure) :
197 _structure(structure)
198 {
199 }
200};
201
202/* Base template for classes whose resources are owned by the user. */
203template <class Class, typename Struct>
204class SR_API UserOwned : public enable_shared_from_this<Class>
205{
206public:
207 shared_ptr<Class> shared_from_this()
208 {
209 auto shared = enable_shared_from_this<Class>::shared_from_this();
210 if (!shared)
211 throw Error(SR_ERR_BUG);
212 return shared;
213 }
214protected:
215 Struct *_structure;
216
217 UserOwned<Class, Struct>(Struct *structure) :
218 _structure(structure)
219 {
220 }
221
222 /* Deleter needed to allow shared_ptr use with protected destructor. */
223 class Deleter
224 {
225 public:
226 void operator()(Class *object) { delete object; }
227 };
228};
229
230/** Type of log callback */
231typedef function<void(const LogLevel *, string message)> LogCallbackFunction;
232
233/** The global libsigrok context */
234class SR_API Context : public UserOwned<Context, struct sr_context>
235{
236public:
237 /** Create new context */
238 static shared_ptr<Context> create();
239 /** libsigrok package version. */
240 string package_version();
241 /** libsigrok library version. */
242 string lib_version();
243 /** Available hardware drivers, indexed by name. */
244 map<string, shared_ptr<Driver> > drivers();
245 /** Available input formats, indexed by name. */
246 map<string, shared_ptr<InputFormat> > input_formats();
247 /** Available output formats, indexed by name. */
248 map<string, shared_ptr<OutputFormat> > output_formats();
249 /** Current log level. */
250 const LogLevel *log_level();
251 /** Set the log level.
252 * @param level LogLevel to use. */
253 void set_log_level(const LogLevel *level);
254 /** Current log domain. */
255 string log_domain();
256 /** Set the log domain.
257 * @param value Log domain prefix string. */
258 void set_log_domain(string value);
259 /** Set the log callback.
260 * @param callback Callback of the form callback(LogLevel, string). */
261 void set_log_callback(LogCallbackFunction callback);
262 /** Set the log callback to the default handler. */
263 void set_log_callback_default();
264 /** Create a new session. */
265 shared_ptr<Session> create_session();
266 /** Load a saved session.
267 * @param filename File name string. */
268 shared_ptr<Session> load_session(string filename);
269 /** Create a new trigger.
270 * @param name Name string for new trigger. */
271 shared_ptr<Trigger> create_trigger(string name);
272 /** Open an input file.
273 * @param filename File name string. */
274 shared_ptr<Input> open_file(string filename);
275 /** Open an input stream based on header data.
276 * @param header Initial data from stream. */
277 shared_ptr<Input> open_stream(string header);
278protected:
279 map<string, Driver *> _drivers;
280 map<string, InputFormat *> _input_formats;
281 map<string, OutputFormat *> _output_formats;
282 Session *_session;
283 LogCallbackFunction _log_callback;
284 Context();
285 ~Context();
286 friend class Deleter;
287 friend class Session;
288 friend class Driver;
289};
290
291enum Capability {
292 GET = SR_CONF_GET,
293 SET = SR_CONF_SET,
294 LIST = SR_CONF_LIST
295};
296
297/** An object that can be configured. */
298class SR_API Configurable
299{
300public:
301 /** Read configuration for the given key.
302 * @param key ConfigKey to read. */
303 Glib::VariantBase config_get(const ConfigKey *key);
304 /** Set configuration for the given key to a specified value.
305 * @param key ConfigKey to set.
306 * @param value Value to set. */
307 void config_set(const ConfigKey *key, Glib::VariantBase value);
308 /** Enumerate available values for the given configuration key.
309 * @param key ConfigKey to enumerate values for. */
310 Glib::VariantContainerBase config_list(const ConfigKey *key);
311 /** Enumerate available keys, according to a given index key. */
312 map<const ConfigKey *, set<Capability> > config_keys(const ConfigKey *key);
313 /** Check for a key in the list from a given index key. */
314 bool config_check(const ConfigKey *key, const ConfigKey *index_key);
315protected:
316 Configurable(
317 struct sr_dev_driver *driver,
318 struct sr_dev_inst *sdi,
319 struct sr_channel_group *channel_group);
320 virtual ~Configurable();
321 struct sr_dev_driver *config_driver;
322 struct sr_dev_inst *config_sdi;
323 struct sr_channel_group *config_channel_group;
324};
325
326/** A hardware driver provided by the library */
327class SR_API Driver :
328 public ParentOwned<Driver, Context, struct sr_dev_driver>,
329 public Configurable
330{
331public:
332 /** Name of this driver. */
333 string name();
334 /** Long name for this driver. */
335 string long_name();
336 /** Scan for devices and return a list of devices found.
337 * @param options Mapping of (ConfigKey, value) pairs. */
338 vector<shared_ptr<HardwareDevice> > scan(
339 map<const ConfigKey *, Glib::VariantBase> options =
340 map<const ConfigKey *, Glib::VariantBase>());
341protected:
342 bool _initialized;
343 vector<HardwareDevice *> _devices;
344 Driver(struct sr_dev_driver *structure);
345 ~Driver();
346 friend class Context;
347 friend class HardwareDevice;
348 friend class ChannelGroup;
349};
350
351/** A generic device, either hardware or virtual */
352class SR_API Device : public Configurable
353{
354public:
355 /** Description identifying this device. */
356 virtual string description();
357 /** Vendor name for this device. */
358 string vendor();
359 /** Model name for this device. */
360 string model();
361 /** Version string for this device. */
362 string version();
363 /** Serial number for this device. */
364 string serial_number();
365 /** Connection ID for this device. */
366 string connection_id();
367 /** List of the channels available on this device. */
368 vector<shared_ptr<Channel> > channels();
369 /** Channel groups available on this device, indexed by name. */
370 map<string, shared_ptr<ChannelGroup> > channel_groups();
371 /** Open device. */
372 void open();
373 /** Close device. */
374 void close();
375protected:
376 Device(struct sr_dev_inst *structure);
377 ~Device();
378 virtual shared_ptr<Device> get_shared_from_this() = 0;
379 shared_ptr<Channel> get_channel(struct sr_channel *ptr);
380 struct sr_dev_inst *_structure;
381 map<struct sr_channel *, Channel *> _channels;
382 map<string, ChannelGroup *> _channel_groups;
383 /** Deleter needed to allow shared_ptr use with protected destructor. */
384 class Deleter
385 {
386 public:
387 void operator()(Device *device) { delete device; }
388 };
389 friend class Deleter;
390 friend class Session;
391 friend class Channel;
392 friend class ChannelGroup;
393 friend class Output;
394 friend class Analog;
395};
396
397/** A real hardware device, connected via a driver */
398class SR_API HardwareDevice :
399 public UserOwned<HardwareDevice, struct sr_dev_inst>,
400 public Device
401{
402public:
403 /** Driver providing this device. */
404 shared_ptr<Driver> driver();
405protected:
406 HardwareDevice(shared_ptr<Driver> driver, struct sr_dev_inst *structure);
407 ~HardwareDevice();
408 shared_ptr<Device> get_shared_from_this();
409 shared_ptr<Driver> _driver;
410 /** Deleter needed to allow shared_ptr use with protected destructor. */
411 class Deleter
412 {
413 public:
414 void operator()(HardwareDevice *device) { delete device; }
415 };
416 friend class Deleter;
417 friend class Driver;
418 friend class ChannelGroup;
419};
420
421/** A channel on a device */
422class SR_API Channel :
423 public ParentOwned<Channel, Device, struct sr_channel>
424{
425public:
426 /** Current name of this channel. */
427 string name();
428 /** Set the name of this channel. *
429 * @param name Name string to set. */
430 void set_name(string name);
431 /** Type of this channel. */
432 const ChannelType *type();
433 /** Enabled status of this channel. */
434 bool enabled();
435 /** Set the enabled status of this channel.
436 * @param value Boolean value to set. */
437 void set_enabled(bool value);
438 /** Get the index number of this channel. */
439 unsigned int index();
440protected:
441 Channel(struct sr_channel *structure);
442 ~Channel();
443 const ChannelType * const _type;
444 friend class Device;
445 friend class ChannelGroup;
446 friend class Session;
447 friend class TriggerStage;
448};
449
450/** A group of channels on a device, which share some configuration */
451class SR_API ChannelGroup :
452 public ParentOwned<ChannelGroup, Device, struct sr_channel_group>,
453 public Configurable
454{
455public:
456 /** Name of this channel group. */
457 string name();
458 /** List of the channels in this group. */
459 vector<shared_ptr<Channel> > channels();
460protected:
461 ChannelGroup(Device *device, struct sr_channel_group *structure);
462 ~ChannelGroup();
463 vector<Channel *> _channels;
464 friend class Device;
465};
466
467/** A trigger configuration */
468class SR_API Trigger : public UserOwned<Trigger, struct sr_trigger>
469{
470public:
471 /** Name of this trigger configuration. */
472 string name();
473 /** List of the stages in this trigger. */
474 vector<shared_ptr<TriggerStage> > stages();
475 /** Add a new stage to this trigger. */
476 shared_ptr<TriggerStage> add_stage();
477protected:
478 Trigger(shared_ptr<Context> context, string name);
479 ~Trigger();
480 shared_ptr<Context> _context;
481 vector<TriggerStage *> _stages;
482 friend class Deleter;
483 friend class Context;
484 friend class Session;
485};
486
487/** A stage in a trigger configuration */
488class SR_API TriggerStage :
489 public ParentOwned<TriggerStage, Trigger, struct sr_trigger_stage>
490{
491public:
492 /** Index number of this stage. */
493 int number();
494 /** List of match conditions on this stage. */
495 vector<shared_ptr<TriggerMatch> > matches();
496 /** Add a new match condition to this stage.
497 * @param channel Channel to match on.
498 * @param type TriggerMatchType to apply. */
499 void add_match(shared_ptr<Channel> channel, const TriggerMatchType *type);
500 /** Add a new match condition to this stage.
501 * @param channel Channel to match on.
502 * @param type TriggerMatchType to apply.
503 * @param value Threshold value. */
504 void add_match(shared_ptr<Channel> channel, const TriggerMatchType *type, float value);
505protected:
506 vector<TriggerMatch *> _matches;
507 TriggerStage(struct sr_trigger_stage *structure);
508 ~TriggerStage();
509 friend class Trigger;
510};
511
512/** A match condition in a trigger configuration */
513class SR_API TriggerMatch :
514 public ParentOwned<TriggerMatch, TriggerStage, struct sr_trigger_match>
515{
516public:
517 /** Channel this condition matches on. */
518 shared_ptr<Channel> channel();
519 /** Type of match. */
520 const TriggerMatchType *type();
521 /** Threshold value. */
522 float value();
523protected:
524 TriggerMatch(struct sr_trigger_match *structure, shared_ptr<Channel> channel);
525 ~TriggerMatch();
526 shared_ptr<Channel> _channel;
527 friend class TriggerStage;
528};
529
530/** Type of datafeed callback */
531typedef function<void(shared_ptr<Device>, shared_ptr<Packet>)>
532 DatafeedCallbackFunction;
533
534/* Data required for C callback function to call a C++ datafeed callback */
535class SR_PRIV DatafeedCallbackData
536{
537public:
538 void run(const struct sr_dev_inst *sdi,
539 const struct sr_datafeed_packet *pkt);
540protected:
541 DatafeedCallbackFunction _callback;
542 DatafeedCallbackData(Session *session,
543 DatafeedCallbackFunction callback);
544 Session *_session;
545 friend class Session;
546};
547
548/** Type of source callback */
549typedef function<bool(Glib::IOCondition)>
550 SourceCallbackFunction;
551
552/* Data required for C callback function to call a C++ source callback */
553class SR_PRIV SourceCallbackData
554{
555public:
556 bool run(int revents);
557protected:
558 SourceCallbackData(shared_ptr<EventSource> source);
559 shared_ptr<EventSource> _source;
560 friend class Session;
561};
562
563/** An I/O event source */
564class SR_API EventSource
565{
566public:
567 /** Create an event source from a file descriptor.
568 * @param fd File descriptor.
569 * @param events GLib IOCondition event mask.
570 * @param timeout Timeout in milliseconds.
571 * @param callback Callback of the form callback(events) */
572 static shared_ptr<EventSource> create(int fd, Glib::IOCondition events,
573 int timeout, SourceCallbackFunction callback);
574 /** Create an event source from a GLib PollFD
575 * @param pollfd GLib PollFD
576 * @param timeout Timeout in milliseconds.
577 * @param callback Callback of the form callback(events) */
578 static shared_ptr<EventSource> create(Glib::PollFD pollfd, int timeout,
579 SourceCallbackFunction callback);
580 /** Create an event source from a GLib IOChannel
581 * @param channel GLib IOChannel.
582 * @param events GLib IOCondition event mask.
583 * @param timeout Timeout in milliseconds.
584 * @param callback Callback of the form callback(events) */
585 static shared_ptr<EventSource> create(
586 Glib::RefPtr<Glib::IOChannel> channel, Glib::IOCondition events,
587 int timeout, SourceCallbackFunction callback);
588protected:
589 EventSource(int timeout, SourceCallbackFunction callback);
590 ~EventSource();
591 enum source_type {
592 SOURCE_FD,
593 SOURCE_POLLFD,
594 SOURCE_IOCHANNEL
595 } _type;
596 int _fd;
597 Glib::PollFD _pollfd;
598 Glib::RefPtr<Glib::IOChannel> _channel;
599 Glib::IOCondition _events;
600 int _timeout;
601 SourceCallbackFunction _callback;
602 /** Deleter needed to allow shared_ptr use with protected destructor. */
603 class Deleter
604 {
605 public:
606 void operator()(EventSource *source) { delete source; }
607 };
608 friend class Deleter;
609 friend class Session;
610 friend class SourceCallbackData;
611};
612
613/** A virtual device associated with a stored session */
614class SR_API SessionDevice :
615 public ParentOwned<SessionDevice, Session, struct sr_dev_inst>,
616 public Device
617{
618 /** Description identifying this device. */
619 string description();
620protected:
621 SessionDevice(struct sr_dev_inst *sdi);
622 ~SessionDevice();
623 shared_ptr<Device> get_shared_from_this();
624 /** Deleter needed to allow shared_ptr use with protected destructor. */
625 class Deleter
626 {
627 public:
628 void operator()(SessionDevice *device) { delete device; }
629 };
630 friend class Deleter;
631 friend class Session;
632};
633
634/** A sigrok session */
635class SR_API Session : public UserOwned<Session, struct sr_session>
636{
637public:
638 /** Add a device to this session.
639 * @param device Device to add. */
640 void add_device(shared_ptr<Device> device);
641 /** List devices attached to this session. */
642 vector<shared_ptr<Device> > devices();
643 /** Remove all devices from this session. */
644 void remove_devices();
645 /** Add a datafeed callback to this session.
646 * @param callback Callback of the form callback(Device, Packet). */
647 void add_datafeed_callback(DatafeedCallbackFunction callback);
648 /** Remove all datafeed callbacks from this session. */
649 void remove_datafeed_callbacks();
650 /** Add an I/O event source.
651 * @param source EventSource to add. */
652 void add_source(shared_ptr<EventSource> source);
653 /** Remove an event source.
654 * @param source EventSource to remove. */
655 void remove_source(shared_ptr<EventSource> source);
656 /** Start the session. */
657 void start();
658 /** Run the session event loop. */
659 void run();
660 /** Stop the session. */
661 void stop();
662 /** Begin saving session to a file.
663 * @param filename File name string. */
664 void begin_save(string filename);
665 /** Append a packet to the session file being saved.
666 * @param packet Packet to append. */
667 void append(shared_ptr<Packet> packet);
668 /** Append raw logic data to the session file being saved. */
669 void append(void *data, size_t length, unsigned int unit_size);
670 /** Get current trigger setting. */
671 shared_ptr<Trigger> trigger();
672 /** Set trigger setting.
673 * @param trigger Trigger object to use. */
674 void set_trigger(shared_ptr<Trigger> trigger);
675 /** Get filename this session was loaded from. */
676 string filename();
677protected:
678 Session(shared_ptr<Context> context);
679 Session(shared_ptr<Context> context, string filename);
680 ~Session();
681 shared_ptr<Device> get_device(const struct sr_dev_inst *sdi);
682 const shared_ptr<Context> _context;
683 map<const struct sr_dev_inst *, SessionDevice *> _owned_devices;
684 map<const struct sr_dev_inst *, shared_ptr<Device> > _other_devices;
685 vector<DatafeedCallbackData *> _datafeed_callbacks;
686 map<shared_ptr<EventSource>, SourceCallbackData *> _source_callbacks;
687 string _filename;
688 bool _saving;
689 bool _save_initialized;
690 string _save_filename;
691 uint64_t _save_samplerate;
692 shared_ptr<Trigger> _trigger;
693 friend class Deleter;
694 friend class Context;
695 friend class DatafeedCallbackData;
696 friend class SessionDevice;
697};
698
699/** A packet on the session datafeed */
700class SR_API Packet : public UserOwned<Packet, const struct sr_datafeed_packet>
701{
702public:
703 /** Type of this packet. */
704 const PacketType *type();
705 /** Payload of this packet. */
706 shared_ptr<PacketPayload> payload();
707protected:
708 Packet(shared_ptr<Device> device,
709 const struct sr_datafeed_packet *structure);
710 ~Packet();
711 shared_ptr<Device> _device;
712 PacketPayload *_payload;
713 friend class Deleter;
714 friend class Session;
715 friend class Output;
716 friend class DatafeedCallbackData;
717 friend class Header;
718 friend class Meta;
719 friend class Logic;
720 friend class Analog;
721};
722
723/** Abstract base class for datafeed packet payloads */
724class SR_API PacketPayload
725{
726protected:
727 PacketPayload();
728 virtual ~PacketPayload() = 0;
729 virtual shared_ptr<PacketPayload> get_shared_pointer(Packet *parent) = 0;
730 /** Deleter needed to allow shared_ptr use with protected destructor. */
731 class Deleter
732 {
733 public:
734 void operator()(PacketPayload *payload) { delete payload; }
735 };
736 friend class Deleter;
737 friend class Packet;
738 friend class Output;
739};
740
741/** Payload of a datafeed header packet */
742class SR_API Header :
743 public ParentOwned<Header, Packet, const struct sr_datafeed_header>,
744 public PacketPayload
745{
746public:
747 /* Feed version number. */
748 int feed_version();
749 /* Start time of this session. */
750 Glib::TimeVal start_time();
751protected:
752 Header(const struct sr_datafeed_header *structure);
753 ~Header();
754 shared_ptr<PacketPayload> get_shared_pointer(Packet *parent);
755 friend class Packet;
756};
757
758/** Payload of a datafeed metadata packet */
759class SR_API Meta :
760 public ParentOwned<Meta, Packet, const struct sr_datafeed_meta>,
761 public PacketPayload
762{
763public:
764 /* Mapping of (ConfigKey, value) pairs. */
765 map<const ConfigKey *, Glib::VariantBase> config();
766protected:
767 Meta(const struct sr_datafeed_meta *structure);
768 ~Meta();
769 shared_ptr<PacketPayload> get_shared_pointer(Packet *parent);
770 map<const ConfigKey *, Glib::VariantBase> _config;
771 friend class Packet;
772};
773
774/** Payload of a datafeed packet with logic data */
775class SR_API Logic :
776 public ParentOwned<Logic, Packet, const struct sr_datafeed_logic>,
777 public PacketPayload
778{
779public:
780 /* Pointer to data. */
781 void *data_pointer();
782 /* Data length in bytes. */
783 size_t data_length();
784 /* Size of each sample in bytes. */
785 unsigned int unit_size();
786protected:
787 Logic(const struct sr_datafeed_logic *structure);
788 ~Logic();
789 shared_ptr<PacketPayload> get_shared_pointer(Packet *parent);
790 friend class Packet;
791};
792
793/** Payload of a datafeed packet with analog data */
794class SR_API Analog :
795 public ParentOwned<Analog, Packet, const struct sr_datafeed_analog>,
796 public PacketPayload
797{
798public:
799 /** Pointer to data. */
800 float *data_pointer();
801 /** Number of samples in this packet. */
802 unsigned int num_samples();
803 /** Channels for which this packet contains data. */
804 vector<shared_ptr<Channel> > channels();
805 /** Measured quantity of the samples in this packet. */
806 const Quantity *mq();
807 /** Unit of the samples in this packet. */
808 const Unit *unit();
809 /** Measurement flags associated with the samples in this packet. */
810 vector<const QuantityFlag *> mq_flags();
811protected:
812 Analog(const struct sr_datafeed_analog *structure);
813 ~Analog();
814 shared_ptr<PacketPayload> get_shared_pointer(Packet *parent);
815 friend class Packet;
816};
817
818/** An input format supported by the library */
819class SR_API InputFormat :
820 public ParentOwned<InputFormat, Context, const struct sr_input_module>
821{
822public:
823 /** Name of this input format. */
824 string name();
825 /** Description of this input format. */
826 string description();
827 /** Options supported by this input format. */
828 map<string, shared_ptr<Option> > options();
829 /** Create an input using this input format.
830 * @param options Mapping of (option name, value) pairs. */
831 shared_ptr<Input> create_input(map<string, Glib::VariantBase> options =
832 map<string, Glib::VariantBase>());
833protected:
834 InputFormat(const struct sr_input_module *structure);
835 ~InputFormat();
836 friend class Context;
837 friend class InputDevice;
838};
839
840/** An input instance (an input format applied to a file or stream) */
841class SR_API Input : public UserOwned<Input, const struct sr_input>
842{
843public:
844 /** Virtual device associated with this input. */
845 shared_ptr<InputDevice> device();
846 /** Send next stream data.
847 * @param data Next stream data. */
848 void send(string data);
849 /** Signal end of input data. */
850 void end();
851protected:
852 Input(shared_ptr<Context> context, const struct sr_input *structure);
853 ~Input();
854 shared_ptr<Context> _context;
855 InputDevice *_device;
856 friend class Deleter;
857 friend class Context;
858 friend class InputFormat;
859};
860
861/** A virtual device associated with an input */
862class SR_API InputDevice :
863 public ParentOwned<InputDevice, Input, struct sr_dev_inst>,
864 public Device
865{
866public:
867 /** Description identifying this device. */
868 string description();
869protected:
870 InputDevice(shared_ptr<Input> input, struct sr_dev_inst *sdi);
871 ~InputDevice();
872 shared_ptr<Device> get_shared_from_this();
873 shared_ptr<Input> _input;
874 friend class Input;
875};
876
877/** An option used by an output format */
878class SR_API Option : public UserOwned<Option, const struct sr_option>
879{
880public:
881 /** Short name of this option suitable for command line usage. */
882 string id();
883 /** Short name of this option suitable for GUI usage. */
884 string name();
885 /** Description of this option in a sentence. */
886 string description();
887 /** Default value for this option. */
888 Glib::VariantBase default_value();
889 /** Possible values for this option, if a limited set. */
890 vector<Glib::VariantBase> values();
891protected:
892 Option(const struct sr_option *structure,
893 shared_ptr<const struct sr_option *> structure_array);
894 ~Option();
895 shared_ptr<const struct sr_option *> _structure_array;
896 friend class Deleter;
897 friend class InputFormat;
898 friend class OutputFormat;
899};
900
901/** An output format supported by the library */
902class SR_API OutputFormat :
903 public ParentOwned<OutputFormat, Context, const struct sr_output_module>
904{
905public:
906 /** Name of this output format. */
907 string name();
908 /** Description of this output format. */
909 string description();
910 /** Options supported by this output format. */
911 map<string, shared_ptr<Option> > options();
912 /** Create an output using this format.
913 * @param device Device to output for.
914 * @param options Mapping of (option name, value) pairs. */
915 shared_ptr<Output> create_output(shared_ptr<Device> device,
916 map<string, Glib::VariantBase> options =
917 map<string, Glib::VariantBase>());
918protected:
919 OutputFormat(const struct sr_output_module *structure);
920 ~OutputFormat();
921 friend class Context;
922 friend class Output;
923};
924
925/** An output instance (an output format applied to a device) */
926class SR_API Output : public UserOwned<Output, const struct sr_output>
927{
928public:
929 /** Update output with data from the given packet.
930 * @param packet Packet to handle. */
931 string receive(shared_ptr<Packet> packet);
932protected:
933 Output(shared_ptr<OutputFormat> format, shared_ptr<Device> device);
934 Output(shared_ptr<OutputFormat> format,
935 shared_ptr<Device> device, map<string, Glib::VariantBase> options);
936 ~Output();
937 const shared_ptr<OutputFormat> _format;
938 const shared_ptr<Device> _device;
939 const map<string, Glib::VariantBase> _options;
940 friend class Deleter;
941 friend class OutputFormat;
942};
943
944/** Base class for objects which wrap an enumeration value from libsigrok */
945template <typename T> class SR_API EnumValue
946{
947public:
948 /** The enum constant associated with this value. */
949 T id() const { return _id; }
950 /** The name associated with this value. */
951 string name() const { return _name; }
952protected:
953 EnumValue(T id, const char name[]) : _id(id), _name(name) {}
954 ~EnumValue() {}
955 const T _id;
956 const string _name;
957};
958
959#include "enums.hpp"
960
961}
962
963#endif // LIBSIGROK_HPP