2013-11-06 09:36:19 -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/. */
|
|
|
|
|
|
|
|
/* Copyright © 2013 Deutsche Telekom, Inc. */
|
|
|
|
|
2014-11-03 03:38:33 -08:00
|
|
|
enum NfcErrorMessage {
|
|
|
|
"",
|
|
|
|
"IOError",
|
|
|
|
"Timeout",
|
|
|
|
"Busy",
|
|
|
|
"ErrorConnect",
|
|
|
|
"ErrorDisconnect",
|
|
|
|
"ErrorRead",
|
|
|
|
"ErrorWrite",
|
|
|
|
"InvalidParameter",
|
|
|
|
"InsufficientResource",
|
|
|
|
"ErrorSocketCreation",
|
|
|
|
"FailEnableDiscovery",
|
|
|
|
"FailDisableDiscovery",
|
|
|
|
"NotInitialize",
|
|
|
|
"InitializeFail",
|
|
|
|
"DeinitializeFail",
|
|
|
|
"NotSupport",
|
|
|
|
"FailEnableLowPowerMode",
|
|
|
|
"FailDisableLowPowerMode"
|
|
|
|
};
|
|
|
|
|
2014-08-29 18:41:20 -07:00
|
|
|
[NoInterfaceObject]
|
2014-04-28 20:50:25 -07:00
|
|
|
interface MozNFCManager {
|
2014-10-20 02:55:29 -07: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
|
|
|
|
*/
|
2014-12-04 15:55:14 -08:00
|
|
|
[CheckPermissions="nfc-manager", AvailableIn=CertifiedApps]
|
2014-11-21 01:54:04 -08:00
|
|
|
Promise<boolean> checkP2PRegistration(DOMString manifestUrl);
|
2014-01-17 18:38:26 -08:00
|
|
|
|
2014-10-20 02:55:29 -07:00
|
|
|
/**
|
|
|
|
* Notify that user has accepted to share nfc message on P2P UI
|
|
|
|
*/
|
2014-12-04 15:55:14 -08:00
|
|
|
[CheckPermissions="nfc-manager", AvailableIn=CertifiedApps]
|
2014-10-20 02:55:29 -07:00
|
|
|
void notifyUserAcceptedP2P(DOMString manifestUrl);
|
2014-01-17 18:38:26 -08:00
|
|
|
|
2014-10-20 02:55:29 -07:00
|
|
|
/**
|
|
|
|
* Notify the status of sendFile operation
|
|
|
|
*/
|
2014-12-04 15:55:14 -08:00
|
|
|
[CheckPermissions="nfc-manager", AvailableIn=CertifiedApps]
|
2014-10-20 02:55:29 -07:00
|
|
|
void notifySendFileStatus(octet status, DOMString requestId);
|
2014-04-14 20:52:27 -07:00
|
|
|
|
2014-10-20 02:55:29 -07:00
|
|
|
/**
|
|
|
|
* Power on the NFC hardware and start polling for NFC tags or devices.
|
|
|
|
*/
|
2014-12-04 15:55:14 -08:00
|
|
|
[CheckPermissions="nfc-manager", AvailableIn=CertifiedApps]
|
2014-11-21 01:54:04 -08:00
|
|
|
Promise<void> startPoll();
|
2014-04-14 20:52:27 -07:00
|
|
|
|
2014-10-20 02:55:29 -07:00
|
|
|
/**
|
|
|
|
* Stop polling for NFC tags or devices. i.e. enter low power mode.
|
|
|
|
*/
|
2014-12-04 15:55:14 -08:00
|
|
|
[CheckPermissions="nfc-manager", AvailableIn=CertifiedApps]
|
2014-11-21 01:54:04 -08:00
|
|
|
Promise<void> stopPoll();
|
2014-04-14 20:52:27 -07:00
|
|
|
|
2014-10-20 02:55:29 -07:00
|
|
|
/**
|
|
|
|
* Power off the NFC hardware.
|
|
|
|
*/
|
2014-12-04 15:55:14 -08:00
|
|
|
[CheckPermissions="nfc-manager", AvailableIn=CertifiedApps]
|
2014-11-21 01:54:04 -08:00
|
|
|
Promise<void> powerOff();
|
2014-01-15 17:47:43 -08:00
|
|
|
};
|
|
|
|
|
2014-12-26 04:57:11 -08:00
|
|
|
[JSImplementation="@mozilla.org/nfc/manager;1",
|
2014-01-15 17:47:43 -08:00
|
|
|
NavigatorProperty="mozNfc",
|
2014-08-19 03:43:57 -07:00
|
|
|
Func="Navigator::HasNFCSupport",
|
2014-11-05 19:12:38 -08:00
|
|
|
CheckPermissions="nfc nfc-share",
|
2015-01-05 10:50:32 -08:00
|
|
|
AvailableIn="PrivilegedApps",
|
|
|
|
UnsafeInPrerendering]
|
2014-04-28 20:50:25 -07:00
|
|
|
interface MozNFC : EventTarget {
|
2014-12-11 23:13:40 -08:00
|
|
|
/**
|
|
|
|
* Indicate if NFC is enabled.
|
|
|
|
*/
|
|
|
|
readonly attribute boolean enabled;
|
|
|
|
|
2014-10-20 02:55:29 -07: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.
|
|
|
|
*/
|
2014-12-04 15:55:14 -08:00
|
|
|
[CheckPermissions="nfc-share", AvailableIn=CertifiedApps]
|
2014-10-20 02:55:29 -07:00
|
|
|
attribute EventHandler onpeerready;
|
2014-10-29 23:08:00 -07:00
|
|
|
|
|
|
|
/**
|
2014-12-11 01:42:35 -08:00
|
|
|
* This event will be fired when a NFCPeer is detected. The application has to
|
|
|
|
* be running on the foreground (decided by System app) to receive this event.
|
|
|
|
*
|
|
|
|
* The default action of this event is to dispatch the event in System app
|
|
|
|
* again, and System app will run the default UX behavior (like vibration).
|
|
|
|
* So if the application would like to cancel the event, the application
|
|
|
|
* should call event.preventDefault() or return false in this event handler.
|
2014-10-29 23:08:00 -07:00
|
|
|
*/
|
|
|
|
attribute EventHandler onpeerfound;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This event will be fired when NFCPeer, earlier detected in onpeerready
|
2015-01-27 19:25:35 -08:00
|
|
|
* or onpeerfound, moves out of range, or if the application has been switched
|
|
|
|
* to the background (decided by System app).
|
2014-10-29 23:08:00 -07:00
|
|
|
*/
|
2014-10-20 02:55:29 -07:00
|
|
|
attribute EventHandler onpeerlost;
|
2014-10-20 02:53:39 -07:00
|
|
|
|
|
|
|
/**
|
2014-12-11 01:42:35 -08:00
|
|
|
* This event will be fired when a NFCTag is detected. The application has to
|
|
|
|
* be running on the foreground (decided by System app) to receive this event.
|
|
|
|
*
|
|
|
|
* The default action of this event is to dispatch the event in System app
|
|
|
|
* again, and System app will run the default UX behavior (like vibration) and
|
|
|
|
* launch MozActivity to handle the content of the tag. (For example, System
|
|
|
|
* app will launch Browser if the tag contains URL). So if the application
|
|
|
|
* would like to cancel the event, i.e. in the above example, the application
|
|
|
|
* would process the URL by itself without launching Browser, the application
|
|
|
|
* should call event.preventDefault() or return false in this event handler.
|
2014-10-20 02:53:39 -07:00
|
|
|
*/
|
|
|
|
attribute EventHandler ontagfound;
|
|
|
|
|
|
|
|
/**
|
2015-01-27 19:25:35 -08:00
|
|
|
* This event will be fired if the tag detected in ontagfound has been
|
|
|
|
* removed, or if the application has been switched to the background (decided
|
|
|
|
* by System app).
|
2014-10-20 02:53:39 -07:00
|
|
|
*/
|
|
|
|
attribute EventHandler ontaglost;
|
2014-01-15 17:47:43 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
// Mozilla Only
|
2014-04-28 20:50:25 -07:00
|
|
|
partial interface MozNFC {
|
2014-10-20 02:55:29 -07:00
|
|
|
[ChromeOnly]
|
|
|
|
void eventListenerWasAdded(DOMString aType);
|
|
|
|
[ChromeOnly]
|
|
|
|
void eventListenerWasRemoved(DOMString aType);
|
2013-11-06 09:36:19 -08:00
|
|
|
};
|
2014-01-15 17:47:43 -08:00
|
|
|
|
2014-04-28 20:50:25 -07:00
|
|
|
MozNFC implements MozNFCManager;
|