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