blob: dea900786874e6edfe3ce6a3757a36971c88fa65 [file] [log] [blame]
Dan Murphyc9f4eaf2009-08-12 15:15:43 -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
Jaikumar Ganesh3fbf7b62009-12-02 17:28:38 -080019import android.bluetooth.BluetoothAdapter;
20import android.bluetooth.BluetoothDevice;
Daniel Sandler0e9d2af2010-01-25 11:33:03 -050021import android.content.ContentResolver;
Dan Murphyc9f4eaf2009-08-12 15:15:43 -050022import android.content.Context;
23import android.content.Intent;
Daniel Sandlerec2c88d2010-02-20 01:04:57 -050024import android.media.AudioManager;
Daniel Sandler0e9d2af2010-01-25 11:33:03 -050025import android.media.Ringtone;
26import android.media.RingtoneManager;
27import android.net.Uri;
Dan Murphyc9f4eaf2009-08-12 15:15:43 -050028import android.os.Handler;
29import android.os.Message;
Ken Schultzf02c0742009-09-10 18:37:37 -050030import android.os.SystemClock;
Dan Murphyc9f4eaf2009-08-12 15:15:43 -050031import android.os.UEventObserver;
Dianne Hackborn49493342009-10-02 10:44:41 -070032import android.provider.Settings;
Jaikumar Ganesh3fbf7b62009-12-02 17:28:38 -080033import android.server.BluetoothService;
Dan Murphyc9f4eaf2009-08-12 15:15:43 -050034import android.util.Log;
Joe Onorato8a9b2202010-02-26 18:56:32 -080035import android.util.Slog;
Dan Murphyc9f4eaf2009-08-12 15:15:43 -050036
Dan Murphyc9f4eaf2009-08-12 15:15:43 -050037import java.io.FileNotFoundException;
Jaikumar Ganesh3fbf7b62009-12-02 17:28:38 -080038import java.io.FileReader;
Dan Murphyc9f4eaf2009-08-12 15:15:43 -050039
40/**
41 * <p>DockObserver monitors for a docking station.
42 */
43class DockObserver extends UEventObserver {
44 private static final String TAG = DockObserver.class.getSimpleName();
45 private static final boolean LOG = false;
46
47 private static final String DOCK_UEVENT_MATCH = "DEVPATH=/devices/virtual/switch/dock";
48 private static final String DOCK_STATE_PATH = "/sys/class/switch/dock/state";
49
Bernd Holzheybfca3a02010-02-10 17:39:51 +010050 private static final int MSG_DOCK_STATE = 0;
Bernd Holzheybfca3a02010-02-10 17:39:51 +010051
Mike Lockwoodd0e82ce2009-08-27 16:19:07 -070052 private int mDockState = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Daniel Sandler0e9d2af2010-01-25 11:33:03 -050053 private int mPreviousDockState = Intent.EXTRA_DOCK_STATE_UNDOCKED;
54
Mike Lockwoodd0e82ce2009-08-27 16:19:07 -070055 private boolean mSystemReady;
Dan Murphyc9f4eaf2009-08-12 15:15:43 -050056
57 private final Context mContext;
58
Ken Schultzf02c0742009-09-10 18:37:37 -050059 private PowerManagerService mPowerManager;
Bernd Holzheybfca3a02010-02-10 17:39:51 +010060
Ken Schultzf02c0742009-09-10 18:37:37 -050061 public DockObserver(Context context, PowerManagerService pm) {
Dan Murphyc9f4eaf2009-08-12 15:15:43 -050062 mContext = context;
Ken Schultzf02c0742009-09-10 18:37:37 -050063 mPowerManager = pm;
Dan Murphyc9f4eaf2009-08-12 15:15:43 -050064 init(); // set initial status
Tobias Haamel27b28b32010-02-09 23:09:17 +010065
Mike Lockwoodd0e82ce2009-08-27 16:19:07 -070066 startObserving(DOCK_UEVENT_MATCH);
Dan Murphyc9f4eaf2009-08-12 15:15:43 -050067 }
68
69 @Override
70 public void onUEvent(UEventObserver.UEvent event) {
71 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080072 Slog.v(TAG, "Dock UEVENT: " + event.toString());
Dan Murphyc9f4eaf2009-08-12 15:15:43 -050073 }
74
Mike Lockwoodd0e82ce2009-08-27 16:19:07 -070075 synchronized (this) {
76 try {
77 int newState = Integer.parseInt(event.get("SWITCH_STATE"));
78 if (newState != mDockState) {
Daniel Sandler0e9d2af2010-01-25 11:33:03 -050079 mPreviousDockState = mDockState;
Mike Lockwoodd0e82ce2009-08-27 16:19:07 -070080 mDockState = newState;
81 if (mSystemReady) {
Mike Lockwood1d069922009-11-11 18:09:25 -050082 // Don't force screen on when undocking from the desk dock.
83 // The change in power state will do this anyway.
84 // FIXME - we should be configurable.
Daniel Sandler0e9d2af2010-01-25 11:33:03 -050085 if (mPreviousDockState != Intent.EXTRA_DOCK_STATE_DESK ||
86 mDockState != Intent.EXTRA_DOCK_STATE_UNDOCKED) {
Mike Lockwood1d069922009-11-11 18:09:25 -050087 mPowerManager.userActivityWithForce(SystemClock.uptimeMillis(),
88 false, true);
89 }
Mike Lockwoodd0e82ce2009-08-27 16:19:07 -070090 update();
91 }
92 }
93 } catch (NumberFormatException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080094 Slog.e(TAG, "Could not parse switch state from event " + event);
Mike Lockwoodd0e82ce2009-08-27 16:19:07 -070095 }
Dan Murphyc9f4eaf2009-08-12 15:15:43 -050096 }
97 }
98
Mike Lockwoodd0e82ce2009-08-27 16:19:07 -070099 private final void init() {
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500100 char[] buffer = new char[1024];
101
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500102 try {
103 FileReader file = new FileReader(DOCK_STATE_PATH);
104 int len = file.read(buffer, 0, 1024);
Brian Carlstromfd9ddd12010-11-04 11:24:58 -0700105 file.close();
Daniel Sandler0e9d2af2010-01-25 11:33:03 -0500106 mPreviousDockState = mDockState = Integer.valueOf((new String(buffer, 0, len)).trim());
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500107 } catch (FileNotFoundException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800108 Slog.w(TAG, "This kernel does not have dock station support");
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500109 } catch (Exception e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800110 Slog.e(TAG, "" , e);
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500111 }
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500112 }
113
Mike Lockwoodd0e82ce2009-08-27 16:19:07 -0700114 void systemReady() {
115 synchronized (this) {
116 // don't bother broadcasting undocked here
117 if (mDockState != Intent.EXTRA_DOCK_STATE_UNDOCKED) {
118 update();
119 }
120 mSystemReady = true;
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500121 }
122 }
123
Mike Lockwoodd0e82ce2009-08-27 16:19:07 -0700124 private final void update() {
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100125 mHandler.sendEmptyMessage(MSG_DOCK_STATE);
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500126 }
127
128 private final Handler mHandler = new Handler() {
129 @Override
130 public void handleMessage(Message msg) {
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100131 switch (msg.what) {
132 case MSG_DOCK_STATE:
133 synchronized (this) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800134 Slog.i(TAG, "Dock state changed: " + mDockState);
Daniel Sandler0e9d2af2010-01-25 11:33:03 -0500135
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100136 final ContentResolver cr = mContext.getContentResolver();
Daniel Sandler0e9d2af2010-01-25 11:33:03 -0500137
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100138 if (Settings.Secure.getInt(cr,
139 Settings.Secure.DEVICE_PROVISIONED, 0) == 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800140 Slog.i(TAG, "Device not provisioned, skipping dock broadcast");
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100141 return;
Daniel Sandler0e9d2af2010-01-25 11:33:03 -0500142 }
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100143 // Pack up the values and broadcast them to everyone
144 Intent intent = new Intent(Intent.ACTION_DOCK_EVENT);
145 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800146 intent.putExtra(Intent.EXTRA_DOCK_STATE, mDockState);
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100147
148 // Check if this is Bluetooth Dock
149 String address = BluetoothService.readDockBluetoothAddress();
150 if (address != null)
151 intent.putExtra(BluetoothDevice.EXTRA_DEVICE,
152 BluetoothAdapter.getDefaultAdapter().getRemoteDevice(address));
153
154 // User feedback to confirm dock connection. Particularly
155 // useful for flaky contact pins...
156 if (Settings.System.getInt(cr,
157 Settings.System.DOCK_SOUNDS_ENABLED, 1) == 1)
158 {
159 String whichSound = null;
160 if (mDockState == Intent.EXTRA_DOCK_STATE_UNDOCKED) {
Praveen Bharathi21e941b2010-10-06 15:23:14 -0500161 if ((mPreviousDockState == Intent.EXTRA_DOCK_STATE_DESK) ||
162 (mPreviousDockState == Intent.EXTRA_DOCK_STATE_LE_DESK) ||
163 (mPreviousDockState == Intent.EXTRA_DOCK_STATE_HE_DESK)) {
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100164 whichSound = Settings.System.DESK_UNDOCK_SOUND;
165 } else if (mPreviousDockState == Intent.EXTRA_DOCK_STATE_CAR) {
166 whichSound = Settings.System.CAR_UNDOCK_SOUND;
167 }
168 } else {
Praveen Bharathi21e941b2010-10-06 15:23:14 -0500169 if ((mDockState == Intent.EXTRA_DOCK_STATE_DESK) ||
170 (mDockState == Intent.EXTRA_DOCK_STATE_LE_DESK) ||
171 (mDockState == Intent.EXTRA_DOCK_STATE_HE_DESK)) {
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100172 whichSound = Settings.System.DESK_DOCK_SOUND;
173 } else if (mDockState == Intent.EXTRA_DOCK_STATE_CAR) {
174 whichSound = Settings.System.CAR_DOCK_SOUND;
175 }
176 }
177
178 if (whichSound != null) {
179 final String soundPath = Settings.System.getString(cr, whichSound);
180 if (soundPath != null) {
181 final Uri soundUri = Uri.parse("file://" + soundPath);
182 if (soundUri != null) {
183 final Ringtone sfx = RingtoneManager.getRingtone(mContext, soundUri);
Daniel Sandlerec2c88d2010-02-20 01:04:57 -0500184 if (sfx != null) {
185 sfx.setStreamType(AudioManager.STREAM_SYSTEM);
186 sfx.play();
187 }
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100188 }
189 }
190 }
191 }
192
Dianne Hackborn7299c412010-03-04 18:41:49 -0800193 mContext.sendStickyBroadcast(intent);
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100194 }
195 break;
196 }
197 }
Tobias Haamel27b28b32010-02-09 23:09:17 +0100198 };
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500199}