fix mem leaks in examples ftdi_deinit -> ftdi_free
[libftdi] / src / ftdi_stream.c
CommitLineData
40da63b1
UB
1/***************************************************************************
2 ftdi_stream.c - description
3 -------------------
4 copyright : (C) 2009 Micah Dowty 2010 Uwe Bonnes
5 email : opensource@intra2net.com
6 ***************************************************************************/
7
8/***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU Lesser General Public License *
12 * version 2.1 as published by the Free Software Foundation; *
13 * *
14 ***************************************************************************/
15
16/* Adapted from
17 * fastftdi.c - A minimal FTDI FT232H interface for which supports bit-bang
18 * mode, but focuses on very high-performance support for
19 * synchronous FIFO mode. Requires libusb-1.0
20 *
21 * Copyright (C) 2009 Micah Dowty
22 *
23 * Permission is hereby granted, free of charge, to any person obtaining a copy
24 * of this software and associated documentation files (the "Software"), to deal
25 * in the Software without restriction, including without limitation the rights
26 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
27 * copies of the Software, and to permit persons to whom the Software is
28 * furnished to do so, subject to the following conditions:
29 *
30 * The above copyright notice and this permission notice shall be included in
31 * all copies or substantial portions of the Software.
32 *
33 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
34 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
35 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
36 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
37 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
38 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
39 * THE SOFTWARE.
40 */
41
42#include <stdlib.h>
43#include <stdio.h>
44
45#include "ftdi.h"
46
47typedef struct
48{
49 FTDIStreamCallback *callback;
50 void *userdata;
51 int packetsize;
705f012d 52 int activity;
40da63b1
UB
53 int result;
54 FTDIProgressInfo progress;
55} FTDIStreamState;
56
705f012d
UB
57/* Handle callbacks
58 *
59 * With Exit request, free memory and release the transfer
60 *
61 * state->result is only set when some error happens
62 */
40da63b1
UB
63static void
64ftdi_readstream_cb(struct libusb_transfer *transfer)
65{
66 FTDIStreamState *state = transfer->user_data;
67 int packet_size = state->packetsize;
68
705f012d
UB
69 state->activity++;
70 if (transfer->status == LIBUSB_TRANSFER_COMPLETED)
40da63b1 71 {
705f012d
UB
72 int i;
73 uint8_t *ptr = transfer->buffer;
74 int length = transfer->actual_length;
75 int numPackets = (length + packet_size - 1) / packet_size;
b9c1e317 76 int res = 0;
40da63b1 77
705f012d
UB
78 for (i = 0; i < numPackets; i++)
79 {
80 int payloadLen;
81 int packetLen = length;
82
83 if (packetLen > packet_size)
84 packetLen = packet_size;
85
86 payloadLen = packetLen - 2;
87 state->progress.current.totalBytes += payloadLen;
88
89 res = state->callback(ptr + 2, payloadLen,
90 NULL, state->userdata);
91
92 ptr += packetLen;
93 length -= packetLen;
94 }
95 if (res)
96 {
97 free(transfer->buffer);
98 libusb_free_transfer(transfer);
40da63b1
UB
99 }
100 else
101 {
705f012d
UB
102 transfer->status = -1;
103 state->result = libusb_submit_transfer(transfer);
40da63b1
UB
104 }
105 }
106 else
40da63b1 107 {
705f012d
UB
108 fprintf(stderr, "unknown status %d\n",transfer->status);
109 state->result = LIBUSB_ERROR_IO;
40da63b1
UB
110 }
111}
112
113/**
114 Helper function to calculate (unix) time differences
115
116 \param a timeval
117 \param b timeval
118*/
119static double
120TimevalDiff(const struct timeval *a, const struct timeval *b)
121{
122 return (a->tv_sec - b->tv_sec) + 1e-6 * (a->tv_usec - b->tv_usec);
123}
124
125/**
126 Streaming reading of data from the device
705f012d 127
40da63b1
UB
128 Use asynchronous transfers in libusb-1.0 for high-performance
129 streaming of data from a device interface back to the PC. This
130 function continuously transfers data until either an error occurs
131 or the callback returns a nonzero value. This function returns
132 a libusb error code or the callback's return value.
133
134 For every contiguous block of received data, the callback will
135 be invoked.
136
137 \param ftdi pointer to ftdi_context
138 \param callback to user supplied function for one block of data
139 \param userdata
140 \param packetsPerTransfer number of packets per transfer
141 \param numTransfers Number of transfers per callback
142
143*/
144
145int
146ftdi_readstream(struct ftdi_context *ftdi,
147 FTDIStreamCallback *callback, void *userdata,
148 int packetsPerTransfer, int numTransfers)
149{
150 struct libusb_transfer **transfers;
705f012d 151 FTDIStreamState state = { callback, userdata, ftdi->max_packet_size, 1 };
40da63b1
UB
152 int bufferSize = packetsPerTransfer * ftdi->max_packet_size;
153 int xferIndex;
154 int err = 0;
71ac8745
UB
155
156 /* Only FT2232H and FT232H know about the synchronous FIFO Mode*/
157 if ((ftdi->type != TYPE_2232H) && (ftdi->type != TYPE_232H))
158 {
159 fprintf(stderr,"Device doesn't support synchronous FIFO mode\n");
160 return 1;
161 }
705f012d 162
a3886df3
UB
163 /* We don't know in what state we are, switch to reset*/
164 if (ftdi_set_bitmode(ftdi, 0xff, BITMODE_RESET) < 0)
165 {
166 fprintf(stderr,"Can't reset mode\n");
167 return 1;
168 }
169
170 /* Purge anything remaining in the buffers*/
171 if (ftdi_usb_purge_buffers(ftdi) < 0)
172 {
173 fprintf(stderr,"Can't Purge\n");
174 return 1;
175 }
176
40da63b1
UB
177 /*
178 * Set up all transfers
179 */
705f012d 180
40da63b1
UB
181 transfers = calloc(numTransfers, sizeof *transfers);
182 if (!transfers) {
183 err = LIBUSB_ERROR_NO_MEM;
184 goto cleanup;
185 }
705f012d 186
40da63b1
UB
187 for (xferIndex = 0; xferIndex < numTransfers; xferIndex++)
188 {
189 struct libusb_transfer *transfer;
705f012d 190
40da63b1
UB
191 transfer = libusb_alloc_transfer(0);
192 transfers[xferIndex] = transfer;
193 if (!transfer) {
194 err = LIBUSB_ERROR_NO_MEM;
195 goto cleanup;
196 }
705f012d 197
40da63b1
UB
198 libusb_fill_bulk_transfer(transfer, ftdi->usb_dev, ftdi->out_ep,
199 malloc(bufferSize), bufferSize,
200 ftdi_readstream_cb,
201 &state, 0);
705f012d 202
40da63b1
UB
203 if (!transfer->buffer) {
204 err = LIBUSB_ERROR_NO_MEM;
205 goto cleanup;
206 }
705f012d 207
40da63b1
UB
208 transfer->status = -1;
209 err = libusb_submit_transfer(transfer);
210 if (err)
211 goto cleanup;
212 }
213
214 /* Start the transfers only when everything has been set up.
215 * Otherwise the transfers start stuttering and the PC not
216 * fetching data for several to several ten milliseconds
217 * and we skip blocks
218 */
219 if (ftdi_set_bitmode(ftdi, 0xff, BITMODE_SYNCFF) < 0)
220 {
97c6b5f6 221 fprintf(stderr,"Can't set synchronous fifo mode: %s\n",
40da63b1
UB
222 ftdi_get_error_string(ftdi));
223 goto cleanup;
224 }
225
226 /*
227 * Run the transfers, and periodically assess progress.
228 */
705f012d 229
40da63b1 230 gettimeofday(&state.progress.first.time, NULL);
705f012d 231
40da63b1
UB
232 do
233 {
234 FTDIProgressInfo *progress = &state.progress;
235 const double progressInterval = 1.0;
236 struct timeval timeout = { 0, ftdi->usb_read_timeout };
237 struct timeval now;
705f012d 238
02212d8e 239 int err = libusb_handle_events_timeout(ftdi->usb_ctx, &timeout);
705f012d
UB
240 if (err == LIBUSB_ERROR_INTERRUPTED)
241 /* restart interrupted events */
02212d8e 242 err = libusb_handle_events_timeout(ftdi->usb_ctx, &timeout);
40da63b1
UB
243 if (!state.result)
244 {
245 state.result = err;
246 }
705f012d
UB
247 if (state.activity == 0)
248 state.result = 1;
249 else
250 state.activity = 0;
251
40da63b1
UB
252 // If enough time has elapsed, update the progress
253 gettimeofday(&now, NULL);
254 if (TimevalDiff(&now, &progress->current.time) >= progressInterval)
255 {
256 progress->current.time = now;
257 progress->totalTime = TimevalDiff(&progress->current.time,
258 &progress->first.time);
705f012d 259
40da63b1
UB
260 if (progress->prev.totalBytes)
261 {
262 // We have enough information to calculate rates
705f012d 263
40da63b1 264 double currentTime;
705f012d 265
40da63b1
UB
266 currentTime = TimevalDiff(&progress->current.time,
267 &progress->prev.time);
705f012d 268
40da63b1
UB
269 progress->totalRate =
270 progress->current.totalBytes /progress->totalTime;
271 progress->currentRate =
272 (progress->current.totalBytes -
273 progress->prev.totalBytes) / currentTime;
274 }
705f012d
UB
275
276 state.callback(NULL, 0, progress, state.userdata);
40da63b1 277 progress->prev = progress->current;
705f012d 278
40da63b1
UB
279 }
280 } while (!state.result);
705f012d 281
40da63b1
UB
282 /*
283 * Cancel any outstanding transfers, and free memory.
284 */
705f012d 285
40da63b1
UB
286 cleanup:
287 fprintf(stderr, "cleanup\n");
705f012d
UB
288 if (transfers)
289 free(transfers);
40da63b1
UB
290 if (err)
291 return err;
292 else
293 return state.result;
294}
295