usb 1.7.2-prebuild

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (183) hide show
  1. package/.github/workflows/prebuild.yml +62 -0
  2. package/.gitmodules +3 -0
  3. package/LICENSE +7 -0
  4. package/Readme.md +339 -0
  5. package/binding.gyp +90 -0
  6. package/libusb/.gitattributes +11 -0
  7. package/libusb/.private/README.txt +5 -0
  8. package/libusb/.private/bd.cmd +89 -0
  9. package/libusb/.private/bm.sh +54 -0
  10. package/libusb/.private/bwince.cmd +57 -0
  11. package/libusb/.private/post-rewrite.sh +28 -0
  12. package/libusb/.private/pre-commit.sh +42 -0
  13. package/libusb/.private/wbs.txt +61 -0
  14. package/libusb/.private/wbs_wince.txt +42 -0
  15. package/libusb/AUTHORS +78 -0
  16. package/libusb/COPYING +504 -0
  17. package/libusb/ChangeLog +211 -0
  18. package/libusb/INSTALL +234 -0
  19. package/libusb/INSTALL_WIN.txt +73 -0
  20. package/libusb/Makefile.am +28 -0
  21. package/libusb/NEWS +2 -0
  22. package/libusb/PORTING +94 -0
  23. package/libusb/README +28 -0
  24. package/libusb/README.git +41 -0
  25. package/libusb/TODO +2 -0
  26. package/libusb/Xcode/common.xcconfig +49 -0
  27. package/libusb/Xcode/debug.xcconfig +29 -0
  28. package/libusb/Xcode/libusb.xcconfig +21 -0
  29. package/libusb/Xcode/libusb.xcodeproj/project.pbxproj +1 -0
  30. package/libusb/Xcode/libusb_debug.xcconfig +21 -0
  31. package/libusb/Xcode/libusb_release.xcconfig +21 -0
  32. package/libusb/Xcode/release.xcconfig +30 -0
  33. package/libusb/android/README +114 -0
  34. package/libusb/android/jni/Android.mk +23 -0
  35. package/libusb/android/jni/Application.mk +24 -0
  36. package/libusb/android/jni/examples.mk +134 -0
  37. package/libusb/android/jni/libusb.mk +54 -0
  38. package/libusb/android/jni/tests.mk +56 -0
  39. package/libusb/autogen.sh +8 -0
  40. package/libusb/bootstrap.sh +19 -0
  41. package/libusb/configure.ac +304 -0
  42. package/libusb/doc/Makefile.am +9 -0
  43. package/libusb/doc/doxygen.cfg.in +1288 -0
  44. package/libusb/doc/libusb.png +0 -0
  45. package/libusb/examples/Makefile.am +19 -0
  46. package/libusb/examples/dpfp.c +506 -0
  47. package/libusb/examples/dpfp_threaded.c +544 -0
  48. package/libusb/examples/ezusb.c +831 -0
  49. package/libusb/examples/ezusb.h +120 -0
  50. package/libusb/examples/fxload.c +287 -0
  51. package/libusb/examples/getopt/getopt.c +1060 -0
  52. package/libusb/examples/getopt/getopt.h +180 -0
  53. package/libusb/examples/getopt/getopt1.c +188 -0
  54. package/libusb/examples/hotplugtest.c +104 -0
  55. package/libusb/examples/listdevs.c +71 -0
  56. package/libusb/examples/sam3u_benchmark.c +193 -0
  57. package/libusb/examples/xusb.c +1129 -0
  58. package/libusb/libusb/Makefile.am +75 -0
  59. package/libusb/libusb/core.c +2342 -0
  60. package/libusb/libusb/descriptor.c +1199 -0
  61. package/libusb/libusb/hotplug.c +327 -0
  62. package/libusb/libusb/hotplug.h +82 -0
  63. package/libusb/libusb/io.c +2631 -0
  64. package/libusb/libusb/libusb-1.0.def +166 -0
  65. package/libusb/libusb/libusb-1.0.rc +61 -0
  66. package/libusb/libusb/libusb.h +1998 -0
  67. package/libusb/libusb/libusbi.h +1040 -0
  68. package/libusb/libusb/os/darwin_usb.c +2009 -0
  69. package/libusb/libusb/os/darwin_usb.h +162 -0
  70. package/libusb/libusb/os/linux_netlink.c +369 -0
  71. package/libusb/libusb/os/linux_udev.c +307 -0
  72. package/libusb/libusb/os/linux_usbfs.c +2695 -0
  73. package/libusb/libusb/os/linux_usbfs.h +192 -0
  74. package/libusb/libusb/os/netbsd_usb.c +738 -0
  75. package/libusb/libusb/os/openbsd_usb.c +832 -0
  76. package/libusb/libusb/os/poll_posix.c +51 -0
  77. package/libusb/libusb/os/poll_posix.h +11 -0
  78. package/libusb/libusb/os/poll_windows.c +796 -0
  79. package/libusb/libusb/os/poll_windows.h +131 -0
  80. package/libusb/libusb/os/threads_posix.c +82 -0
  81. package/libusb/libusb/os/threads_posix.h +50 -0
  82. package/libusb/libusb/os/threads_windows.c +212 -0
  83. package/libusb/libusb/os/threads_windows.h +87 -0
  84. package/libusb/libusb/os/wince_usb.c +1032 -0
  85. package/libusb/libusb/os/wince_usb.h +131 -0
  86. package/libusb/libusb/os/windows_common.h +108 -0
  87. package/libusb/libusb/os/windows_usb.c +5347 -0
  88. package/libusb/libusb/os/windows_usb.h +971 -0
  89. package/libusb/libusb/strerror.c +199 -0
  90. package/libusb/libusb/sync.c +307 -0
  91. package/libusb/libusb/version.h +18 -0
  92. package/libusb/libusb/version_nano.h +1 -0
  93. package/libusb/libusb-1.0.pc.in +11 -0
  94. package/libusb/msvc/config.h +50 -0
  95. package/libusb/msvc/ddk_build.cmd +175 -0
  96. package/libusb/msvc/errno.h +102 -0
  97. package/libusb/msvc/fxload_2010.vcxproj +170 -0
  98. package/libusb/msvc/fxload_2010.vcxproj.filters +25 -0
  99. package/libusb/msvc/fxload_2012.vcxproj +174 -0
  100. package/libusb/msvc/fxload_2012.vcxproj.filters +25 -0
  101. package/libusb/msvc/fxload_2013.vcxproj +174 -0
  102. package/libusb/msvc/fxload_sources +23 -0
  103. package/libusb/msvc/getopt_2005.vcproj +288 -0
  104. package/libusb/msvc/getopt_2010.vcxproj +131 -0
  105. package/libusb/msvc/getopt_2010.vcxproj.filters +26 -0
  106. package/libusb/msvc/getopt_2012.vcxproj +136 -0
  107. package/libusb/msvc/getopt_2012.vcxproj.filters +26 -0
  108. package/libusb/msvc/getopt_2013.vcxproj +136 -0
  109. package/libusb/msvc/getopt_sources +20 -0
  110. package/libusb/msvc/hotplugtest_2010.vcxproj +163 -0
  111. package/libusb/msvc/hotplugtest_2010.vcxproj.filters +14 -0
  112. package/libusb/msvc/hotplugtest_2012.vcxproj +167 -0
  113. package/libusb/msvc/hotplugtest_2012.vcxproj.filters +14 -0
  114. package/libusb/msvc/hotplugtest_2013.vcxproj +167 -0
  115. package/libusb/msvc/hotplugtest_sources +20 -0
  116. package/libusb/msvc/inttypes.h +295 -0
  117. package/libusb/msvc/libusb.dsw +71 -0
  118. package/libusb/msvc/libusb_2005.sln +95 -0
  119. package/libusb/msvc/libusb_2010.sln +94 -0
  120. package/libusb/msvc/libusb_2012.sln +94 -0
  121. package/libusb/msvc/libusb_2013.sln +100 -0
  122. package/libusb/msvc/libusb_2015.sln +100 -0
  123. package/libusb/msvc/libusb_dll.dsp +194 -0
  124. package/libusb/msvc/libusb_dll_2005.vcproj +436 -0
  125. package/libusb/msvc/libusb_dll_2010.vcxproj +170 -0
  126. package/libusb/msvc/libusb_dll_2010.vcxproj.filters +81 -0
  127. package/libusb/msvc/libusb_dll_2012.vcxproj +175 -0
  128. package/libusb/msvc/libusb_dll_2012.vcxproj.filters +84 -0
  129. package/libusb/msvc/libusb_dll_2013.vcxproj +175 -0
  130. package/libusb/msvc/libusb_dll_wince.vcproj +1243 -0
  131. package/libusb/msvc/libusb_sources +38 -0
  132. package/libusb/msvc/libusb_static.dsp +174 -0
  133. package/libusb/msvc/libusb_static_2005.vcproj +362 -0
  134. package/libusb/msvc/libusb_static_2010.vcxproj +156 -0
  135. package/libusb/msvc/libusb_static_2010.vcxproj.filters +74 -0
  136. package/libusb/msvc/libusb_static_2012.vcxproj +160 -0
  137. package/libusb/msvc/libusb_static_2012.vcxproj.filters +74 -0
  138. package/libusb/msvc/libusb_static_2013.vcxproj +160 -0
  139. package/libusb/msvc/libusb_static_wince.vcproj +1185 -0
  140. package/libusb/msvc/libusb_wince.sln +246 -0
  141. package/libusb/msvc/listdevs.dsp +103 -0
  142. package/libusb/msvc/listdevs_2005.vcproj +360 -0
  143. package/libusb/msvc/listdevs_2010.vcxproj +165 -0
  144. package/libusb/msvc/listdevs_2010.vcxproj.filters +14 -0
  145. package/libusb/msvc/listdevs_2012.vcxproj +169 -0
  146. package/libusb/msvc/listdevs_2012.vcxproj.filters +14 -0
  147. package/libusb/msvc/listdevs_2013.vcxproj +169 -0
  148. package/libusb/msvc/listdevs_sources +19 -0
  149. package/libusb/msvc/listdevs_wince.vcproj +1120 -0
  150. package/libusb/msvc/missing.c +80 -0
  151. package/libusb/msvc/missing.h +32 -0
  152. package/libusb/msvc/stdint.h +256 -0
  153. package/libusb/msvc/stress_2005.vcproj +390 -0
  154. package/libusb/msvc/stress_2010.vcxproj +167 -0
  155. package/libusb/msvc/stress_2010.vcxproj.filters +25 -0
  156. package/libusb/msvc/stress_2012.vcxproj +171 -0
  157. package/libusb/msvc/stress_2012.vcxproj.filters +25 -0
  158. package/libusb/msvc/stress_2013.vcxproj +171 -0
  159. package/libusb/msvc/stress_wince.vcproj +1128 -0
  160. package/libusb/msvc/xusb.dsp +102 -0
  161. package/libusb/msvc/xusb_2005.vcproj +344 -0
  162. package/libusb/msvc/xusb_2010.vcxproj +163 -0
  163. package/libusb/msvc/xusb_2010.vcxproj.filters +14 -0
  164. package/libusb/msvc/xusb_2012.vcxproj +167 -0
  165. package/libusb/msvc/xusb_2012.vcxproj.filters +14 -0
  166. package/libusb/msvc/xusb_2013.vcxproj +167 -0
  167. package/libusb/msvc/xusb_sources +20 -0
  168. package/libusb/msvc/xusb_wince.vcproj +1120 -0
  169. package/libusb/tests/Makefile.am +6 -0
  170. package/libusb/tests/libusb_testlib.h +107 -0
  171. package/libusb/tests/stress.c +160 -0
  172. package/libusb/tests/testlib.c +281 -0
  173. package/libusb.gypi +136 -0
  174. package/libusb_config/config.h +1 -0
  175. package/package.json +69 -0
  176. package/src/device.cc +412 -0
  177. package/src/helpers.h +64 -0
  178. package/src/node_usb.cc +319 -0
  179. package/src/node_usb.h +120 -0
  180. package/src/transfer.cc +148 -0
  181. package/src/uv_async_queue.h +33 -0
  182. package/test/usb.coffee +191 -0
  183. package/usb.js +524 -0
