2011-10-05 15:15:45 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2011-09-30 00:00:48 -07:00
|
|
|
/* vim: set sw=2 ts=8 et ft=cpp : */
|
2012-02-10 02:04:44 -08:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-02-01 22:09:00 -08:00
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
2012-02-10 02:04:44 -08:00
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-10-05 15:15:45 -07:00
|
|
|
|
|
|
|
#ifndef mozilla_Hal_h
|
2012-02-10 02:04:44 -08:00
|
|
|
#define mozilla_Hal_h
|
2011-10-05 15:15:45 -07:00
|
|
|
|
2011-12-17 13:04:51 -08:00
|
|
|
#include "mozilla/hal_sandbox/PHal.h"
|
2011-10-05 15:15:45 -07:00
|
|
|
#include "base/basictypes.h"
|
|
|
|
#include "mozilla/Types.h"
|
|
|
|
#include "nsTArray.h"
|
2011-09-30 00:00:48 -07:00
|
|
|
#include "prlog.h"
|
2011-11-02 08:14:01 -07:00
|
|
|
#include "mozilla/dom/battery/Types.h"
|
2012-01-16 05:39:57 -08:00
|
|
|
#include "mozilla/dom/network/Types.h"
|
2012-02-05 11:51:06 -08:00
|
|
|
#include "mozilla/hal_sandbox/PHal.h"
|
2011-10-05 15:15:45 -07:00
|
|
|
|
2011-12-17 13:04:51 -08:00
|
|
|
/*
|
|
|
|
* Hal.h contains the public Hal API.
|
|
|
|
*
|
|
|
|
* By default, this file defines its functions in the hal namespace, but if
|
|
|
|
* MOZ_HAL_NAMESPACE is defined, we'll define our functions in that namespace.
|
|
|
|
*
|
|
|
|
* This is used by HalImpl.h and HalSandbox.h, which define copies of all the
|
|
|
|
* functions here in the hal_impl and hal_sandbox namespaces.
|
|
|
|
*/
|
2011-09-30 00:00:48 -07:00
|
|
|
|
2011-12-17 13:04:26 -08:00
|
|
|
class nsIDOMWindow;
|
|
|
|
|
2011-12-17 13:04:51 -08:00
|
|
|
#ifndef MOZ_HAL_NAMESPACE
|
2011-10-05 15:15:45 -07:00
|
|
|
# define MOZ_HAL_NAMESPACE hal
|
|
|
|
# define MOZ_DEFINED_HAL_NAMESPACE 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace mozilla {
|
2011-11-02 08:14:01 -07:00
|
|
|
|
|
|
|
namespace hal {
|
2011-12-17 13:04:51 -08:00
|
|
|
|
|
|
|
class WindowIdentifier;
|
|
|
|
|
|
|
|
extern PRLogModuleInfo *sHalLog;
|
2011-12-21 17:58:29 -08:00
|
|
|
#define HAL_LOG(msg) PR_LOG(mozilla::hal::sHalLog, PR_LOG_DEBUG, msg)
|
2011-12-17 13:04:51 -08:00
|
|
|
|
2011-11-02 08:14:01 -07:00
|
|
|
} // namespace hal
|
|
|
|
|
2011-12-17 13:04:51 -08:00
|
|
|
namespace MOZ_HAL_NAMESPACE {
|
2011-10-05 15:15:45 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Turn the default vibrator device on/off per the pattern specified
|
|
|
|
* by |pattern|. Each element in the pattern is the number of
|
|
|
|
* milliseconds to turn the vibrator on or off. The first element in
|
|
|
|
* |pattern| is an "on" element, the next is "off", and so on.
|
|
|
|
*
|
|
|
|
* If |pattern| is empty, any in-progress vibration is canceled.
|
2011-09-30 00:00:48 -07:00
|
|
|
*
|
|
|
|
* Only an active window within an active tab may call Vibrate; calls
|
|
|
|
* from inactive windows and windows on inactive tabs do nothing.
|
|
|
|
*
|
|
|
|
* If you're calling hal::Vibrate from the outside world, pass an
|
2011-12-17 13:04:26 -08:00
|
|
|
* nsIDOMWindow* in place of the WindowIdentifier parameter.
|
|
|
|
* The method with WindowIdentifier will be called automatically.
|
2011-10-05 15:15:45 -07:00
|
|
|
*/
|
2011-12-17 13:04:26 -08:00
|
|
|
void Vibrate(const nsTArray<uint32>& pattern,
|
|
|
|
nsIDOMWindow* aWindow);
|
2011-09-30 00:00:48 -07:00
|
|
|
void Vibrate(const nsTArray<uint32>& pattern,
|
|
|
|
const hal::WindowIdentifier &id);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cancel a vibration started by the content window identified by
|
|
|
|
* WindowIdentifier.
|
|
|
|
*
|
|
|
|
* If the window was the last window to start a vibration, the
|
|
|
|
* cancellation request will go through even if the window is not
|
|
|
|
* active.
|
|
|
|
*
|
2011-12-17 13:04:26 -08:00
|
|
|
* As with hal::Vibrate(), if you're calling hal::CancelVibrate from the outside
|
|
|
|
* world, pass an nsIDOMWindow*. The method with WindowIdentifier will be called
|
|
|
|
* automatically.
|
2011-09-30 00:00:48 -07:00
|
|
|
*/
|
2011-12-17 13:04:26 -08:00
|
|
|
void CancelVibrate(nsIDOMWindow* aWindow);
|
2011-09-30 00:00:48 -07:00
|
|
|
void CancelVibrate(const hal::WindowIdentifier &id);
|
2011-10-05 15:15:45 -07:00
|
|
|
|
2011-11-02 08:14:01 -07:00
|
|
|
/**
|
|
|
|
* Inform the battery backend there is a new battery observer.
|
|
|
|
* @param aBatteryObserver The observer that should be added.
|
|
|
|
*/
|
|
|
|
void RegisterBatteryObserver(BatteryObserver* aBatteryObserver);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Inform the battery backend a battery observer unregistered.
|
|
|
|
* @param aBatteryObserver The observer that should be removed.
|
|
|
|
*/
|
|
|
|
void UnregisterBatteryObserver(BatteryObserver* aBatteryObserver);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the current battery information.
|
|
|
|
*/
|
|
|
|
void GetCurrentBatteryInformation(hal::BatteryInformation* aBatteryInfo);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notify of a change in the battery state.
|
|
|
|
* @param aBatteryInfo The new battery information.
|
|
|
|
*/
|
|
|
|
void NotifyBatteryChange(const hal::BatteryInformation& aBatteryInfo);
|
|
|
|
|
2011-12-04 09:07:00 -08:00
|
|
|
/**
|
|
|
|
* Determine whether the device's screen is currently enabled.
|
|
|
|
*/
|
|
|
|
bool GetScreenEnabled();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enable or disable the device's screen.
|
|
|
|
*
|
|
|
|
* Note that it may take a few seconds for the screen to turn on or off.
|
|
|
|
*/
|
|
|
|
void SetScreenEnabled(bool enabled);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the brightness of the device's screen's backlight, on a scale from 0
|
|
|
|
* (very dim) to 1 (full blast).
|
|
|
|
*
|
|
|
|
* If the display is currently disabled, this returns the brightness the
|
|
|
|
* backlight will have when the display is re-enabled.
|
|
|
|
*/
|
|
|
|
double GetScreenBrightness();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the brightness of the device's screen's backlight, on a scale from 0
|
|
|
|
* (very dimm) to 1 (full blast). Values larger than 1 are treated like 1, and
|
|
|
|
* values smaller than 0 are treated like 0.
|
|
|
|
*
|
|
|
|
* Note that we may reduce the resolution of the given brightness value before
|
|
|
|
* sending it to the screen. Therefore if you call SetScreenBrightness(x)
|
|
|
|
* followed by GetScreenBrightness(), the value returned by
|
|
|
|
* GetScreenBrightness() may not be exactly x.
|
|
|
|
*/
|
|
|
|
void SetScreenBrightness(double brightness);
|
|
|
|
|
2012-02-01 22:09:00 -08:00
|
|
|
/**
|
|
|
|
* Set the value of a light to a particular color, with a specific flash pattern.
|
|
|
|
* light specifices which light. See Hal.idl for the list of constants
|
|
|
|
* mode specifies user set or based on ambient light sensor
|
|
|
|
* flash specifies whether or how to flash the light
|
|
|
|
* flashOnMS and flashOffMS specify the pattern for XXX flash mode
|
|
|
|
* color specifies the color. If the light doesn't support color, the given color is
|
|
|
|
* transformed into a brightness, or just an on/off if that is all the light is capable of.
|
|
|
|
* returns true if successful and false if failed.
|
|
|
|
*/
|
|
|
|
bool SetLight(hal::LightType light, const hal::LightConfiguration& aConfig);
|
|
|
|
/**
|
|
|
|
* GET the value of a light returning a particular color, with a specific flash pattern.
|
|
|
|
* returns true if successful and false if failed.
|
|
|
|
*/
|
|
|
|
bool GetLight(hal::LightType light, hal::LightConfiguration* aConfig);
|
|
|
|
|
2012-02-05 11:51:06 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Register an observer for the sensor of given type.
|
|
|
|
*
|
|
|
|
* The observer will receive data whenever the data generated by the
|
|
|
|
* sensor is avaiable.
|
|
|
|
*/
|
|
|
|
void RegisterSensorObserver(hal::SensorType aSensor,
|
|
|
|
hal::ISensorObserver *aObserver);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unregister an observer for the sensor of given type.
|
|
|
|
*/
|
|
|
|
void UnregisterSensorObserver(hal::SensorType aSensor,
|
|
|
|
hal::ISensorObserver *aObserver);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Post a value generated by a sensor.
|
|
|
|
*
|
|
|
|
* This API is internal to hal; clients shouldn't call it directly.
|
|
|
|
*/
|
|
|
|
void NotifySensorChange(const hal::SensorData &aSensorData);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enable sensor notifications from the backend
|
|
|
|
*
|
|
|
|
* This method is only visible from implementation of sensor manager.
|
|
|
|
* Rest of the system should not try this.
|
|
|
|
*/
|
|
|
|
void EnableSensorNotifications(hal::SensorType aSensor);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disable sensor notifications from the backend
|
|
|
|
*
|
|
|
|
* This method is only visible from implementation of sensor manager.
|
|
|
|
* Rest of the system should not try this.
|
|
|
|
*/
|
|
|
|
void DisableSensorNotifications(hal::SensorType aSensor);
|
|
|
|
|
|
|
|
|
2012-01-16 05:39:57 -08:00
|
|
|
/**
|
|
|
|
* Inform the network backend there is a new network observer.
|
|
|
|
* @param aNetworkObserver The observer that should be added.
|
|
|
|
*/
|
|
|
|
void RegisterNetworkObserver(NetworkObserver* aNetworkObserver);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Inform the network backend a network observer unregistered.
|
|
|
|
* @param aNetworkObserver The observer that should be removed.
|
|
|
|
*/
|
|
|
|
void UnregisterNetworkObserver(NetworkObserver* aNetworkObserver);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the current network information.
|
|
|
|
*/
|
|
|
|
void GetCurrentNetworkInformation(hal::NetworkInformation* aNetworkInfo);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notify of a change in the network state.
|
|
|
|
* @param aNetworkInfo The new network information.
|
|
|
|
*/
|
|
|
|
void NotifyNetworkChange(const hal::NetworkInformation& aNetworkInfo);
|
|
|
|
|
2012-01-30 22:08:00 -08:00
|
|
|
/**
|
|
|
|
* Reboot the device.
|
|
|
|
*/
|
|
|
|
void Reboot();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Power off the device.
|
|
|
|
*/
|
|
|
|
void PowerOff();
|
|
|
|
|
2011-09-30 00:00:48 -07:00
|
|
|
} // namespace MOZ_HAL_NAMESPACE
|
|
|
|
} // namespace mozilla
|
2011-10-05 15:15:45 -07:00
|
|
|
|
|
|
|
#ifdef MOZ_DEFINED_HAL_NAMESPACE
|
|
|
|
# undef MOZ_DEFINED_HAL_NAMESPACE
|
|
|
|
# undef MOZ_HAL_NAMESPACE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // mozilla_Hal_h
|