]> sigrok.org Git - libsigrok.git/blame - bindings/cxx/include/libsigrok/libsigrok.hpp
C++: Add UserOwned base template for objects with resources owned by user.
[libsigrok.git] / bindings / cxx / include / libsigrok / libsigrok.hpp
CommitLineData
c23c8659
ML
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
07443fd2
ML
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
c23c8659
ML
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
81namespace sigrok
82{
83
84using namespace std;
85
86/* Forward declarations */
87class SR_API Error;
88class SR_API Context;
89class SR_API Driver;
90class SR_API Device;
91class SR_API HardwareDevice;
92class SR_API Channel;
93class SR_API EventSource;
94class SR_API Session;
95class SR_API ConfigKey;
96class SR_API InputFormat;
97class SR_API OutputFormat;
98class SR_API LogLevel;
99class SR_API ChannelGroup;
100class SR_API Trigger;
101class SR_API TriggerStage;
102class SR_API TriggerMatch;
103class SR_API TriggerMatchType;
104class SR_API ChannelType;
105class SR_API Packet;
106class SR_API PacketPayload;
107class SR_API PacketType;
108class SR_API Quantity;
109class SR_API Unit;
110class SR_API QuantityFlag;
ca3291e3
ML
111class SR_API Input;
112class SR_API InputDevice;
c23c8659
ML
113class SR_API Output;
114class SR_API DataType;
58aa1f83 115class SR_API Option;
c23c8659
ML
116
117/** Exception thrown when an error code is returned by any libsigrok call. */
118class SR_API Error: public exception
119{
120public:
121 Error(int result);
122 ~Error() throw();
123 const int result;
124 const char *what() const throw();
125};
126
541c855e 127/* Base template for classes whose resources are owned by a parent object. */
bf52cc8c 128template <class Class, class Parent, typename Struct>
541c855e 129class SR_API ParentOwned
c23c8659 130{
7649683c 131protected:
07443fd2 132 /* Parent object which owns this child object's underlying structure.
c23c8659
ML
133
134 This shared pointer will be null when this child is unused, but
135 will be assigned to point to the parent before any shared pointer
136 to this child is handed out to the user.
137
138 When the reference count of this child falls to zero, this shared
139 pointer to its parent is reset by a custom deleter on the child's
140 shared pointer.
141
142 This strategy ensures that the destructors for both the child and
143 the parent are called at the correct time, i.e. only when all
144 references to both the parent and all its children are gone. */
145 shared_ptr<Parent> parent;
7649683c 146
0d0170ae 147 /* Weak pointer for shared_from_this() implementation. */
bf52cc8c 148 weak_ptr<Class> weak_this;
0d0170ae 149
7649683c 150public:
0d0170ae 151 /* Note, this implementation will create a new smart_ptr if none exists. */
bf52cc8c 152 shared_ptr<Class> shared_from_this()
0d0170ae 153 {
bf52cc8c 154 shared_ptr<Class> shared;
0d0170ae
ML
155
156 if (!(shared = weak_this.lock()))
157 {
bf52cc8c 158 shared = shared_ptr<Class>((Class *) this, reset_parent);
0d0170ae
ML
159 weak_this = shared;
160 }
161
162 return shared;
163 }
164
bf52cc8c 165 shared_ptr<Class> get_shared_pointer(shared_ptr<Parent> parent)
7649683c 166 {
78132e2a
ML
167 if (!parent)
168 throw Error(SR_ERR_BUG);
0d0170ae
ML
169 this->parent = parent;
170 return shared_from_this();
7649683c 171 }
0d0170ae 172
bf52cc8c 173 shared_ptr<Class> get_shared_pointer(Parent *parent)
7649683c 174 {
78132e2a
ML
175 if (!parent)
176 throw Error(SR_ERR_BUG);
bf52cc8c 177 return get_shared_pointer(parent->shared_from_this());
7649683c 178 }
c23c8659 179protected:
bf52cc8c 180 static void reset_parent(Class *object)
7649683c 181 {
78132e2a
ML
182 if (!object->parent)
183 throw Error(SR_ERR_BUG);
7649683c
ML
184 object->parent.reset();
185 }
186
c23c8659
ML
187 Struct *structure;
188
541c855e 189 ParentOwned<Class, Parent, Struct>(Struct *structure) :
c23c8659
ML
190 structure(structure)
191 {
192 }
193};
194
90e89c2a
ML
195/* Base template for classes whose resources are owned by the user. */
196template <class Class, typename Struct>
197class SR_API UserOwned : public enable_shared_from_this<Class>
198{
199public:
200 shared_ptr<Class> shared_from_this()
201 {
202 auto shared = enable_shared_from_this<Class>::shared_from_this();
203 if (!shared)
204 throw Error(SR_ERR_BUG);
205 return shared;
206 }
207protected:
208 Struct *structure;
209
210 UserOwned<Class, Struct>(Struct *structure) :
211 structure(structure)
212 {
213 }
214};
215
c23c8659
ML
216/** Type of log callback */
217typedef function<void(const LogLevel *, string message)> LogCallbackFunction;
218
07443fd2 219/** The global libsigrok context */
90e89c2a 220class SR_API Context : public UserOwned<Context, struct sr_context>
c23c8659
ML
221{
222public:
223 /** Create new context */
224 static shared_ptr<Context> create();
225 /** libsigrok package version. */
226 string get_package_version();
227 /** libsigrok library version. */
228 string get_lib_version();
229 /** Available hardware drivers, indexed by name. */
230 map<string, shared_ptr<Driver> > get_drivers();
231 /** Available input formats, indexed by name. */
232 map<string, shared_ptr<InputFormat> > get_input_formats();
233 /** Available output formats, indexed by name. */
234 map<string, shared_ptr<OutputFormat> > get_output_formats();
235 /** Current log level. */
236 const LogLevel *get_log_level();
b6f411ac
ML
237 /** Set the log level.
238 * @param level LogLevel to use. */
c23c8659
ML
239 void set_log_level(const LogLevel *level);
240 /** Current log domain. */
241 string get_log_domain();
b6f411ac
ML
242 /** Set the log domain.
243 * @param value Log domain prefix string. */
c23c8659 244 void set_log_domain(string value);
b6f411ac
ML
245 /** Set the log callback.
246 * @param callback Callback of the form callback(LogLevel, string). */
c23c8659
ML
247 void set_log_callback(LogCallbackFunction callback);
248 /** Set the log callback to the default handler. */
249 void set_log_callback_default();
250 /** Create a new session. */
251 shared_ptr<Session> create_session();
b6f411ac
ML
252 /** Load a saved session.
253 * @param filename File name string. */
c23c8659 254 shared_ptr<Session> load_session(string filename);
b6f411ac
ML
255 /** Create a new trigger.
256 * @param name Name string for new trigger. */
c23c8659 257 shared_ptr<Trigger> create_trigger(string name);
ca3291e3
ML
258 /** Open an input file.
259 * @param filename File name string. */
260 shared_ptr<Input> open_file(string filename);
261 /** Open an input stream based on header data.
262 * @param header Initial data from stream. */
263 shared_ptr<Input> open_stream(string header);
c23c8659 264protected:
c23c8659
ML
265 map<string, Driver *> drivers;
266 map<string, InputFormat *> input_formats;
267 map<string, OutputFormat *> output_formats;
268 Session *session;
269 LogCallbackFunction log_callback;
270 Context();
271 ~Context();
272 /** Deleter needed to allow shared_ptr use with protected destructor. */
273 class Deleter
274 {
275 public:
276 void operator()(Context *context) { delete context; }
277 };
278 friend class Deleter;
279 friend class Session;
280 friend class Driver;
281};
282
07443fd2 283/** A hardware driver provided by the library */
bf52cc8c 284class SR_API Driver :
541c855e 285 public ParentOwned<Driver, Context, struct sr_dev_driver>
c23c8659
ML
286{
287public:
288 /** Name of this driver. */
289 string get_name();
290 /** Long name for this driver. */
291 string get_long_name();
b6f411ac
ML
292 /** Scan for devices and return a list of devices found.
293 * @param options Mapping of (ConfigKey, value) pairs. */
c23c8659
ML
294 vector<shared_ptr<HardwareDevice> > scan(
295 map<const ConfigKey *, Glib::VariantBase> options = {});
296protected:
297 bool initialized;
298 vector<HardwareDevice *> devices;
299 Driver(struct sr_dev_driver *structure);
300 ~Driver();
301 friend class Context;
302 friend class HardwareDevice;
303 friend class ChannelGroup;
304};
305
306/** An object that can be configured. */
307class SR_API Configurable
308{
309public:
b6f411ac
ML
310 /** Read configuration for the given key.
311 * @param key ConfigKey to read. */
c23c8659 312 Glib::VariantBase config_get(const ConfigKey *key);
b6f411ac
ML
313 /** Set configuration for the given key to a specified value.
314 * @param key ConfigKey to set.
315 * @param value Value to set. */
c23c8659 316 void config_set(const ConfigKey *key, Glib::VariantBase value);
b6f411ac
ML
317 /** Enumerate available values for the given configuration key.
318 * @param key ConfigKey to enumerate values for. */
e194c011 319 Glib::VariantContainerBase config_list(const ConfigKey *key);
c23c8659
ML
320protected:
321 Configurable(
322 struct sr_dev_driver *driver,
323 struct sr_dev_inst *sdi,
324 struct sr_channel_group *channel_group);
325 virtual ~Configurable();
326 struct sr_dev_driver *config_driver;
327 struct sr_dev_inst *config_sdi;
328 struct sr_channel_group *config_channel_group;
329};
330
07443fd2 331/** A generic device, either hardware or virtual */
d01d2314 332class SR_API Device : public Configurable
c23c8659
ML
333{
334public:
f36ca889
ML
335 /** Description identifying this device. */
336 string get_description();
c23c8659
ML
337 /** Vendor name for this device. */
338 string get_vendor();
339 /** Model name for this device. */
340 string get_model();
341 /** Version string for this device. */
342 string get_version();
343 /** List of the channels available on this device. */
344 vector<shared_ptr<Channel> > get_channels();
6be7a7f2
ML
345 /** Channel groups available on this device, indexed by name. */
346 map<string, shared_ptr<ChannelGroup> > get_channel_groups();
c23c8659
ML
347 /** Open device. */
348 void open();
349 /** Close device. */
350 void close();
351protected:
352 Device(struct sr_dev_inst *structure);
353 ~Device();
d01d2314 354 virtual shared_ptr<Device> get_shared_from_this() = 0;
4178d971 355 shared_ptr<Channel> get_channel(struct sr_channel *ptr);
6e5240f4 356 struct sr_dev_inst *structure;
4178d971 357 map<struct sr_channel *, Channel *> channels;
6be7a7f2 358 map<string, ChannelGroup *> channel_groups;
c23c8659
ML
359 /** Deleter needed to allow shared_ptr use with protected destructor. */
360 class Deleter
361 {
362 public:
363 void operator()(Device *device) { delete device; }
364 };
365 friend class Deleter;
366 friend class Session;
367 friend class Channel;
368 friend class ChannelGroup;
369 friend class Output;
2928f47d 370 friend class Analog;
c23c8659
ML
371};
372
07443fd2 373/** A real hardware device, connected via a driver */
6e5240f4 374class SR_API HardwareDevice :
541c855e 375 public ParentOwned<HardwareDevice, Context, struct sr_dev_inst>,
6e5240f4 376 public Device
c23c8659
ML
377{
378public:
379 /** Driver providing this device. */
380 shared_ptr<Driver> get_driver();
c23c8659
ML
381protected:
382 HardwareDevice(Driver *driver, struct sr_dev_inst *structure);
383 ~HardwareDevice();
d01d2314 384 shared_ptr<Device> get_shared_from_this();
c23c8659 385 Driver *driver;
c23c8659
ML
386 friend class Driver;
387 friend class ChannelGroup;
388};
389
07443fd2 390/** A channel on a device */
bf52cc8c 391class SR_API Channel :
541c855e 392 public ParentOwned<Channel, Device, struct sr_channel>
c23c8659
ML
393{
394public:
395 /** Current name of this channel. */
396 string get_name();
b6f411ac
ML
397 /** Set the name of this channel. *
398 * @param name Name string to set. */
c23c8659
ML
399 void set_name(string name);
400 /** Type of this channel. */
401 const ChannelType *get_type();
402 /** Enabled status of this channel. */
403 bool get_enabled();
b6f411ac
ML
404 /** Set the enabled status of this channel.
405 * @param value Boolean value to set. */
c23c8659 406 void set_enabled(bool value);
06bd935e
ML
407 /** Get the index number of this channel. */
408 unsigned int get_index();
c23c8659
ML
409protected:
410 Channel(struct sr_channel *structure);
411 ~Channel();
412 const ChannelType * const type;
413 friend class Device;
414 friend class ChannelGroup;
415 friend class Session;
416 friend class TriggerStage;
417};
418
07443fd2 419/** A group of channels on a device, which share some configuration */
c23c8659 420class SR_API ChannelGroup :
541c855e 421 public ParentOwned<ChannelGroup, Device, struct sr_channel_group>,
c23c8659
ML
422 public Configurable
423{
424public:
425 /** Name of this channel group. */
426 string get_name();
427 /** List of the channels in this group. */
428 vector<shared_ptr<Channel> > get_channels();
429protected:
6be7a7f2 430 ChannelGroup(Device *device, struct sr_channel_group *structure);
c23c8659
ML
431 ~ChannelGroup();
432 vector<Channel *> channels;
6be7a7f2 433 friend class Device;
c23c8659
ML
434};
435
07443fd2 436/** A trigger configuration */
90e89c2a 437class SR_API Trigger : public UserOwned<Trigger, struct sr_trigger>
c23c8659
ML
438{
439public:
b6f411ac 440 /** Name of this trigger configuration. */
c23c8659 441 string get_name();
b6f411ac 442 /** List of the stages in this trigger. */
c23c8659 443 vector<shared_ptr<TriggerStage> > get_stages();
b6f411ac 444 /** Add a new stage to this trigger. */
c23c8659
ML
445 shared_ptr<TriggerStage> add_stage();
446protected:
447 Trigger(shared_ptr<Context> context, string name);
448 ~Trigger();
c23c8659
ML
449 shared_ptr<Context> context;
450 vector<TriggerStage *> stages;
451 /** Deleter needed to allow shared_ptr use with protected destructor. */
452 class Deleter
453 {
454 public:
455 void operator()(Trigger *trigger) { delete trigger; }
456 };
457 friend class Context;
6fa0eb86 458 friend class Session;
c23c8659
ML
459};
460
07443fd2 461/** A stage in a trigger configuration */
bf52cc8c 462class SR_API TriggerStage :
541c855e 463 public ParentOwned<TriggerStage, Trigger, struct sr_trigger_stage>
c23c8659
ML
464{
465public:
b6f411ac 466 /** Index number of this stage. */
c23c8659 467 int get_number();
b6f411ac 468 /** List of match conditions on this stage. */
c23c8659 469 vector<shared_ptr<TriggerMatch> > get_matches();
b6f411ac
ML
470 /** Add a new match condition to this stage.
471 * @param channel Channel to match on.
472 * @param type TriggerMatchType to apply. */
c23c8659 473 void add_match(shared_ptr<Channel> channel, const TriggerMatchType *type);
b6f411ac
ML
474 /** Add a new match condition to this stage.
475 * @param channel Channel to match on.
476 * @param type TriggerMatchType to apply.
477 * @param value Threshold value. */
c23c8659
ML
478 void add_match(shared_ptr<Channel> channel, const TriggerMatchType *type, float value);
479protected:
480 vector<TriggerMatch *> matches;
481 TriggerStage(struct sr_trigger_stage *structure);
482 ~TriggerStage();
483 friend class Trigger;
484};
485
07443fd2 486/** A match condition in a trigger configuration */
bf52cc8c 487class SR_API TriggerMatch :
541c855e 488 public ParentOwned<TriggerMatch, TriggerStage, struct sr_trigger_match>
c23c8659
ML
489{
490public:
b6f411ac 491 /** Channel this condition matches on. */
c23c8659 492 shared_ptr<Channel> get_channel();
b6f411ac 493 /** Type of match. */
c23c8659 494 const TriggerMatchType *get_type();
b6f411ac 495 /** Threshold value. */
c23c8659
ML
496 float get_value();
497protected:
498 TriggerMatch(struct sr_trigger_match *structure, shared_ptr<Channel> channel);
499 ~TriggerMatch();
500 shared_ptr<Channel> channel;
501 friend class TriggerStage;
502};
503
504/** Type of datafeed callback */
505typedef function<void(shared_ptr<Device>, shared_ptr<Packet>)>
506 DatafeedCallbackFunction;
507
07443fd2 508/* Data required for C callback function to call a C++ datafeed callback */
c23c8659
ML
509class SR_PRIV DatafeedCallbackData
510{
511public:
512 void run(const struct sr_dev_inst *sdi,
513 const struct sr_datafeed_packet *pkt);
514protected:
515 DatafeedCallbackFunction callback;
516 DatafeedCallbackData(Session *session,
517 DatafeedCallbackFunction callback);
518 Session *session;
519 friend class Session;
520};
521
522/** Type of source callback */
523typedef function<bool(Glib::IOCondition)>
524 SourceCallbackFunction;
525
07443fd2 526/* Data required for C callback function to call a C++ source callback */
c23c8659
ML
527class SR_PRIV SourceCallbackData
528{
529public:
530 bool run(int revents);
531protected:
532 SourceCallbackData(shared_ptr<EventSource> source);
533 shared_ptr<EventSource> source;
534 friend class Session;
535};
536
07443fd2 537/** An I/O event source */
c23c8659
ML
538class SR_API EventSource
539{
540public:
b6f411ac
ML
541 /** Create an event source from a file descriptor.
542 * @param fd File descriptor.
543 * @param events GLib IOCondition event mask.
544 * @param timeout Timeout in milliseconds.
545 * @param callback Callback of the form callback(events) */
c23c8659
ML
546 static shared_ptr<EventSource> create(int fd, Glib::IOCondition events,
547 int timeout, SourceCallbackFunction callback);
b6f411ac
ML
548 /** Create an event source from a GLib PollFD
549 * @param pollfd GLib PollFD
550 * @param timeout Timeout in milliseconds.
551 * @param callback Callback of the form callback(events) */
c23c8659
ML
552 static shared_ptr<EventSource> create(Glib::PollFD pollfd, int timeout,
553 SourceCallbackFunction callback);
b6f411ac
ML
554 /** Create an event source from a GLib IOChannel
555 * @param channel GLib IOChannel.
556 * @param events GLib IOCondition event mask.
557 * @param timeout Timeout in milliseconds.
558 * @param callback Callback of the form callback(events) */
c23c8659
ML
559 static shared_ptr<EventSource> create(
560 Glib::RefPtr<Glib::IOChannel> channel, Glib::IOCondition events,
561 int timeout, SourceCallbackFunction callback);
562protected:
563 EventSource(int timeout, SourceCallbackFunction callback);
564 ~EventSource();
565 enum source_type {
566 SOURCE_FD,
567 SOURCE_POLLFD,
568 SOURCE_IOCHANNEL
569 } type;
570 int fd;
571 Glib::PollFD pollfd;
572 Glib::RefPtr<Glib::IOChannel> channel;
573 Glib::IOCondition events;
574 int timeout;
575 SourceCallbackFunction callback;
576 /** Deleter needed to allow shared_ptr use with protected destructor. */
577 class Deleter
578 {
579 public:
580 void operator()(EventSource *source) { delete source; }
581 };
582 friend class Deleter;
583 friend class Session;
584 friend class SourceCallbackData;
585};
586
07443fd2 587/** A sigrok session */
90e89c2a 588class SR_API Session : public UserOwned<Session, struct sr_session>
c23c8659
ML
589{
590public:
b6f411ac
ML
591 /** Add a device to this session.
592 * @param device Device to add. */
c23c8659
ML
593 void add_device(shared_ptr<Device> device);
594 /** List devices attached to this session. */
595 vector<shared_ptr<Device> > get_devices();
596 /** Remove all devices from this session. */
597 void remove_devices();
b6f411ac
ML
598 /** Add a datafeed callback to this session.
599 * @param callback Callback of the form callback(Device, Packet). */
c23c8659
ML
600 void add_datafeed_callback(DatafeedCallbackFunction callback);
601 /** Remove all datafeed callbacks from this session. */
602 void remove_datafeed_callbacks();
b6f411ac
ML
603 /** Add an I/O event source.
604 * @param source EventSource to add. */
c23c8659 605 void add_source(shared_ptr<EventSource> source);
b6f411ac
ML
606 /** Remove an event source.
607 * @param source EventSource to remove. */
c23c8659
ML
608 void remove_source(shared_ptr<EventSource> source);
609 /** Start the session. */
610 void start();
611 /** Run the session event loop. */
612 void run();
613 /** Stop the session. */
614 void stop();
b6f411ac
ML
615 /** Begin saving session to a file.
616 * @param filename File name string. */
c23c8659 617 void begin_save(string filename);
b6f411ac
ML
618 /** Append a packet to the session file being saved.
619 * @param packet Packet to append. */
1d67cfb4
ML
620 void append(shared_ptr<Packet> packet);
621 /** Append raw logic data to the session file being saved. */
622 void append(void *data, size_t length, unsigned int unit_size);
6fa0eb86
ML
623 /** Get current trigger setting. */
624 shared_ptr<Trigger> get_trigger();
b6f411ac
ML
625 /** Set trigger setting.
626 * @param trigger Trigger object to use. */
6fa0eb86 627 void set_trigger(shared_ptr<Trigger> trigger);
c23c8659
ML
628protected:
629 Session(shared_ptr<Context> context);
630 Session(shared_ptr<Context> context, string filename);
631 ~Session();
c23c8659
ML
632 const shared_ptr<Context> context;
633 map<const struct sr_dev_inst *, shared_ptr<Device> > devices;
634 vector<DatafeedCallbackData *> datafeed_callbacks;
635 map<shared_ptr<EventSource>, SourceCallbackData *> source_callbacks;
636 bool saving;
637 bool save_initialized;
638 string save_filename;
639 uint64_t save_samplerate;
6fa0eb86 640 shared_ptr<Trigger> trigger;
c23c8659
ML
641 /** Deleter needed to allow shared_ptr use with protected destructor. */
642 class Deleter
643 {
644 public:
645 void operator()(Session *session) { delete session; }
646 };
647 friend class Deleter;
648 friend class Context;
649 friend class DatafeedCallbackData;
650};
651
07443fd2 652/** A packet on the session datafeed */
90e89c2a 653class SR_API Packet : public UserOwned<Packet, const struct sr_datafeed_packet>
c23c8659
ML
654{
655public:
90ba83f2
ML
656 /** Type of this packet. */
657 const PacketType *get_type();
c23c8659 658 /** Payload of this packet. */
2928f47d 659 shared_ptr<PacketPayload> get_payload();
c23c8659 660protected:
2928f47d
ML
661 Packet(shared_ptr<Device> device,
662 const struct sr_datafeed_packet *structure);
c23c8659 663 ~Packet();
2928f47d 664 shared_ptr<Device> device;
c23c8659
ML
665 PacketPayload *payload;
666 /** Deleter needed to allow shared_ptr use with protected destructor. */
667 class Deleter
668 {
669 public:
670 void operator()(Packet *packet) { delete packet; }
671 };
672 friend class Deleter;
673 friend class Session;
674 friend class Output;
675 friend class DatafeedCallbackData;
2928f47d
ML
676 friend class Header;
677 friend class Meta;
678 friend class Logic;
679 friend class Analog;
c23c8659
ML
680};
681
07443fd2 682/** Abstract base class for datafeed packet payloads */
c23c8659
ML
683class SR_API PacketPayload
684{
685protected:
686 PacketPayload();
687 virtual ~PacketPayload() = 0;
4cd883a7 688 virtual shared_ptr<PacketPayload> get_shared_pointer(Packet *parent) = 0;
2928f47d
ML
689 /** Deleter needed to allow shared_ptr use with protected destructor. */
690 class Deleter
691 {
692 public:
693 void operator()(PacketPayload *payload) { delete payload; }
694 };
695 friend class Deleter;
c23c8659
ML
696 friend class Packet;
697 friend class Output;
698};
699
2928f47d 700/** Payload of a datafeed header packet */
4cd883a7 701class SR_API Header :
541c855e 702 public ParentOwned<Header, Packet, const struct sr_datafeed_header>,
4cd883a7 703 public PacketPayload
2928f47d
ML
704{
705public:
b6f411ac 706 /* Feed version number. */
2928f47d 707 int get_feed_version();
b6f411ac 708 /* Start time of this session. */
2928f47d
ML
709 Glib::TimeVal get_start_time();
710protected:
711 Header(const struct sr_datafeed_header *structure);
712 ~Header();
4cd883a7 713 shared_ptr<PacketPayload> get_shared_pointer(Packet *parent);
2928f47d
ML
714 friend class Packet;
715};
716
717/** Payload of a datafeed metadata packet */
4cd883a7 718class SR_API Meta :
541c855e 719 public ParentOwned<Meta, Packet, const struct sr_datafeed_meta>,
4cd883a7 720 public PacketPayload
2928f47d
ML
721{
722public:
b6f411ac 723 /* Mapping of (ConfigKey, value) pairs. */
2928f47d
ML
724 map<const ConfigKey *, Glib::VariantBase> get_config();
725protected:
726 Meta(const struct sr_datafeed_meta *structure);
727 ~Meta();
4cd883a7 728 shared_ptr<PacketPayload> get_shared_pointer(Packet *parent);
2928f47d
ML
729 map<const ConfigKey *, Glib::VariantBase> config;
730 friend class Packet;
731};
732
07443fd2 733/** Payload of a datafeed packet with logic data */
4cd883a7 734class SR_API Logic :
541c855e 735 public ParentOwned<Logic, Packet, const struct sr_datafeed_logic>,
4cd883a7 736 public PacketPayload
c23c8659 737{
2928f47d
ML
738public:
739 /* Pointer to data. */
740 void *get_data_pointer();
741 /* Data length in bytes. */
742 size_t get_data_length();
743 /* Size of each sample in bytes. */
744 unsigned int get_unit_size();
c23c8659
ML
745protected:
746 Logic(const struct sr_datafeed_logic *structure);
747 ~Logic();
4cd883a7 748 shared_ptr<PacketPayload> get_shared_pointer(Packet *parent);
c23c8659
ML
749 friend class Packet;
750};
751
07443fd2 752/** Payload of a datafeed packet with analog data */
4cd883a7 753class SR_API Analog :
541c855e 754 public ParentOwned<Analog, Packet, const struct sr_datafeed_analog>,
4cd883a7 755 public PacketPayload
c23c8659
ML
756{
757public:
2928f47d
ML
758 /** Pointer to data. */
759 float *get_data_pointer();
c23c8659
ML
760 /** Number of samples in this packet. */
761 unsigned int get_num_samples();
2928f47d
ML
762 /** Channels for which this packet contains data. */
763 vector<shared_ptr<Channel> > get_channels();
c23c8659
ML
764 /** Measured quantity of the samples in this packet. */
765 const Quantity *get_mq();
766 /** Unit of the samples in this packet. */
767 const Unit *get_unit();
768 /** Measurement flags associated with the samples in this packet. */
769 vector<const QuantityFlag *> get_mq_flags();
770protected:
771 Analog(const struct sr_datafeed_analog *structure);
772 ~Analog();
4cd883a7 773 shared_ptr<PacketPayload> get_shared_pointer(Packet *parent);
c23c8659
ML
774 friend class Packet;
775};
776
07443fd2 777/** An input format supported by the library */
c23c8659 778class SR_API InputFormat :
541c855e 779 public ParentOwned<InputFormat, Context, const struct sr_input_module>
c23c8659
ML
780{
781public:
782 /** Name of this input format. */
783 string get_name();
784 /** Description of this input format. */
785 string get_description();
ca3291e3
ML
786 /** Options supported by this input format. */
787 map<string, shared_ptr<Option> > get_options();
788 /** Create an input using this input format.
789 * @param options Mapping of (option name, value) pairs. */
790 shared_ptr<Input> create_input(map<string, Glib::VariantBase> options = {});
c23c8659 791protected:
ca3291e3 792 InputFormat(const struct sr_input_module *structure);
c23c8659
ML
793 ~InputFormat();
794 friend class Context;
ca3291e3 795 friend class InputDevice;
c23c8659
ML
796};
797
ca3291e3 798/** An input instance (an input format applied to a file or stream) */
90e89c2a 799class SR_API Input : public UserOwned<Input, const struct sr_input>
c23c8659
ML
800{
801public:
ca3291e3
ML
802 /** Virtual device associated with this input. */
803 shared_ptr<InputDevice> get_device();
804 /** Send next stream data.
805 * @param data Next stream data. */
806 void send(string data);
c23c8659 807protected:
ca3291e3
ML
808 Input(shared_ptr<Context> context, const struct sr_input *structure);
809 ~Input();
ca3291e3
ML
810 shared_ptr<Context> context;
811 InputDevice *device;
c23c8659
ML
812 /** Deleter needed to allow shared_ptr use with protected destructor. */
813 class Deleter
814 {
815 public:
ca3291e3 816 void operator()(Input *input) { delete input; }
c23c8659
ML
817 };
818 friend class Deleter;
ca3291e3 819 friend class Context;
c23c8659
ML
820 friend class InputFormat;
821};
822
ca3291e3 823/** A virtual device associated with an input */
6e5240f4 824class SR_API InputDevice :
541c855e 825 public ParentOwned<InputDevice, Input, struct sr_dev_inst>,
6e5240f4 826 public Device
ca3291e3
ML
827{
828protected:
829 InputDevice(shared_ptr<Input> input, struct sr_dev_inst *sdi);
830 ~InputDevice();
d01d2314 831 shared_ptr<Device> get_shared_from_this();
ca3291e3
ML
832 shared_ptr<Input> input;
833 /** Deleter needed to allow shared_ptr use with protected destructor. */
834 class Deleter
835 {
836 public:
837 void operator()(InputDevice *device) { delete device; }
838 };
839 friend class Deleter;
840 friend class Input;
841};
842
58aa1f83 843/** An option used by an output format */
90e89c2a 844class SR_API Option : public UserOwned<Option, const struct sr_option>
58aa1f83
ML
845{
846public:
847 /** Short name of this option suitable for command line usage. */
848 string get_id();
849 /** Short name of this option suitable for GUI usage. */
850 string get_name();
851 /** Description of this option in a sentence. */
852 string get_description();
853 /** Default value for this option. */
854 Glib::VariantBase get_default_value();
855 /** Possible values for this option, if a limited set. */
856 vector<Glib::VariantBase> get_values();
857protected:
858 Option(const struct sr_option *structure,
70d3b20b 859 shared_ptr<const struct sr_option *> structure_array);
58aa1f83 860 ~Option();
70d3b20b 861 shared_ptr<const struct sr_option *> structure_array;
58aa1f83
ML
862 /** Deleter needed to allow shared_ptr use with protected destructor. */
863 class Deleter
864 {
865 public:
866 void operator()(Option *option) { delete option; }
867 };
868 friend class Deleter;
43942280 869 friend class InputFormat;
58aa1f83
ML
870 friend class OutputFormat;
871};
872
07443fd2 873/** An output format supported by the library */
c23c8659 874class SR_API OutputFormat :
541c855e 875 public ParentOwned<OutputFormat, Context, const struct sr_output_module>
c23c8659
ML
876{
877public:
878 /** Name of this output format. */
879 string get_name();
880 /** Description of this output format. */
881 string get_description();
58aa1f83
ML
882 /** Options supported by this output format. */
883 map<string, shared_ptr<Option> > get_options();
b6f411ac
ML
884 /** Create an output using this format.
885 * @param device Device to output for.
886 * @param options Mapping of (option name, value) pairs. */
58aa1f83
ML
887 shared_ptr<Output> create_output(shared_ptr<Device> device,
888 map<string, Glib::VariantBase> options = {});
c23c8659 889protected:
58aa1f83 890 OutputFormat(const struct sr_output_module *structure);
c23c8659
ML
891 ~OutputFormat();
892 friend class Context;
893 friend class Output;
894};
895
07443fd2 896/** An output instance (an output format applied to a device) */
90e89c2a 897class SR_API Output : public UserOwned<Output, const struct sr_output>
c23c8659
ML
898{
899public:
b6f411ac
ML
900 /** Update output with data from the given packet.
901 * @param packet Packet to handle. */
c23c8659
ML
902 string receive(shared_ptr<Packet> packet);
903protected:
904 Output(shared_ptr<OutputFormat> format, shared_ptr<Device> device);
905 Output(shared_ptr<OutputFormat> format,
58aa1f83 906 shared_ptr<Device> device, map<string, Glib::VariantBase> options);
c23c8659 907 ~Output();
c23c8659
ML
908 const shared_ptr<OutputFormat> format;
909 const shared_ptr<Device> device;
58aa1f83 910 const map<string, Glib::VariantBase> options;
c23c8659
ML
911 /** Deleter needed to allow shared_ptr use with protected destructor. */
912 class Deleter
913 {
914 public:
915 void operator()(Output *output) { delete output; }
916 };
917 friend class Deleter;
918 friend class OutputFormat;
919};
920
921/** Base class for objects which wrap an enumeration value from libsigrok */
922template <typename T> class SR_API EnumValue
923{
924public:
925 /** The enum constant associated with this value. */
926 T get_id() const { return id; }
927 /** The name associated with this value. */
928 string get_name() const { return name; }
929protected:
930 EnumValue(T id, const char name[]) : id(id), name(name) {}
931 ~EnumValue() {}
932 const T id;
933 const string name;
934};
935
936#include "enums.hpp"
937
938}
939
940#endif // LIBSIGROK_HPP