]> sigrok.org Git - libsigrok.git/blob - src/libsigrok-internal.h
libsigrok-internal.h: nit, alpha-sort include directives
[libsigrok.git] / src / libsigrok-internal.h
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 /**
21  * @file
22  *
23  * @internal
24  */
25
26 #ifndef LIBSIGROK_LIBSIGROK_INTERNAL_H
27 #define LIBSIGROK_LIBSIGROK_INTERNAL_H
28
29 #include <glib.h>
30 #ifdef HAVE_LIBSERIALPORT
31 #include <libserialport.h>
32 #endif
33 #ifdef HAVE_LIBUSB_1_0
34 #include <libusb.h>
35 #endif
36 #include <stdarg.h>
37 #include <stdio.h>
38
39 struct zip;
40 struct zip_stat;
41
42 /**
43  * @file
44  *
45  * libsigrok private header file, only to be used internally.
46  */
47
48 /*--- Macros ----------------------------------------------------------------*/
49
50 #ifndef ARRAY_SIZE
51 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
52 #endif
53
54 #ifndef ARRAY_AND_SIZE
55 #define ARRAY_AND_SIZE(a) (a), ARRAY_SIZE(a)
56 #endif
57
58 /**
59  * Read a 8 bits unsigned integer out of memory.
60  * @param x a pointer to the input memory
61  * @return the corresponding unsigned integer
62  */
63 #define R8(x)     ((unsigned)((const uint8_t*)(x))[0])
64
65 /**
66  * Read a 16 bits big endian unsigned integer out of memory.
67  * @param x a pointer to the input memory
68  * @return the corresponding unsigned integer
69  */
70 #define RB16(x)  (((unsigned)((const uint8_t*)(x))[0] <<  8) | \
71                    (unsigned)((const uint8_t*)(x))[1])
72
73 /**
74  * Read a 16 bits little endian unsigned integer out of memory.
75  * @param x a pointer to the input memory
76  * @return the corresponding unsigned integer
77  */
78 #define RL16(x)  (((unsigned)((const uint8_t*)(x))[1] <<  8) | \
79                    (unsigned)((const uint8_t*)(x))[0])
80
81 /**
82  * Read a 16 bits big endian signed integer out of memory.
83  * @param x a pointer to the input memory
84  * @return the corresponding signed integer
85  */
86 #define RB16S(x)  ((int16_t) \
87                   (((unsigned)((const uint8_t*)(x))[0] <<  8) | \
88                     (unsigned)((const uint8_t*)(x))[1]))
89
90 /**
91  * Read a 16 bits little endian signed integer out of memory.
92  * @param x a pointer to the input memory
93  * @return the corresponding signed integer
94  */
95 #define RL16S(x)  ((int16_t) \
96                   (((unsigned)((const uint8_t*)(x))[1] <<  8) | \
97                     (unsigned)((const uint8_t*)(x))[0]))
98
99 /**
100  * Read a 32 bits big endian unsigned integer out of memory.
101  * @param x a pointer to the input memory
102  * @return the corresponding unsigned integer
103  */
104 #define RB32(x)  (((unsigned)((const uint8_t*)(x))[0] << 24) | \
105                   ((unsigned)((const uint8_t*)(x))[1] << 16) | \
106                   ((unsigned)((const uint8_t*)(x))[2] <<  8) | \
107                    (unsigned)((const uint8_t*)(x))[3])
108
109 /**
110  * Read a 32 bits little endian unsigned integer out of memory.
111  * @param x a pointer to the input memory
112  * @return the corresponding unsigned integer
113  */
114 #define RL32(x)  (((unsigned)((const uint8_t*)(x))[3] << 24) | \
115                   ((unsigned)((const uint8_t*)(x))[2] << 16) | \
116                   ((unsigned)((const uint8_t*)(x))[1] <<  8) | \
117                    (unsigned)((const uint8_t*)(x))[0])
118
119 /**
120  * Read a 32 bits big endian signed integer out of memory.
121  * @param x a pointer to the input memory
122  * @return the corresponding signed integer
123  */
124 #define RB32S(x)  ((int32_t) \
125                  (((unsigned)((const uint8_t*)(x))[0] << 24) | \
126                   ((unsigned)((const uint8_t*)(x))[1] << 16) | \
127                   ((unsigned)((const uint8_t*)(x))[2] <<  8) | \
128                    (unsigned)((const uint8_t*)(x))[3]))
129
130 /**
131  * Read a 32 bits little endian signed integer out of memory.
132  * @param x a pointer to the input memory
133  * @return the corresponding signed integer
134  */
135 #define RL32S(x)  ((int32_t) \
136                  (((unsigned)((const uint8_t*)(x))[3] << 24) | \
137                   ((unsigned)((const uint8_t*)(x))[2] << 16) | \
138                   ((unsigned)((const uint8_t*)(x))[1] <<  8) | \
139                    (unsigned)((const uint8_t*)(x))[0]))
140
141 /**
142  * Read a 64 bits big endian unsigned integer out of memory.
143  * @param x a pointer to the input memory
144  * @return the corresponding unsigned integer
145  */
146 #define RB64(x)  (((uint64_t)((const uint8_t*)(x))[0] << 56) | \
147                   ((uint64_t)((const uint8_t*)(x))[1] << 48) | \
148                   ((uint64_t)((const uint8_t*)(x))[2] << 40) | \
149                   ((uint64_t)((const uint8_t*)(x))[3] << 32) | \
150                   ((uint64_t)((const uint8_t*)(x))[4] << 24) | \
151                   ((uint64_t)((const uint8_t*)(x))[5] << 16) | \
152                   ((uint64_t)((const uint8_t*)(x))[6] <<  8) | \
153                    (uint64_t)((const uint8_t*)(x))[7])
154
155 /**
156  * Read a 64 bits little endian unsigned integer out of memory.
157  * @param x a pointer to the input memory
158  * @return the corresponding unsigned integer
159  */
160 #define RL64(x)  (((uint64_t)((const uint8_t*)(x))[7] << 56) | \
161                   ((uint64_t)((const uint8_t*)(x))[6] << 48) | \
162                   ((uint64_t)((const uint8_t*)(x))[5] << 40) | \
163                   ((uint64_t)((const uint8_t*)(x))[4] << 32) | \
164                   ((uint64_t)((const uint8_t*)(x))[3] << 24) | \
165                   ((uint64_t)((const uint8_t*)(x))[2] << 16) | \
166                   ((uint64_t)((const uint8_t*)(x))[1] <<  8) | \
167                    (uint64_t)((const uint8_t*)(x))[0])
168
169 /**
170  * Read a 64 bits little endian signed integer out of memory.
171  * @param x a pointer to the input memory
172  * @return the corresponding unsigned integer
173  */
174 #define RL64S(x)  ((int64_t) \
175                  (((uint64_t)((const uint8_t*)(x))[7] << 56) | \
176                   ((uint64_t)((const uint8_t*)(x))[6] << 48) | \
177                   ((uint64_t)((const uint8_t*)(x))[5] << 40) | \
178                   ((uint64_t)((const uint8_t*)(x))[4] << 32) | \
179                   ((uint64_t)((const uint8_t*)(x))[3] << 24) | \
180                   ((uint64_t)((const uint8_t*)(x))[2] << 16) | \
181                   ((uint64_t)((const uint8_t*)(x))[1] <<  8) | \
182                    (uint64_t)((const uint8_t*)(x))[0]))
183
184 /**
185  * Read a 32 bits big endian float out of memory.
186  * @param x a pointer to the input memory
187  * @return the corresponding float
188  */
189 #define RBFL(x)  ((union { uint32_t u; float f; }) { .u = RB32(x) }.f)
190
191 /**
192  * Read a 32 bits little endian float out of memory.
193  * @param x a pointer to the input memory
194  * @return the corresponding float
195  */
196 #define RLFL(x)  ((union { uint32_t u; float f; }) { .u = RL32(x) }.f)
197
198 /**
199  * Write a 8 bits unsigned integer to memory.
200  * @param p a pointer to the output memory
201  * @param x the input unsigned integer
202  */
203 #define W8(p, x)    do { ((uint8_t*)(p))[0] = (uint8_t) (x);      } while (0)
204
205 /**
206  * Write a 16 bits unsigned integer to memory stored as big endian.
207  * @param p a pointer to the output memory
208  * @param x the input unsigned integer
209  */
210 #define WB16(p, x)  do { ((uint8_t*)(p))[1] = (uint8_t) (x);      \
211                          ((uint8_t*)(p))[0] = (uint8_t)((x)>>8);  } while (0)
212
213 /**
214  * Write a 16 bits unsigned integer to memory stored as little endian.
215  * @param p a pointer to the output memory
216  * @param x the input unsigned integer
217  */
218 #define WL16(p, x)  do { ((uint8_t*)(p))[0] = (uint8_t) (x);      \
219                          ((uint8_t*)(p))[1] = (uint8_t)((x)>>8);  } while (0)
220
221 /**
222  * Write a 32 bits unsigned integer to memory stored as big endian.
223  * @param p a pointer to the output memory
224  * @param x the input unsigned integer
225  */
226 #define WB32(p, x)  do { ((uint8_t*)(p))[3] = (uint8_t) (x);      \
227                          ((uint8_t*)(p))[2] = (uint8_t)((x)>>8);  \
228                          ((uint8_t*)(p))[1] = (uint8_t)((x)>>16); \
229                          ((uint8_t*)(p))[0] = (uint8_t)((x)>>24); } while (0)
230
231 /**
232  * Write a 32 bits unsigned integer to memory stored as little endian.
233  * @param p a pointer to the output memory
234  * @param x the input unsigned integer
235  */
236 #define WL32(p, x)  do { ((uint8_t*)(p))[0] = (uint8_t) (x);      \
237                          ((uint8_t*)(p))[1] = (uint8_t)((x)>>8);  \
238                          ((uint8_t*)(p))[2] = (uint8_t)((x)>>16); \
239                          ((uint8_t*)(p))[3] = (uint8_t)((x)>>24); } while (0)
240
241 /**
242  * Write a 32 bits float to memory stored as big endian.
243  * @param p a pointer to the output memory
244  * @param x the input float
245  */
246 #define WBFL(p, x)  WB32(p, (union { uint32_t u; float f; }) { .f = x }.u)
247
248 /**
249  * Write a 32 bits float to memory stored as little endian.
250  * @param p a pointer to the output memory
251  * @param x the input float
252  */
253 #define WLFL(p, x)  WL32(p, (union { uint32_t u; float f; }) { .f = x }.u)
254
255 /* Portability fixes for FreeBSD. */
256 #ifdef __FreeBSD__
257 #define LIBUSB_CLASS_APPLICATION 0xfe
258 #define libusb_has_capability(x) 0
259 #define libusb_handle_events_timeout_completed(ctx, tv, c) \
260         libusb_handle_events_timeout(ctx, tv)
261 #endif
262
263 /* Static definitions of structs ending with an all-zero entry are a
264  * problem when compiling with -Wmissing-field-initializers: GCC
265  * suppresses the warning only with { 0 }, clang wants { } */
266 #ifdef __clang__
267 #define ALL_ZERO { }
268 #else
269 #define ALL_ZERO { 0 }
270 #endif
271
272 #ifdef __APPLE__
273 #define SR_DRIVER_LIST_SECTION "__DATA,__sr_driver_list"
274 #else
275 #define SR_DRIVER_LIST_SECTION "sr_driver_list"
276 #endif
277
278 /**
279  * Register a list of hardware drivers.
280  *
281  * This macro can be used to register multiple hardware drivers to the library.
282  * This is useful when a driver supports multiple similar but slightly
283  * different devices that require different sr_dev_driver struct definitions.
284  *
285  * For registering only a single driver see SR_REGISTER_DEV_DRIVER().
286  *
287  * Example:
288  * @code{c}
289  * #define MY_DRIVER(_name) \
290  *     &(struct sr_dev_driver){ \
291  *         .name = _name, \
292  *         ...
293  *     };
294  *
295  * SR_REGISTER_DEV_DRIVER_LIST(my_driver_infos,
296  *     MY_DRIVER("driver 1"),
297  *     MY_DRIVER("driver 2"),
298  *     ...
299  * );
300  * @endcode
301  *
302  * @param name Name to use for the driver list identifier.
303  * @param ... Comma separated list of pointers to sr_dev_driver structs.
304  */
305 #define SR_REGISTER_DEV_DRIVER_LIST(name, ...) \
306         static const struct sr_dev_driver *name[] \
307                 __attribute__((section (SR_DRIVER_LIST_SECTION), used, \
308                         aligned(sizeof(struct sr_dev_driver *)))) \
309                 = { \
310                         __VA_ARGS__ \
311                 };
312
313 /**
314  * Register a hardware driver.
315  *
316  * This macro is used to register a hardware driver with the library. It has
317  * to be used in order to make the driver accessible to applications using the
318  * library.
319  *
320  * The macro invocation should be placed directly under the struct
321  * sr_dev_driver definition.
322  *
323  * Example:
324  * @code{c}
325  * static struct sr_dev_driver driver_info = {
326  *     .name = "driver",
327  *     ....
328  * };
329  * SR_REGISTER_DEV_DRIVER(driver_info);
330  * @endcode
331  *
332  * @param name Identifier name of sr_dev_driver struct to register.
333  */
334 #define SR_REGISTER_DEV_DRIVER(name) \
335         SR_REGISTER_DEV_DRIVER_LIST(name##_list, &name);
336
337 SR_API void sr_drivers_init(struct sr_context *context);
338
339 struct sr_context {
340         struct sr_dev_driver **driver_list;
341 #ifdef HAVE_LIBUSB_1_0
342         libusb_context *libusb_ctx;
343 #endif
344         sr_resource_open_callback resource_open_cb;
345         sr_resource_close_callback resource_close_cb;
346         sr_resource_read_callback resource_read_cb;
347         void *resource_cb_data;
348 };
349
350 /** Input module metadata keys. */
351 enum sr_input_meta_keys {
352         /** The input filename, if there is one. */
353         SR_INPUT_META_FILENAME = 0x01,
354         /** The input file's size in bytes. */
355         SR_INPUT_META_FILESIZE = 0x02,
356         /** The first 128 bytes of the file, provided as a GString. */
357         SR_INPUT_META_HEADER = 0x04,
358
359         /** The module cannot identify a file without this metadata. */
360         SR_INPUT_META_REQUIRED = 0x80,
361 };
362
363 /** Input (file) module struct. */
364 struct sr_input {
365         /**
366          * A pointer to this input module's 'struct sr_input_module'.
367          */
368         const struct sr_input_module *module;
369         GString *buf;
370         struct sr_dev_inst *sdi;
371         gboolean sdi_ready;
372         void *priv;
373 };
374
375 /** Input (file) module driver. */
376 struct sr_input_module {
377         /**
378          * A unique ID for this input module, suitable for use in command-line
379          * clients, [a-z0-9-]. Must not be NULL.
380          */
381         const char *id;
382
383         /**
384          * A unique name for this input module, suitable for use in GUI
385          * clients, can contain UTF-8. Must not be NULL.
386          */
387         const char *name;
388
389         /**
390          * A short description of the input module. Must not be NULL.
391          *
392          * This can be displayed by frontends, e.g. when selecting the input
393          * module for saving a file.
394          */
395         const char *desc;
396
397         /**
398          * A NULL terminated array of strings containing a list of file name
399          * extensions typical for the input file format, or NULL if there is
400          * no typical extension for this file format.
401          */
402         const char *const *exts;
403
404         /**
405          * Zero-terminated list of metadata items the module needs to be able
406          * to identify an input stream. Can be all-zero, if the module cannot
407          * identify streams at all, i.e. has to be forced into use.
408          *
409          * Each item is one of:
410          *   SR_INPUT_META_FILENAME
411          *   SR_INPUT_META_FILESIZE
412          *   SR_INPUT_META_HEADER
413          *
414          * If the high bit (SR_INPUT META_REQUIRED) is set, the module cannot
415          * identify a stream without the given metadata.
416          */
417         const uint8_t metadata[8];
418
419         /**
420          * Returns a NULL-terminated list of options this module can take.
421          * Can be NULL, if the module has no options.
422          */
423         const struct sr_option *(*options) (void);
424
425         /**
426          * Check if this input module can load and parse the specified stream.
427          *
428          * @param[in] metadata Metadata the module can use to identify the stream.
429          * @param[out] confidence "Strength" of the detection.
430          *   Specialized handlers can take precedence over generic/basic support.
431          *
432          * @retval SR_OK This module knows the format.
433          * @retval SR_ERR_NA There wasn't enough data for this module to
434          *   positively identify the format.
435          * @retval SR_ERR_DATA This module knows the format, but cannot handle
436          *   it. This means the stream is either corrupt, or indicates a
437          *   feature that the module does not support.
438          * @retval SR_ERR This module does not know the format.
439          *
440          * Lower numeric values of 'confidence' mean that the input module
441          * stronger believes in its capability to handle this specific format.
442          * This way, multiple input modules can claim support for a format,
443          * and the application can pick the best match, or try fallbacks
444          * in case of errors. This approach also copes with formats that
445          * are unreliable to detect in the absence of magic signatures.
446          */
447         int (*format_match) (GHashTable *metadata, unsigned int *confidence);
448
449         /**
450          * Initialize the input module.
451          *
452          * @retval SR_OK Success
453          * @retval other Negative error code.
454          */
455         int (*init) (struct sr_input *in, GHashTable *options);
456
457         /**
458          * Send data to the specified input instance.
459          *
460          * When an input module instance is created with sr_input_new(), this
461          * function is used to feed data to the instance.
462          *
463          * As enough data gets fed into this function to completely populate
464          * the device instance associated with this input instance, this is
465          * guaranteed to return the moment it's ready. This gives the caller
466          * the chance to examine the device instance, attach session callbacks
467          * and so on.
468          *
469          * @retval SR_OK Success
470          * @retval other Negative error code.
471          */
472         int (*receive) (struct sr_input *in, GString *buf);
473
474         /**
475          * Signal the input module no more data will come.
476          *
477          * This will cause the module to process any data it may have buffered.
478          * The SR_DF_END packet will also typically be sent at this time.
479          */
480         int (*end) (struct sr_input *in);
481
482         /**
483          * Reset the input module's input handling structures.
484          *
485          * Causes the input module to reset its internal state so that we can
486          * re-send the input data from the beginning without having to
487          * re-create the entire input module.
488          *
489          * @retval SR_OK Success.
490          * @retval other Negative error code.
491          */
492         int (*reset) (struct sr_input *in);
493
494         /**
495          * This function is called after the caller is finished using
496          * the input module, and can be used to free any internal
497          * resources the module may keep.
498          *
499          * This function is optional.
500          *
501          * @retval SR_OK Success
502          * @retval other Negative error code.
503          */
504         void (*cleanup) (struct sr_input *in);
505 };
506
507 /** Output module instance. */
508 struct sr_output {
509         /** A pointer to this output's module. */
510         const struct sr_output_module *module;
511
512         /**
513          * The device for which this output module is creating output. This
514          * can be used by the module to find out channel names and numbers.
515          */
516         const struct sr_dev_inst *sdi;
517
518         /**
519          * The name of the file that the data should be written to.
520          */
521         const char *filename;
522
523         /**
524          * A generic pointer which can be used by the module to keep internal
525          * state between calls into its callback functions.
526          *
527          * For example, the module might store a pointer to a chunk of output
528          * there, and only flush it when it reaches a certain size.
529          */
530         void *priv;
531 };
532
533 /** Output module driver. */
534 struct sr_output_module {
535         /**
536          * A unique ID for this output module, suitable for use in command-line
537          * clients, [a-z0-9-]. Must not be NULL.
538          */
539         const char *id;
540
541         /**
542          * A unique name for this output module, suitable for use in GUI
543          * clients, can contain UTF-8. Must not be NULL.
544          */
545         const char *name;
546
547         /**
548          * A short description of the output module. Must not be NULL.
549          *
550          * This can be displayed by frontends, e.g. when selecting the output
551          * module for saving a file.
552          */
553         const char *desc;
554
555         /**
556          * A NULL terminated array of strings containing a list of file name
557          * extensions typical for the input file format, or NULL if there is
558          * no typical extension for this file format.
559          */
560         const char *const *exts;
561
562         /**
563          * Bitfield containing flags that describe certain properties
564          * this output module may or may not have.
565          * @see sr_output_flags
566          */
567         const uint64_t flags;
568
569         /**
570          * Returns a NULL-terminated list of options this module can take.
571          * Can be NULL, if the module has no options.
572          */
573         const struct sr_option *(*options) (void);
574
575         /**
576          * This function is called once, at the beginning of an output stream.
577          *
578          * The device struct will be available in the output struct passed in,
579          * as well as the param field -- which may be NULL or an empty string,
580          * if no parameter was passed.
581          *
582          * The module can use this to initialize itself, create a struct for
583          * keeping state and storing it in the <code>internal</code> field.
584          *
585          * @param o Pointer to the respective 'struct sr_output'.
586          *
587          * @retval SR_OK Success
588          * @retval other Negative error code.
589          */
590         int (*init) (struct sr_output *o, GHashTable *options);
591
592         /**
593          * This function is passed a copy of every packet in the data feed.
594          * Any output generated by the output module in response to the
595          * packet should be returned in a newly allocated GString
596          * <code>out</code>, which will be freed by the caller.
597          *
598          * Packets not of interest to the output module can just be ignored,
599          * and the <code>out</code> parameter set to NULL.
600          *
601          * @param o Pointer to the respective 'struct sr_output'.
602          * @param sdi The device instance that generated the packet.
603          * @param packet The complete packet.
604          * @param out A pointer where a GString * should be stored if
605          * the module generates output, or NULL if not.
606          *
607          * @retval SR_OK Success
608          * @retval other Negative error code.
609          */
610         int (*receive) (const struct sr_output *o,
611                         const struct sr_datafeed_packet *packet, GString **out);
612
613         /**
614          * This function is called after the caller is finished using
615          * the output module, and can be used to free any internal
616          * resources the module may keep.
617          *
618          * @retval SR_OK Success
619          * @retval other Negative error code.
620          */
621         int (*cleanup) (struct sr_output *o);
622 };
623
624 /** Transform module instance. */
625 struct sr_transform {
626         /** A pointer to this transform's module. */
627         const struct sr_transform_module *module;
628
629         /**
630          * The device for which this transform module is used. This
631          * can be used by the module to find out channel names and numbers.
632          */
633         const struct sr_dev_inst *sdi;
634
635         /**
636          * A generic pointer which can be used by the module to keep internal
637          * state between calls into its callback functions.
638          */
639         void *priv;
640 };
641
642 struct sr_transform_module {
643         /**
644          * A unique ID for this transform module, suitable for use in
645          * command-line clients, [a-z0-9-]. Must not be NULL.
646          */
647         const char *id;
648
649         /**
650          * A unique name for this transform module, suitable for use in GUI
651          * clients, can contain UTF-8. Must not be NULL.
652          */
653         const char *name;
654
655         /**
656          * A short description of the transform module. Must not be NULL.
657          *
658          * This can be displayed by frontends, e.g. when selecting
659          * which transform module(s) to add.
660          */
661         const char *desc;
662
663         /**
664          * Returns a NULL-terminated list of options this transform module
665          * can take. Can be NULL, if the transform module has no options.
666          */
667         const struct sr_option *(*options) (void);
668
669         /**
670          * This function is called once, at the beginning of a stream.
671          *
672          * @param t Pointer to the respective 'struct sr_transform'.
673          * @param options Hash table of options for this transform module.
674          *                Can be NULL if no options are to be used.
675          *
676          * @retval SR_OK Success
677          * @retval other Negative error code.
678          */
679         int (*init) (struct sr_transform *t, GHashTable *options);
680
681         /**
682          * This function is passed a pointer to every packet in the data feed.
683          *
684          * It can either return (in packet_out) a pointer to another packet
685          * (possibly the exact same packet it got as input), or NULL.
686          *
687          * @param t Pointer to the respective 'struct sr_transform'.
688          * @param packet_in Pointer to a datafeed packet.
689          * @param packet_out Pointer to the resulting datafeed packet after
690          *                   this function was run. If NULL, the transform
691          *                   module intentionally didn't output a new packet.
692          *
693          * @retval SR_OK Success
694          * @retval other Negative error code.
695          */
696         int (*receive) (const struct sr_transform *t,
697                         struct sr_datafeed_packet *packet_in,
698                         struct sr_datafeed_packet **packet_out);
699
700         /**
701          * This function is called after the caller is finished using
702          * the transform module, and can be used to free any internal
703          * resources the module may keep.
704          *
705          * @retval SR_OK Success
706          * @retval other Negative error code.
707          */
708         int (*cleanup) (struct sr_transform *t);
709 };
710
711 #ifdef HAVE_LIBUSB_1_0
712 /** USB device instance */
713 struct sr_usb_dev_inst {
714         /** USB bus */
715         uint8_t bus;
716         /** Device address on USB bus */
717         uint8_t address;
718         /** libusb device handle */
719         struct libusb_device_handle *devhdl;
720 };
721 #endif
722
723 #ifdef HAVE_LIBSERIALPORT
724 struct sr_serial_dev_inst {
725         /** Port name, e.g. '/dev/tty42'. */
726         char *port;
727         /** Comm params for serial_set_paramstr(). */
728         char *serialcomm;
729         /** libserialport port handle */
730         struct sp_port *data;
731 };
732 #endif
733
734 struct sr_usbtmc_dev_inst {
735         char *device;
736         int fd;
737 };
738
739 /* Private driver context. */
740 struct drv_context {
741         /** sigrok context */
742         struct sr_context *sr_ctx;
743         GSList *instances;
744 };
745
746 /*--- log.c -----------------------------------------------------------------*/
747
748 #if defined(_WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))
749 /*
750  * On MinGW, we need to specify the gnu_printf format flavor or GCC
751  * will assume non-standard Microsoft printf syntax.
752  */
753 SR_PRIV int sr_log(int loglevel, const char *format, ...)
754                 __attribute__((__format__ (__gnu_printf__, 2, 3)));
755 #else
756 SR_PRIV int sr_log(int loglevel, const char *format, ...) G_GNUC_PRINTF(2, 3);
757 #endif
758
759 /* Message logging helpers with subsystem-specific prefix string. */
760 #define sr_spew(...)    sr_log(SR_LOG_SPEW, LOG_PREFIX ": " __VA_ARGS__)
761 #define sr_dbg(...)     sr_log(SR_LOG_DBG,  LOG_PREFIX ": " __VA_ARGS__)
762 #define sr_info(...)    sr_log(SR_LOG_INFO, LOG_PREFIX ": " __VA_ARGS__)
763 #define sr_warn(...)    sr_log(SR_LOG_WARN, LOG_PREFIX ": " __VA_ARGS__)
764 #define sr_err(...)     sr_log(SR_LOG_ERR,  LOG_PREFIX ": " __VA_ARGS__)
765
766 /*--- device.c --------------------------------------------------------------*/
767
768 /** Scan options supported by a driver. */
769 #define SR_CONF_SCAN_OPTIONS 0x7FFF0000
770
771 /** Device options for a particular device. */
772 #define SR_CONF_DEVICE_OPTIONS 0x7FFF0001
773
774 /** Mask for separating config keys from capabilities. */
775 #define SR_CONF_MASK 0x1fffffff
776
777 /** Values for the changes argument of sr_dev_driver.config_channel_set. */
778 enum {
779         /** The enabled state of the channel has been changed. */
780         SR_CHANNEL_SET_ENABLED = 1 << 0,
781 };
782
783 SR_PRIV struct sr_channel *sr_channel_new(struct sr_dev_inst *sdi,
784                 int index, int type, gboolean enabled, const char *name);
785 SR_PRIV void sr_channel_free(struct sr_channel *ch);
786 SR_PRIV void sr_channel_free_cb(void *p);
787 SR_PRIV struct sr_channel *sr_next_enabled_channel(const struct sr_dev_inst *sdi,
788                 struct sr_channel *cur_channel);
789 SR_PRIV gboolean sr_channels_differ(struct sr_channel *ch1, struct sr_channel *ch2);
790 SR_PRIV gboolean sr_channel_lists_differ(GSList *l1, GSList *l2);
791
792 /** Device instance data */
793 struct sr_dev_inst {
794         /** Device driver. */
795         struct sr_dev_driver *driver;
796         /** Device instance status. SR_ST_NOT_FOUND, etc. */
797         int status;
798         /** Device instance type. SR_INST_USB, etc. */
799         int inst_type;
800         /** Device vendor. */
801         char *vendor;
802         /** Device model. */
803         char *model;
804         /** Device version. */
805         char *version;
806         /** Serial number. */
807         char *serial_num;
808         /** Connection string to uniquely identify devices. */
809         char *connection_id;
810         /** List of channels. */
811         GSList *channels;
812         /** List of sr_channel_group structs */
813         GSList *channel_groups;
814         /** Device instance connection data (used?) */
815         void *conn;
816         /** Device instance private data (used?) */
817         void *priv;
818         /** Session to which this device is currently assigned. */
819         struct sr_session *session;
820 };
821
822 /* Generic device instances */
823 SR_PRIV void sr_dev_inst_free(struct sr_dev_inst *sdi);
824
825 #ifdef HAVE_LIBUSB_1_0
826 /* USB-specific instances */
827 SR_PRIV struct sr_usb_dev_inst *sr_usb_dev_inst_new(uint8_t bus,
828                 uint8_t address, struct libusb_device_handle *hdl);
829 SR_PRIV void sr_usb_dev_inst_free(struct sr_usb_dev_inst *usb);
830 #endif
831
832 #ifdef HAVE_LIBSERIALPORT
833 /* Serial-specific instances */
834 SR_PRIV struct sr_serial_dev_inst *sr_serial_dev_inst_new(const char *port,
835                 const char *serialcomm);
836 SR_PRIV void sr_serial_dev_inst_free(struct sr_serial_dev_inst *serial);
837 #endif
838
839 /* USBTMC-specific instances */
840 SR_PRIV struct sr_usbtmc_dev_inst *sr_usbtmc_dev_inst_new(const char *device);
841 SR_PRIV void sr_usbtmc_dev_inst_free(struct sr_usbtmc_dev_inst *usbtmc);
842
843 /*--- hwdriver.c ------------------------------------------------------------*/
844
845 SR_PRIV const GVariantType *sr_variant_type_get(int datatype);
846 SR_PRIV int sr_variant_type_check(uint32_t key, GVariant *data);
847 SR_PRIV void sr_hw_cleanup_all(const struct sr_context *ctx);
848 SR_PRIV struct sr_config *sr_config_new(uint32_t key, GVariant *data);
849 SR_PRIV void sr_config_free(struct sr_config *src);
850 SR_PRIV int sr_dev_acquisition_start(struct sr_dev_inst *sdi);
851 SR_PRIV int sr_dev_acquisition_stop(struct sr_dev_inst *sdi);
852
853 /*--- session.c -------------------------------------------------------------*/
854
855 struct sr_session {
856         /** Context this session exists in. */
857         struct sr_context *ctx;
858         /** List of struct sr_dev_inst pointers. */
859         GSList *devs;
860         /** List of struct sr_dev_inst pointers owned by this session. */
861         GSList *owned_devs;
862         /** List of struct datafeed_callback pointers. */
863         GSList *datafeed_callbacks;
864         GSList *transforms;
865         struct sr_trigger *trigger;
866
867         /** Callback to invoke on session stop. */
868         sr_session_stopped_callback stopped_callback;
869         /** User data to be passed to the session stop callback. */
870         void *stopped_cb_data;
871
872         /** Mutex protecting the main context pointer. */
873         GMutex main_mutex;
874         /** Context of the session main loop. */
875         GMainContext *main_context;
876
877         /** Registered event sources for this session. */
878         GHashTable *event_sources;
879         /** Session main loop. */
880         GMainLoop *main_loop;
881         /** ID of idle source for dispatching the session stop notification. */
882         unsigned int stop_check_id;
883         /** Whether the session has been started. */
884         gboolean running;
885 };
886
887 SR_PRIV int sr_session_source_add_internal(struct sr_session *session,
888                 void *key, GSource *source);
889 SR_PRIV int sr_session_source_remove_internal(struct sr_session *session,
890                 void *key);
891 SR_PRIV int sr_session_source_destroyed(struct sr_session *session,
892                 void *key, GSource *source);
893 SR_PRIV int sr_session_fd_source_add(struct sr_session *session,
894                 void *key, gintptr fd, int events, int timeout,
895                 sr_receive_data_callback cb, void *cb_data);
896
897 SR_PRIV int sr_session_source_add(struct sr_session *session, int fd,
898                 int events, int timeout, sr_receive_data_callback cb, void *cb_data);
899 SR_PRIV int sr_session_source_add_pollfd(struct sr_session *session,
900                 GPollFD *pollfd, int timeout, sr_receive_data_callback cb,
901                 void *cb_data);
902 SR_PRIV int sr_session_source_add_channel(struct sr_session *session,
903                 GIOChannel *channel, int events, int timeout,
904                 sr_receive_data_callback cb, void *cb_data);
905 SR_PRIV int sr_session_source_remove(struct sr_session *session, int fd);
906 SR_PRIV int sr_session_source_remove_pollfd(struct sr_session *session,
907                 GPollFD *pollfd);
908 SR_PRIV int sr_session_source_remove_channel(struct sr_session *session,
909                 GIOChannel *channel);
910
911 SR_PRIV int sr_session_send_meta(const struct sr_dev_inst *sdi,
912                 uint32_t key, GVariant *var);
913 SR_PRIV int sr_session_send(const struct sr_dev_inst *sdi,
914                 const struct sr_datafeed_packet *packet);
915 SR_PRIV int sr_sessionfile_check(const char *filename);
916 SR_PRIV struct sr_dev_inst *sr_session_prepare_sdi(const char *filename,
917                 struct sr_session **session);
918
919 /*--- session_file.c --------------------------------------------------------*/
920
921 #if !HAVE_ZIP_DISCARD
922 /* Replace zip_discard() if not available. */
923 #define zip_discard(zip) sr_zip_discard(zip)
924 SR_PRIV void sr_zip_discard(struct zip *archive);
925 #endif
926
927 SR_PRIV GKeyFile *sr_sessionfile_read_metadata(struct zip *archive,
928                         const struct zip_stat *entry);
929
930 /*--- analog.c --------------------------------------------------------------*/
931
932 SR_PRIV int sr_analog_init(struct sr_datafeed_analog *analog,
933                            struct sr_analog_encoding *encoding,
934                            struct sr_analog_meaning *meaning,
935                            struct sr_analog_spec *spec,
936                            int digits);
937
938 /*--- std.c -----------------------------------------------------------------*/
939
940 typedef int (*dev_close_callback)(struct sr_dev_inst *sdi);
941 typedef void (*std_dev_clear_callback)(void *priv);
942
943 SR_PRIV int std_init(struct sr_dev_driver *di, struct sr_context *sr_ctx);
944 SR_PRIV int std_cleanup(const struct sr_dev_driver *di);
945 SR_PRIV int std_dummy_dev_open(struct sr_dev_inst *sdi);
946 SR_PRIV int std_dummy_dev_close(struct sr_dev_inst *sdi);
947 SR_PRIV int std_dummy_dev_acquisition_start(const struct sr_dev_inst *sdi);
948 SR_PRIV int std_dummy_dev_acquisition_stop(struct sr_dev_inst *sdi);
949 #ifdef HAVE_LIBSERIALPORT
950 SR_PRIV int std_serial_dev_open(struct sr_dev_inst *sdi);
951 SR_PRIV int std_serial_dev_acquisition_stop(struct sr_dev_inst *sdi);
952 #endif
953 SR_PRIV int std_session_send_df_header(const struct sr_dev_inst *sdi);
954 SR_PRIV int std_session_send_df_end(const struct sr_dev_inst *sdi);
955 SR_PRIV int std_session_send_frame_begin(const struct sr_dev_inst *sdi);
956 SR_PRIV int std_session_send_frame_end(const struct sr_dev_inst *sdi);
957 SR_PRIV int std_dev_clear_with_callback(const struct sr_dev_driver *driver,
958                 std_dev_clear_callback clear_private);
959 SR_PRIV int std_dev_clear(const struct sr_dev_driver *driver);
960 SR_PRIV GSList *std_dev_list(const struct sr_dev_driver *di);
961 SR_PRIV int std_serial_dev_close(struct sr_dev_inst *sdi);
962 SR_PRIV GSList *std_scan_complete(struct sr_dev_driver *di, GSList *devices);
963
964 SR_PRIV int std_opts_config_list(uint32_t key, GVariant **data,
965         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg,
966         const uint32_t scanopts[], size_t scansize, const uint32_t drvopts[],
967         size_t drvsize, const uint32_t devopts[], size_t devsize);
968
969 extern SR_PRIV const uint32_t NO_OPTS[1];
970
971 #define STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts) \
972         std_opts_config_list(key, data, sdi, cg, ARRAY_AND_SIZE(scanopts), \
973                 ARRAY_AND_SIZE(drvopts), ARRAY_AND_SIZE(devopts))
974
975 SR_PRIV GVariant *std_gvar_tuple_array(const uint64_t a[][2], unsigned int n);
976 SR_PRIV GVariant *std_gvar_tuple_rational(const struct sr_rational *r, unsigned int n);
977 SR_PRIV GVariant *std_gvar_samplerates(const uint64_t samplerates[], unsigned int n);
978 SR_PRIV GVariant *std_gvar_samplerates_steps(const uint64_t samplerates[], unsigned int n);
979 SR_PRIV GVariant *std_gvar_min_max_step(double min, double max, double step);
980 SR_PRIV GVariant *std_gvar_min_max_step_array(const double a[3]);
981 SR_PRIV GVariant *std_gvar_min_max_step_thresholds(const double dmin, const double dmax, const double dstep);
982
983 SR_PRIV GVariant *std_gvar_tuple_u64(uint64_t low, uint64_t high);
984 SR_PRIV GVariant *std_gvar_tuple_double(double low, double high);
985
986 SR_PRIV GVariant *std_gvar_array_i32(const int32_t a[], unsigned int n);
987 SR_PRIV GVariant *std_gvar_array_u32(const uint32_t a[], unsigned int n);
988 SR_PRIV GVariant *std_gvar_array_u64(const uint64_t a[], unsigned int n);
989 SR_PRIV GVariant *std_gvar_array_str(const char *a[], unsigned int n);
990
991 SR_PRIV GVariant *std_gvar_thresholds(const double a[][2], unsigned int n);
992
993 SR_PRIV int std_str_idx(GVariant *data, const char *a[], unsigned int n);
994 SR_PRIV int std_u64_idx(GVariant *data, const uint64_t a[], unsigned int n);
995 SR_PRIV int std_u8_idx(GVariant *data, const uint8_t a[], unsigned int n);
996
997 SR_PRIV int std_str_idx_s(const char *s, const char *a[], unsigned int n);
998 SR_PRIV int std_u8_idx_s(uint8_t b, const uint8_t a[], unsigned int n);
999
1000 SR_PRIV int std_u64_tuple_idx(GVariant *data, const uint64_t a[][2], unsigned int n);
1001 SR_PRIV int std_double_tuple_idx(GVariant *data, const double a[][2], unsigned int n);
1002 SR_PRIV int std_double_tuple_idx_d0(const double d, const double a[][2], unsigned int n);
1003
1004 SR_PRIV int std_cg_idx(const struct sr_channel_group *cg, struct sr_channel_group *a[], unsigned int n);
1005
1006 /*--- resource.c ------------------------------------------------------------*/
1007
1008 SR_PRIV int64_t sr_file_get_size(FILE *file);
1009
1010 SR_PRIV int sr_resource_open(struct sr_context *ctx,
1011                 struct sr_resource *res, int type, const char *name)
1012                 G_GNUC_WARN_UNUSED_RESULT;
1013 SR_PRIV int sr_resource_close(struct sr_context *ctx,
1014                 struct sr_resource *res);
1015 SR_PRIV gssize sr_resource_read(struct sr_context *ctx,
1016                 const struct sr_resource *res, void *buf, size_t count)
1017                 G_GNUC_WARN_UNUSED_RESULT;
1018 SR_PRIV void *sr_resource_load(struct sr_context *ctx, int type,
1019                 const char *name, size_t *size, size_t max_size)
1020                 G_GNUC_MALLOC G_GNUC_WARN_UNUSED_RESULT;
1021
1022 /*--- strutil.c -------------------------------------------------------------*/
1023
1024 SR_PRIV int sr_atol(const char *str, long *ret);
1025 SR_PRIV int sr_atoi(const char *str, int *ret);
1026 SR_PRIV int sr_atod(const char *str, double *ret);
1027 SR_PRIV int sr_atof(const char *str, float *ret);
1028 SR_PRIV int sr_atod_ascii(const char *str, double *ret);
1029 SR_PRIV int sr_atof_ascii(const char *str, float *ret);
1030
1031 SR_PRIV GString *sr_hexdump_new(const uint8_t *data, const size_t len);
1032 SR_PRIV void sr_hexdump_free(GString *s);
1033
1034 /*--- soft-trigger.c --------------------------------------------------------*/
1035
1036 struct soft_trigger_logic {
1037         const struct sr_dev_inst *sdi;
1038         const struct sr_trigger *trigger;
1039         int count;
1040         int unitsize;
1041         int cur_stage;
1042         uint8_t *prev_sample;
1043         uint8_t *pre_trigger_buffer;
1044         uint8_t *pre_trigger_head;
1045         int pre_trigger_size;
1046         int pre_trigger_fill;
1047 };
1048
1049 SR_PRIV int logic_channel_unitsize(GSList *channels);
1050 SR_PRIV struct soft_trigger_logic *soft_trigger_logic_new(
1051                 const struct sr_dev_inst *sdi, struct sr_trigger *trigger,
1052                 int pre_trigger_samples);
1053 SR_PRIV void soft_trigger_logic_free(struct soft_trigger_logic *st);
1054 SR_PRIV int soft_trigger_logic_check(struct soft_trigger_logic *st, uint8_t *buf,
1055                 int len, int *pre_trigger_samples);
1056
1057 /*--- hardware/serial.c -----------------------------------------------------*/
1058
1059 #ifdef HAVE_LIBSERIALPORT
1060 enum {
1061         SERIAL_RDWR = 1,
1062         SERIAL_RDONLY = 2,
1063 };
1064
1065 typedef gboolean (*packet_valid_callback)(const uint8_t *buf);
1066
1067 SR_PRIV int serial_open(struct sr_serial_dev_inst *serial, int flags);
1068 SR_PRIV int serial_close(struct sr_serial_dev_inst *serial);
1069 SR_PRIV int serial_flush(struct sr_serial_dev_inst *serial);
1070 SR_PRIV int serial_drain(struct sr_serial_dev_inst *serial);
1071 SR_PRIV int serial_write_blocking(struct sr_serial_dev_inst *serial,
1072                 const void *buf, size_t count, unsigned int timeout_ms);
1073 SR_PRIV int serial_write_nonblocking(struct sr_serial_dev_inst *serial,
1074                 const void *buf, size_t count);
1075 SR_PRIV int serial_read_blocking(struct sr_serial_dev_inst *serial, void *buf,
1076                 size_t count, unsigned int timeout_ms);
1077 SR_PRIV int serial_read_nonblocking(struct sr_serial_dev_inst *serial, void *buf,
1078                 size_t count);
1079 SR_PRIV int serial_set_params(struct sr_serial_dev_inst *serial, int baudrate,
1080                 int bits, int parity, int stopbits, int flowcontrol, int rts, int dtr);
1081 SR_PRIV int serial_set_paramstr(struct sr_serial_dev_inst *serial,
1082                 const char *paramstr);
1083 SR_PRIV int serial_readline(struct sr_serial_dev_inst *serial, char **buf,
1084                 int *buflen, gint64 timeout_ms);
1085 SR_PRIV int serial_stream_detect(struct sr_serial_dev_inst *serial,
1086                                  uint8_t *buf, size_t *buflen,
1087                                  size_t packet_size,
1088                                  packet_valid_callback is_valid,
1089                                  uint64_t timeout_ms, int baudrate);
1090 SR_PRIV int sr_serial_extract_options(GSList *options, const char **serial_device,
1091                                       const char **serial_options);
1092 SR_PRIV int serial_source_add(struct sr_session *session,
1093                 struct sr_serial_dev_inst *serial, int events, int timeout,
1094                 sr_receive_data_callback cb, void *cb_data);
1095 SR_PRIV int serial_source_remove(struct sr_session *session,
1096                 struct sr_serial_dev_inst *serial);
1097 SR_PRIV GSList *sr_serial_find_usb(uint16_t vendor_id, uint16_t product_id);
1098 SR_PRIV int serial_timeout(struct sr_serial_dev_inst *port, int num_bytes);
1099 #endif
1100
1101 /*--- hardware/ezusb.c ------------------------------------------------------*/
1102
1103 #ifdef HAVE_LIBUSB_1_0
1104 SR_PRIV int ezusb_reset(struct libusb_device_handle *hdl, int set_clear);
1105 SR_PRIV int ezusb_install_firmware(struct sr_context *ctx, libusb_device_handle *hdl,
1106                                    const char *name);
1107 SR_PRIV int ezusb_upload_firmware(struct sr_context *ctx, libusb_device *dev,
1108                                   int configuration, const char *name);
1109 #endif
1110
1111 /*--- hardware/usb.c --------------------------------------------------------*/
1112
1113 #ifdef HAVE_LIBUSB_1_0
1114 SR_PRIV GSList *sr_usb_find(libusb_context *usb_ctx, const char *conn);
1115 SR_PRIV int sr_usb_open(libusb_context *usb_ctx, struct sr_usb_dev_inst *usb);
1116 SR_PRIV void sr_usb_close(struct sr_usb_dev_inst *usb);
1117 SR_PRIV int usb_source_add(struct sr_session *session, struct sr_context *ctx,
1118                 int timeout, sr_receive_data_callback cb, void *cb_data);
1119 SR_PRIV int usb_source_remove(struct sr_session *session, struct sr_context *ctx);
1120 SR_PRIV int usb_get_port_path(libusb_device *dev, char *path, int path_len);
1121 SR_PRIV gboolean usb_match_manuf_prod(libusb_device *dev,
1122                 const char *manufacturer, const char *product);
1123 #endif
1124
1125
1126 /*--- modbus/modbus.c -------------------------------------------------------*/
1127
1128 struct sr_modbus_dev_inst {
1129         const char *name;
1130         const char *prefix;
1131         int priv_size;
1132         GSList *(*scan)(int modbusaddr);
1133         int (*dev_inst_new)(void *priv, const char *resource,
1134                 char **params, const char *serialcomm, int modbusaddr);
1135         int (*open)(void *priv);
1136         int (*source_add)(struct sr_session *session, void *priv, int events,
1137                 int timeout, sr_receive_data_callback cb, void *cb_data);
1138         int (*source_remove)(struct sr_session *session, void *priv);
1139         int (*send)(void *priv, const uint8_t *buffer, int buffer_size);
1140         int (*read_begin)(void *priv, uint8_t *function_code);
1141         int (*read_data)(void *priv, uint8_t *buf, int maxlen);
1142         int (*read_end)(void *priv);
1143         int (*close)(void *priv);
1144         void (*free)(void *priv);
1145         unsigned int read_timeout_ms;
1146         void *priv;
1147 };
1148
1149 SR_PRIV GSList *sr_modbus_scan(struct drv_context *drvc, GSList *options,
1150                 struct sr_dev_inst *(*probe_device)(struct sr_modbus_dev_inst *modbus));
1151 SR_PRIV struct sr_modbus_dev_inst *modbus_dev_inst_new(const char *resource,
1152                 const char *serialcomm, int modbusaddr);
1153 SR_PRIV int sr_modbus_open(struct sr_modbus_dev_inst *modbus);
1154 SR_PRIV int sr_modbus_source_add(struct sr_session *session,
1155                 struct sr_modbus_dev_inst *modbus, int events, int timeout,
1156                 sr_receive_data_callback cb, void *cb_data);
1157 SR_PRIV int sr_modbus_source_remove(struct sr_session *session,
1158                 struct sr_modbus_dev_inst *modbus);
1159 SR_PRIV int sr_modbus_request(struct sr_modbus_dev_inst *modbus,
1160                               uint8_t *request, int request_size);
1161 SR_PRIV int sr_modbus_reply(struct sr_modbus_dev_inst *modbus,
1162                             uint8_t *reply, int reply_size);
1163 SR_PRIV int sr_modbus_request_reply(struct sr_modbus_dev_inst *modbus,
1164                                     uint8_t *request, int request_size,
1165                                     uint8_t *reply, int reply_size);
1166 SR_PRIV int sr_modbus_read_coils(struct sr_modbus_dev_inst *modbus,
1167                                  int address, int nb_coils, uint8_t *coils);
1168 SR_PRIV int sr_modbus_read_holding_registers(struct sr_modbus_dev_inst *modbus,
1169                                              int address, int nb_registers,
1170                                              uint16_t *registers);
1171 SR_PRIV int sr_modbus_write_coil(struct sr_modbus_dev_inst *modbus,
1172                                  int address, int value);
1173 SR_PRIV int sr_modbus_write_multiple_registers(struct sr_modbus_dev_inst*modbus,
1174                                                int address, int nb_registers,
1175                                                uint16_t *registers);
1176 SR_PRIV int sr_modbus_close(struct sr_modbus_dev_inst *modbus);
1177 SR_PRIV void sr_modbus_free(struct sr_modbus_dev_inst *modbus);
1178
1179 /*--- hardware/dmm/es519xx.c ------------------------------------------------*/
1180
1181 /**
1182  * All 11-byte es519xx chips repeat each block twice for each conversion cycle
1183  * so always read 2 blocks at a time.
1184  */
1185 #define ES519XX_11B_PACKET_SIZE (11 * 2)
1186 #define ES519XX_14B_PACKET_SIZE 14
1187
1188 struct es519xx_info {
1189         gboolean is_judge, is_voltage, is_auto, is_micro, is_current;
1190         gboolean is_milli, is_resistance, is_continuity, is_diode;
1191         gboolean is_frequency, is_rpm, is_capacitance, is_duty_cycle;
1192         gboolean is_temperature, is_celsius, is_fahrenheit;
1193         gboolean is_adp0, is_adp1, is_adp2, is_adp3;
1194         gboolean is_sign, is_batt, is_ol, is_pmax, is_pmin, is_apo;
1195         gboolean is_dc, is_ac, is_vahz, is_min, is_max, is_rel, is_hold;
1196         gboolean is_digit4, is_ul, is_vasel, is_vbar, is_lpf1, is_lpf0, is_rmr;
1197         uint32_t baudrate;
1198         int packet_size;
1199         gboolean alt_functions, fivedigits, clampmeter, selectable_lpf;
1200         int digits;
1201 };
1202
1203 SR_PRIV gboolean sr_es519xx_2400_11b_packet_valid(const uint8_t *buf);
1204 SR_PRIV int sr_es519xx_2400_11b_parse(const uint8_t *buf, float *floatval,
1205                 struct sr_datafeed_analog *analog, void *info);
1206 SR_PRIV gboolean sr_es519xx_2400_11b_altfn_packet_valid(const uint8_t *buf);
1207 SR_PRIV int sr_es519xx_2400_11b_altfn_parse(const uint8_t *buf,
1208                 float *floatval, struct sr_datafeed_analog *analog, void *info);
1209 SR_PRIV gboolean sr_es519xx_19200_11b_5digits_packet_valid(const uint8_t *buf);
1210 SR_PRIV int sr_es519xx_19200_11b_5digits_parse(const uint8_t *buf,
1211                 float *floatval, struct sr_datafeed_analog *analog, void *info);
1212 SR_PRIV gboolean sr_es519xx_19200_11b_clamp_packet_valid(const uint8_t *buf);
1213 SR_PRIV int sr_es519xx_19200_11b_clamp_parse(const uint8_t *buf,
1214                 float *floatval, struct sr_datafeed_analog *analog, void *info);
1215 SR_PRIV gboolean sr_es519xx_19200_11b_packet_valid(const uint8_t *buf);
1216 SR_PRIV int sr_es519xx_19200_11b_parse(const uint8_t *buf, float *floatval,
1217                 struct sr_datafeed_analog *analog, void *info);
1218 SR_PRIV gboolean sr_es519xx_19200_14b_packet_valid(const uint8_t *buf);
1219 SR_PRIV int sr_es519xx_19200_14b_parse(const uint8_t *buf, float *floatval,
1220                 struct sr_datafeed_analog *analog, void *info);
1221 SR_PRIV gboolean sr_es519xx_19200_14b_sel_lpf_packet_valid(const uint8_t *buf);
1222 SR_PRIV int sr_es519xx_19200_14b_sel_lpf_parse(const uint8_t *buf,
1223                 float *floatval, struct sr_datafeed_analog *analog, void *info);
1224
1225 /*--- hardware/dmm/fs9922.c -------------------------------------------------*/
1226
1227 #define FS9922_PACKET_SIZE 14
1228
1229 struct fs9922_info {
1230         gboolean is_auto, is_dc, is_ac, is_rel, is_hold, is_bpn, is_z1, is_z2;
1231         gboolean is_max, is_min, is_apo, is_bat, is_nano, is_z3, is_micro;
1232         gboolean is_milli, is_kilo, is_mega, is_beep, is_diode, is_percent;
1233         gboolean is_z4, is_volt, is_ampere, is_ohm, is_hfe, is_hertz, is_farad;
1234         gboolean is_celsius, is_fahrenheit;
1235         int bargraph_sign, bargraph_value;
1236 };
1237
1238 SR_PRIV gboolean sr_fs9922_packet_valid(const uint8_t *buf);
1239 SR_PRIV int sr_fs9922_parse(const uint8_t *buf, float *floatval,
1240                             struct sr_datafeed_analog *analog, void *info);
1241 SR_PRIV void sr_fs9922_z1_diode(struct sr_datafeed_analog *analog, void *info);
1242
1243 /*--- hardware/dmm/fs9721.c -------------------------------------------------*/
1244
1245 #define FS9721_PACKET_SIZE 14
1246
1247 struct fs9721_info {
1248         gboolean is_ac, is_dc, is_auto, is_rs232, is_micro, is_nano, is_kilo;
1249         gboolean is_diode, is_milli, is_percent, is_mega, is_beep, is_farad;
1250         gboolean is_ohm, is_rel, is_hold, is_ampere, is_volt, is_hz, is_bat;
1251         gboolean is_c2c1_11, is_c2c1_10, is_c2c1_01, is_c2c1_00, is_sign;
1252 };
1253
1254 SR_PRIV gboolean sr_fs9721_packet_valid(const uint8_t *buf);
1255 SR_PRIV int sr_fs9721_parse(const uint8_t *buf, float *floatval,
1256                             struct sr_datafeed_analog *analog, void *info);
1257 SR_PRIV void sr_fs9721_00_temp_c(struct sr_datafeed_analog *analog, void *info);
1258 SR_PRIV void sr_fs9721_01_temp_c(struct sr_datafeed_analog *analog, void *info);
1259 SR_PRIV void sr_fs9721_10_temp_c(struct sr_datafeed_analog *analog, void *info);
1260 SR_PRIV void sr_fs9721_01_10_temp_f_c(struct sr_datafeed_analog *analog, void *info);
1261 SR_PRIV void sr_fs9721_max_c_min(struct sr_datafeed_analog *analog, void *info);
1262
1263 /*--- hardware/dmm/ms8250d.c ------------------------------------------------*/
1264
1265 #define MS8250D_PACKET_SIZE 18
1266
1267 struct ms8250d_info {
1268         gboolean is_ac, is_dc, is_auto, is_rs232, is_micro, is_nano, is_kilo;
1269         gboolean is_diode, is_milli, is_percent, is_mega, is_beep, is_farad;
1270         gboolean is_ohm, is_rel, is_hold, is_ampere, is_volt, is_hz, is_bat;
1271         gboolean is_ncv, is_min, is_max, is_sign, is_autotimer;
1272 };
1273
1274 SR_PRIV gboolean sr_ms8250d_packet_valid(const uint8_t *buf);
1275 SR_PRIV int sr_ms8250d_parse(const uint8_t *buf, float *floatval,
1276                              struct sr_datafeed_analog *analog, void *info);
1277
1278 /*--- hardware/dmm/dtm0660.c ------------------------------------------------*/
1279
1280 #define DTM0660_PACKET_SIZE 15
1281
1282 struct dtm0660_info {
1283         gboolean is_ac, is_dc, is_auto, is_rs232, is_micro, is_nano, is_kilo;
1284         gboolean is_diode, is_milli, is_percent, is_mega, is_beep, is_farad;
1285         gboolean is_ohm, is_rel, is_hold, is_ampere, is_volt, is_hz, is_bat;
1286         gboolean is_degf, is_degc, is_c2c1_01, is_c2c1_00, is_apo, is_min;
1287         gboolean is_minmax, is_max, is_sign;
1288 };
1289
1290 SR_PRIV gboolean sr_dtm0660_packet_valid(const uint8_t *buf);
1291 SR_PRIV int sr_dtm0660_parse(const uint8_t *buf, float *floatval,
1292                         struct sr_datafeed_analog *analog, void *info);
1293
1294 /*--- hardware/dmm/m2110.c --------------------------------------------------*/
1295
1296 #define BBCGM_M2110_PACKET_SIZE 9
1297
1298 /* Dummy info struct. The parser does not use it. */
1299 struct m2110_info { int dummy; };
1300
1301 SR_PRIV gboolean sr_m2110_packet_valid(const uint8_t *buf);
1302 SR_PRIV int sr_m2110_parse(const uint8_t *buf, float *floatval,
1303                              struct sr_datafeed_analog *analog, void *info);
1304
1305 /*--- hardware/dmm/metex14.c ------------------------------------------------*/
1306
1307 #define METEX14_PACKET_SIZE 14
1308
1309 struct metex14_info {
1310         size_t ch_idx;
1311         gboolean is_ac, is_dc, is_resistance, is_capacity, is_temperature;
1312         gboolean is_diode, is_frequency, is_ampere, is_volt, is_farad;
1313         gboolean is_hertz, is_ohm, is_celsius, is_fahrenheit, is_watt;
1314         gboolean is_pico, is_nano, is_micro, is_milli, is_kilo, is_mega;
1315         gboolean is_gain, is_decibel, is_power, is_decibel_mw, is_power_factor;
1316         gboolean is_hfe, is_unitless, is_logic, is_min, is_max, is_avg;
1317 };
1318
1319 #ifdef HAVE_LIBSERIALPORT
1320 SR_PRIV int sr_metex14_packet_request(struct sr_serial_dev_inst *serial);
1321 #endif
1322 SR_PRIV gboolean sr_metex14_packet_valid(const uint8_t *buf);
1323 SR_PRIV int sr_metex14_parse(const uint8_t *buf, float *floatval,
1324                              struct sr_datafeed_analog *analog, void *info);
1325 SR_PRIV gboolean sr_metex14_4packets_valid(const uint8_t *buf);
1326 SR_PRIV int sr_metex14_4packets_parse(const uint8_t *buf, float *floatval,
1327                              struct sr_datafeed_analog *analog, void *info);
1328
1329 /*--- hardware/dmm/rs9lcd.c -------------------------------------------------*/
1330
1331 #define RS9LCD_PACKET_SIZE 9
1332
1333 /* Dummy info struct. The parser does not use it. */
1334 struct rs9lcd_info { int dummy; };
1335
1336 SR_PRIV gboolean sr_rs9lcd_packet_valid(const uint8_t *buf);
1337 SR_PRIV int sr_rs9lcd_parse(const uint8_t *buf, float *floatval,
1338                             struct sr_datafeed_analog *analog, void *info);
1339
1340 /*--- hardware/dmm/bm25x.c --------------------------------------------------*/
1341
1342 #define BRYMEN_BM25X_PACKET_SIZE 15
1343
1344 /* Dummy info struct. The parser does not use it. */
1345 struct bm25x_info { int dummy; };
1346
1347 SR_PRIV gboolean sr_brymen_bm25x_packet_valid(const uint8_t *buf);
1348 SR_PRIV int sr_brymen_bm25x_parse(const uint8_t *buf, float *floatval,
1349                              struct sr_datafeed_analog *analog, void *info);
1350
1351 /*--- hardware/dmm/ut71x.c --------------------------------------------------*/
1352
1353 #define UT71X_PACKET_SIZE 11
1354
1355 struct ut71x_info {
1356         gboolean is_voltage, is_resistance, is_capacitance, is_temperature;
1357         gboolean is_celsius, is_fahrenheit, is_current, is_continuity;
1358         gboolean is_diode, is_frequency, is_duty_cycle, is_dc, is_ac;
1359         gboolean is_auto, is_manual, is_sign, is_power, is_loop_current;
1360 };
1361
1362 SR_PRIV gboolean sr_ut71x_packet_valid(const uint8_t *buf);
1363 SR_PRIV int sr_ut71x_parse(const uint8_t *buf, float *floatval,
1364                 struct sr_datafeed_analog *analog, void *info);
1365
1366 /*--- hardware/dmm/vc870.c --------------------------------------------------*/
1367
1368 #define VC870_PACKET_SIZE 23
1369
1370 struct vc870_info {
1371         gboolean is_voltage, is_dc, is_ac, is_temperature, is_resistance;
1372         gboolean is_continuity, is_capacitance, is_diode, is_loop_current;
1373         gboolean is_current, is_micro, is_milli, is_power;
1374         gboolean is_power_factor_freq, is_power_apparent_power, is_v_a_rms_value;
1375         gboolean is_sign2, is_sign1, is_batt, is_ol1, is_max, is_min;
1376         gboolean is_maxmin, is_rel, is_ol2, is_open, is_manu, is_hold;
1377         gboolean is_light, is_usb, is_warning, is_auto_power, is_misplug_warn;
1378         gboolean is_lo, is_hi, is_open2;
1379
1380         gboolean is_frequency, is_dual_display, is_auto;
1381 };
1382
1383 SR_PRIV gboolean sr_vc870_packet_valid(const uint8_t *buf);
1384 SR_PRIV int sr_vc870_parse(const uint8_t *buf, float *floatval,
1385                 struct sr_datafeed_analog *analog, void *info);
1386
1387 /*--- hardware/dmm/vc96.c ---------------------------------------------------*/
1388
1389 #define VC96_PACKET_SIZE 13
1390
1391 struct vc96_info {
1392         size_t ch_idx;
1393         gboolean is_ac, is_dc, is_resistance, is_diode, is_ampere, is_volt;
1394         gboolean is_ohm, is_micro, is_milli, is_kilo, is_mega, is_hfe;
1395         gboolean is_unitless;
1396 };
1397
1398 SR_PRIV gboolean sr_vc96_packet_valid(const uint8_t *buf);
1399 SR_PRIV int sr_vc96_parse(const uint8_t *buf, float *floatval,
1400                 struct sr_datafeed_analog *analog, void *info);
1401
1402 /*--- hardware/lcr/es51919.c ------------------------------------------------*/
1403
1404 SR_PRIV void es51919_serial_clean(void *priv);
1405 SR_PRIV struct sr_dev_inst *es51919_serial_scan(GSList *options,
1406                                                 const char *vendor,
1407                                                 const char *model);
1408 SR_PRIV int es51919_serial_config_get(uint32_t key, GVariant **data,
1409                                       const struct sr_dev_inst *sdi,
1410                                       const struct sr_channel_group *cg);
1411 SR_PRIV int es51919_serial_config_set(uint32_t key, GVariant *data,
1412                                       const struct sr_dev_inst *sdi,
1413                                       const struct sr_channel_group *cg);
1414 SR_PRIV int es51919_serial_config_list(uint32_t key, GVariant **data,
1415                                        const struct sr_dev_inst *sdi,
1416                                        const struct sr_channel_group *cg);
1417 SR_PRIV int es51919_serial_acquisition_start(const struct sr_dev_inst *sdi);
1418 SR_PRIV int es51919_serial_acquisition_stop(struct sr_dev_inst *sdi);
1419
1420 /*--- hardware/dmm/ut372.c --------------------------------------------------*/
1421
1422 #define UT372_PACKET_SIZE 27
1423
1424 struct ut372_info {
1425         int dummy;
1426 };
1427
1428 SR_PRIV gboolean sr_ut372_packet_valid(const uint8_t *buf);
1429 SR_PRIV int sr_ut372_parse(const uint8_t *buf, float *floatval,
1430                 struct sr_datafeed_analog *analog, void *info);
1431
1432 /*--- hardware/dmm/asycii.c -------------------------------------------------*/
1433
1434 #define ASYCII_PACKET_SIZE 16
1435
1436 struct asycii_info {
1437         gboolean is_ac, is_dc, is_ac_and_dc;
1438         gboolean is_resistance, is_capacitance, is_diode, is_gain;
1439         gboolean is_frequency, is_duty_cycle, is_duty_pos, is_duty_neg;
1440         gboolean is_pulse_width, is_period_pos, is_period_neg;
1441         gboolean is_pulse_count, is_count_pos, is_count_neg;
1442         gboolean is_ampere, is_volt, is_volt_ampere, is_farad, is_ohm;
1443         gboolean is_hertz, is_percent, is_seconds, is_decibel;
1444         gboolean is_pico, is_nano, is_micro, is_milli, is_kilo, is_mega;
1445         gboolean is_unitless;
1446         gboolean is_peak_min, is_peak_max;
1447         gboolean is_invalid;
1448 };
1449
1450 #ifdef HAVE_LIBSERIALPORT
1451 SR_PRIV int sr_asycii_packet_request(struct sr_serial_dev_inst *serial);
1452 #endif
1453 SR_PRIV gboolean sr_asycii_packet_valid(const uint8_t *buf);
1454 SR_PRIV int sr_asycii_parse(const uint8_t *buf, float *floatval,
1455                             struct sr_datafeed_analog *analog, void *info);
1456
1457 /*--- src/dmm/eev121gw.c ----------------------------------------------------*/
1458
1459 #define EEV121GW_PACKET_SIZE 19
1460
1461 enum eev121gw_display {
1462         EEV121GW_DISPLAY_MAIN,
1463         EEV121GW_DISPLAY_SUB,
1464         EEV121GW_DISPLAY_BAR,
1465         EEV121GW_DISPLAY_COUNT,
1466 };
1467
1468 struct eev121gw_info {
1469         /* Selected channel. */
1470         size_t ch_idx;
1471         /*
1472          * Measured value, number and sign/overflow flags, scale factor
1473          * and significant digits.
1474          */
1475         uint32_t uint_value;
1476         gboolean is_ofl, is_neg;
1477         int factor, digits;
1478         /* Currently active mode (meter's function). */
1479         gboolean is_ac, is_dc, is_voltage, is_current, is_power, is_gain;
1480         gboolean is_resistance, is_capacitance, is_diode, is_temperature;
1481         gboolean is_continuity, is_frequency, is_period, is_duty_cycle;
1482         /* Quantities associated with mode/function. */
1483         gboolean is_ampere, is_volt, is_volt_ampere, is_dbm;
1484         gboolean is_ohm, is_farad, is_celsius, is_fahrenheit;
1485         gboolean is_hertz, is_seconds, is_percent, is_loop_current;
1486         gboolean is_unitless, is_logic;
1487         /* Other indicators. */
1488         gboolean is_min, is_max, is_avg, is_1ms_peak, is_rel, is_hold;
1489         gboolean is_low_pass, is_mem, is_bt, is_auto_range, is_test;
1490         gboolean is_auto_poweroff, is_low_batt;
1491 };
1492
1493 extern SR_PRIV const char *eev121gw_channel_formats[];
1494 SR_PRIV gboolean sr_eev121gw_packet_valid(const uint8_t *buf);
1495 SR_PRIV int sr_eev121gw_parse(const uint8_t *buf, float *floatval,
1496                              struct sr_datafeed_analog *analog, void *info);
1497 SR_PRIV int sr_eev121gw_3displays_parse(const uint8_t *buf, float *floatval,
1498                              struct sr_datafeed_analog *analog, void *info);
1499
1500 /*--- hardware/scale/kern.c -------------------------------------------------*/
1501
1502 struct kern_info {
1503         gboolean is_gram, is_carat, is_ounce, is_pound, is_troy_ounce;
1504         gboolean is_pennyweight, is_grain, is_tael, is_momme, is_tola;
1505         gboolean is_percentage, is_piece, is_unstable, is_stable, is_error;
1506         int buflen;
1507 };
1508
1509 SR_PRIV gboolean sr_kern_packet_valid(const uint8_t *buf);
1510 SR_PRIV int sr_kern_parse(const uint8_t *buf, float *floatval,
1511                 struct sr_datafeed_analog *analog, void *info);
1512
1513 /*--- sw_limits.c -----------------------------------------------------------*/
1514
1515 struct sr_sw_limits {
1516         uint64_t limit_samples;
1517         uint64_t limit_msec;
1518         uint64_t samples_read;
1519         uint64_t start_time;
1520 };
1521
1522 SR_PRIV int sr_sw_limits_config_get(struct sr_sw_limits *limits, uint32_t key,
1523         GVariant **data);
1524 SR_PRIV int sr_sw_limits_config_set(struct sr_sw_limits *limits, uint32_t key,
1525         GVariant *data);
1526 SR_PRIV void sr_sw_limits_acquisition_start(struct sr_sw_limits *limits);
1527 SR_PRIV gboolean sr_sw_limits_check(struct sr_sw_limits *limits);
1528 SR_PRIV void sr_sw_limits_update_samples_read(struct sr_sw_limits *limits,
1529         uint64_t samples_read);
1530 SR_PRIV void sr_sw_limits_init(struct sr_sw_limits *limits);
1531
1532 #endif