]> sigrok.org Git - sigrok-cli.git/blame - input.c
Add --list-supported-wiki option.
[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
d486cbdd 20#include <config.h>
a8b4041a 21#include <sys/types.h>
8d52f788 22#include <sys/stat.h>
a8b4041a
BV
23#include <fcntl.h>
24#include <unistd.h>
8d52f788
DH
25#include <errno.h>
26#include <stdlib.h>
27#include <string.h>
2be182e6 28#include <glib.h>
662a1e27 29#include "sigrok-cli.h"
2be182e6 30
7ac79fb6 31#define CHUNK_SIZE (4 * 1024 * 1024)
2be182e6 32
a8b4041a 33static void load_input_file_module(void)
2be182e6 34{
4bf77ec6 35 struct sr_session *session;
a8b4041a
BV
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;
41 GString *buf;
64f9f5b2
BV
42 gboolean got_sdi;
43 int fd;
a8b4041a
BV
44 ssize_t len;
45 char *mod_id;
a30c837a 46 gboolean is_stdin;
2be182e6 47
a8b4041a
BV
48 if (!sr_input_list())
49 g_critical("No supported input formats available.");
2be182e6 50
a8b4041a
BV
51 mod_id = NULL;
52 mod_args = NULL;
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");
2be182e6
BV
56 }
57
a30c837a 58 is_stdin = strcmp(opt_input_file, "-") == 0;
64f9f5b2 59 fd = 0;
7ac79fb6 60 buf = g_string_sized_new(CHUNK_SIZE);
a8b4041a
BV
61 if (mod_id) {
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 sr_output_options_free(options);
69 } else
70 mod_opts = NULL;
71 if (!(in = sr_input_new(imod, mod_opts)))
72 g_critical("Error: failed to initialize input module.");
73 if (mod_opts)
74 g_hash_table_destroy(mod_opts);
75 if (mod_args)
76 g_hash_table_destroy(mod_args);
a30c837a 77 if (!is_stdin && (fd = open(opt_input_file, O_RDONLY)) < 0)
a8b4041a 78 g_critical("Failed to load %s: %s.", opt_input_file,
19bdd3dd 79 g_strerror(errno));
a8b4041a 80 } else {
a30c837a 81 if (!is_stdin) {
47f97410
BV
82 /*
83 * An actual filename: let the input modules try to
84 * identify the file.
85 */
b66260b9
BV
86 if (sr_input_scan_file(opt_input_file, &in) == SR_OK) {
87 /* That worked, reopen the file for reading. */
88 fd = open(opt_input_file, O_RDONLY);
89 }
47f97410
BV
90 } else {
91 /*
92 * Taking input from a pipe: let the input modules try
93 * to identify the stream content.
94 */
a30c837a 95 if (is_stdin) {
47f97410
BV
96 /* stdin */
97 fd = 0;
98 } else {
a30c837a
GS
99 fd = open(opt_input_file, O_RDONLY);
100 if (fd == -1)
47f97410 101 g_critical("Failed to load %s: %s.", opt_input_file,
19bdd3dd 102 g_strerror(errno));
47f97410 103 }
7ac79fb6 104 if ((len = read(fd, buf->str, CHUNK_SIZE)) < 1)
47f97410 105 g_critical("Failed to read %s: %s.", opt_input_file,
19bdd3dd 106 g_strerror(errno));
47f97410 107 buf->len = len;
b66260b9 108 sr_input_scan_buffer(buf, &in);
47f97410
BV
109 }
110 if (!in)
a8b4041a 111 g_critical("Error: no input module found for this file.");
2be182e6 112 }
3d24ca2d 113 sr_session_new(sr_ctx, &session);
49e9f067 114 sr_session_datafeed_callback_add(session, &datafeed_in, session);
2be182e6 115
64f9f5b2 116 got_sdi = FALSE;
f0f54487 117 while (TRUE) {
a8b4041a 118 g_string_truncate(buf, 0);
7ac79fb6 119 len = read(fd, buf->str, CHUNK_SIZE);
a8b4041a 120 if (len < 0)
19bdd3dd 121 g_critical("Read failed: %s", g_strerror(errno));
64f9f5b2
BV
122 if (len == 0)
123 /* End of file or stream. */
124 break;
a8b4041a
BV
125 buf->len = len;
126 if (sr_input_send(in, buf) != SR_OK)
127 break;
64f9f5b2
BV
128
129 sdi = sr_input_dev_inst_get(in);
f0f54487 130 if (!got_sdi && sdi) {
64f9f5b2
BV
131 /* First time we got a valid sdi. */
132 if (select_channels(sdi) != SR_OK)
133 return;
134 if (sr_session_dev_add(session, sdi) != SR_OK) {
135 g_critical("Failed to use device.");
136 sr_session_destroy(session);
137 return;
138 }
139 got_sdi = TRUE;
140 }
a8b4041a 141 }
67a00747 142 sr_input_end(in);
a8b4041a
BV
143 sr_input_free(in);
144 g_string_free(buf, TRUE);
2be182e6 145
4bf77ec6 146 sr_session_destroy(session);
2be182e6 147
2be182e6
BV
148}
149
150void load_input_file(void)
151{
4bf77ec6 152 struct sr_session *session;
e1ec80fa 153 struct sr_dev_inst *sdi;
a8b4041a 154 GSList *devices;
1ef118ab 155 GMainLoop *main_loop;
e1ec80fa 156 int ret;
2be182e6 157
f5531096
BV
158 if (!strcmp(opt_input_file, "-")) {
159 /* Input from stdin is never a session file. */
a8b4041a 160 load_input_file_module();
f5531096 161 } else {
3d24ca2d
ML
162 if ((ret = sr_session_load(sr_ctx, opt_input_file,
163 &session)) == SR_OK) {
f5531096
BV
164 /* sigrok session file */
165 ret = sr_session_dev_list(session, &devices);
166 if (ret != SR_OK || !devices || !devices->data) {
167 g_critical("Failed to access session device.");
1ef118ab 168 g_slist_free(devices);
f5531096
BV
169 sr_session_destroy(session);
170 return;
171 }
172 sdi = devices->data;
1ef118ab 173 g_slist_free(devices);
f5531096
BV
174 if (select_channels(sdi) != SR_OK) {
175 sr_session_destroy(session);
176 return;
177 }
1ef118ab
DE
178 main_loop = g_main_loop_new(NULL, FALSE);
179
49e9f067 180 sr_session_datafeed_callback_add(session, datafeed_in, session);
1ef118ab
DE
181 sr_session_stopped_callback_set(session,
182 (sr_session_stopped_callback)g_main_loop_quit,
183 main_loop);
184 if (sr_session_start(session) == SR_OK)
185 g_main_loop_run(main_loop);
186
187 g_main_loop_unref(main_loop);
188 sr_session_destroy(session);
f5531096
BV
189 } else if (ret != SR_ERR) {
190 /* It's a session file, but it didn't work out somehow. */
191 g_critical("Failed to load session file.");
192 } else {
193 /* Fall back on input modules. */
194 load_input_file_module();
195 }
2be182e6
BV
196 }
197}