blob: a1d655bd4181d078d257ac1069ef8e5549e2ffa7 [file] [log] [blame]
Mike Lockwood3a322132009-11-24 00:30:52 -05001/*
2 * Copyright (C) 2008 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
17package com.android.server;
18
19import android.content.Context;
Mike Lockwoodeb9cbb82010-05-17 17:27:30 -040020import android.content.pm.PackageManager;
Mike Lockwood3a322132009-11-24 00:30:52 -050021import android.os.Handler;
Mike Lockwoodeb9cbb82010-05-17 17:27:30 -040022import android.os.IHardwareService;
23import android.os.ServiceManager;
Mike Lockwood3a322132009-11-24 00:30:52 -050024import android.os.Message;
Joe Onorato8a9b2202010-02-26 18:56:32 -080025import android.util.Slog;
Mike Lockwood3a322132009-11-24 00:30:52 -050026
Mike Lockwoodeb9cbb82010-05-17 17:27:30 -040027import java.io.FileInputStream;
28import java.io.FileOutputStream;
29
Mike Lockwood3a322132009-11-24 00:30:52 -050030public class LightsService {
31 private static final String TAG = "LightsService";
Dianne Hackbornff801ec2011-01-22 18:05:38 -080032 private static final boolean DEBUG = false;
Mike Lockwood3a322132009-11-24 00:30:52 -050033
Jeff Brown4f8ecd82012-06-18 18:29:13 -070034 public static final int LIGHT_ID_BACKLIGHT = 0;
35 public static final int LIGHT_ID_KEYBOARD = 1;
36 public static final int LIGHT_ID_BUTTONS = 2;
37 public static final int LIGHT_ID_BATTERY = 3;
38 public static final int LIGHT_ID_NOTIFICATIONS = 4;
39 public static final int LIGHT_ID_ATTENTION = 5;
40 public static final int LIGHT_ID_BLUETOOTH = 6;
41 public static final int LIGHT_ID_WIFI = 7;
42 public static final int LIGHT_ID_COUNT = 8;
Mike Lockwood3a322132009-11-24 00:30:52 -050043
Jeff Brown4f8ecd82012-06-18 18:29:13 -070044 public static final int LIGHT_FLASH_NONE = 0;
45 public static final int LIGHT_FLASH_TIMED = 1;
46 public static final int LIGHT_FLASH_HARDWARE = 2;
Mike Lockwood3a322132009-11-24 00:30:52 -050047
48 /**
49 * Light brightness is managed by a user setting.
50 */
Jeff Brown4f8ecd82012-06-18 18:29:13 -070051 public static final int BRIGHTNESS_MODE_USER = 0;
Mike Lockwood3a322132009-11-24 00:30:52 -050052
53 /**
54 * Light brightness is managed by a light sensor.
55 */
Jeff Brown4f8ecd82012-06-18 18:29:13 -070056 public static final int BRIGHTNESS_MODE_SENSOR = 1;
Mike Lockwood3a322132009-11-24 00:30:52 -050057
Mike Lockwood3cb67a32009-11-27 14:25:58 -050058 private final Light mLights[] = new Light[LIGHT_ID_COUNT];
59
60 public final class Light {
61
62 private Light(int id) {
63 mId = id;
64 }
65
66 public void setBrightness(int brightness) {
67 setBrightness(brightness, BRIGHTNESS_MODE_USER);
68 }
69
70 public void setBrightness(int brightness, int brightnessMode) {
71 synchronized (this) {
72 int color = brightness & 0x000000ff;
73 color = 0xff000000 | (color << 16) | (color << 8) | color;
74 setLightLocked(color, LIGHT_FLASH_NONE, 0, 0, brightnessMode);
75 }
76 }
77
78 public void setColor(int color) {
79 synchronized (this) {
80 setLightLocked(color, LIGHT_FLASH_NONE, 0, 0, 0);
81 }
82 }
83
84 public void setFlashing(int color, int mode, int onMS, int offMS) {
85 synchronized (this) {
86 setLightLocked(color, mode, onMS, offMS, BRIGHTNESS_MODE_USER);
87 }
88 }
89
Mike Lockwood670f9322010-01-20 12:13:36 -050090
Mike Lockwood3cb67a32009-11-27 14:25:58 -050091 public void pulse() {
Mike Lockwood670f9322010-01-20 12:13:36 -050092 pulse(0x00ffffff, 7);
93 }
94
95 public void pulse(int color, int onMS) {
Mike Lockwood3cb67a32009-11-27 14:25:58 -050096 synchronized (this) {
97 if (mColor == 0 && !mFlashing) {
Mike Lockwood670f9322010-01-20 12:13:36 -050098 setLightLocked(color, LIGHT_FLASH_HARDWARE, onMS, 1000, BRIGHTNESS_MODE_USER);
99 mH.sendMessageDelayed(Message.obtain(mH, 1, this), onMS);
Mike Lockwood3cb67a32009-11-27 14:25:58 -0500100 }
101 }
102 }
103
104 public void turnOff() {
105 synchronized (this) {
106 setLightLocked(0, LIGHT_FLASH_NONE, 0, 0, 0);
107 }
108 }
109
110 private void stopFlashing() {
111 synchronized (this) {
112 setLightLocked(mColor, LIGHT_FLASH_NONE, 0, 0, BRIGHTNESS_MODE_USER);
113 }
114 }
115
116 private void setLightLocked(int color, int mode, int onMS, int offMS, int brightnessMode) {
117 if (color != mColor || mode != mMode || onMS != mOnMS || offMS != mOffMS) {
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800118 if (DEBUG) Slog.v(TAG, "setLight #" + mId + ": color=#"
119 + Integer.toHexString(color));
Mike Lockwood3cb67a32009-11-27 14:25:58 -0500120 mColor = color;
121 mMode = mode;
122 mOnMS = onMS;
123 mOffMS = offMS;
124 setLight_native(mNativePointer, mId, color, mode, onMS, offMS, brightnessMode);
125 }
126 }
127
128 private int mId;
129 private int mColor;
130 private int mMode;
131 private int mOnMS;
132 private int mOffMS;
133 private boolean mFlashing;
134 }
Mike Lockwood3a322132009-11-24 00:30:52 -0500135
Mike Lockwoodeb9cbb82010-05-17 17:27:30 -0400136 /* This class implements an obsolete API that was removed after eclair and re-added during the
137 * final moments of the froyo release to support flashlight apps that had been using the private
138 * IHardwareService API. This is expected to go away in the next release.
139 */
140 private final IHardwareService.Stub mLegacyFlashlightHack = new IHardwareService.Stub() {
141
142 private static final String FLASHLIGHT_FILE = "/sys/class/leds/spotlight/brightness";
143
144 public boolean getFlashlightEnabled() {
145 try {
146 FileInputStream fis = new FileInputStream(FLASHLIGHT_FILE);
147 int result = fis.read();
148 fis.close();
149 return (result != '0');
150 } catch (Exception e) {
Mike Lockwoodeb9cbb82010-05-17 17:27:30 -0400151 return false;
152 }
153 }
154
155 public void setFlashlightEnabled(boolean on) {
156 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.FLASHLIGHT)
157 != PackageManager.PERMISSION_GRANTED &&
158 mContext.checkCallingOrSelfPermission(android.Manifest.permission.HARDWARE_TEST)
159 != PackageManager.PERMISSION_GRANTED) {
160 throw new SecurityException("Requires FLASHLIGHT or HARDWARE_TEST permission");
161 }
162 try {
163 FileOutputStream fos = new FileOutputStream(FLASHLIGHT_FILE);
164 byte[] bytes = new byte[2];
165 bytes[0] = (byte)(on ? '1' : '0');
166 bytes[1] = '\n';
167 fos.write(bytes);
168 fos.close();
169 } catch (Exception e) {
Mike Lockwood35167d92011-03-28 20:29:14 -0700170 // fail silently
Mike Lockwoodeb9cbb82010-05-17 17:27:30 -0400171 }
172 }
173 };
174
Mike Lockwood3a322132009-11-24 00:30:52 -0500175 LightsService(Context context) {
176
177 mNativePointer = init_native();
178 mContext = context;
Mike Lockwood3cb67a32009-11-27 14:25:58 -0500179
Mike Lockwoodeb9cbb82010-05-17 17:27:30 -0400180 ServiceManager.addService("hardware", mLegacyFlashlightHack);
181
Mike Lockwood3cb67a32009-11-27 14:25:58 -0500182 for (int i = 0; i < LIGHT_ID_COUNT; i++) {
183 mLights[i] = new Light(i);
184 }
Mike Lockwood3a322132009-11-24 00:30:52 -0500185 }
186
187 protected void finalize() throws Throwable {
188 finalize_native(mNativePointer);
189 super.finalize();
190 }
191
Mike Lockwood3cb67a32009-11-27 14:25:58 -0500192 public Light getLight(int id) {
193 return mLights[id];
Mike Lockwood3a322132009-11-24 00:30:52 -0500194 }
195
196 private Handler mH = new Handler() {
197 @Override
198 public void handleMessage(Message msg) {
Mike Lockwood3cb67a32009-11-27 14:25:58 -0500199 Light light = (Light)msg.obj;
200 light.stopFlashing();
Mike Lockwood3a322132009-11-24 00:30:52 -0500201 }
202 };
203
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000204 private static native long init_native();
205 private static native void finalize_native(long ptr);
Mike Lockwood3a322132009-11-24 00:30:52 -0500206
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000207 private static native void setLight_native(long ptr, int light, int color, int mode,
Mike Lockwood3a322132009-11-24 00:30:52 -0500208 int onMS, int offMS, int brightnessMode);
209
210 private final Context mContext;
211
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000212 private long mNativePointer;
Mike Lockwood3a322132009-11-24 00:30:52 -0500213}