| Colin Cross | b731ae0 | 2012-03-28 13:55:43 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2011 The Android Open Source Project | 
|  | 3 | * | 
|  | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 5 | * you may not use this file except in compliance with the License. | 
|  | 6 | * You may obtain a copy of the License at | 
|  | 7 | * | 
|  | 8 | *      http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 9 | * | 
|  | 10 | * Unless required by applicable law or agreed to in writing, software | 
|  | 11 | * distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 13 | * See the License for the specific language governing permissions and | 
|  | 14 | * limitations under the License. | 
|  | 15 | */ | 
|  | 16 |  | 
|  | 17 | #ifndef ANDROID_IPOWERMANAGER_H | 
|  | 18 | #define ANDROID_IPOWERMANAGER_H | 
|  | 19 |  | 
|  | 20 | #include <utils/Errors.h> | 
|  | 21 | #include <binder/IInterface.h> | 
| Ruchi Kandoi | ca13fa7 | 2014-04-02 12:54:45 -0700 | [diff] [blame] | 22 | #include <hardware/power.h> | 
| Colin Cross | b731ae0 | 2012-03-28 13:55:43 -0700 | [diff] [blame] | 23 |  | 
|  | 24 | namespace android { | 
|  | 25 |  | 
|  | 26 | // ---------------------------------------------------------------------------- | 
|  | 27 |  | 
| Colin Cross | b731ae0 | 2012-03-28 13:55:43 -0700 | [diff] [blame] | 28 | class IPowerManager : public IInterface | 
|  | 29 | { | 
|  | 30 | public: | 
| Daniel Erat | b603e2c | 2015-09-15 10:50:17 -0600 | [diff] [blame] | 31 | // These transaction IDs must be kept in sync with the method order from | 
|  | 32 | // IPowerManager.aidl. | 
|  | 33 | enum { | 
| Daniel Erat | 3f50a39 | 2015-09-30 14:49:15 -0600 | [diff] [blame] | 34 | ACQUIRE_WAKE_LOCK            = IBinder::FIRST_CALL_TRANSACTION, | 
|  | 35 | ACQUIRE_WAKE_LOCK_UID        = IBinder::FIRST_CALL_TRANSACTION + 1, | 
|  | 36 | RELEASE_WAKE_LOCK            = IBinder::FIRST_CALL_TRANSACTION + 2, | 
|  | 37 | UPDATE_WAKE_LOCK_UIDS        = IBinder::FIRST_CALL_TRANSACTION + 3, | 
|  | 38 | POWER_HINT                   = IBinder::FIRST_CALL_TRANSACTION + 4, | 
|  | 39 | UPDATE_WAKE_LOCK_SOURCE      = IBinder::FIRST_CALL_TRANSACTION + 5, | 
|  | 40 | IS_WAKE_LOCK_LEVEL_SUPPORTED = IBinder::FIRST_CALL_TRANSACTION + 6, | 
|  | 41 | USER_ACTIVITY                = IBinder::FIRST_CALL_TRANSACTION + 7, | 
|  | 42 | WAKE_UP                      = IBinder::FIRST_CALL_TRANSACTION + 8, | 
|  | 43 | GO_TO_SLEEP                  = IBinder::FIRST_CALL_TRANSACTION + 9, | 
|  | 44 | NAP                          = IBinder::FIRST_CALL_TRANSACTION + 10, | 
|  | 45 | IS_INTERACTIVE               = IBinder::FIRST_CALL_TRANSACTION + 11, | 
|  | 46 | IS_POWER_SAVE_MODE           = IBinder::FIRST_CALL_TRANSACTION + 12, | 
| Michael Wright | 81ad28b | 2017-05-02 18:38:43 +0100 | [diff] [blame] | 47 | GET_POWER_SAVE_STATE         = IBinder::FIRST_CALL_TRANSACTION + 13, | 
|  | 48 | SET_POWER_SAVE_MODE          = IBinder::FIRST_CALL_TRANSACTION + 14, | 
|  | 49 | REBOOT                       = IBinder::FIRST_CALL_TRANSACTION + 17, | 
|  | 50 | REBOOT_SAFE_MODE             = IBinder::FIRST_CALL_TRANSACTION + 18, | 
|  | 51 | SHUTDOWN                     = IBinder::FIRST_CALL_TRANSACTION + 19, | 
|  | 52 | CRASH                        = IBinder::FIRST_CALL_TRANSACTION + 20, | 
| Daniel Erat | b603e2c | 2015-09-15 10:50:17 -0600 | [diff] [blame] | 53 | }; | 
|  | 54 |  | 
| Colin Cross | 17576de | 2016-09-26 13:07:06 -0700 | [diff] [blame] | 55 | DECLARE_META_INTERFACE(PowerManager) | 
| Colin Cross | b731ae0 | 2012-03-28 13:55:43 -0700 | [diff] [blame] | 56 |  | 
| Daniel Erat | b603e2c | 2015-09-15 10:50:17 -0600 | [diff] [blame] | 57 | // The parcels created by these methods must be kept in sync with the | 
|  | 58 | // corresponding methods from IPowerManager.aidl. | 
| Glenn Kasten | a602086 | 2014-09-05 16:46:46 -0700 | [diff] [blame] | 59 | // FIXME remove the bool isOneWay parameters as they are not oneway in the .aidl | 
| Dianne Hackborn | 80d7fd8 | 2013-05-20 11:24:31 -0700 | [diff] [blame] | 60 | virtual status_t acquireWakeLock(int flags, const sp<IBinder>& lock, const String16& tag, | 
| Glenn Kasten | a602086 | 2014-09-05 16:46:46 -0700 | [diff] [blame] | 61 | const String16& packageName, bool isOneWay = false) = 0; | 
| Marco Nelissen | 9a7706b | 2013-10-02 12:42:20 -0700 | [diff] [blame] | 62 | virtual status_t acquireWakeLockWithUid(int flags, const sp<IBinder>& lock, const String16& tag, | 
| Glenn Kasten | a602086 | 2014-09-05 16:46:46 -0700 | [diff] [blame] | 63 | const String16& packageName, int uid, bool isOneWay = false) = 0; | 
|  | 64 | virtual status_t releaseWakeLock(const sp<IBinder>& lock, int flags, bool isOneWay = false) = 0; | 
|  | 65 | virtual status_t updateWakeLockUids(const sp<IBinder>& lock, int len, const int *uids, | 
|  | 66 | bool isOneWay = false) = 0; | 
| Ruchi Kandoi | ca13fa7 | 2014-04-02 12:54:45 -0700 | [diff] [blame] | 67 | virtual status_t powerHint(int hintId, int data) = 0; | 
| Daniel Erat | 3f50a39 | 2015-09-30 14:49:15 -0600 | [diff] [blame] | 68 | virtual status_t goToSleep(int64_t event_time_ms, int reason, int flags) = 0; | 
|  | 69 | virtual status_t reboot(bool confirm, const String16& reason, bool wait) = 0; | 
|  | 70 | virtual status_t shutdown(bool confirm, const String16& reason, bool wait) = 0; | 
|  | 71 | virtual status_t crash(const String16& message) = 0; | 
| Colin Cross | b731ae0 | 2012-03-28 13:55:43 -0700 | [diff] [blame] | 72 | }; | 
|  | 73 |  | 
|  | 74 | // ---------------------------------------------------------------------------- | 
|  | 75 |  | 
|  | 76 | }; // namespace android | 
|  | 77 |  | 
|  | 78 | #endif // ANDROID_IPOWERMANAGER_H |