]> sigrok.org Git - sigrok-cli.git/blame - input.c
Remove unnecessary extern option variable declarations.
[sigrok-cli.git] / input.c
CommitLineData
2be182e6
BV
1/*
2 * This file is part of the sigrok-cli 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
20fb52e0 20#include "sigrok-cli.h"
2be182e6 21#include "config.h"
8d52f788
DH
22#include <sys/stat.h>
23#include <errno.h>
24#include <stdlib.h>
25#include <string.h>
2be182e6 26#include <glib.h>
2be182e6 27
2be182e6
BV
28/**
29 * Return the input file format which the CLI tool should use.
30 *
31 * If the user specified -I / --input-format, use that one. Otherwise, try to
32 * autodetect the format as good as possible. Failing that, return NULL.
33 *
34 * @param filename The filename of the input file. Must not be NULL.
35 * @param opt The -I / --input-file option the user specified (or NULL).
36 *
37 * @return A pointer to the 'struct sr_input_format' that should be used,
38 * or NULL if no input format was selected or auto-detected.
39 */
40static struct sr_input_format *determine_input_file_format(
41 const char *filename, const char *opt)
42{
43 int i;
44 struct sr_input_format **inputs;
45
46 /* If there are no input formats, return NULL right away. */
47 inputs = sr_input_list();
48 if (!inputs) {
49 g_critical("No supported input formats available.");
50 return NULL;
51 }
52
53 /* If the user specified -I / --input-format, use that one. */
54 if (opt) {
55 for (i = 0; inputs[i]; i++) {
56 if (strcasecmp(inputs[i]->id, opt))
57 continue;
58 g_debug("Using user-specified input file format '%s'.",
59 inputs[i]->id);
60 return inputs[i];
61 }
62
63 /* The user specified an unknown input format, return NULL. */
64 g_critical("Error: specified input file format '%s' is "
65 "unknown.", opt);
66 return NULL;
67 }
68
69 /* Otherwise, try to find an input module that can handle this file. */
70 for (i = 0; inputs[i]; i++) {
71 if (inputs[i]->format_match(filename))
72 break;
73 }
74
75 /* Return NULL if no input module wanted to touch this. */
76 if (!inputs[i]) {
77 g_critical("Error: no matching input module found.");
78 return NULL;
79 }
80
81 g_debug("cli: Autodetected '%s' input format for file '%s'.",
82 inputs[i]->id, filename);
83
84 return inputs[i];
85}
86
87static void load_input_file_format(void)
88{
89 GHashTable *fmtargs = NULL;
90 struct stat st;
91 struct sr_input *in;
92 struct sr_input_format *input_format;
93 char *fmtspec = NULL;
94
95 if (opt_input_format) {
96 fmtargs = parse_generic_arg(opt_input_format, TRUE);
97 fmtspec = g_hash_table_lookup(fmtargs, "sigrok_key");
98 }
99
100 if (!(input_format = determine_input_file_format(opt_input_file,
101 fmtspec))) {
102 /* The exact cause was already logged. */
103 return;
104 }
105
106 if (fmtargs)
107 g_hash_table_remove(fmtargs, "sigrok_key");
108
109 if (stat(opt_input_file, &st) == -1) {
110 g_critical("Failed to load %s: %s", opt_input_file,
111 strerror(errno));
112 exit(1);
113 }
114
115 /* Initialize the input module. */
116 if (!(in = g_try_malloc(sizeof(struct sr_input)))) {
117 g_critical("Failed to allocate input module.");
118 exit(1);
119 }
120 in->format = input_format;
121 in->param = fmtargs;
122 if (in->format->init) {
123 if (in->format->init(in, opt_input_file) != SR_OK) {
124 g_critical("Input format init failed.");
125 exit(1);
126 }
127 }
128
029d73fe 129 if (select_channels(in->sdi) != SR_OK)
2be182e6
BV
130 return;
131
132 sr_session_new();
133 sr_session_datafeed_callback_add(datafeed_in, NULL);
134 if (sr_session_dev_add(in->sdi) != SR_OK) {
135 g_critical("Failed to use device.");
136 sr_session_destroy();
137 return;
138 }
139
140 input_format->loadfile(in, opt_input_file);
141
142 sr_session_destroy();
143
144 if (fmtargs)
145 g_hash_table_destroy(fmtargs);
146}
147
148void load_input_file(void)
149{
e1ec80fa
DE
150 GSList *sessions;
151 struct sr_dev_inst *sdi;
152 int ret;
2be182e6
BV
153
154 if (sr_session_load(opt_input_file) == SR_OK) {
155 /* sigrok session file */
e1ec80fa
DE
156 ret = sr_session_dev_list(&sessions);
157 if (ret != SR_OK || !sessions->data) {
158 g_critical("Failed to access session device.");
159 sr_session_destroy();
160 return;
161 }
162 sdi = sessions->data;
029d73fe 163 if (select_channels(sdi) != SR_OK) {
e1ec80fa
DE
164 sr_session_destroy();
165 return;
166 }
2be182e6
BV
167 sr_session_datafeed_callback_add(datafeed_in, NULL);
168 sr_session_start();
169 sr_session_run();
170 sr_session_stop();
171 }
172 else {
173 /* fall back on input modules */
174 load_input_file_format();
175 }
176}