]> sigrok.org Git - libsigrok.git/blob - session_driver.c
Other method to avoid "unused var" compiler warnings.
[libsigrok.git] / session_driver.c
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2011 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
20 #include <sys/types.h>
21 #include <sys/stat.h>
22 #include <fcntl.h>
23 #include <unistd.h>
24 #include <sys/time.h>
25 #include <zip.h>
26 #include <sigrok.h>
27 #include <sigrok-internal.h>
28
29 /* size of payloads sent across the session bus */
30 #define CHUNKSIZE 4096
31
32 struct session_vdevice {
33         char *capturefile;
34         struct zip *archive;
35         struct zip_file *capfile;
36         uint64_t samplerate;
37         int unitsize;
38         int num_probes;
39 };
40
41 static char *sessionfile = NULL;
42 static GSList *device_instances = NULL;
43 static int capabilities[] = {
44         SR_HWCAP_CAPTUREFILE,
45         SR_HWCAP_CAPTURE_UNITSIZE,
46         0,
47 };
48
49
50 static struct session_vdevice *get_vdevice_by_index(int device_index)
51 {
52         struct sr_device_instance *sdi;
53         struct session_vdevice *vdevice;
54
55         if (!(sdi = sr_get_device_instance(device_instances, device_index)))
56                 return NULL;
57
58         vdevice = sdi->priv;
59
60         return vdevice;
61 }
62
63 static int feed_chunk(int fd, int revents, void *session_data)
64 {
65         struct sr_device_instance *sdi;
66         struct session_vdevice *vdevice;
67         struct sr_datafeed_packet packet;
68         struct sr_datafeed_logic logic;
69         GSList *l;
70         void *buf;
71         int ret, got_data;
72
73         /* Avoid compiler warnings. */
74         (void)fd;
75         (void)revents;
76
77         sr_dbg("session_driver: feed chunk");
78
79         got_data = FALSE;
80         for (l = device_instances; l; l = l->next) {
81                 sdi = l->data;
82                 vdevice = sdi->priv;
83                 if (!vdevice)
84                         /* already done with this instance */
85                         continue;
86
87                 if (!(buf = g_try_malloc(CHUNKSIZE))) {
88                         sr_err("session: %s: buf malloc failed", __func__);
89                         // return SR_ERR_MALLOC;
90                         return FALSE;
91                 }
92
93                 ret = zip_fread(vdevice->capfile, buf, CHUNKSIZE);
94                 if (ret > 0) {
95                         got_data = TRUE;
96                         packet.type = SR_DF_LOGIC;
97                         packet.timeoffset = 0;
98                         packet.duration = 0;
99                         packet.payload = &logic;
100                         logic.length = ret;
101                         logic.unitsize = vdevice->unitsize;
102                         logic.data = buf;
103                         sr_session_bus(session_data, &packet);
104                 } else {
105                         /* done with this capture file */
106                         zip_fclose(vdevice->capfile);
107                         g_free(vdevice->capturefile);
108                         g_free(vdevice);
109                         sdi->priv = NULL;
110                 }
111         }
112
113         if (!got_data) {
114                 packet.type = SR_DF_END;
115                 sr_session_bus(session_data, &packet);
116         }
117
118         return TRUE;
119 }
120
121 /* driver callbacks */
122 static void hw_cleanup(void);
123
124 static int hw_init(const char *deviceinfo)
125 {
126         hw_cleanup();
127
128         sessionfile = g_strdup(deviceinfo);
129
130         return 0;
131 }
132
133 static void hw_cleanup(void)
134 {
135         GSList *l;
136
137         for (l = device_instances; l; l = l->next)
138                 sr_device_instance_free(l->data);
139
140         g_slist_free(device_instances);
141         device_instances = NULL;
142
143         sr_session_source_remove(-1);
144
145         g_free(sessionfile);
146
147 }
148
149 static int hw_opendev(int device_index)
150 {
151         struct sr_device_instance *sdi;
152
153         sdi = sr_device_instance_new(device_index, SR_ST_INITIALIZING,
154                 NULL, NULL, NULL);
155         if (!sdi)
156                 return SR_ERR;
157
158         if (!(sdi->priv = g_try_malloc0(sizeof(struct session_vdevice)))) {
159                 sr_err("session: %s: sdi->priv malloc failed", __func__);
160                 return SR_ERR_MALLOC;
161         }
162
163         device_instances = g_slist_append(device_instances, sdi);
164
165         return SR_OK;
166 }
167
168 static void *hw_get_device_info(int device_index, int device_info_id)
169 {
170         struct session_vdevice *vdevice;
171         void *info;
172
173         if (device_info_id != SR_DI_CUR_SAMPLERATE)
174                 return NULL;
175
176         if (!(vdevice = get_vdevice_by_index(device_index)))
177                 return NULL;
178
179         info = &vdevice->samplerate;
180
181         return info;
182 }
183
184 static int hw_get_status(int device_index)
185 {
186         /* Avoid compiler warnings. */
187         (void)device_index;
188
189         if (devices)
190                 return SR_OK;
191         else
192                 return SR_ERR;
193 }
194
195 static int *hw_get_capabilities(void)
196 {
197
198         return capabilities;
199 }
200
201 static int hw_set_configuration(int device_index, int capability, void *value)
202 {
203         struct session_vdevice *vdevice;
204         uint64_t *tmp_u64;
205
206         if (!(vdevice = get_vdevice_by_index(device_index)))
207                 return SR_ERR;
208
209         switch (capability) {
210         case SR_HWCAP_SAMPLERATE:
211                 tmp_u64 = value;
212                 vdevice->samplerate = *tmp_u64;
213                 break;
214         case SR_HWCAP_CAPTUREFILE:
215                 vdevice->capturefile = g_strdup(value);
216                 break;
217         case SR_HWCAP_CAPTURE_UNITSIZE:
218                 tmp_u64 = value;
219                 vdevice->unitsize = *tmp_u64;
220                 break;
221         case SR_HWCAP_CAPTURE_NUM_PROBES:
222                 tmp_u64 = value;
223                 vdevice->num_probes = *tmp_u64;
224                 break;
225         default:
226                 return SR_ERR;
227         }
228
229         return SR_OK;
230 }
231
232 static int hw_start_acquisition(int device_index, gpointer session_device_id)
233 {
234         struct zip_stat zs;
235         struct session_vdevice *vdevice;
236         struct sr_datafeed_header *header;
237         struct sr_datafeed_packet *packet;
238         int err;
239
240         /* Avoid compiler warnings. */
241         (void)session_device_id;
242
243         if (!(vdevice = get_vdevice_by_index(device_index)))
244                 return SR_ERR;
245
246         sr_info("session_driver: opening archive %s file %s", sessionfile,
247                 vdevice->capturefile);
248
249         if (!(vdevice->archive = zip_open(sessionfile, 0, &err))) {
250                 sr_warn("Failed to open session file '%s': zip error %d\n",
251                         sessionfile, err);
252                 return SR_ERR;
253         }
254
255         if (zip_stat(vdevice->archive, vdevice->capturefile, 0, &zs) == -1) {
256                 sr_warn("Failed to check capture file '%s' in session file '%s'.",
257                         vdevice->capturefile, sessionfile);
258                 return SR_ERR;
259         }
260
261         if (!(vdevice->capfile = zip_fopen(vdevice->archive, vdevice->capturefile, 0))) {
262                 sr_warn("Failed to open capture file '%s' in session file '%s'.",
263                         vdevice->capturefile, sessionfile);
264                 return SR_ERR;
265         }
266
267         /* freewheeling source */
268         sr_session_source_add(-1, 0, 0, feed_chunk, session_device_id);
269
270         if (!(packet = g_try_malloc(sizeof(struct sr_datafeed_packet)))) {
271                 sr_err("session: %s: packet malloc failed", __func__);
272                 return SR_ERR_MALLOC;
273         }
274
275         if (!(header = g_try_malloc(sizeof(struct sr_datafeed_header)))) {
276                 sr_err("session: %s: header malloc failed", __func__);
277                 return SR_ERR_MALLOC;
278         }
279
280         /* Send header packet to the session bus. */
281         packet->type = SR_DF_HEADER;
282         packet->payload = (unsigned char *)header;
283         header->feed_version = 1;
284         gettimeofday(&header->starttime, NULL);
285         header->samplerate = 0;
286         header->num_logic_probes = vdevice->num_probes;
287         header->num_analog_probes = 0;
288         sr_session_bus(session_device_id, packet);
289         g_free(header);
290         g_free(packet);
291
292         return SR_OK;
293 }
294
295 struct sr_device_plugin session_driver = {
296         "session",
297         "Session-emulating driver",
298         1,
299         hw_init,
300         hw_cleanup,
301         hw_opendev,
302         NULL,
303         hw_get_device_info,
304         hw_get_status,
305         hw_get_capabilities,
306         hw_set_configuration,
307         hw_start_acquisition,
308         NULL,
309 };