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/>.
21 #include <sys/types.h>
29 #include "sigrok-cli.h"
31 #define CHUNK_SIZE (4 * 1024 * 1024)
33 static void load_input_file_module(struct df_arg_desc
*df_arg
)
35 struct sr_session
*session
;
36 const struct sr_input
*in
;
37 const struct sr_input_module
*imod
;
38 const struct sr_option
**options
;
39 struct sr_dev_inst
*sdi
;
40 GHashTable
*mod_args
, *mod_opts
;
49 g_critical("No supported input formats available.");
53 if (opt_input_format
) {
54 mod_args
= parse_generic_arg(opt_input_format
, TRUE
);
55 mod_id
= g_hash_table_lookup(mod_args
, "sigrok_key");
58 is_stdin
= strcmp(opt_input_file
, "-") == 0;
60 buf
= g_string_sized_new(CHUNK_SIZE
);
62 /* User specified an input module to use. */
63 if (!(imod
= sr_input_find(mod_id
)))
64 g_critical("Error: unknown input module '%s'.", mod_id
);
65 g_hash_table_remove(mod_args
, "sigrok_key");
66 if ((options
= sr_input_options_get(imod
))) {
67 mod_opts
= generic_arg_to_opt(options
, mod_args
);
68 (void)warn_unknown_keys(options
, mod_args
, NULL
);
69 sr_output_options_free(options
);
73 if (!(in
= sr_input_new(imod
, mod_opts
)))
74 g_critical("Error: failed to initialize input module.");
76 g_hash_table_destroy(mod_opts
);
78 g_hash_table_destroy(mod_args
);
79 if (!is_stdin
&& (fd
= open(opt_input_file
, O_RDONLY
)) < 0)
80 g_critical("Failed to load %s: %s.", opt_input_file
,
85 * An actual filename: let the input modules try to
88 if (sr_input_scan_file(opt_input_file
, &in
) == SR_OK
) {
89 /* That worked, reopen the file for reading. */
90 fd
= open(opt_input_file
, O_RDONLY
);
94 * Taking input from a pipe: let the input modules try
95 * to identify the stream content.
101 fd
= open(opt_input_file
, O_RDONLY
);
103 g_critical("Failed to load %s: %s.", opt_input_file
,
106 if ((len
= read(fd
, buf
->str
, CHUNK_SIZE
)) < 1)
107 g_critical("Failed to read %s: %s.", opt_input_file
,
110 sr_input_scan_buffer(buf
, &in
);
113 g_critical("Error: no input module found for this file.");
115 sr_session_new(sr_ctx
, &session
);
116 df_arg
->session
= session
;
117 sr_session_datafeed_callback_add(session
, datafeed_in
, df_arg
);
121 g_string_truncate(buf
, 0);
122 len
= read(fd
, buf
->str
, CHUNK_SIZE
);
124 g_critical("Read failed: %s", g_strerror(errno
));
126 /* End of file or stream. */
129 if (sr_input_send(in
, buf
) != SR_OK
)
132 sdi
= sr_input_dev_inst_get(in
);
133 if (!got_sdi
&& sdi
) {
134 /* First time we got a valid sdi. */
135 if (select_channels(sdi
) != SR_OK
)
137 if (sr_session_dev_add(session
, sdi
) != SR_OK
) {
138 g_critical("Failed to use device.");
139 sr_session_destroy(session
);
147 g_string_free(buf
, TRUE
);
149 df_arg
->session
= NULL
;
150 sr_session_destroy(session
);
154 void load_input_file(gboolean do_props
)
156 struct df_arg_desc df_arg
;
157 struct sr_session
*session
;
158 struct sr_dev_inst
*sdi
;
160 GMainLoop
*main_loop
;
163 memset(&df_arg
, 0, sizeof(df_arg
));
164 df_arg
.do_props
= do_props
;
166 if (!strcmp(opt_input_file
, "-")) {
167 /* Input from stdin is never a session file. */
168 load_input_file_module(&df_arg
);
170 if ((ret
= sr_session_load(sr_ctx
, opt_input_file
,
171 &session
)) == SR_OK
) {
172 /* sigrok session file */
173 ret
= sr_session_dev_list(session
, &devices
);
174 if (ret
!= SR_OK
|| !devices
|| !devices
->data
) {
175 g_critical("Failed to access session device.");
176 g_slist_free(devices
);
177 sr_session_destroy(session
);
181 g_slist_free(devices
);
182 if (select_channels(sdi
) != SR_OK
) {
183 sr_session_destroy(session
);
186 main_loop
= g_main_loop_new(NULL
, FALSE
);
188 df_arg
.session
= session
;
189 sr_session_datafeed_callback_add(session
,
190 datafeed_in
, &df_arg
);
191 sr_session_stopped_callback_set(session
,
192 (sr_session_stopped_callback
)g_main_loop_quit
,
194 if (sr_session_start(session
) == SR_OK
)
195 g_main_loop_run(main_loop
);
197 g_main_loop_unref(main_loop
);
198 df_arg
.session
= NULL
;
199 sr_session_destroy(session
);
200 } else if (ret
!= SR_ERR
) {
201 /* It's a session file, but it didn't work out somehow. */
202 g_critical("Failed to load session file.");
204 /* Fall back on input modules. */
205 load_input_file_module(&df_arg
);