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