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