|
| 1 | +from ctypes import * |
| 2 | + |
| 3 | + |
| 4 | +class DevicesList(Structure): |
| 5 | + _fields_ = [("names", POINTER(c_char_p)), |
| 6 | + ("count", c_int)] |
| 7 | + |
| 8 | + |
| 9 | +class CardTapResponse(Structure): |
| 10 | + _fields_ = [("isSuccess", c_int), |
| 11 | + ("errorCode", c_int), |
| 12 | + ("uid", c_char*32)] |
| 13 | + |
| 14 | + |
| 15 | +CardsBase = windll.LoadLibrary('CardsBase.dll') |
| 16 | + |
| 17 | +createInstanceByName = CardsBase.createInstanceByName |
| 18 | +destroyInstance = CardsBase.destroyInstance |
| 19 | +runOnCardPresent = CardsBase.runOnCardPresent |
| 20 | +getDevicesList = CardsBase.getDevicesList |
| 21 | +freeDevicesList = CardsBase.freeDevicesList |
| 22 | + |
| 23 | +getDevicesList.restype = DevicesList |
| 24 | +createInstanceByName.restype = c_void_p |
| 25 | +destroyInstance.restype = c_int |
| 26 | +runOnCardPresent.restype = None |
| 27 | +freeDevicesList.restype = None |
| 28 | + |
| 29 | +CARD_TAP_FUNC = WINFUNCTYPE(None, CardTapResponse) |
| 30 | +STATUS_CHANGE_FUNC = WINFUNCTYPE(None, c_int) |
| 31 | + |
| 32 | + |
| 33 | +def get_devices_list(): |
| 34 | + devices_list_struct = getDevicesList() |
| 35 | + devices_list = [] |
| 36 | + |
| 37 | + for i in range(devices_list_struct.count): |
| 38 | + devices_list.append(devices_list_struct.names[i].decode()) |
| 39 | + |
| 40 | + freeDevicesList(devices_list_struct) |
| 41 | + |
| 42 | + return devices_list |
| 43 | + |
| 44 | + |
| 45 | +def create_instance_by_name(device_name, api_key): |
| 46 | + return createInstanceByName(c_char_p(device_name.encode()), c_char_p(api_key.encode())) |
| 47 | + |
| 48 | + |
| 49 | +def destroy_instance(instance): |
| 50 | + return destroyInstance(instance) |
| 51 | + |
| 52 | + |
| 53 | +def run_on_card_present(instance, card_tap_handler, status_change_handler): |
| 54 | + runOnCardPresent(instance, CARD_TAP_FUNC(card_tap_handler), STATUS_CHANGE_FUNC(status_change_handler)) |
0 commit comments