2012-02-02 10:09:00 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-02-10 14:04:44 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-02-02 10:09:00 +04:00
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
2012-02-10 14:04:44 +04:00
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2012-02-02 10:09:00 +04:00
|
|
|
|
|
|
|
#ifndef mozilla_hal_Types_h
|
|
|
|
#define mozilla_hal_Types_h
|
|
|
|
|
2013-06-23 11:14:32 +04:00
|
|
|
#include "ipc/IPCMessageUtils.h"
|
|
|
|
#include "mozilla/Observer.h"
|
2012-02-02 10:09:00 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace hal {
|
|
|
|
|
2013-02-15 00:41:29 +04:00
|
|
|
/**
|
2013-02-15 17:40:01 +04:00
|
|
|
* These constants specify special values for content process IDs. You can get
|
|
|
|
* a content process ID by calling ContentChild::GetID() or
|
|
|
|
* ContentParent::GetChildID().
|
2013-02-15 00:41:29 +04:00
|
|
|
*/
|
|
|
|
const uint64_t CONTENT_PROCESS_ID_UNKNOWN = uint64_t(-1);
|
|
|
|
const uint64_t CONTENT_PROCESS_ID_MAIN = 0;
|
|
|
|
|
2012-02-02 10:09:00 +04:00
|
|
|
/**
|
|
|
|
* These are defined by libhardware, specifically, hardware/libhardware/include/hardware/lights.h
|
|
|
|
* in the gonk subsystem.
|
|
|
|
* If these change and are exposed to JS, make sure nsIHal.idl is updated as well.
|
|
|
|
*/
|
2012-10-02 11:26:32 +04:00
|
|
|
enum ShutdownMode {
|
|
|
|
eHalShutdownMode_Unknown = -1,
|
|
|
|
eHalShutdownMode_PowerOff = 0,
|
|
|
|
eHalShutdownMode_Reboot = 1,
|
|
|
|
eHalShutdownMode_Restart = 2,
|
|
|
|
eHalShutdownMode_Count = 3
|
2012-02-02 10:09:00 +04:00
|
|
|
};
|
2012-03-07 15:03:25 +04:00
|
|
|
|
2012-04-22 22:09:22 +04:00
|
|
|
class SwitchEvent;
|
|
|
|
|
|
|
|
enum SwitchDevice {
|
|
|
|
SWITCH_DEVICE_UNKNOWN = -1,
|
|
|
|
SWITCH_HEADPHONES,
|
2012-05-25 08:03:34 +04:00
|
|
|
SWITCH_USB,
|
2012-04-22 22:09:22 +04:00
|
|
|
NUM_SWITCH_DEVICE
|
|
|
|
};
|
|
|
|
|
|
|
|
enum SwitchState {
|
|
|
|
SWITCH_STATE_UNKNOWN = -1,
|
|
|
|
SWITCH_STATE_ON,
|
|
|
|
SWITCH_STATE_OFF,
|
2012-09-25 15:03:13 +04:00
|
|
|
SWITCH_STATE_HEADSET, // Headphone with microphone
|
|
|
|
SWITCH_STATE_HEADPHONE, // without microphone
|
2012-04-22 22:09:22 +04:00
|
|
|
NUM_SWITCH_STATE
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef Observer<SwitchEvent> SwitchObserver;
|
2012-02-02 10:09:00 +04:00
|
|
|
|
2013-02-23 08:24:28 +04:00
|
|
|
// Note that we rely on the order of this enum's entries. Higher priorities
|
|
|
|
// should have larger int values.
|
2012-08-05 09:09:39 +04:00
|
|
|
enum ProcessPriority {
|
2013-02-23 08:24:28 +04:00
|
|
|
PROCESS_PRIORITY_UNKNOWN = -1,
|
2012-08-05 09:09:39 +04:00
|
|
|
PROCESS_PRIORITY_BACKGROUND,
|
2013-01-05 09:03:51 +04:00
|
|
|
PROCESS_PRIORITY_BACKGROUND_PERCEIVABLE,
|
2013-09-24 12:10:20 +04:00
|
|
|
PROCESS_PRIORITY_FOREGROUND_KEYBOARD,
|
2013-01-04 03:39:25 +04:00
|
|
|
// Any priority greater than or equal to FOREGROUND is considered
|
|
|
|
// "foreground" for the purposes of priority testing, for example
|
|
|
|
// CurrentProcessIsForeground().
|
2012-08-05 09:09:39 +04:00
|
|
|
PROCESS_PRIORITY_FOREGROUND,
|
2013-02-15 00:41:30 +04:00
|
|
|
PROCESS_PRIORITY_FOREGROUND_HIGH,
|
2012-08-05 09:09:39 +04:00
|
|
|
PROCESS_PRIORITY_MASTER,
|
|
|
|
NUM_PROCESS_PRIORITY
|
|
|
|
};
|
2012-03-07 15:03:25 +04:00
|
|
|
|
2014-05-05 19:37:00 +04:00
|
|
|
/**
|
|
|
|
* Values that can be passed to hal::SetCurrentThreadPriority(). These should be
|
|
|
|
* functional in nature, such as COMPOSITOR, instead of levels, like LOW/HIGH.
|
|
|
|
* This allows us to tune our priority scheme for the system in one place such
|
|
|
|
* that it makes sense holistically for the overall operating system. On gonk
|
|
|
|
* or android we may want different priority schemes than on windows, etc.
|
|
|
|
*/
|
|
|
|
enum ThreadPriority {
|
|
|
|
THREAD_PRIORITY_COMPOSITOR,
|
|
|
|
NUM_THREAD_PRIORITY
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2015-02-26 14:43:22 +03:00
|
|
|
* Convert a ProcessPriority enum value to a string. The strings returned by
|
|
|
|
* this function are statically allocated; do not attempt to free one!
|
2014-05-05 19:37:00 +04:00
|
|
|
*
|
|
|
|
* If you pass an unknown process priority, we fatally assert in debug
|
|
|
|
* builds and otherwise return "???".
|
|
|
|
*/
|
2013-02-08 18:32:23 +04:00
|
|
|
const char*
|
|
|
|
ProcessPriorityToString(ProcessPriority aPriority);
|
|
|
|
|
2014-05-05 19:37:00 +04:00
|
|
|
/**
|
|
|
|
* Convert a ThreadPriority enum value to a string. The strings returned by
|
|
|
|
* this function are statically allocated; do not attempt to free one!
|
|
|
|
*
|
|
|
|
* If you pass an unknown process priority, we assert in debug builds
|
|
|
|
* and otherwise return "???".
|
|
|
|
*/
|
|
|
|
const char *
|
|
|
|
ThreadPriorityToString(ThreadPriority aPriority);
|
|
|
|
|
2012-03-07 15:03:25 +04:00
|
|
|
/**
|
|
|
|
* Used by ModifyWakeLock
|
|
|
|
*/
|
|
|
|
enum WakeLockControl {
|
|
|
|
WAKE_LOCK_REMOVE_ONE = -1,
|
|
|
|
WAKE_LOCK_NO_CHANGE = 0,
|
|
|
|
WAKE_LOCK_ADD_ONE = 1,
|
2012-08-26 02:38:04 +04:00
|
|
|
NUM_WAKE_LOCK
|
2012-03-07 15:03:25 +04:00
|
|
|
};
|
|
|
|
|
2012-08-05 09:09:39 +04:00
|
|
|
} // namespace hal
|
|
|
|
} // namespace mozilla
|
2012-03-07 15:03:25 +04:00
|
|
|
|
2012-02-02 10:09:00 +04:00
|
|
|
namespace IPC {
|
|
|
|
|
2012-10-02 11:26:32 +04:00
|
|
|
/**
|
|
|
|
* Serializer for ShutdownMode.
|
|
|
|
*/
|
|
|
|
template <>
|
|
|
|
struct ParamTraits<mozilla::hal::ShutdownMode>
|
2014-04-14 18:17:40 +04:00
|
|
|
: public ContiguousEnumSerializer<
|
|
|
|
mozilla::hal::ShutdownMode,
|
|
|
|
mozilla::hal::eHalShutdownMode_Unknown,
|
|
|
|
mozilla::hal::eHalShutdownMode_Count>
|
2012-10-02 11:26:32 +04:00
|
|
|
{};
|
|
|
|
|
2012-03-07 15:03:25 +04:00
|
|
|
/**
|
|
|
|
* WakeLockControl serializer.
|
|
|
|
*/
|
|
|
|
template <>
|
|
|
|
struct ParamTraits<mozilla::hal::WakeLockControl>
|
2014-04-14 18:17:40 +04:00
|
|
|
: public ContiguousEnumSerializer<
|
|
|
|
mozilla::hal::WakeLockControl,
|
|
|
|
mozilla::hal::WAKE_LOCK_REMOVE_ONE,
|
|
|
|
mozilla::hal::NUM_WAKE_LOCK>
|
2012-03-07 15:03:25 +04:00
|
|
|
{};
|
|
|
|
|
2012-04-22 22:09:22 +04:00
|
|
|
/**
|
|
|
|
* Serializer for SwitchState
|
|
|
|
*/
|
|
|
|
template <>
|
|
|
|
struct ParamTraits<mozilla::hal::SwitchState>:
|
2014-04-14 18:17:40 +04:00
|
|
|
public ContiguousEnumSerializer<
|
|
|
|
mozilla::hal::SwitchState,
|
|
|
|
mozilla::hal::SWITCH_STATE_UNKNOWN,
|
|
|
|
mozilla::hal::NUM_SWITCH_STATE> {
|
2012-04-22 22:09:22 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Serializer for SwitchDevice
|
|
|
|
*/
|
|
|
|
template <>
|
|
|
|
struct ParamTraits<mozilla::hal::SwitchDevice>:
|
2014-04-14 18:17:40 +04:00
|
|
|
public ContiguousEnumSerializer<
|
|
|
|
mozilla::hal::SwitchDevice,
|
|
|
|
mozilla::hal::SWITCH_DEVICE_UNKNOWN,
|
|
|
|
mozilla::hal::NUM_SWITCH_DEVICE> {
|
2012-04-22 22:09:22 +04:00
|
|
|
};
|
|
|
|
|
2012-08-05 09:09:39 +04:00
|
|
|
template <>
|
|
|
|
struct ParamTraits<mozilla::hal::ProcessPriority>:
|
2014-04-14 18:17:40 +04:00
|
|
|
public ContiguousEnumSerializer<
|
|
|
|
mozilla::hal::ProcessPriority,
|
|
|
|
mozilla::hal::PROCESS_PRIORITY_UNKNOWN,
|
|
|
|
mozilla::hal::NUM_PROCESS_PRIORITY> {
|
2012-08-05 09:09:39 +04:00
|
|
|
};
|
|
|
|
|
2014-04-14 18:17:40 +04:00
|
|
|
|
2012-02-02 10:09:00 +04:00
|
|
|
} // namespace IPC
|
|
|
|
|
|
|
|
#endif // mozilla_hal_Types_h
|