@@ -0,0 +1,193 @@
1
+ /*
2
+ * libusb example program to measure Atmel SAM3U isochronous performance
3
+ * Copyright (C) 2012 Harald Welte <laforge@gnumonks.org>
4
+ *
5
+ * Copied with the author's permission under LGPL-2.1 from
6
+ * http://git.gnumonks.org/cgi-bin/gitweb.cgi?p=sam3u-tests.git;a=blob;f=usb-benchmark-project/host/benchmark.c;h=74959f7ee88f1597286cd435f312a8ff52c56b7e
7
+ *
8
+ * An Atmel SAM3U test firmware is also available in the above repository.
9
+ *
10
+ * This library is free software; you can redistribute it and/or
11
+ * modify it under the terms of the GNU Lesser General Public
12
+ * License as published by the Free Software Foundation; either
13
+ * version 2.1 of the License, or (at your option) any later version.
14
+ *
15
+ * This library is distributed in the hope that it will be useful,
16
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18
+ * Lesser General Public License for more details.
19
+ *
20
+ * You should have received a copy of the GNU Lesser General Public
21
+ * License along with this library; if not, write to the Free Software
22
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23
+ */
24
+
25
+ #include <unistd.h>
26
+ #include <stdlib.h>
27
+ #include <stdio.h>
28
+ #include <errno.h>
29
+ #include <signal.h>
30
+
31
+ #include <libusb.h>
32
+
33
+
34
+ #define EP_DATA_IN 0x82
35
+ #define EP_ISO_IN 0x86
36
+
37
+ static int do_exit = 0;
38
+ static struct libusb_device_handle *devh = NULL;
39
+
40
+ static unsigned long num_bytes = 0, num_xfer = 0;
41
+ static struct timeval tv_start;
42
+
43
+ static void LIBUSB_CALL cb_xfr(struct libusb_transfer *xfr)
44
+ {
45
+ unsigned int i;
46
+
47
+ if (xfr->status != LIBUSB_TRANSFER_COMPLETED) {
48
+ fprintf(stderr, "transfer status %d\n", xfr->status);
49
+ libusb_free_transfer(xfr);
50
+ exit(3);
51
+ }
52
+
53
+ if (xfr->type == LIBUSB_TRANSFER_TYPE_ISOCHRONOUS) {
54
+ for (i = 0; i < xfr->num_iso_packets; i++) {
55
+ struct libusb_iso_packet_descriptor *pack = &xfr->iso_packet_desc[i];
56
+
57
+ if (pack->status != LIBUSB_TRANSFER_COMPLETED) {
58
+ fprintf(stderr, "Error: pack %u status %d\n", i, pack->status);
59
+ exit(5);
60
+ }
61
+
62
+ printf("pack%u length:%u, actual_length:%u\n", i, pack->length, pack->actual_length);
63
+ }
64
+ }
65
+
66
+ printf("length:%u, actual_length:%u\n", xfr->length, xfr->actual_length);
67
+ for (i = 0; i < xfr->actual_length; i++) {
68
+ printf("%02x", xfr->buffer[i]);
69
+ if (i % 16)
70
+ printf("\n");
71
+ else if (i % 8)
72
+ printf(" ");
73
+ else
74
+ printf(" ");
75
+ }
76
+ num_bytes += xfr->actual_length;
77
+ num_xfer++;
78
+
79
+ if (libusb_submit_transfer(xfr) < 0) {
80
+ fprintf(stderr, "error re-submitting URB\n");
81
+ exit(1);
82
+ }
83
+ }
84
+
85
+ static int benchmark_in(uint8_t ep)
86
+ {
87
+ static uint8_t buf[2048];
88
+ static struct libusb_transfer *xfr;
89
+ int num_iso_pack = 0;
90
+
91
+ if (ep == EP_ISO_IN)
92
+ num_iso_pack = 16;
93
+
94
+ xfr = libusb_alloc_transfer(num_iso_pack);
95
+ if (!xfr)
96
+ return -ENOMEM;
97
+
98
+ if (ep == EP_ISO_IN) {
99
+ libusb_fill_iso_transfer(xfr, devh, ep, buf,
100
+ sizeof(buf), num_iso_pack, cb_xfr, NULL, 0);
101
+ libusb_set_iso_packet_lengths(xfr, sizeof(buf)/num_iso_pack);
102
+ } else
103
+ libusb_fill_bulk_transfer(xfr, devh, ep, buf,
104
+ sizeof(buf), cb_xfr, NULL, 0);
105
+
106
+ gettimeofday(&tv_start, NULL);
107
+
108
+ /* NOTE: To reach maximum possible performance the program must
109
+ * submit *multiple* transfers here, not just one.
110
+ *
111
+ * When only one transfer is submitted there is a gap in the bus
112
+ * schedule from when the transfer completes until a new transfer
113
+ * is submitted by the callback. This causes some jitter for
114
+ * isochronous transfers and loss of throughput for bulk transfers.
115
+ *
116
+ * This is avoided by queueing multiple transfers in advance, so
117
+ * that the host controller is always kept busy, and will schedule
118
+ * more transfers on the bus while the callback is running for
119
+ * transfers which have completed on the bus.
120
+ */
121
+
122
+ return libusb_submit_transfer(xfr);
123
+ }
124
+
125
+ static void measure(void)
126
+ {
127
+ struct timeval tv_stop;
128
+ unsigned int diff_msec;
129
+
130
+ gettimeofday(&tv_stop, NULL);
131
+
132
+ diff_msec = (tv_stop.tv_sec - tv_start.tv_sec)*1000;
133
+ diff_msec += (tv_stop.tv_usec - tv_start.tv_usec)/1000;
134
+
135
+ printf("%lu transfers (total %lu bytes) in %u miliseconds => %lu bytes/sec\n",
136
+ num_xfer, num_bytes, diff_msec, (num_bytes*1000)/diff_msec);
137
+ }
138
+
139
+ static void sig_hdlr(int signum)
140
+ {
141
+ switch (signum) {
142
+ case SIGINT:
143
+ measure();
144
+ do_exit = 1;
145
+ break;
146
+ }
147
+ }
148
+
149
+ int main(int argc, char **argv)
150
+ {
151
+ int rc;
152
+ struct sigaction sigact;
153
+
154
+ sigact.sa_handler = sig_hdlr;
155
+ sigemptyset(&sigact.sa_mask);
156
+ sigact.sa_flags = 0;
157
+ sigaction(SIGINT, &sigact, NULL);
158
+
159
+ rc = libusb_init(NULL);
160
+ if (rc < 0) {
161
+ fprintf(stderr, "Error initializing libusb: %s\n", libusb_error_name(rc));
162
+ exit(1);
163
+ }
164
+
165
+ devh = libusb_open_device_with_vid_pid(NULL, 0x16c0, 0x0763);
166
+ if (!devh) {
167
+ fprintf(stderr, "Error finding USB device\n");
168
+ goto out;
169
+ }
170
+
171
+ rc = libusb_claim_interface(devh, 2);
172
+ if (rc < 0) {
173
+ fprintf(stderr, "Error claiming interface: %s\n", libusb_error_name(rc));
174
+ goto out;
175
+ }
176
+
177
+ benchmark_in(EP_ISO_IN);
178
+
179
+ while (!do_exit) {
180
+ rc = libusb_handle_events(NULL);
181
+ if (rc != LIBUSB_SUCCESS)
182
+ break;
183
+ }
184
+
185
+ /* Measurement has already been done by the signal handler. */
186
+
187
+ libusb_release_interface(devh, 0);
188
+ out:
189
+ if (devh)
190
+ libusb_close(devh);
191
+ libusb_exit(NULL);
192
+ return rc;
193
+ }