2013-11-06 21:36:19 +04: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/. */
|
|
|
|
|
|
|
|
/* Copyright © 2013 Deutsche Telekom, Inc. */
|
|
|
|
|
2014-11-03 14:38:33 +03:00
|
|
|
enum NfcErrorMessage {
|
|
|
|
"",
|
|
|
|
"IOError",
|
|
|
|
"Timeout",
|
|
|
|
"Busy",
|
|
|
|
"ErrorConnect",
|
|
|
|
"ErrorDisconnect",
|
|
|
|
"ErrorRead",
|
|
|
|
"ErrorWrite",
|
|
|
|
"InvalidParameter",
|
|
|
|
"InsufficientResource",
|
|
|
|
"ErrorSocketCreation",
|
|
|
|
"FailEnableDiscovery",
|
|
|
|
"FailDisableDiscovery",
|
|
|
|
"NotInitialize",
|
|
|
|
"InitializeFail",
|
|
|
|
"DeinitializeFail",
|
|
|
|
"NotSupport",
|
|
|
|
"FailEnableLowPowerMode",
|
|
|
|
"FailDisableLowPowerMode"
|
|
|
|
};
|
|
|
|
|
2014-08-30 05:41:20 +04:00
|
|
|
[NoInterfaceObject]
|
2014-04-29 07:50:25 +04:00
|
|
|
interface MozNFCManager {
|
2014-08-27 00:43:25 +04:00
|
|
|
/**
|
|
|
|
* Returns MozNFCPeer object or null in case of invalid sessionToken
|
|
|
|
*/
|
|
|
|
[CheckPermissions="nfc-manager"]
|
|
|
|
MozNFCPeer? getNFCPeer(DOMString sessionToken);
|
|
|
|
|
2014-10-20 13:55:29 +04:00
|
|
|
/**
|
|
|
|
* API to check if the given application's manifest
|
|
|
|
* URL is registered with the Chrome Process or not.
|
|
|
|
*
|
|
|
|
* Returns success if given manifestUrl is registered for 'onpeerready',
|
|
|
|
* otherwise error
|
|
|
|
*/
|
|
|
|
[CheckPermissions="nfc-manager"]
|
|
|
|
DOMRequest checkP2PRegistration(DOMString manifestUrl);
|
2014-01-18 06:38:26 +04:00
|
|
|
|
2014-10-20 13:55:29 +04:00
|
|
|
/**
|
|
|
|
* Notify that user has accepted to share nfc message on P2P UI
|
|
|
|
*/
|
|
|
|
[CheckPermissions="nfc-manager"]
|
|
|
|
void notifyUserAcceptedP2P(DOMString manifestUrl);
|
2014-01-18 06:38:26 +04:00
|
|
|
|
2014-10-20 13:55:29 +04:00
|
|
|
/**
|
|
|
|
* Notify the status of sendFile operation
|
|
|
|
*/
|
|
|
|
[CheckPermissions="nfc-manager"]
|
|
|
|
void notifySendFileStatus(octet status, DOMString requestId);
|
2014-04-15 07:52:27 +04:00
|
|
|
|
2014-10-20 13:55:29 +04:00
|
|
|
/**
|
|
|
|
* Power on the NFC hardware and start polling for NFC tags or devices.
|
|
|
|
*/
|
|
|
|
[CheckPermissions="nfc-manager"]
|
|
|
|
DOMRequest startPoll();
|
2014-04-15 07:52:27 +04:00
|
|
|
|
2014-10-20 13:55:29 +04:00
|
|
|
/**
|
|
|
|
* Stop polling for NFC tags or devices. i.e. enter low power mode.
|
|
|
|
*/
|
|
|
|
[CheckPermissions="nfc-manager"]
|
|
|
|
DOMRequest stopPoll();
|
2014-04-15 07:52:27 +04:00
|
|
|
|
2014-10-20 13:55:29 +04:00
|
|
|
/**
|
|
|
|
* Power off the NFC hardware.
|
|
|
|
*/
|
|
|
|
[CheckPermissions="nfc-manager"]
|
|
|
|
DOMRequest powerOff();
|
2014-01-16 05:47:43 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
[JSImplementation="@mozilla.org/navigatorNfc;1",
|
|
|
|
NavigatorProperty="mozNfc",
|
2014-08-19 14:43:57 +04:00
|
|
|
Func="Navigator::HasNFCSupport",
|
2014-08-19 15:09:45 +04:00
|
|
|
CheckPermissions="nfc-read nfc-write",
|
|
|
|
AvailableIn="CertifiedApps"]
|
2014-04-29 07:50:25 +04:00
|
|
|
interface MozNFC : EventTarget {
|
2014-10-20 13:55:29 +04:00
|
|
|
/**
|
|
|
|
* This event will be fired when another NFCPeer is detected, and user confirms
|
|
|
|
* to share data to the NFCPeer object by calling mozNFC.notifyUserAcceptedP2P.
|
|
|
|
* The event will be type of NFCPeerEvent.
|
|
|
|
*/
|
|
|
|
[CheckPermissions="nfc-write"]
|
|
|
|
attribute EventHandler onpeerready;
|
2014-10-30 09:08:00 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This event will be fired when a NFCPeer is detected.
|
|
|
|
*/
|
|
|
|
[CheckPermissions="nfc-write"]
|
|
|
|
attribute EventHandler onpeerfound;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This event will be fired when NFCPeer, earlier detected in onpeerready
|
|
|
|
* or onpeerfound, moves out of range.
|
|
|
|
*/
|
2014-10-20 13:55:29 +04:00
|
|
|
[CheckPermissions="nfc-write"]
|
|
|
|
attribute EventHandler onpeerlost;
|
2014-10-20 13:53:39 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Ths event will be fired when a NFCTag is detected.
|
|
|
|
*/
|
|
|
|
[CheckPermissions="nfc-read nfc-write"]
|
|
|
|
attribute EventHandler ontagfound;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This event will be fired if the tag detected in ontagfound has been removed.
|
|
|
|
*/
|
2014-10-28 09:58:47 +03:00
|
|
|
[CheckPermissions="nfc-read nfc-write"]
|
2014-10-20 13:53:39 +04:00
|
|
|
attribute EventHandler ontaglost;
|
2014-01-16 05:47:43 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
// Mozilla Only
|
2014-04-29 07:50:25 +04:00
|
|
|
partial interface MozNFC {
|
2014-10-20 13:55:29 +04:00
|
|
|
[ChromeOnly]
|
|
|
|
void eventListenerWasAdded(DOMString aType);
|
|
|
|
[ChromeOnly]
|
|
|
|
void eventListenerWasRemoved(DOMString aType);
|
2013-11-06 21:36:19 +04:00
|
|
|
};
|
2014-01-16 05:47:43 +04:00
|
|
|
|
2014-04-29 07:50:25 +04:00
|
|
|
MozNFC implements MozNFCManager;
|