-
-
Notifications
You must be signed in to change notification settings - Fork 110
/
hid.pyx
451 lines (392 loc) · 13.7 KB
/
hid.pyx
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
import sys
import weakref
from chid cimport *
from libc.stddef cimport wchar_t, size_t
__version__ = "0.14.0.post3"
hid_init()
cdef extern from "<ctype.h>":
int wcslen(wchar_t*)
cdef extern from "<stdlib.h>":
void free(void* ptr)
void* malloc(size_t size)
cdef extern from *:
object PyUnicode_FromWideChar(const wchar_t *w, Py_ssize_t size)
Py_ssize_t PyUnicode_AsWideChar(object unicode, wchar_t *w, Py_ssize_t size)
cdef object U(wchar_t *wcs):
if wcs == NULL:
return ''
cdef int n = wcslen(wcs)
return PyUnicode_FromWideChar(wcs, n)
def enumerate(int vendor_id=0, int product_id=0):
"""Return a list of discovered HID devices.
The fields of dict are:
- 'path'
- 'vendor_id'
- 'product_id'
- 'serial_number'
- 'release_number'
- 'manufacturer_string'
- 'product_string'
- 'usage_page'
- 'usage'
- 'interface_number'
:param vendor_id: Vendor id to look for, default = 0
:type vendor_id: int, optional
:param product_id: Product id to look for, default = 0
:type product_id: int, optional
:return: List of device dictionaries
:rtype: List[Dict]
"""
cdef hid_device_info* info
with nogil:
info = hid_enumerate(vendor_id, product_id)
cdef hid_device_info* c = info
res = []
while c:
res.append({
'path': c.path,
'vendor_id': c.vendor_id,
'product_id': c.product_id,
'serial_number': U(c.serial_number),
'release_number': c.release_number,
'manufacturer_string': U(c.manufacturer_string),
'product_string': U(c.product_string),
'usage_page': c.usage_page,
'usage': c.usage,
'interface_number': c.interface_number,
'bus_type': c.bus_type,
})
c = c.next
hid_free_enumeration(info)
return res
def version_str():
"""Return a runtime version string of the hidapi C library.
:return: version string of library
:rtype: str
"""
return (<bytes>hid_version_str()).decode('ascii')
cdef class _closer:
"""Wrap a hid_device *ptr and a provide a way to call hid_close() on it.
Used internally for weakref.finalize, which only accepts Python objects.
"""
cdef hid_device *_ptr
@staticmethod
cdef wrap(hid_device *ptr):
cdef _closer closer = _closer()
closer._ptr = ptr
return closer
def close(self):
hid_close(self._ptr)
cdef class device:
"""Device class.
A device instance can be used to read from and write to a HID device.
"""
cdef hid_device *_c_hid
cdef object __weakref__ # enable weak-reference support
cdef object _close
def open(self, int vendor_id=0, int product_id=0, unicode serial_number=None):
"""Open the connection.
:param vendor_id: Vendor id to connect to, default = 0
:type vendor_id: int, optional
:param product_id: Product id to connect to, default = 0
:type product_id: int, optional
:param serial_number:
:type serial_number: unicode, optional
:raises IOError:
"""
cdef wchar_t * cserial_number = NULL
cdef int serial_len
cdef Py_ssize_t result
if self._c_hid != NULL:
raise RuntimeError('already open')
try:
if serial_number is not None:
serial_len = len(serial_number)
cserial_number = <wchar_t*>malloc(sizeof(wchar_t) * (serial_len+1))
if cserial_number == NULL:
raise MemoryError()
result = PyUnicode_AsWideChar(serial_number, cserial_number, serial_len)
if result == -1:
raise ValueError("invalid serial number string")
cserial_number[serial_len] = 0 # Must explicitly null-terminate
self._c_hid = hid_open(vendor_id, product_id, cserial_number)
finally:
if cserial_number != NULL:
free(cserial_number)
if self._c_hid == NULL:
raise IOError('open failed')
self._close = weakref.finalize(self, _closer.wrap(self._c_hid).close)
def open_path(self, bytes path):
"""Open connection by path.
:param path: Path to device
:type path: bytes
:raises IOError:
"""
cdef char* cbuff = path
if self._c_hid != NULL:
raise RuntimeError('already open')
self._c_hid = hid_open_path(cbuff)
if self._c_hid == NULL:
raise IOError('open failed')
self._close = weakref.finalize(self, _closer.wrap(self._c_hid).close)
def close(self):
"""Close connection.
This should always be called after opening a connection.
"""
if self._c_hid != NULL:
self._close()
self._close.detach()
self._c_hid = NULL
def write(self, buff):
"""Accept a list of integers (0-255) and send them to the device.
:param buff: Data to write (must be convertible to `bytes`)
:type buff: Any
:return: Write result
:rtype: int
"""
if self._c_hid == NULL:
raise ValueError('not open')
# convert to bytes
if sys.version_info < (3, 0):
buff = ''.join(map(chr, buff))
else:
buff = bytes(buff)
cdef hid_device * c_hid = self._c_hid
cdef unsigned char* cbuff = buff # covert to c string
cdef size_t c_buff_len = len(buff)
cdef int result
with nogil:
result = hid_write(c_hid, cbuff, c_buff_len)
return result
def set_nonblocking(self, int v):
"""Set the nonblocking flag.
:param v: Flag value (1 or 0, True or False)
:type v: int, bool
:return: Flag result
:rtype: int
"""
if self._c_hid == NULL:
raise ValueError('not open')
return hid_set_nonblocking(self._c_hid, v)
def read(self, int max_length, int timeout_ms=0):
"""Return a list of integers (0-255) from the device up to max_length bytes.
:param max_length: Maximum number of bytes to read
:type max_length: int
:param timeout_ms: Number of milliseconds until timeout (default: no timeout)
:type timeout_ms: int, optional
:return: Read bytes
:rtype: List[int]
"""
if self._c_hid == NULL:
raise ValueError('not open')
cdef unsigned char lbuff[16]
cdef unsigned char* cbuff
cdef size_t c_max_length = max_length
cdef int c_timeout_ms = timeout_ms
cdef hid_device * c_hid = self._c_hid
try:
if max_length <= 16:
cbuff = lbuff
else:
cbuff = <unsigned char *>malloc(max_length)
if timeout_ms > 0:
with nogil:
n = hid_read_timeout(c_hid, cbuff, c_max_length, c_timeout_ms)
else:
with nogil:
n = hid_read(c_hid, cbuff, c_max_length)
if n is -1:
raise IOError('read error')
res = []
for i in range(n):
res.append(cbuff[i])
finally:
if max_length > 16:
free(cbuff)
return res
def get_manufacturer_string(self):
"""Return manufacturer string (e.g. vendor name).
:return:
:rtype: str
:raises ValueError: If connection is not opened.
:raises IOError:
"""
if self._c_hid == NULL:
raise ValueError('not open')
cdef wchar_t buff[255]
cdef int r = hid_get_manufacturer_string(self._c_hid, buff, 255)
if r < 0:
raise IOError('get manufacturer string error')
return U(buff)
def get_product_string(self):
"""Return product string (e.g. device description).
:return:
:rtype: str
:raises ValueError: If connection is not opened.
:raises IOError:
"""
if self._c_hid == NULL:
raise ValueError('not open')
cdef wchar_t buff[255]
cdef int r = hid_get_product_string(self._c_hid, buff, 255)
if r < 0:
raise IOError('get product string error')
return U(buff)
def get_serial_number_string(self):
"""Return serial number.
:return:
:rtype: str
:raises ValueError: If connection is not opened.
:raises IOError:
"""
if self._c_hid == NULL:
raise ValueError('not open')
cdef wchar_t buff[255]
cdef int r = hid_get_serial_number_string(self._c_hid, buff, 255)
if r < 0:
raise IOError('get serial number string error')
return U(buff)
def get_indexed_string(self, index):
"""Return indexed string.
:return:
:rtype: str
:raises ValueError: If connection is not opened.
:raises IOError:
"""
if self._c_hid == NULL:
raise ValueError('not open')
cdef wchar_t buff[255]
cdef unsigned char c_index = index
cdef int r = hid_get_indexed_string(self._c_hid, c_index, buff, 255)
if r < 0:
raise IOError('get indexed string error')
return U(buff)
def send_feature_report(self, buff):
"""Accept a list of integers (0-255) and send them to the device.
:param buff: Data to send (must be convertible into bytes)
:type buff: any
:return: Send result
:rtype: int
"""
if self._c_hid == NULL:
raise ValueError('not open')
# convert to bytes
if sys.version_info < (3, 0):
buff = ''.join(map(chr, buff))
else:
buff = bytes(buff)
cdef hid_device * c_hid = self._c_hid
cdef unsigned char* cbuff = buff # covert to c string
cdef size_t c_buff_len = len(buff)
cdef int result
with nogil:
result = hid_send_feature_report(c_hid, cbuff, c_buff_len)
return result
def get_report_descriptor(self, int max_length=4096):
"""Return the report descriptor up to max_length bytes.
If max_length is bigger than the actual descriptor, the full descriptor will be returned.
:param max_length: Maximum number of bytes to read, must be positive
:type max_length: int
:return:
:rtype: List[int]
:raises ValueError: If connection is not opened.
:raises IOError: If read error
"""
if self._c_hid == NULL:
raise ValueError('not open')
cdef unsigned char* cbuff
cdef size_t c_descriptor_length = max(1, max_length)
cdef hid_device * c_hid = self._c_hid
cdef int n
result = []
try:
cbuff = <unsigned char *>malloc(max_length)
with nogil:
n = hid_get_report_descriptor(c_hid, cbuff, c_descriptor_length)
if n < 0:
raise IOError('read error')
for i in range(n):
result.append(cbuff[i])
finally:
free(cbuff)
return result
def get_feature_report(self, int report_num, int max_length):
"""Receive feature report.
:param report_num:
:type report_num: int
:param max_length:
:type max_length: int
:return: Incoming feature report
:rtype: List[int]
:raises ValueError: If connection is not opened.
:raises IOError:
"""
if self._c_hid == NULL:
raise ValueError('not open')
cdef hid_device * c_hid = self._c_hid
cdef unsigned char lbuff[16]
cdef unsigned char* cbuff
cdef size_t c_max_length = max_length
cdef int n
try:
if max_length <= 16:
cbuff = lbuff
else:
cbuff = <unsigned char *>malloc(max_length)
cbuff[0] = report_num
with nogil:
n = hid_get_feature_report(c_hid, cbuff, c_max_length)
res = []
if n < 0:
raise IOError('read error')
for i in range(n):
res.append(cbuff[i])
finally:
if max_length > 16:
free(cbuff)
return res
def get_input_report(self, int report_num, int max_length):
"""Get input report
:param report_num:
:type report_num: int
:param max_length:
:type max_length: int
:return:
:rtype: List[int]
:raises ValueError: If connection is not opened.
:raises IOError:
"""
if self._c_hid == NULL:
raise ValueError('not open')
cdef hid_device * c_hid = self._c_hid
cdef unsigned char lbuff[16]
cdef unsigned char* cbuff
cdef size_t c_max_length = max_length
cdef int n
try:
if max_length <= 16:
cbuff = lbuff
else:
cbuff = <unsigned char *>malloc(max_length)
cbuff[0] = report_num
with nogil:
n = hid_get_input_report(c_hid, cbuff, c_max_length)
res = []
if n < 0:
raise IOError('read error')
for i in range(n):
res.append(cbuff[i])
finally:
if max_length > 16:
free(cbuff)
return res
def error(self):
"""Get error from device, or global error if no device is opened.
:return:
:rtype: str
:raises IOError:
"""
return U(<wchar_t*>hid_error(self._c_hid))
# Finalize the HIDAPI library *only* once there are no more references to this
# module, and it is being garbage collected.
weakref.finalize(sys.modules[__name__], hid_exit)