]> sigrok.org Git - libsigrok.git/blame - src/transform/transform.c
transform: Add a "nop" transform module.
[libsigrok.git] / src / transform / transform.c
CommitLineData
988357ca
UH
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2014 Bert Vermeulen <bert@biot.com>
5 * Copyright (C) 2015 Uwe Hermann <uwe@hermann-uwe.de>
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#include <string.h>
22#include "libsigrok.h"
23#include "libsigrok-internal.h"
24
25#define LOG_PREFIX "transform"
26
27/**
28 * @file
29 *
30 * Transform module handling.
31 */
32
33/**
34 * @defgroup grp_transform Transform modules
35 *
36 * Transform module handling.
37 *
38 * @{
39 */
40
41/** @cond PRIVATE */
39f1752e 42extern SR_PRIV struct sr_transform_module transform_nop;
988357ca
UH
43/* @endcond */
44
45static const struct sr_transform_module *transform_module_list[] = {
39f1752e 46 &transform_nop,
988357ca
UH
47 NULL,
48};
49
50/**
51 * Returns a NULL-terminated list of all available transform modules.
52 *
53 * @since 0.4.0
54 */
55SR_API const struct sr_transform_module **sr_transform_list(void)
56{
57 return transform_module_list;
58}
59
60/**
61 * Returns the specified transform module's ID.
62 *
63 * @since 0.4.0
64 */
65SR_API const char *sr_transform_id_get(const struct sr_transform_module *tmod)
66{
67 if (!tmod) {
68 sr_err("Invalid transform module NULL!");
69 return NULL;
70 }
71
72 return tmod->id;
73}
74
75/**
76 * Returns the specified transform module's name.
77 *
78 * @since 0.4.0
79 */
80SR_API const char *sr_transform_name_get(const struct sr_transform_module *tmod)
81{
82 if (!tmod) {
83 sr_err("Invalid transform module NULL!");
84 return NULL;
85 }
86
87 return tmod->name;
88}
89
90/**
91 * Returns the specified transform module's description.
92 *
93 * @since 0.4.0
94 */
95SR_API const char *sr_transform_description_get(const struct sr_transform_module *tmod)
96{
97 if (!tmod) {
98 sr_err("Invalid transform module NULL!");
99 return NULL;
100 }
101
102 return tmod->desc;
103}
104
105/**
106 * Return the transform module with the specified ID, or NULL if no module
107 * with that ID is found.
108 *
109 * @since 0.4.0
110 */
111SR_API const struct sr_transform_module *sr_transform_find(const char *id)
112{
113 int i;
114
115 for (i = 0; transform_module_list[i]; i++) {
116 if (!strcmp(transform_module_list[i]->id, id))
117 return transform_module_list[i];
118 }
119
120 return NULL;
121}
122
123/**
124 * Returns a NULL-terminated array of struct sr_option, or NULL if the
125 * module takes no options.
126 *
127 * Each call to this function must be followed by a call to
128 * sr_transform_options_free().
129 *
130 * @since 0.4.0
131 */
132SR_API const struct sr_option **sr_transform_options_get(const struct sr_transform_module *tmod)
133{
134 const struct sr_option *mod_opts, **opts;
135 int size, i;
136
137 if (!tmod || !tmod->options)
138 return NULL;
139
140 mod_opts = tmod->options();
141
142 for (size = 0; mod_opts[size].id; size++)
143 ;
144 opts = g_malloc((size + 1) * sizeof(struct sr_option *));
145
146 for (i = 0; i < size; i++)
147 opts[i] = &mod_opts[i];
148 opts[i] = NULL;
149
150 return opts;
151}
152
153/**
154 * After a call to sr_transform_options_get(), this function cleans up all
155 * resources returned by that call.
156 *
157 * @since 0.4.0
158 */
159SR_API void sr_transform_options_free(const struct sr_option **options)
160{
161 int i;
162
163 if (!options)
164 return;
165
166 for (i = 0; options[i]; i++) {
167 if (options[i]->def) {
168 g_variant_unref(options[i]->def);
169 ((struct sr_option *)options[i])->def = NULL;
170 }
171
172 if (options[i]->values) {
173 g_slist_free_full(options[i]->values, (GDestroyNotify)g_variant_unref);
174 ((struct sr_option *)options[i])->values = NULL;
175 }
176 }
177 g_free(options);
178}
179
180/**
181 * Create a new transform instance using the specified transform module.
182 *
183 * <code>options</code> is a *GHashTable with the keys corresponding with
184 * the module options' <code>id</code> field. The values should be GVariant
185 * pointers with sunk * references, of the same GVariantType as the option's
186 * default value.
187 *
188 * The sr_dev_inst passed in can be used by the instance to determine
189 * channel names, samplerate, and so on.
190 *
191 * @since 0.4.0
192 */
193SR_API const struct sr_transform *sr_transform_new(const struct sr_transform_module *tmod,
194 GHashTable *options, const struct sr_dev_inst *sdi)
195{
196 struct sr_transform *t;
197 const struct sr_option *mod_opts;
198 const GVariantType *gvt;
199 GHashTable *new_opts;
200 GHashTableIter iter;
201 gpointer key, value;
202 int i;
203
204 t = g_malloc(sizeof(struct sr_transform));
205 t->module = tmod;
206 t->sdi = sdi;
207
208 new_opts = g_hash_table_new_full(g_str_hash, g_str_equal, g_free,
209 (GDestroyNotify)g_variant_unref);
210 if (tmod->options) {
211 mod_opts = tmod->options();
212 for (i = 0; mod_opts[i].id; i++) {
213 if (options && g_hash_table_lookup_extended(options,
214 mod_opts[i].id, &key, &value)) {
215 /* Pass option along. */
216 gvt = g_variant_get_type(mod_opts[i].def);
217 if (!g_variant_is_of_type(value, gvt)) {
218 sr_err("Invalid type for '%s' option.", key);
219 g_free(t);
220 return NULL;
221 }
222 g_hash_table_insert(new_opts, g_strdup(mod_opts[i].id),
223 g_variant_ref(value));
224 } else {
225 /* Option not given: insert the default value. */
226 g_hash_table_insert(new_opts, g_strdup(mod_opts[i].id),
227 g_variant_ref(mod_opts[i].def));
228 }
229 }
230
231 /* Make sure no invalid options were given. */
232 if (options) {
233 g_hash_table_iter_init(&iter, options);
234 while (g_hash_table_iter_next(&iter, &key, &value)) {
235 if (!g_hash_table_lookup(new_opts, key)) {
236 sr_err("Transform module '%s' has no option '%s'.", tmod->id, key);
237 g_hash_table_destroy(new_opts);
238 g_free(t);
239 return NULL;
240 }
241 }
242 }
243 }
244
245 if (t->module->init && t->module->init(t, new_opts) != SR_OK) {
246 g_free(t);
247 t = NULL;
248 }
249 if (new_opts)
250 g_hash_table_destroy(new_opts);
251
c0a1e532
UH
252 /* Add the transform to the session's list of transforms. */
253 sdi->session->transforms = g_slist_append(sdi->session->transforms, t);
254
988357ca
UH
255 return t;
256}
257
258/**
259 * Free the specified transform instance and all associated resources.
260 *
261 * @since 0.4.0
262 */
263SR_API int sr_transform_free(const struct sr_transform *t)
264{
265 int ret;
266
267 if (!t)
268 return SR_ERR_ARG;
269
270 ret = SR_OK;
271 if (t->module->cleanup)
272 ret = t->module->cleanup((struct sr_transform *)t);
273 g_free((gpointer)t);
274
275 return ret;
276}
277
278/** @} */