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