blob: 5f3818652be2dc2f2f31c80ceb381739abaa3231 [file] [log] [blame]
Mike Lockwood63ff1c62013-09-25 09:28:41 -07001/*
2 * Copyright (C) 2013 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_IBATTERYSTATS_H
18#define ANDROID_IBATTERYSTATS_H
19
20#include <binder/IInterface.h>
21
22namespace android {
23
24// ----------------------------------------------------------------------
25
26class IBatteryStats : public IInterface
27{
28public:
29 DECLARE_META_INTERFACE(BatteryStats);
30
31 virtual void noteStartSensor(int uid, int sensor) = 0;
32 virtual void noteStopSensor(int uid, int sensor) = 0;
Chong Zhangbd42d382014-07-22 09:12:21 -070033 virtual void noteStartVideo(int uid) = 0;
34 virtual void noteStopVideo(int uid) = 0;
35 virtual void noteStartAudio(int uid) = 0;
36 virtual void noteStopAudio(int uid) = 0;
Chong Zhang2cbba472014-07-23 14:47:00 -070037 virtual void noteResetVideo() = 0;
38 virtual void noteResetAudio() = 0;
Ruben Brunkd47da602015-05-26 17:30:11 -070039 virtual void noteFlashlightOn(int uid) = 0;
40 virtual void noteFlashlightOff(int uid) = 0;
41 virtual void noteStartCamera(int uid) = 0;
42 virtual void noteStopCamera(int uid) = 0;
43 virtual void noteResetCamera() = 0;
44 virtual void noteResetFlashlight() = 0;
Mike Lockwood63ff1c62013-09-25 09:28:41 -070045
46 enum {
47 NOTE_START_SENSOR_TRANSACTION = IBinder::FIRST_CALL_TRANSACTION,
48 NOTE_STOP_SENSOR_TRANSACTION,
Chong Zhangbd42d382014-07-22 09:12:21 -070049 NOTE_START_VIDEO_TRANSACTION,
50 NOTE_STOP_VIDEO_TRANSACTION,
51 NOTE_START_AUDIO_TRANSACTION,
52 NOTE_STOP_AUDIO_TRANSACTION,
Chong Zhang2cbba472014-07-23 14:47:00 -070053 NOTE_RESET_VIDEO_TRANSACTION,
54 NOTE_RESET_AUDIO_TRANSACTION,
Ruben Brunkd47da602015-05-26 17:30:11 -070055 NOTE_FLASHLIGHT_ON_TRANSACTION,
56 NOTE_FLASHLIGHT_OFF_TRANSACTION,
57 NOTE_START_CAMERA_TRANSACTION,
58 NOTE_STOP_CAMERA_TRANSACTION,
59 NOTE_RESET_CAMERA_TRANSACTION,
60 NOTE_RESET_FLASHLIGHT_TRANSACTION
Mike Lockwood63ff1c62013-09-25 09:28:41 -070061 };
62};
63
64// ----------------------------------------------------------------------
65
66class BnBatteryStats : public BnInterface<IBatteryStats>
67{
68public:
69 virtual status_t onTransact( uint32_t code,
70 const Parcel& data,
71 Parcel* reply,
72 uint32_t flags = 0);
73};
74
75// ----------------------------------------------------------------------
76
77}; // namespace android
78
79#endif // ANDROID_IBATTERYSTATS_H