2 * This file is part of the sigrok-cli project.
4 * Copyright (C) 2011 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"
27 static struct sr_probe
*find_probe(GSList
*probelist
, const char *probename
)
29 struct sr_probe
*probe
;
33 for (l
= probelist
; l
; l
= l
->next
) {
35 if (!strcmp(probe
->name
, probename
))
38 probe
= l
? l
->data
: NULL
;
43 GSList
*parse_probestring(struct sr_dev_inst
*sdi
, const char *probestring
)
45 struct sr_probe
*probe
;
48 char **tokens
, **range
, **names
, *eptr
, str
[8];
50 if (!probestring
|| !probestring
[0])
51 /* All probes are enabled by default by the driver. */
58 tokens
= g_strsplit(probestring
, ",", 0);
59 for (i
= 0; tokens
[i
]; i
++) {
60 if (tokens
[i
][0] == '\0') {
61 g_critical("Invalid empty probe.");
65 if (strchr(tokens
[i
], '-')) {
66 /* A range of probes in the form a-b. This will only work
67 * if the probes are named as numbers -- so every probe
68 * in the range must exist as a probe name string in the
70 range
= g_strsplit(tokens
[i
], "-", 2);
71 if (!range
[0] || !range
[1] || range
[2]) {
72 /* Need exactly two arguments. */
73 g_critical("Invalid probe syntax '%s'.", tokens
[i
]);
78 b
= strtol(range
[0], &eptr
, 10);
79 if (eptr
== range
[0] || *eptr
!= '\0') {
80 g_critical("Invalid probe '%s'.", range
[0]);
84 e
= strtol(range
[1], NULL
, 10);
85 if (eptr
== range
[1] || *eptr
!= '\0') {
86 g_critical("Invalid probe '%s'.", range
[1]);
90 if (b
< 0 || b
>= e
) {
91 g_critical("Invalid probe range '%s'.", tokens
[i
]);
97 n
= snprintf(str
, 8, "%d", b
);
99 g_critical("Invalid probe '%d'.", b
);
103 probe
= find_probe(sdi
->probes
, str
);
105 g_critical("unknown probe '%d'.", b
);
109 probelist
= g_slist_append(probelist
, probe
);
119 names
= g_strsplit(tokens
[i
], "=", 2);
120 if (!names
[0] || (names
[1] && names
[2])) {
121 /* Need one or two arguments. */
122 g_critical("Invalid probe '%s'.", tokens
[i
]);
127 probe
= find_probe(sdi
->probes
, names
[0]);
129 g_critical("unknown probe '%s'.", names
[0]);
136 probe
->name
= g_strdup(names
[1]);
138 probelist
= g_slist_append(probelist
, probe
);
146 g_slist_free(probelist
);
155 GHashTable
*parse_generic_arg(const char *arg
, gboolean sep_first
)
165 hash
= g_hash_table_new_full(g_str_hash
, g_str_equal
,
167 elements
= g_strsplit(arg
, ":", 0);
169 g_hash_table_insert(hash
, g_strdup("sigrok_key"),
170 g_strdup(elements
[i
++]));
171 for (; elements
[i
]; i
++) {
172 e
= strchr(elements
[i
], '=');
174 g_hash_table_insert(hash
, g_strdup(elements
[i
]), NULL
);
177 g_hash_table_insert(hash
, g_strdup(elements
[i
]), g_strdup(e
));
180 g_strfreev(elements
);
185 static char *strcanon(const char *str
)
190 /* Returns newly allocated string. */
191 s
= g_ascii_strdown(str
, -1);
192 for (p0
= p1
= 0; str
[p0
]; p0
++) {
193 if ((s
[p0
] >= 'a' && s
[p0
] <= 'z')
194 || (s
[p0
] >= '0' && s
[p0
] <= '9'))
202 int canon_cmp(const char *str1
, const char *str2
)
209 ret
= g_ascii_strcasecmp(s1
, s2
);