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