-
Notifications
You must be signed in to change notification settings - Fork 312
/
Copy pathclient.py
754 lines (607 loc) · 27.2 KB
/
client.py
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
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
# -*- coding: utf-8 -*-
"""
BLE Client for Windows 10 systems, implemented with WinRT.
Created on 2020-08-19 by hbldh <[email protected]>
"""
import inspect
import logging
import asyncio
import uuid
from functools import wraps
from typing import Callable, Any, List, Optional, Sequence, Union
from bleak_winrt.windows.devices.bluetooth import (
BluetoothLEDevice,
BluetoothConnectionStatus,
BluetoothCacheMode,
BluetoothAddressType,
)
from bleak_winrt.windows.devices.bluetooth.genericattributeprofile import (
GattCharacteristic,
GattCommunicationStatus,
GattDescriptor,
GattDeviceService,
GattWriteOption,
GattCharacteristicProperties,
GattClientCharacteristicConfigurationDescriptorValue,
GattSession,
)
from bleak_winrt.windows.devices.enumeration import (
DevicePairingKinds,
DevicePairingResultStatus,
DeviceUnpairingResultStatus,
)
from bleak_winrt.windows.storage.streams import Buffer
from bleak.backends.device import BLEDevice
from bleak.backends.winrt.scanner import BleakScannerWinRT
from bleak.exc import BleakError, PROTOCOL_ERROR_CODES
from bleak.backends.client import BaseBleakClient
from bleak.backends.characteristic import BleakGATTCharacteristic
from bleak.backends.service import BleakGATTServiceCollection
from bleak.backends.winrt.service import BleakGATTServiceWinRT
from bleak.backends.winrt.characteristic import BleakGATTCharacteristicWinRT
from bleak.backends.winrt.descriptor import BleakGATTDescriptorWinRT
logger = logging.getLogger(__name__)
_ACCESS_DENIED_SERVICES = list(
uuid.UUID(u)
for u in ("00001812-0000-1000-8000-00805f9b34fb",) # Human Interface Device Service
)
_pairing_statuses = {
getattr(DevicePairingResultStatus, v): v
for v in dir(DevicePairingResultStatus)
if "_" not in v and isinstance(getattr(DevicePairingResultStatus, v), int)
}
_unpairing_statuses = {
getattr(DeviceUnpairingResultStatus, v): v
for v in dir(DeviceUnpairingResultStatus)
if "_" not in v and isinstance(getattr(DeviceUnpairingResultStatus, v), int)
}
# TODO: we can use this when minimum Python is 3.8
# class _Result(typing.Protocol):
# status: GattCommunicationStatus
# protocol_error: typing.Optional[int]
def _ensure_success(result: Any, attr: Optional[str], fail_msg: str) -> Any:
"""
Ensures that *status* is ``GattCommunicationStatus.SUCCESS``, otherwise
raises ``BleakError``.
Args:
result: The result returned by a WinRT API method.
attr: The name of the attribute containing the result.
fail_msg: A message to include in the exception.
"""
status = result.status if hasattr(result, "status") else result
if status == GattCommunicationStatus.SUCCESS:
return None if attr is None else getattr(result, attr)
if status == GattCommunicationStatus.PROTOCOL_ERROR:
err = PROTOCOL_ERROR_CODES.get(result.protocol_error, "Unknown")
raise BleakError(
f"{fail_msg}: Protocol Error 0x{result.protocol_error:02X}: {err}"
)
if status == GattCommunicationStatus.ACCESS_DENIED:
raise BleakError(f"{fail_msg}: Access Denied")
if status == GattCommunicationStatus.UNREACHABLE:
raise BleakError(f"{fail_msg}: Unreachable")
raise BleakError(f"{fail_msg}: Unexpected status code 0x{result.status:02X}")
class BleakClientWinRT(BaseBleakClient):
"""Native Windows Bleak Client.
Implemented using `winrt <https://github.com/Microsoft/xlang/tree/master/src/package/pywinrt/projection>`_,
a package that enables Python developers to access Windows Runtime APIs directly from Python.
Args:
address_or_ble_device (`BLEDevice` or str): The Bluetooth address of the BLE peripheral to connect to or the `BLEDevice` object representing it.
Keyword Args:
timeout (float): Timeout for required ``BleakScanner.find_device_by_address`` call. Defaults to 10.0.
"""
def __init__(self, address_or_ble_device: Union[BLEDevice, str], **kwargs):
super(BleakClientWinRT, self).__init__(address_or_ble_device, **kwargs)
# Backend specific. WinRT objects.
if isinstance(address_or_ble_device, BLEDevice):
self._device_info = address_or_ble_device.details.bluetooth_address
else:
self._device_info = None
self._requester = None
self._connect_events: List[asyncio.Event] = []
self._disconnect_events: List[asyncio.Event] = []
self._session: GattSession = None
self._address_type = (
kwargs["address_type"]
if "address_type" in kwargs
and kwargs["address_type"] in ("public", "random")
else None
)
self._connection_status_changed_token = None
def __str__(self):
return "BleakClientWinRT ({0})".format(self.address)
# Connectivity methods
async def connect(self, **kwargs) -> bool:
"""Connect to the specified GATT server.
Keyword Args:
timeout (float): Timeout for required ``BleakScanner.find_device_by_address`` call. Defaults to 10.0.
Returns:
Boolean representing connection status.
"""
# Try to find the desired device.
timeout = kwargs.get("timeout", self._timeout)
if self._device_info is None:
device = await BleakScannerWinRT.find_device_by_address(
self.address, timeout=timeout
)
if device:
self._device_info = device.details.bluetooth_address
else:
raise BleakError(
"Device with address {0} was not found.".format(self.address)
)
logger.debug("Connecting to BLE device @ {0}".format(self.address))
args = [
self._device_info,
]
if self._address_type is not None:
args.append(
BluetoothAddressType.PUBLIC
if self._address_type == "public"
else BluetoothAddressType.RANDOM
)
self._requester = await BluetoothLEDevice.from_bluetooth_address_async(*args)
if self._requester is None:
# https://github.com/microsoft/Windows-universal-samples/issues/1089#issuecomment-487586755
raise BleakError(
f"Failed to connect to {self._device_info}. If the device requires pairing, then pair first. If the device uses a random address, it may have changed."
)
# Called on disconnect event or on failure to connect.
def handle_disconnect():
if self._connection_status_changed_token:
self._requester.remove_connection_status_changed(
self._connection_status_changed_token
)
self._connection_status_changed_token = None
if self._requester:
self._requester.close()
self._requester = None
if self._session:
self._session.close()
self._session = None
def handle_connection_status_changed(
connection_status: BluetoothConnectionStatus,
):
if connection_status == BluetoothConnectionStatus.CONNECTED:
for e in self._connect_events:
e.set()
elif connection_status == BluetoothConnectionStatus.DISCONNECTED:
if self._disconnected_callback:
self._disconnected_callback(self)
for e in self._disconnect_events:
e.set()
handle_disconnect()
loop = asyncio.get_running_loop()
def _ConnectionStatusChanged_Handler(sender, args):
logger.debug(
"_ConnectionStatusChanged_Handler: %d", sender.connection_status
)
loop.call_soon_threadsafe(
handle_connection_status_changed, sender.connection_status
)
self._connection_status_changed_token = (
self._requester.add_connection_status_changed(
_ConnectionStatusChanged_Handler
)
)
# Start a GATT Session to connect
event = asyncio.Event()
self._connect_events.append(event)
try:
self._session = await GattSession.from_device_id_async(
self._requester.bluetooth_device_id
)
# This keeps the device connected until we dispose the session or
# until we set maintain_connection = False.
self._session.maintain_connection = True
await asyncio.wait_for(event.wait(), timeout=timeout)
except BaseException:
handle_disconnect()
raise
finally:
self._connect_events.remove(event)
# Obtain services, which also leads to connection being established.
await self.get_services()
return True
async def disconnect(self, **kwargs) -> bool:
"""Disconnect from the specified GATT server.
Keyword Args:
timeout (float): Defaults to 10.0.
Returns:
Boolean representing if device is disconnected.
"""
logger.debug("Disconnecting from BLE device...")
timeout = kwargs.get("timeout", self._timeout)
# Remove notifications.
for handle, event_handler_token in list(self._notification_callbacks.items()):
char = self.services.get_characteristic(handle)
char.obj.remove_value_changed(event_handler_token)
self._notification_callbacks.clear()
# Dispose all service components that we have requested and created.
for service in self.services:
service.obj.close()
self.services = BleakGATTServiceCollection()
self._services_resolved = False
# Without this, disposing the BluetoothLEDevice won't disconnect it
if self._session:
self._session.close()
# Dispose of the BluetoothLEDevice and see that the connection
# status is now Disconnected.
if self._requester:
event = asyncio.Event()
self._disconnect_events.append(event)
try:
self._requester.close()
await asyncio.wait_for(event.wait(), timeout=timeout)
finally:
self._disconnect_events.remove(event)
return True
@property
def is_connected(self) -> bool:
"""Check connection status between this client and the server.
Returns:
Boolean representing connection status.
"""
return self._DeprecatedIsConnectedReturn(
False
if self._requester is None
else self._requester.connection_status
== BluetoothConnectionStatus.CONNECTED
)
@property
def mtu_size(self) -> int:
"""Get ATT MTU size for active connection"""
return self._session.max_pdu_size
async def pair(self, protection_level: int = None, **kwargs) -> bool:
"""Attempts to pair with the device.
Keyword Args:
protection_level:
``Windows.Devices.Enumeration.DevicePairingProtectionLevel``
1: None - Pair the device using no levels of protection.
2: Encryption - Pair the device using encryption.
3: EncryptionAndAuthentication - Pair the device using
encryption and authentication. (This will not work in Bleak...)
Returns:
Boolean regarding success of pairing.
"""
if (
self._requester.device_information.pairing.can_pair
and not self._requester.device_information.pairing.is_paired
):
# Currently only supporting Just Works solutions...
ceremony = DevicePairingKinds.CONFIRM_ONLY
custom_pairing = self._requester.device_information.pairing.custom
def handler(sender, args):
args.accept()
pairing_requested_token = custom_pairing.add_pairing_requested(handler)
try:
if protection_level:
pairing_result = await custom_pairing.pair_async(
ceremony, protection_level
)
else:
pairing_result = await custom_pairing.pair_async(ceremony)
except Exception as e:
raise BleakError("Failure trying to pair with device!") from e
finally:
custom_pairing.remove_pairing_requested(pairing_requested_token)
if pairing_result.status not in (
DevicePairingResultStatus.PAIRED,
DevicePairingResultStatus.ALREADY_PAIRED,
):
raise BleakError(
"Could not pair with device: {0}: {1}".format(
pairing_result.status,
_pairing_statuses.get(pairing_result.status),
)
)
else:
logger.info(
"Paired to device with protection level {0}.".format(
pairing_result.protection_level_used
)
)
return True
else:
return self._requester.device_information.pairing.is_paired
async def unpair(self) -> bool:
"""Attempts to unpair from the device.
N.B. unpairing also leads to disconnection in the Windows backend.
Returns:
Boolean on whether the unparing was successful.
"""
if self._requester.device_information.pairing.is_paired:
unpairing_result = (
await self._requester.device_information.pairing.unpair_async()
)
if unpairing_result.status not in (
DevicePairingResultStatus.PAIRED,
DevicePairingResultStatus.ALREADY_PAIRED,
):
raise BleakError(
"Could not unpair with device: {0}: {1}".format(
unpairing_result.status,
_unpairing_statuses.get(unpairing_result.status),
)
)
else:
logger.info("Unpaired with device.")
return True
return not self._requester.device_information.pairing.is_paired
# GATT services methods
async def get_services(self, **kwargs) -> BleakGATTServiceCollection:
"""Get all services registered for this GATT server.
Returns:
A :py:class:`bleak.backends.service.BleakGATTServiceCollection` with this device's services tree.
"""
# Return the Service Collection.
if self._services_resolved:
return self.services
else:
logger.debug("Get Services...")
services: Sequence[GattDeviceService] = _ensure_success(
await self._requester.get_gatt_services_async(
BluetoothCacheMode.UNCACHED
),
"services",
"Could not get GATT services",
)
for service in services:
# Windows returns an ACCESS_DENIED error when trying to enumerate
# characterstics of services used by the OS, like the HID service
# so we have to exclude those services.
if service.uuid in _ACCESS_DENIED_SERVICES:
continue
self.services.add_service(BleakGATTServiceWinRT(service))
characteristics: Sequence[GattCharacteristic] = _ensure_success(
await service.get_characteristics_async(
BluetoothCacheMode.UNCACHED
),
"characteristics",
f"Could not get GATT characteristics for {service}",
)
for characteristic in characteristics:
self.services.add_characteristic(
BleakGATTCharacteristicWinRT(characteristic)
)
descriptors: Sequence[GattDescriptor] = _ensure_success(
await characteristic.get_descriptors_async(
BluetoothCacheMode.UNCACHED
),
"descriptors",
f"Could not get GATT descriptors for {service}",
)
for descriptor in descriptors:
self.services.add_descriptor(
BleakGATTDescriptorWinRT(
descriptor,
str(characteristic.uuid),
characteristic.attribute_handle,
)
)
logger.info("Services resolved for %s", str(self))
self._services_resolved = True
return self.services
# I/O methods
async def read_gatt_char(
self,
char_specifier: Union[BleakGATTCharacteristic, int, str, uuid.UUID],
**kwargs,
) -> bytearray:
"""Perform read operation on the specified GATT characteristic.
Args:
char_specifier (BleakGATTCharacteristic, int, str or UUID): The characteristic to read from,
specified by either integer handle, UUID or directly by the
BleakGATTCharacteristic object representing it.
Keyword Args:
use_cached (bool): ``False`` forces Windows to read the value from the
device again and not use its own cached value. Defaults to ``False``.
Returns:
(bytearray) The read data.
"""
use_cached = kwargs.get("use_cached", False)
if not isinstance(char_specifier, BleakGATTCharacteristic):
characteristic = self.services.get_characteristic(char_specifier)
else:
characteristic = char_specifier
if not characteristic:
raise BleakError("Characteristic {0} was not found!".format(char_specifier))
value = bytearray(
_ensure_success(
await characteristic.obj.read_value_async(
BluetoothCacheMode.CACHED
if use_cached
else BluetoothCacheMode.UNCACHED
),
"value",
f"Could not read characteristic handle {characteristic.handle}",
)
)
logger.debug(f"Read Characteristic {characteristic.handle:04X} : {value}")
return value
async def read_gatt_descriptor(self, handle: int, **kwargs) -> bytearray:
"""Perform read operation on the specified GATT descriptor.
Args:
handle (int): The handle of the descriptor to read from.
Keyword Args:
use_cached (bool): `False` forces Windows to read the value from the
device again and not use its own cached value. Defaults to `False`.
Returns:
(bytearray) The read data.
"""
use_cached = kwargs.get("use_cached", False)
descriptor = self.services.get_descriptor(handle)
if not descriptor:
raise BleakError("Descriptor with handle {0} was not found!".format(handle))
value = bytearray(
_ensure_success(
await descriptor.obj.read_value_async(
BluetoothCacheMode.CACHED
if use_cached
else BluetoothCacheMode.UNCACHED
),
"value",
f"Could not read Descriptor value for {handle:04X}",
)
)
logger.debug(f"Read Descriptor {handle:04X} : {value}")
return value
async def write_gatt_char(
self,
char_specifier: Union[BleakGATTCharacteristic, int, str, uuid.UUID],
data: Union[bytes, bytearray, memoryview],
response: bool = False,
) -> None:
"""Perform a write operation of the specified GATT characteristic.
Args:
char_specifier (BleakGATTCharacteristic, int, str or UUID): The characteristic to write
to, specified by either integer handle, UUID or directly by the
BleakGATTCharacteristic object representing it.
data (bytes or bytearray): The data to send.
response (bool): If write-with-response operation should be done. Defaults to `False`.
"""
if not isinstance(char_specifier, BleakGATTCharacteristic):
characteristic = self.services.get_characteristic(char_specifier)
else:
characteristic = char_specifier
if not characteristic:
raise BleakError("Characteristic {} was not found!".format(char_specifier))
response = (
GattWriteOption.WRITE_WITH_RESPONSE
if response
else GattWriteOption.WRITE_WITHOUT_RESPONSE
)
buf = Buffer(len(data))
buf.length = buf.capacity
with memoryview(buf) as mv:
mv[:] = data
_ensure_success(
await characteristic.obj.write_value_with_result_async(buf, response),
None,
f"Could not write value {data} to characteristic {characteristic.handle:04X}",
)
async def write_gatt_descriptor(
self, handle: int, data: Union[bytes, bytearray, memoryview]
) -> None:
"""Perform a write operation on the specified GATT descriptor.
Args:
handle (int): The handle of the descriptor to read from.
data (bytes or bytearray): The data to send.
"""
descriptor = self.services.get_descriptor(handle)
if not descriptor:
raise BleakError("Descriptor with handle {0} was not found!".format(handle))
buf = Buffer(len(data))
buf.length = buf.capacity
with memoryview(buf) as mv:
mv[:] = data
_ensure_success(
await descriptor.obj.write_value_with_result_async(buf),
None,
f"Could not write value {data} to descriptor {handle:04X}",
)
logger.debug(f"Write Descriptor {handle:04X} : {data}")
async def start_notify(
self,
char_specifier: Union[BleakGATTCharacteristic, int, str, uuid.UUID],
callback: Callable[[int, bytearray], None],
**kwargs,
) -> None:
"""Activate notifications/indications on a characteristic.
Callbacks must accept two inputs. The first will be a uuid string
object and the second will be a bytearray.
.. code-block:: python
def callback(sender, data):
print(f"{sender}: {data}")
client.start_notify(char_uuid, callback)
Args:
char_specifier (BleakGATTCharacteristic, int, str or UUID): The characteristic to activate
notifications/indications on a characteristic, specified by either integer handle,
UUID or directly by the BleakGATTCharacteristic object representing it.
callback (function): The function to be called on notification.
Keyword Args:
force_indicate (bool): If this is set to True, then Bleak will set up a indication request instead of a
notification request, given that the characteristic supports notifications as well as indications.
"""
if inspect.iscoroutinefunction(callback):
def bleak_callback(s, d):
asyncio.ensure_future(callback(s, d))
else:
bleak_callback = callback
if not isinstance(char_specifier, BleakGATTCharacteristic):
characteristic = self.services.get_characteristic(char_specifier)
else:
characteristic = char_specifier
if not characteristic:
raise BleakError("Characteristic {0} not found!".format(char_specifier))
if self._notification_callbacks.get(characteristic.handle):
await self.stop_notify(characteristic)
characteristic_obj = characteristic.obj
# If we want to force indicate even when notify is available, also check if the device
# actually supports indicate as well.
if not kwargs.get("force_indicate", False) and (
characteristic_obj.characteristic_properties
& GattCharacteristicProperties.NOTIFY
):
cccd = GattClientCharacteristicConfigurationDescriptorValue.NOTIFY
elif (
characteristic_obj.characteristic_properties
& GattCharacteristicProperties.INDICATE
):
cccd = GattClientCharacteristicConfigurationDescriptorValue.INDICATE
else:
raise BleakError(
"characteristic does not support notifications or indications"
)
fcn = _notification_wrapper(bleak_callback, asyncio.get_running_loop())
event_handler_token = characteristic_obj.add_value_changed(fcn)
self._notification_callbacks[characteristic.handle] = event_handler_token
try:
_ensure_success(
await characteristic_obj.write_client_characteristic_configuration_descriptor_async(
cccd
),
None,
f"Could not start notify on {characteristic.handle:04X}",
)
except BaseException:
# This usually happens when a device reports that it supports indicate,
# but it actually doesn't.
if characteristic.handle in self._notification_callbacks:
event_handler_token = self._notification_callbacks.pop(
characteristic.handle
)
characteristic_obj.remove_value_changed(event_handler_token)
raise
async def stop_notify(
self, char_specifier: Union[BleakGATTCharacteristic, int, str, uuid.UUID]
) -> None:
"""Deactivate notification/indication on a specified characteristic.
Args:
char_specifier (BleakGATTCharacteristic, int, str or UUID): The characteristic to deactivate
notification/indication on, specified by either integer handle, UUID or
directly by the BleakGATTCharacteristic object representing it.
"""
if not isinstance(char_specifier, BleakGATTCharacteristic):
characteristic = self.services.get_characteristic(char_specifier)
else:
characteristic = char_specifier
if not characteristic:
raise BleakError("Characteristic {} not found!".format(char_specifier))
_ensure_success(
await characteristic.obj.write_client_characteristic_configuration_descriptor_async(
GattClientCharacteristicConfigurationDescriptorValue.NONE
),
None,
f"Could not stop notify on {characteristic.handle:04X}",
)
event_handler_token = self._notification_callbacks.pop(characteristic.handle)
characteristic.obj.remove_value_changed(event_handler_token)
def _notification_wrapper(func: Callable, loop: asyncio.AbstractEventLoop):
@wraps(func)
def notification_parser(sender: Any, args: Any):
# Return only the UUID string representation as sender.
# Also do a conversion from System.Bytes[] to bytearray.
value = bytearray(args.characteristic_value)
return loop.call_soon_threadsafe(func, sender.attribute_handle, value)
return notification_parser