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