Base magstripe-event listener class, for receiving events from the Grabba device's contact smart card reader.
The following events are supported by this class:
Each event may invoke callbacks in two ways:
By default, each listener object will register itself for callbacks upon construction, and deregister itself at destruction; the enable and disable methods may be used if an object requires manual control over when its callbacks are triggered.
The default behaviour for each event, if not overridden, on an enabled listener object is as follows:
Overrides need not call the superclass' equivalent method unless it is necessary to preserve the delegation (i.e. to support both subclassing and delegation from a single object).
Thread safety: This interface is intended to be thread-safe; any classes deriving or delegating from it should ensure that the relevant methods are callable from any thread.
Instance Methods | |
(void) | - APDU_EventFromInterface:response: |
Callback which is invoked when an asynchronous APDU exchange operation completes successfully. More... | |
(void) | - disable |
Disable listening for events from this object, if not already disabled. More... | |
(void) | - enable |
Enable listening for events from this object, if not already enabled. More... | |
(void) | - errorEventFromInterface:error: |
Callback which is invoked when an asynchronous contact smart card operation fails, regardless of reasons. More... | |
(instancetype _Nullable) | - init |
Default initialiser - builds an object then enables event callbacks to it. More... | |
(instancetype _Nullable) | - initWithEnabled: |
Initialiser which allows control over whether event callbacks should be enabled. More... | |
(void) | - insertEventFromInterface: |
Callback which is invoked when a contact smart card is inserted into a reader slot on the Grabba device. More... | |
(void) | - powerDownEventFromInterface: |
Callback which is invoked when a contact smart card is powered down, regardless of reasons. More... | |
(void) | - powerUpEventFromInterface:ATR: |
Callback which is invoked when a contact smart card is powered up. More... | |
(void) | - PPS_EventFromInterface:T:F:D: |
Callback which is invoked when a PPS exchange operation completes successfully. More... | |
(void) | - removeEventFromInterface: |
Callback which is invoked when a contact smart card is removed from a reader slot on the Grabba device. More... | |
Properties | |
ProtocolType _Nullable | delegate |
Delegate for receiving events from non-subclassed listener objects; defaults to nil. More... | |
- (void) APDU_EventFromInterface: | (GrabbaSmartcardInterfaceID) | iface | |
response: | (GrabbaResponseAPDU *_Nonnull) | response | |
Callback which is invoked when an asynchronous APDU exchange operation completes successfully.
This event is triggered after a call to exchangeAPDU has been made and the associated response is received from the card.
Override this method to receive callbacks when the object is enabled (via init or enable) and the event is triggered.
iface | ID of the interface in which the operation occurred |
response | APDU received by the Grabba device from the smart card |
- (void) disable |
Disable listening for events from this object, if not already disabled.
This will remove the listener object from the relevant event handler, if it had previously been added. Callbacks will no longer be triggered on this object, although they may be re-enabled by calling enable.
- (void) enable |
Enable listening for events from this object, if not already enabled.
This will add the listener object to the relevant event handler, if it has not already been added. Events will then trigger callbacks on this object until it is destroyed or disable is called.
- (void) errorEventFromInterface: | (GrabbaSmartcardInterfaceID) | iface | |
error: | (GrabbaErrorCode *_Nonnull) | error | |
Callback which is invoked when an asynchronous contact smart card operation fails, regardless of reasons.
This event is triggered when a call to powerUp , powerDown (if blocking parameter set false), exchangePPS" or exchangeAPDU triggers an operation, but that operation does not complete successfully.
If an operation fails due to card removal, no guarantees are made about the order in which powerDownEvent, removeEvent and errorEvent are triggered.
Override this method to receive callbacks when the object is enabled (via init or enable) and the event is triggered.
iface | ID of the interface in which the operation failed |
error | Information about the error condition which caused the operation to fail |
- (instancetype _Nullable) init |
Default initialiser - builds an object then enables event callbacks to it.
nil
if it failed - (instancetype _Nullable) initWithEnabled: | (BOOL) | startEnabled |
Initialiser which allows control over whether event callbacks should be enabled.
startEnabled | If YES, the newly-allocated listener object is added to the relevant event handler, enabling receipt of event callbacks. If NO, no callbacks are received until enable is called. |
nil
if it failed - (void) insertEventFromInterface: | (GrabbaSmartcardInterfaceID) | iface |
Callback which is invoked when a contact smart card is inserted into a reader slot on the Grabba device.
This event will never be triggered on SAM interfaces, since they do not allow for insertion or removal of cards whilst the device is powered on.
Override this method to receive callbacks when the object is enabled (via init or enable) and the event is triggered.
iface | ID of the interface into which the card was inserted |
- (void) powerDownEventFromInterface: | (GrabbaSmartcardInterfaceID) | iface |
Callback which is invoked when a contact smart card is powered down, regardless of reasons.
This event may be triggered under any of the following circumstances:
If a card is removed when powered, both powerDownEvent and removeEvent will be triggered; no guarantees are made about the order in which that occurs.
Override this method to receive callbacks when the object is enabled (via init or enable) and the event is triggered.
iface | ID of the interface for which the card has been powered down |
- (void) powerUpEventFromInterface: | (GrabbaSmartcardInterfaceID) | iface | |
ATR: | (NSData *_Nonnull) | ATR | |
Callback which is invoked when a contact smart card is powered up.
This event is typically triggered in response to a call to powerUp , and will only be triggered if the card has been successfully powered up (including associated PPS exchange if requested). If the power-up operation failed (including failure of the associated PPS exchange if requested), then errorEvent will be triggered instead.
This event indicates that the card is ready for a manual PPS exchange if:
This event indicates that the card is ready to start APDU exchanges in either of the following cases:
When triggered after a successful PPS exchange, no guarantees are made about the order in which powerUpEvent and PPS_Event will be triggered.
Override this method to receive callbacks when the object is enabled (via init or enable) and the event is triggered.
iface | ID of the interface for which the card has been powered up |
ATR | Answer-to-Reset (ATR) data received from the card |
- (void) PPS_EventFromInterface: | (GrabbaSmartcardInterfaceID) | iface | |
T: | (GrabbaSmartcardProtocolID) | T | |
F: | (GrabbaSmartcardClock) | F | |
D: | (GrabbaSmartcardBaud) | D | |
Callback which is invoked when a PPS exchange operation completes successfully.
PPS exchanges are triggered either by powerUp (with the autoPPS option enabled, as it is by default) or exchangePPS" . This event is triggered whenever such an exchange completes successfully.
This event indicates that the card is ready to start APDU exchanges.
When triggered in conjunction with a power-up operation, both PPS_Event and powerUpEvent will be called; no guarantees are made about the order in which that occurs.
Override this method to receive callbacks when the object is enabled (via init or enable) and the event is triggered.
iface | ID of the interface in which the operation occurred |
T | Selected protocol (T) - should match that of the request |
F | Clock rate conversion integer and associated maximum frequency - should match that of the request |
D | Baud rate adjustment integer - should match that of the request |
- (void) removeEventFromInterface: | (GrabbaSmartcardInterfaceID) | iface |
Callback which is invoked when a contact smart card is removed from a reader slot on the Grabba device.
This event will never be triggered on SAM interfaces, since they do not allow for insertion or removal of cards whilst the device is powered on.
Override this method to receive callbacks when the object is enabled (via init or enable) and the event is triggered.
iface | ID of the interface from which the card was removed |
|
readwritenonatomicweakinherited |
Delegate for receiving events from non-subclassed listener objects; defaults to nil.
Delegation may be used as an alternative to subclassing for receiving event callbacks. Any Grabba-defined listener class object (as opposed to a subclass thereof) will pass events on to a delegate, if one has been set and it has implemented the relevant protocol method.
If the delegate is to be written to whilst a callback to it is in progress, the write operation will block until that operation has completed. This ensures thread-safety.