]> sigrok.org Git - sigrok-cli.git/blob - sigrok-cli.h
443d4f6c629cd37b118b5c5879e7c2d68619c6ac
[sigrok-cli.git] / sigrok-cli.h
1 /*
2  * This file is part of the sigrok-cli project.
3  *
4  * Copyright (C) 2011 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 #ifndef SIGROK_CLI_SIGROK_CLI_H
21 #define SIGROK_CLI_SIGROK_CLI_H
22
23 #include <config.h>
24 #ifdef HAVE_SRD
25 /* First, so we avoid a _POSIX_C_SOURCE warning. */
26 #include <libsigrokdecode/libsigrokdecode.h>
27 #endif
28 #include <libsigrok/libsigrok.h>
29
30 #define DEFAULT_OUTPUT_FORMAT_FILE "srzip"
31 #define DEFAULT_OUTPUT_FORMAT_NOFILE "bits:width=64"
32 #define SAVE_CHUNK_SIZE (512 * 1024)
33
34 /* main.c */
35 extern struct sr_context *sr_ctx;
36 int select_channels(struct sr_dev_inst *sdi);
37 gboolean config_key_has_cap(struct sr_dev_driver *driver,
38                 const struct sr_dev_inst *sdi, struct sr_channel_group *cg,
39                 uint32_t key, uint32_t capability);
40 int maybe_config_get(struct sr_dev_driver *driver,
41                 const struct sr_dev_inst *sdi, struct sr_channel_group *cg,
42                 uint32_t key, GVariant **gvar);
43 int maybe_config_set(struct sr_dev_driver *driver,
44                 const struct sr_dev_inst *sdi, struct sr_channel_group *cg,
45                 uint32_t key, GVariant *gvar);
46 int maybe_config_list(struct sr_dev_driver *driver,
47                 const struct sr_dev_inst *sdi, struct sr_channel_group *cg,
48                 uint32_t key, GVariant **gvar);
49
50 /* show.c */
51 void show_version(void);
52 void show_dev_list(void);
53 void show_dev_detail(void);
54 void show_pd_detail(void);
55 void show_input(void);
56 void show_output(void);
57 void show_transform(void);
58
59 /* device.c */
60 GSList *device_scan(void);
61 struct sr_channel_group *select_channel_group(struct sr_dev_inst *sdi);
62
63 /* session.c */
64 void datafeed_in(const struct sr_dev_inst *sdi,
65                 const struct sr_datafeed_packet *packet, void *cb_data);
66 int opt_to_gvar(char *key, char *value, struct sr_config *src);
67 int set_dev_options(struct sr_dev_inst *sdi, GHashTable *args);
68 void run_session(void);
69 void save_chunk_logic(struct sr_session *session, uint8_t *data,
70                 uint64_t data_len, int unitsize);
71
72 /* input.c */
73 void load_input_file(void);
74
75 /* decode.c */
76 #ifdef HAVE_SRD
77 int register_pds(const char *opt_pds, char *opt_pd_annotations);
78 int setup_pd_stack(char *opt_pds, char *opt_pd_stack, char *opt_pd_annotations);
79 int setup_pd_annotations(char *opt_pd_annotations);
80 int setup_pd_meta(char *opt_pd_meta);
81 int setup_pd_binary(char *opt_pd_binary);
82 void show_pd_annotations(struct srd_proto_data *pdata, void *cb_data);
83 void show_pd_meta(struct srd_proto_data *pdata, void *cb_data);
84 void show_pd_binary(struct srd_proto_data *pdata, void *cb_data);
85 void map_pd_channels(struct sr_dev_inst *sdi);
86 #endif
87
88 /* parsers.c */
89 struct sr_channel *find_channel(GSList *channellist, const char *channelname);
90 GSList *parse_channelstring(struct sr_dev_inst *sdi, const char *channelstring);
91 int parse_triggerstring(const struct sr_dev_inst *sdi, const char *s,
92                 struct sr_trigger **trigger);
93 GHashTable *parse_generic_arg(const char *arg, gboolean sep_first);
94 GHashTable *generic_arg_to_opt(const struct sr_option **opts, GHashTable *genargs);
95 int canon_cmp(const char *str1, const char *str2);
96 int parse_driver(char *arg, struct sr_dev_driver **driver, GSList **drvopts);
97
98 /* anykey.c */
99 void add_anykey(struct sr_session *session);
100 void clear_anykey(void);
101
102 /* options.c */
103 extern gboolean opt_version;
104 extern gint opt_loglevel;
105 extern gboolean opt_scan_devs;
106 extern gboolean opt_wait_trigger;
107 extern gchar *opt_input_file;
108 extern gchar *opt_output_file;
109 extern gchar *opt_drv;
110 extern gchar *opt_config;
111 extern gchar *opt_channels;
112 extern gchar *opt_channel_group;
113 extern gchar *opt_triggers;
114 extern gchar *opt_pds;
115 #ifdef HAVE_SRD
116 extern gchar *opt_pd_stack;
117 extern gchar *opt_pd_annotations;
118 extern gchar *opt_pd_meta;
119 extern gchar *opt_pd_binary;
120 #endif
121 extern gchar *opt_input_format;
122 extern gchar *opt_output_format;
123 extern gchar *opt_transform_module;
124 extern gchar *opt_show;
125 extern gchar *opt_time;
126 extern gchar *opt_samples;
127 extern gchar *opt_frames;
128 extern gchar *opt_continuous;
129 extern gchar *opt_get;
130 extern gchar *opt_set;
131 int parse_options(int argc, char **argv);
132 void show_help(void);
133
134 #endif