blob: f9930932fe4e41318bd75dd71cc93006b2ed1a03 [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);
Daniel Sandler0e9d2af2010-01-25 11:33:03 -0500105 mPreviousDockState = mDockState = Integer.valueOf((new String(buffer, 0, len)).trim());
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500106 } catch (FileNotFoundException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800107 Slog.w(TAG, "This kernel does not have dock station support");
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500108 } catch (Exception e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800109 Slog.e(TAG, "" , e);
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500110 }
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500111 }
112
Mike Lockwoodd0e82ce2009-08-27 16:19:07 -0700113 void systemReady() {
114 synchronized (this) {
115 // don't bother broadcasting undocked here
116 if (mDockState != Intent.EXTRA_DOCK_STATE_UNDOCKED) {
117 update();
118 }
119 mSystemReady = true;
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500120 }
121 }
122
Mike Lockwoodd0e82ce2009-08-27 16:19:07 -0700123 private final void update() {
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100124 mHandler.sendEmptyMessage(MSG_DOCK_STATE);
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500125 }
126
127 private final Handler mHandler = new Handler() {
128 @Override
129 public void handleMessage(Message msg) {
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100130 switch (msg.what) {
131 case MSG_DOCK_STATE:
132 synchronized (this) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800133 Slog.i(TAG, "Dock state changed: " + mDockState);
Daniel Sandler0e9d2af2010-01-25 11:33:03 -0500134
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100135 final ContentResolver cr = mContext.getContentResolver();
Daniel Sandler0e9d2af2010-01-25 11:33:03 -0500136
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100137 if (Settings.Secure.getInt(cr,
138 Settings.Secure.DEVICE_PROVISIONED, 0) == 0) {
Joe Onorato8a9b2202010-02-26 18:56:32 -0800139 Slog.i(TAG, "Device not provisioned, skipping dock broadcast");
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100140 return;
Daniel Sandler0e9d2af2010-01-25 11:33:03 -0500141 }
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100142 // Pack up the values and broadcast them to everyone
143 Intent intent = new Intent(Intent.ACTION_DOCK_EVENT);
144 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
Dianne Hackborn7299c412010-03-04 18:41:49 -0800145 intent.putExtra(Intent.EXTRA_DOCK_STATE, mDockState);
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100146
147 // Check if this is Bluetooth Dock
148 String address = BluetoothService.readDockBluetoothAddress();
149 if (address != null)
150 intent.putExtra(BluetoothDevice.EXTRA_DEVICE,
151 BluetoothAdapter.getDefaultAdapter().getRemoteDevice(address));
152
153 // User feedback to confirm dock connection. Particularly
154 // useful for flaky contact pins...
155 if (Settings.System.getInt(cr,
156 Settings.System.DOCK_SOUNDS_ENABLED, 1) == 1)
157 {
158 String whichSound = null;
159 if (mDockState == Intent.EXTRA_DOCK_STATE_UNDOCKED) {
Praveen Bharathi21e941b2010-10-06 15:23:14 -0500160 if ((mPreviousDockState == Intent.EXTRA_DOCK_STATE_DESK) ||
161 (mPreviousDockState == Intent.EXTRA_DOCK_STATE_LE_DESK) ||
162 (mPreviousDockState == Intent.EXTRA_DOCK_STATE_HE_DESK)) {
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100163 whichSound = Settings.System.DESK_UNDOCK_SOUND;
164 } else if (mPreviousDockState == Intent.EXTRA_DOCK_STATE_CAR) {
165 whichSound = Settings.System.CAR_UNDOCK_SOUND;
166 }
167 } else {
Praveen Bharathi21e941b2010-10-06 15:23:14 -0500168 if ((mDockState == Intent.EXTRA_DOCK_STATE_DESK) ||
169 (mDockState == Intent.EXTRA_DOCK_STATE_LE_DESK) ||
170 (mDockState == Intent.EXTRA_DOCK_STATE_HE_DESK)) {
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100171 whichSound = Settings.System.DESK_DOCK_SOUND;
172 } else if (mDockState == Intent.EXTRA_DOCK_STATE_CAR) {
173 whichSound = Settings.System.CAR_DOCK_SOUND;
174 }
175 }
176
177 if (whichSound != null) {
178 final String soundPath = Settings.System.getString(cr, whichSound);
179 if (soundPath != null) {
180 final Uri soundUri = Uri.parse("file://" + soundPath);
181 if (soundUri != null) {
182 final Ringtone sfx = RingtoneManager.getRingtone(mContext, soundUri);
Daniel Sandlerec2c88d2010-02-20 01:04:57 -0500183 if (sfx != null) {
184 sfx.setStreamType(AudioManager.STREAM_SYSTEM);
185 sfx.play();
186 }
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100187 }
188 }
189 }
190 }
191
Dianne Hackborn7299c412010-03-04 18:41:49 -0800192 mContext.sendStickyBroadcast(intent);
Bernd Holzheybfca3a02010-02-10 17:39:51 +0100193 }
194 break;
195 }
196 }
Tobias Haamel27b28b32010-02-09 23:09:17 +0100197 };
Dan Murphyc9f4eaf2009-08-12 15:15:43 -0500198}