2014-02-18 23:14:22 -08:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2014-11-11 03:19:52 -08:00
|
|
|
enum RFState {
|
|
|
|
"idle",
|
|
|
|
"listen",
|
|
|
|
"discovery"
|
|
|
|
};
|
|
|
|
|
2015-02-25 21:49:28 -08:00
|
|
|
/**
|
|
|
|
* Type of the Request used in NfcCommandOptions.
|
|
|
|
*/
|
|
|
|
enum NfcRequestType {
|
|
|
|
"changeRFState",
|
|
|
|
"readNDEF",
|
|
|
|
"writeNDEF",
|
|
|
|
"makeReadOnly",
|
|
|
|
"format",
|
|
|
|
"transceive"
|
|
|
|
};
|
|
|
|
|
2015-02-26 01:23:17 -08:00
|
|
|
/**
|
|
|
|
* Type of the Response used in NfcEventOptions.
|
|
|
|
*/
|
|
|
|
enum NfcResponseType {
|
|
|
|
"changeRFStateRsp",
|
|
|
|
"readNDEFRsp",
|
|
|
|
"writeNDEFRsp",
|
|
|
|
"makeReadOnlyRsp",
|
|
|
|
"formatRsp",
|
|
|
|
"transceiveRsp",
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Type of the Notification used in NfcEventOptions.
|
|
|
|
*/
|
|
|
|
enum NfcNotificationType {
|
|
|
|
"initialized",
|
|
|
|
"techDiscovered",
|
|
|
|
"techLost",
|
2015-03-24 20:16:42 -07:00
|
|
|
"hciEventTransaction",
|
|
|
|
"ndefReceived",
|
2015-02-26 01:23:17 -08:00
|
|
|
};
|
|
|
|
|
2015-03-24 02:19:48 -07:00
|
|
|
/**
|
|
|
|
* The source of HCI Transaction Event.
|
|
|
|
*/
|
|
|
|
enum HCIEventOrigin {
|
|
|
|
"SIM",
|
|
|
|
"eSE",
|
|
|
|
"ASSD"
|
|
|
|
};
|
|
|
|
|
2014-02-18 23:14:22 -08:00
|
|
|
dictionary NfcCommandOptions
|
|
|
|
{
|
2015-02-25 21:49:28 -08:00
|
|
|
required NfcRequestType type;
|
2014-02-18 23:14:22 -08:00
|
|
|
|
|
|
|
long sessionId;
|
2015-02-25 21:49:28 -08:00
|
|
|
required DOMString requestId;
|
2014-02-18 23:14:22 -08:00
|
|
|
|
2014-11-11 03:19:52 -08:00
|
|
|
RFState rfState;
|
2014-02-18 23:14:22 -08:00
|
|
|
|
|
|
|
long techType;
|
|
|
|
|
2014-10-14 20:54:09 -07:00
|
|
|
boolean isP2P;
|
2014-08-18 02:31:18 -07:00
|
|
|
sequence<MozNDEFRecordOptions> records;
|
2015-01-08 18:42:48 -08:00
|
|
|
|
|
|
|
NFCTechType technology;
|
|
|
|
Uint8Array command;
|
2014-02-18 23:14:22 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
dictionary NfcEventOptions
|
|
|
|
{
|
2015-02-26 01:23:17 -08:00
|
|
|
NfcResponseType rspType;
|
|
|
|
NfcNotificationType ntfType;
|
2014-02-18 23:14:22 -08:00
|
|
|
|
|
|
|
long status;
|
2014-11-03 03:38:33 -08:00
|
|
|
NfcErrorMessage errorMsg;
|
2014-02-18 23:14:22 -08:00
|
|
|
long sessionId;
|
|
|
|
DOMString requestId;
|
|
|
|
|
|
|
|
long majorVersion;
|
|
|
|
long minorVersion;
|
|
|
|
|
2014-12-04 09:38:38 -08:00
|
|
|
boolean isP2P;
|
2014-09-03 03:09:43 -07:00
|
|
|
sequence<NFCTechType> techList;
|
2014-12-26 00:07:45 -08:00
|
|
|
Uint8Array tagId;
|
2014-08-18 02:31:18 -07:00
|
|
|
sequence<MozNDEFRecordOptions> records;
|
2014-02-18 23:14:22 -08:00
|
|
|
|
2014-10-21 20:48:40 -07:00
|
|
|
NFCTagType tagType;
|
|
|
|
long maxNDEFSize;
|
2014-02-18 23:14:22 -08:00
|
|
|
boolean isReadOnly;
|
2014-10-21 20:48:40 -07:00
|
|
|
boolean isFormatable;
|
2014-02-18 23:14:22 -08:00
|
|
|
|
2014-11-11 03:19:52 -08:00
|
|
|
RFState rfState;
|
2014-08-27 05:21:00 -07:00
|
|
|
|
|
|
|
// HCI Event Transaction fields
|
|
|
|
DOMString origin;
|
|
|
|
Uint8Array aid;
|
|
|
|
Uint8Array payload;
|
2015-01-08 18:42:48 -08:00
|
|
|
|
|
|
|
// Tag transceive response data
|
|
|
|
Uint8Array response;
|
2014-02-18 23:14:22 -08:00
|
|
|
};
|