1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
|
/* -*- c++ -*- */
/*
* Copyright 2006 Free Software Foundation, Inc.
*
* This file is part of GNU Radio.
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNU Radio; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
// tell mld_threads to NOT use omni_threads,
// but rather Darwin's pthreads
#undef _USE_OMNI_THREADS_
#include <usb.h>
#include "fusb.h"
#include "fusb_darwin.h"
#include "darwin_libusb.h"
static const int USB_TIMEOUT = 100; // in milliseconds
static const UInt8 NUM_QUEUE_ITEMS = 20;
fusb_devhandle_darwin::fusb_devhandle_darwin (usb_dev_handle* udh)
: fusb_devhandle (udh)
{
// that's it
}
fusb_devhandle_darwin::~fusb_devhandle_darwin ()
{
// nop
}
fusb_ephandle*
fusb_devhandle_darwin::make_ephandle (int endpoint, bool input_p,
int block_size, int nblocks)
{
return new fusb_ephandle_darwin (this, endpoint, input_p,
block_size, nblocks);
}
// ----------------------------------------------------------------
fusb_ephandle_darwin::fusb_ephandle_darwin (fusb_devhandle_darwin* dh,
int endpoint, bool input_p,
int block_size, int nblocks)
: fusb_ephandle (endpoint, input_p, block_size, nblocks),
d_devhandle (dh), d_pipeRef (0), d_transferType (0),
d_interfaceRef (0), d_interface (0), d_queue (0),
d_buffer (0), d_bufLenBytes (0)
{
d_bufLenBytes = fusb_sysconfig::max_block_size();
// create circular buffer
d_buffer = new circular_buffer<char> (NUM_QUEUE_ITEMS * d_bufLenBytes,
!d_input_p, d_input_p);
// create the queue
d_queue = new circular_linked_list <s_buffer_ptr> (NUM_QUEUE_ITEMS);
d_queue->iterate_start ();
s_node_ptr l_node = d_queue->iterate_next ();
while (l_node) {
l_node->both (new s_both<s_buffer_ptr> (l_node, this));
s_buffer_ptr l_buf = new s_buffer (d_bufLenBytes);
l_node->object (l_buf);
l_node = d_queue->iterate_next ();
l_buf = NULL;
}
d_readRunning = new mld_mutex ();
d_runThreadRunning = new mld_mutex ();
d_runBlock = new mld_condition ();
d_readBlock = new mld_condition ();
}
fusb_ephandle_darwin::~fusb_ephandle_darwin ()
{
stop ();
d_queue->iterate_start ();
s_node_ptr l_node = d_queue->iterate_next ();
while (l_node) {
s_both_ptr l_both = l_node->both ();
delete l_both;
l_both = NULL;
l_node->both (NULL);
s_buffer_ptr l_buf = l_node->object ();
delete l_buf;
l_buf = NULL;
l_node->object (NULL);
l_node = d_queue->iterate_next ();
}
delete d_queue;
d_queue = NULL;
delete d_buffer;
d_buffer = NULL;
delete d_readRunning;
d_readRunning = NULL;
delete d_runThreadRunning;
d_runThreadRunning = NULL;
delete d_runBlock;
d_runBlock = NULL;
delete d_readBlock;
d_readBlock = NULL;
}
bool
fusb_ephandle_darwin::start ()
{
UInt8 direction, number, interval;
UInt16 maxPacketSize;
// reset circular buffer
d_buffer->reset ();
// reset the queue
d_queue->num_used (0);
d_queue->iterate_start ();
s_node_ptr l_node = d_queue->iterate_next ();
while (l_node) {
l_node->both()->set (l_node, this);
l_node->object()->reset ();
l_node->set_available ();
l_node = d_queue->iterate_next ();
}
d_pipeRef = d_transferType = 0;
usb_dev_handle* dev = d_devhandle->get_usb_dev_handle ();
if (! dev)
USB_ERROR_STR (false, -ENXIO, "fusb_ephandle_darwin::start: "
"null device");
darwin_dev_handle* device = (darwin_dev_handle*) dev->impl_info;
if (! device)
USB_ERROR_STR (false, -ENOENT, "fusb_ephandle_darwin::start: "
"device not initialized");
if (usb_debug)
fprintf (stderr, "fusb_ephandle_darwin::start: "
"dev = %p, device = %p\n", dev, device);
d_interfaceRef = device->interface;
if (! d_interfaceRef)
USB_ERROR_STR (false, -EACCES, "fusb_ephandle_darwin::start: "
"interface used without being claimed");
d_interface = *d_interfaceRef;
// get read or write pipe info (depends on "d_input_p")
if (usb_debug > 3)
fprintf (stderr, "fusb_ephandle_darwin::start "
"d_endpoint = %d, d_input_p = %s\n",
d_endpoint, d_input_p ? "TRUE" : "FALSE");
int l_endpoint = (d_input_p ? USB_ENDPOINT_IN : USB_ENDPOINT_OUT);
int pipeRef = ep_to_pipeRef (device, d_endpoint | l_endpoint);
if (pipeRef < 0)
USB_ERROR_STR (false, -EINVAL, "fusb_ephandle_darwin::start "
" invalid pipeRef.\n");
d_pipeRef = pipeRef;
d_interface->GetPipeProperties (d_interfaceRef,
d_pipeRef,
&direction,
&number,
&d_transferType,
&maxPacketSize,
&interval);
if (usb_debug == 3)
fprintf (stderr, "fusb_ephandle_darwin::start: %s: ep = 0x%02x, "
"pipeRef = %d, d_i = %p, d_iR = %p, if_dir = %d, if_# = %d, "
"if_int = %d, if_maxPS = %d\n", d_input_p ? "read" : "write",
d_endpoint, d_pipeRef, d_interface, d_interfaceRef, direction,
number, interval, maxPacketSize);
// set global start boolean
d_started = true;
// create the run thread, which allows OSX to process I/O separately
d_runThread = new mld_thread (run_thread, this);
// wait until the threads are -really- going
d_runBlock->wait ();
if (usb_debug)
fprintf (stderr, "fusb_ephandle_darwin::start: %s started.\n",
d_input_p ? "read" : "write");
return (true);
}
void
fusb_ephandle_darwin::run_thread (void* arg)
{
fusb_ephandle_darwin* This = static_cast<fusb_ephandle_darwin*>(arg);
mld_mutex_ptr l_runThreadRunning = This->d_runThreadRunning;
l_runThreadRunning->lock ();
mld_mutex_ptr l_readRunning = This->d_readRunning;
mld_condition_ptr l_readBlock = This->d_readBlock;
bool l_input_p = This->d_input_p;
if (usb_debug)
fprintf (stderr, "fusb_ephandle_darwin::run_thread: "
"starting for %s.\n",
l_input_p ? "read" : "write");
usb_interface_t** l_interfaceRef = This->d_interfaceRef;
usb_interface_t* l_interface = This->d_interface;
CFRunLoopSourceRef l_cfSource;
// create async run loop
l_interface->CreateInterfaceAsyncEventSource (l_interfaceRef, &l_cfSource);
CFRunLoopAddSource (CFRunLoopGetCurrent (), l_cfSource,
kCFRunLoopDefaultMode);
// get run loop reference, to allow other threads to stop
This->d_CFRunLoopRef = CFRunLoopGetCurrent ();
mld_thread_ptr l_rwThread = NULL;
if (l_input_p) {
l_rwThread = new mld_thread (read_thread, arg);
// wait until the the rwThread is -really- going
l_readBlock->wait ();
}
// now signal the run condition to release and finish ::start()
This->d_runBlock->signal ();
// run the loop
CFRunLoopRun ();
if (l_input_p) {
// wait for read_thread () to finish
l_readRunning->lock ();
l_readRunning->unlock ();
}
// remove run loop stuff
CFRunLoopRemoveSource (CFRunLoopGetCurrent (),
l_cfSource, kCFRunLoopDefaultMode);
if (usb_debug)
fprintf (stderr, "fusb_ephandle_darwin::run_thread: finished for %s.\n",
l_input_p ? "read" : "write");
l_runThreadRunning->unlock ();
}
void
fusb_ephandle_darwin::read_thread (void* arg)
{
if (usb_debug)
fprintf (stderr, "fusb_ephandle_darwin::read_thread: starting.\n");
fusb_ephandle_darwin* This = static_cast<fusb_ephandle_darwin*>(arg);
mld_mutex_ptr l_readRunning = This->d_readRunning;
l_readRunning->lock ();
// signal the read condition from run_thread() to continue
mld_condition_ptr l_readBlock = This->d_readBlock;
l_readBlock->signal ();
s_queue_ptr l_queue = This->d_queue;
l_queue->iterate_start ();
s_node_ptr l_node = l_queue->iterate_next ();
while (l_node) {
This->read_issue (l_node->both ());
l_node = l_queue->iterate_next ();
}
if (usb_debug)
fprintf (stderr, "fusb_ephandle_darwin::read_thread: finished.\n");
l_readRunning->unlock ();
}
void
fusb_ephandle_darwin::read_issue (s_both_ptr l_both)
{
if ((! l_both) || (! d_started))
return;
// set the node and buffer from the input "both"
s_node_ptr l_node = l_both->node ();
s_buffer_ptr l_buf = l_node->object ();
void* v_buffer = (void*) l_buf->buffer ();
// read up to d_bufLenBytes
UInt32 bufLen = d_bufLenBytes;
l_buf->n_used (bufLen);
// setup system call result
io_return_t result = kIOReturnSuccess;
if (d_transferType == kUSBInterrupt)
/* This is an interrupt pipe. We can't specify a timeout. */
result = d_interface->ReadPipeAsync
(d_interfaceRef, d_pipeRef, v_buffer, bufLen,
(IOAsyncCallback1) read_completed, (void*) l_both);
else
result = d_interface->ReadPipeAsyncTO
(d_interfaceRef, d_pipeRef, v_buffer, bufLen, 0, USB_TIMEOUT,
(IOAsyncCallback1) read_completed, (void*) l_both);
if (result != kIOReturnSuccess)
USB_ERROR_STR_NO_RET (- darwin_to_errno (result),
"fusb_ephandle_darwin::read_issue "
"(ReadPipeAsync%s): %s",
d_transferType == kUSBInterrupt ? "" : "TO",
darwin_error_str (result));
}
void
fusb_ephandle_darwin::read_completed (void* refCon,
io_return_t result,
void* io_size)
{
UInt32 l_size = (UInt32) io_size;
s_both_ptr l_both = static_cast<s_both_ptr>(refCon);
fusb_ephandle_darwin* This = static_cast<fusb_ephandle_darwin*>(l_both->This ());
s_node_ptr l_node = l_both->node ();
circular_buffer<char>* l_buffer = This->d_buffer;
s_buffer_ptr l_buf = l_node->object ();
UInt32 l_i_size = l_buf->n_used ();
if (This->d_started && (l_i_size != l_size))
fprintf (stderr, "fusb_ephandle_darwin::read_completed: "
"Expected %ld bytes; read %ld.\n",
l_i_size, l_size);
// add this read to the transfer buffer
if (l_buffer->enqueue (l_buf->buffer (), l_size) == -1) {
fputs ("iU", stderr);
fflush (stderr);
}
// set buffer's # data to 0
l_buf->n_used (0);
// issue another read for this "both"
This->read_issue (l_both);
}
int
fusb_ephandle_darwin::read (void* buffer, int nbytes)
{
UInt32 l_nbytes = (UInt32) nbytes;
d_buffer->dequeue ((char*) buffer, &l_nbytes);
return ((int) l_nbytes);
}
int
fusb_ephandle_darwin::write (const void* buffer, int nbytes)
{
UInt32 l_nbytes = (UInt32) nbytes;
if (! d_started) return (0);
while (l_nbytes != 0) {
// find out how much data to copy; limited to "d_bufLenBytes" per node
UInt32 t_nbytes = (l_nbytes > d_bufLenBytes) ? d_bufLenBytes : l_nbytes;
// get next available node to write into;
// blocks internally if none available
s_node_ptr l_node = d_queue->find_next_available_node ();
// copy the input into the node's buffer
s_buffer_ptr l_buf = l_node->object ();
l_buf->buffer ((char*) buffer, t_nbytes);
void* v_buffer = (void*) l_buf->buffer ();
// setup callback parameter & system call return
s_both_ptr l_both = l_node->both ();
io_return_t result = kIOReturnSuccess;
if (d_transferType == kUSBInterrupt)
/* This is an interrupt pipe ... can't specify a timeout. */
result = d_interface->WritePipeAsync
(d_interfaceRef, d_pipeRef, v_buffer, l_nbytes,
(IOAsyncCallback1) write_completed, (void*) l_both);
else
result = d_interface->WritePipeAsyncTO
(d_interfaceRef, d_pipeRef, v_buffer, l_nbytes, 0, USB_TIMEOUT,
(IOAsyncCallback1) write_completed, (void*) l_both);
if (result != kIOReturnSuccess)
USB_ERROR_STR (-1, - darwin_to_errno (result),
"fusb_ephandle_darwin::write_thread "
"(WritePipeAsync%s): %s",
d_transferType == kUSBInterrupt ? "" : "TO",
darwin_error_str (result));
l_nbytes -= t_nbytes;
}
return (nbytes);
}
void
fusb_ephandle_darwin::write_completed (void* refCon,
io_return_t result,
void* io_size)
{
s_both_ptr l_both = static_cast<s_both_ptr>(refCon);
fusb_ephandle_darwin* This = static_cast<fusb_ephandle_darwin*>(l_both->This ());
UInt32 l_size = (UInt32) io_size;
s_node_ptr l_node = l_both->node ();
s_queue_ptr l_queue = This->d_queue;
s_buffer_ptr l_buf = l_node->object ();
UInt32 l_i_size = l_buf->n_used ();
if (This->d_started && (l_i_size != l_size))
fprintf (stderr, "fusb_ephandle_darwin::write_completed: "
"Expected %ld bytes written; wrote %ld.\n",
l_i_size, l_size);
// set buffer's # data to 0
l_buf->n_used (0);
// make the node available for reuse
l_queue->make_node_available (l_node);
}
void
fusb_ephandle_darwin::abort ()
{
if (usb_debug)
fprintf (stderr, "fusb_ephandle_darwin::abort: starting.\n");
io_return_t result = d_interface->AbortPipe (d_interfaceRef, d_pipeRef);
if (result != kIOReturnSuccess)
USB_ERROR_STR_NO_RET (- darwin_to_errno (result),
"fusb_ephandle_darwin::abort "
"(AbortPipe): %s", darwin_error_str (result));
if (usb_debug)
fprintf (stderr, "fusb_ephandle_darwin::abort: finished.\n");
}
bool
fusb_ephandle_darwin::stop ()
{
if (! d_started)
return (true);
if (usb_debug)
fprintf (stderr, "fusb_ephandle_darwin::stop: stopping %s.\n",
d_input_p ? "read" : "write");
d_started = false;
// abort any pending IO transfers
abort ();
// wait for write transfer to finish
wait_for_completion ();
// tell IO buffer to abort any waiting conditions
d_buffer->abort ();
// stop the run loop
CFRunLoopStop (d_CFRunLoopRef);
// wait for the runThread to stop
d_runThreadRunning->lock ();
d_runThreadRunning->unlock ();
if (usb_debug)
fprintf (stderr, "fusb_ephandle_darwin::stop: %s stopped.\n",
d_input_p ? "read" : "write");
return (true);
}
void
fusb_ephandle_darwin::wait_for_completion ()
{
if (d_queue)
while (d_queue->in_use ())
usleep (1000);
}
|