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
|
/* -*- c++ -*- */
/*
* Copyright 2003,2005 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
#include <fusb_win32.h>
#include <usb.h>
#include <assert.h>
#include <stdexcept>
static const int MAX_BLOCK_SIZE = fusb_sysconfig::max_block_size();
static const int DEFAULT_BLOCK_SIZE = MAX_BLOCK_SIZE;
static const int DEFAULT_BUFFER_SIZE = 16 * (1L << 20); // 16 MB / endpoint
static const int USB_TIMEOUT = 1000; // in milliseconds
fusb_devhandle_win32::fusb_devhandle_win32 (usb_dev_handle *udh)
: fusb_devhandle (udh)
{
// that's it
}
fusb_devhandle_win32::~fusb_devhandle_win32 ()
{
// nop
}
fusb_ephandle *
fusb_devhandle_win32::make_ephandle (int endpoint, bool input_p,
int block_size, int nblocks)
{
return new fusb_ephandle_win32 (this, endpoint, input_p,
block_size, nblocks);
}
// ----------------------------------------------------------------
fusb_ephandle_win32::fusb_ephandle_win32 (fusb_devhandle_win32 *dh,
int endpoint, bool input_p,
int block_size, int nblocks)
: fusb_ephandle (endpoint, input_p, block_size, nblocks),
d_devhandle (dh), d_input_leftover(0),d_output_short(0)
{
if (d_block_size < 0 || d_block_size > MAX_BLOCK_SIZE)
throw std::out_of_range ("fusb_ephandle_win32: block_size");
if (d_nblocks < 0)
throw std::out_of_range ("fusb_ephandle_win32: nblocks");
if (d_block_size == 0)
d_block_size = DEFAULT_BLOCK_SIZE;
if (d_nblocks == 0)
d_nblocks = std::max (1, DEFAULT_BUFFER_SIZE / d_block_size);
d_buffer = new char [d_block_size*d_nblocks];
d_context = new void * [d_nblocks];
// allocate contexts
usb_dev_handle *dev = dh->get_usb_dev_handle ();
int i;
if (d_input_p)
endpoint |= USB_ENDPOINT_IN;
for (i=0; i<d_nblocks; i++)
usb_bulk_setup_async(dev, &d_context[i], endpoint);
}
fusb_ephandle_win32::~fusb_ephandle_win32 ()
{
int i;
stop ();
for (i=0; i<d_nblocks; i++)
usb_free_async(&d_context[i]);
delete [] d_buffer;
delete [] d_context;
}
bool
fusb_ephandle_win32::start ()
{
if (d_started)
return true; // already running
d_started = true;
d_curr = d_nblocks-1;
d_outstanding_write = 0;
d_input_leftover =0;
d_output_short = 0;
if (d_input_p){ // fire off all the reads
int i;
for (i=0; i<d_nblocks; i++) {
usb_submit_async(d_context[i], (char * ) d_buffer+i*d_block_size,
d_block_size);
}
}
return true;
}
bool
fusb_ephandle_win32::stop ()
{
if (!d_started)
return true;
if (!d_input_p)
wait_for_completion ();
d_started = false;
return true;
}
int
fusb_ephandle_win32::write (const void *buffer, int nbytes)
{
int retval=0;
char *buf;
if (!d_started) // doesn't matter here, but keeps semantics constant
return -1;
if (d_input_p)
return -1;
int bytes_to_write = nbytes;
int a=0;
if (d_output_short != 0) {
buf = &d_buffer[d_curr*d_block_size + d_block_size - d_output_short];
a = std::min(nbytes, d_output_short);
memcpy(buf, buffer, a);
bytes_to_write -= a;
d_output_short -= a;
if (d_output_short == 0)
usb_submit_async(d_context[d_curr],
&d_buffer[d_curr*d_block_size], d_block_size);
if (bytes_to_write == 0)
return nbytes;
assert(d_output_short == 0);
}
d_curr = (d_curr+1)%d_nblocks;
buf = &d_buffer[d_curr*d_block_size];
if (d_outstanding_write != d_nblocks) {
d_outstanding_write++;
} else {
retval = usb_reap_async(d_context[d_curr], USB_TIMEOUT);
if (retval < 0) {
fprintf(stderr, "%s: usb_reap_async: %s\n",
__FUNCTION__, usb_strerror());
return retval;
}
}
memcpy(buf, (void *) &(((char*)buffer)[a]), bytes_to_write);
d_output_short = d_block_size - bytes_to_write;
if (d_output_short == 0)
usb_submit_async(d_context[d_curr], buf, d_block_size);
return retval < 0 ? retval : nbytes;
}
int
fusb_ephandle_win32::read (void *buffer, int nbytes)
{
int retval=0;
char *buf;
if (!d_started) // doesn't matter here, but keeps semantics constant
return -1;
if (!d_input_p)
return -1;
int bytes_to_read = nbytes;
int a=0;
if (d_input_leftover != 0) {
buf = &d_buffer[d_curr*d_block_size + d_block_size - d_input_leftover];
a = std::min(nbytes, d_input_leftover);
memcpy(buffer, buf, a);
bytes_to_read -= a;
d_input_leftover -= a;
if (d_input_leftover == 0)
usb_submit_async(d_context[d_curr],
&d_buffer[d_curr*d_block_size], d_block_size);
if (bytes_to_read == 0)
return nbytes;
assert(d_input_leftover == 0);
}
d_curr = (d_curr+1)%d_nblocks;
buf = &d_buffer[d_curr*d_block_size];
retval = usb_reap_async(d_context[d_curr], USB_TIMEOUT);
if (retval < 0)
fprintf(stderr, "%s: usb_reap_async: %s\n",
__FUNCTION__, usb_strerror());
memcpy((void *) &(((char*)buffer)[a]), buf, bytes_to_read);
d_input_leftover = d_block_size - bytes_to_read;
if (d_input_leftover == 0)
usb_submit_async(d_context[d_curr], buf, d_block_size);
return retval < 0 ? retval : nbytes;
}
void
fusb_ephandle_win32::wait_for_completion ()
{
int i;
for (i=0; i<d_outstanding_write; i++) {
int context_num;
context_num = (d_curr+d_outstanding_write+i+1)%d_nblocks;
usb_reap_async(d_context[context_num], USB_TIMEOUT);
}
d_outstanding_write = 0;
}
|