2 * This file is part of the sigrok-cli project.
4 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
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.
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.
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/>.
20 #include "sigrok-cli.h"
24 extern gchar
*opt_input_file
;
25 extern gchar
*opt_input_format
;
26 extern gchar
*opt_probes
;
30 * Return the input file format which the CLI tool should use.
32 * If the user specified -I / --input-format, use that one. Otherwise, try to
33 * autodetect the format as good as possible. Failing that, return NULL.
35 * @param filename The filename of the input file. Must not be NULL.
36 * @param opt The -I / --input-file option the user specified (or NULL).
38 * @return A pointer to the 'struct sr_input_format' that should be used,
39 * or NULL if no input format was selected or auto-detected.
41 static struct sr_input_format
*determine_input_file_format(
42 const char *filename
, const char *opt
)
45 struct sr_input_format
**inputs
;
47 /* If there are no input formats, return NULL right away. */
48 inputs
= sr_input_list();
50 g_critical("No supported input formats available.");
54 /* If the user specified -I / --input-format, use that one. */
56 for (i
= 0; inputs
[i
]; i
++) {
57 if (strcasecmp(inputs
[i
]->id
, opt
))
59 g_debug("Using user-specified input file format '%s'.",
64 /* The user specified an unknown input format, return NULL. */
65 g_critical("Error: specified input file format '%s' is "
70 /* Otherwise, try to find an input module that can handle this file. */
71 for (i
= 0; inputs
[i
]; i
++) {
72 if (inputs
[i
]->format_match(filename
))
76 /* Return NULL if no input module wanted to touch this. */
78 g_critical("Error: no matching input module found.");
82 g_debug("cli: Autodetected '%s' input format for file '%s'.",
83 inputs
[i
]->id
, filename
);
88 static void load_input_file_format(void)
90 GHashTable
*fmtargs
= NULL
;
93 struct sr_input_format
*input_format
;
96 if (opt_input_format
) {
97 fmtargs
= parse_generic_arg(opt_input_format
, TRUE
);
98 fmtspec
= g_hash_table_lookup(fmtargs
, "sigrok_key");
101 if (!(input_format
= determine_input_file_format(opt_input_file
,
103 /* The exact cause was already logged. */
108 g_hash_table_remove(fmtargs
, "sigrok_key");
110 if (stat(opt_input_file
, &st
) == -1) {
111 g_critical("Failed to load %s: %s", opt_input_file
,
116 /* Initialize the input module. */
117 if (!(in
= g_try_malloc(sizeof(struct sr_input
)))) {
118 g_critical("Failed to allocate input module.");
121 in
->format
= input_format
;
123 if (in
->format
->init
) {
124 if (in
->format
->init(in
, opt_input_file
) != SR_OK
) {
125 g_critical("Input format init failed.");
130 if (select_probes(in
->sdi
) > 0)
134 sr_session_datafeed_callback_add(datafeed_in
, NULL
);
135 if (sr_session_dev_add(in
->sdi
) != SR_OK
) {
136 g_critical("Failed to use device.");
137 sr_session_destroy();
141 input_format
->loadfile(in
, opt_input_file
);
143 sr_session_destroy();
146 g_hash_table_destroy(fmtargs
);
149 void load_input_file(void)
152 if (sr_session_load(opt_input_file
) == SR_OK
) {
153 /* sigrok session file */
154 sr_session_datafeed_callback_add(datafeed_in
, NULL
);
160 /* fall back on input modules */
161 load_input_file_format();