| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 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 | package com.android.server; |
| 18 | |
| 19 | import android.content.ContentResolver; |
| 20 | import android.content.Context; |
| 21 | import android.content.Intent; |
| Mike Lockwood | e7d511e | 2010-12-30 13:39:37 -0500 | [diff] [blame] | 22 | import android.hardware.IUsbManager; |
| 23 | import android.hardware.UsbConstants; |
| 24 | import android.hardware.UsbDevice; |
| 25 | import android.hardware.UsbEndpoint; |
| 26 | import android.hardware.UsbInterface; |
| Mike Lockwood | 770126a | 2010-12-09 22:30:37 -0800 | [diff] [blame] | 27 | import android.hardware.UsbManager; |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 28 | import android.net.Uri; |
| Mike Lockwood | e7d511e | 2010-12-30 13:39:37 -0500 | [diff] [blame] | 29 | import android.os.Bundle; |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 30 | import android.os.Handler; |
| 31 | import android.os.Message; |
| Mike Lockwood | e7d511e | 2010-12-30 13:39:37 -0500 | [diff] [blame] | 32 | import android.os.Parcelable; |
| 33 | import android.os.ParcelFileDescriptor; |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 34 | import android.os.UEventObserver; |
| 35 | import android.provider.Settings; |
| 36 | import android.util.Log; |
| 37 | import android.util.Slog; |
| 38 | |
| 39 | import java.io.File; |
| 40 | import java.io.FileNotFoundException; |
| 41 | import java.io.FileReader; |
| 42 | import java.util.ArrayList; |
| Mike Lockwood | e7d511e | 2010-12-30 13:39:37 -0500 | [diff] [blame] | 43 | import java.util.HashMap; |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 44 | |
| 45 | /** |
| Mike Lockwood | 770126a | 2010-12-09 22:30:37 -0800 | [diff] [blame] | 46 | * <p>UsbService monitors for changes to USB state. |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 47 | */ |
| Mike Lockwood | e7d511e | 2010-12-30 13:39:37 -0500 | [diff] [blame] | 48 | class UsbService extends IUsbManager.Stub { |
| Mike Lockwood | 770126a | 2010-12-09 22:30:37 -0800 | [diff] [blame] | 49 | private static final String TAG = UsbService.class.getSimpleName(); |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 50 | private static final boolean LOG = false; |
| 51 | |
| Mike Lockwood | b92df0f | 2010-12-10 16:19:32 -0800 | [diff] [blame] | 52 | private static final String USB_CONNECTED_MATCH = |
| 53 | "DEVPATH=/devices/virtual/switch/usb_connected"; |
| 54 | private static final String USB_CONFIGURATION_MATCH = |
| 55 | "DEVPATH=/devices/virtual/switch/usb_configuration"; |
| 56 | private static final String USB_FUNCTIONS_MATCH = |
| 57 | "DEVPATH=/devices/virtual/usb_composite/"; |
| 58 | private static final String USB_CONNECTED_PATH = |
| 59 | "/sys/class/switch/usb_connected/state"; |
| 60 | private static final String USB_CONFIGURATION_PATH = |
| 61 | "/sys/class/switch/usb_configuration/state"; |
| 62 | private static final String USB_COMPOSITE_CLASS_PATH = |
| 63 | "/sys/class/usb_composite"; |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 64 | |
| 65 | private static final int MSG_UPDATE = 0; |
| 66 | |
| Mike Lockwood | b92df0f | 2010-12-10 16:19:32 -0800 | [diff] [blame] | 67 | // Delay for debouncing USB disconnects. |
| 68 | // We often get rapid connect/disconnect events when enabling USB functions, |
| 69 | // which need debouncing. |
| 70 | private static final int UPDATE_DELAY = 1000; |
| 71 | |
| 72 | // current connected and configuration state |
| 73 | private int mConnected; |
| 74 | private int mConfiguration; |
| 75 | |
| 76 | // last broadcasted connected and configuration state |
| 77 | private int mLastConnected = -1; |
| 78 | private int mLastConfiguration = -1; |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 79 | |
| Mike Lockwood | e7d511e | 2010-12-30 13:39:37 -0500 | [diff] [blame] | 80 | // lists of enabled and disabled USB functions (for USB device mode) |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 81 | private final ArrayList<String> mEnabledFunctions = new ArrayList<String>(); |
| 82 | private final ArrayList<String> mDisabledFunctions = new ArrayList<String>(); |
| 83 | |
| Mike Lockwood | e7d511e | 2010-12-30 13:39:37 -0500 | [diff] [blame] | 84 | private final HashMap<String,UsbDevice> mDevices = new HashMap<String,UsbDevice>(); |
| 85 | |
| Mike Lockwood | a8e3a89 | 2011-02-01 13:46:50 -0500 | [diff] [blame^] | 86 | // USB busses to exclude from USB host support |
| 87 | private final String[] mHostBlacklist; |
| 88 | |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 89 | private boolean mSystemReady; |
| 90 | |
| 91 | private final Context mContext; |
| 92 | |
| Mike Lockwood | 770126a | 2010-12-09 22:30:37 -0800 | [diff] [blame] | 93 | private final UEventObserver mUEventObserver = new UEventObserver() { |
| 94 | @Override |
| 95 | public void onUEvent(UEventObserver.UEvent event) { |
| 96 | if (Log.isLoggable(TAG, Log.VERBOSE)) { |
| 97 | Slog.v(TAG, "USB UEVENT: " + event.toString()); |
| 98 | } |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 99 | |
| Mike Lockwood | 770126a | 2010-12-09 22:30:37 -0800 | [diff] [blame] | 100 | synchronized (this) { |
| Mike Lockwood | b92df0f | 2010-12-10 16:19:32 -0800 | [diff] [blame] | 101 | String name = event.get("SWITCH_NAME"); |
| 102 | String state = event.get("SWITCH_STATE"); |
| 103 | if (name != null && state != null) { |
| Mike Lockwood | 770126a | 2010-12-09 22:30:37 -0800 | [diff] [blame] | 104 | try { |
| Mike Lockwood | b92df0f | 2010-12-10 16:19:32 -0800 | [diff] [blame] | 105 | int intState = Integer.parseInt(state); |
| 106 | if ("usb_connected".equals(name)) { |
| 107 | mConnected = intState; |
| Mike Lockwood | 770126a | 2010-12-09 22:30:37 -0800 | [diff] [blame] | 108 | // trigger an Intent broadcast |
| 109 | if (mSystemReady) { |
| Mike Lockwood | b92df0f | 2010-12-10 16:19:32 -0800 | [diff] [blame] | 110 | // debounce disconnects |
| 111 | update(mConnected == 0); |
| 112 | } |
| 113 | } else if ("usb_configuration".equals(name)) { |
| 114 | mConfiguration = intState; |
| 115 | // trigger an Intent broadcast |
| 116 | if (mSystemReady) { |
| 117 | update(mConnected == 0); |
| Mike Lockwood | 770126a | 2010-12-09 22:30:37 -0800 | [diff] [blame] | 118 | } |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 119 | } |
| Mike Lockwood | 770126a | 2010-12-09 22:30:37 -0800 | [diff] [blame] | 120 | } catch (NumberFormatException e) { |
| 121 | Slog.e(TAG, "Could not parse switch state from event " + event); |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 122 | } |
| Mike Lockwood | 770126a | 2010-12-09 22:30:37 -0800 | [diff] [blame] | 123 | } else { |
| 124 | String function = event.get("FUNCTION"); |
| 125 | String enabledStr = event.get("ENABLED"); |
| 126 | if (function != null && enabledStr != null) { |
| 127 | // Note: we do not broadcast a change when a function is enabled or disabled. |
| 128 | // We just record the state change for the next broadcast. |
| 129 | boolean enabled = "1".equals(enabledStr); |
| 130 | if (enabled) { |
| 131 | if (!mEnabledFunctions.contains(function)) { |
| 132 | mEnabledFunctions.add(function); |
| 133 | } |
| 134 | mDisabledFunctions.remove(function); |
| 135 | } else { |
| 136 | if (!mDisabledFunctions.contains(function)) { |
| 137 | mDisabledFunctions.add(function); |
| 138 | } |
| 139 | mEnabledFunctions.remove(function); |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 140 | } |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 141 | } |
| 142 | } |
| 143 | } |
| 144 | } |
| Mike Lockwood | 770126a | 2010-12-09 22:30:37 -0800 | [diff] [blame] | 145 | }; |
| 146 | |
| 147 | public UsbService(Context context) { |
| 148 | mContext = context; |
| Mike Lockwood | a8e3a89 | 2011-02-01 13:46:50 -0500 | [diff] [blame^] | 149 | mHostBlacklist = context.getResources().getStringArray( |
| 150 | com.android.internal.R.array.config_usbHostBlacklist); |
| 151 | |
| Mike Lockwood | 770126a | 2010-12-09 22:30:37 -0800 | [diff] [blame] | 152 | init(); // set initial status |
| 153 | |
| David 'Digit' Turner | 49db853 | 2011-01-17 00:19:37 +0100 | [diff] [blame] | 154 | if (mConfiguration >= 0) { |
| 155 | mUEventObserver.startObserving(USB_CONNECTED_MATCH); |
| 156 | mUEventObserver.startObserving(USB_CONFIGURATION_MATCH); |
| 157 | mUEventObserver.startObserving(USB_FUNCTIONS_MATCH); |
| 158 | } |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 159 | } |
| Mike Lockwood | 770126a | 2010-12-09 22:30:37 -0800 | [diff] [blame] | 160 | |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 161 | private final void init() { |
| 162 | char[] buffer = new char[1024]; |
| 163 | |
| David 'Digit' Turner | 49db853 | 2011-01-17 00:19:37 +0100 | [diff] [blame] | 164 | mConfiguration = -1; |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 165 | try { |
| Mike Lockwood | b92df0f | 2010-12-10 16:19:32 -0800 | [diff] [blame] | 166 | FileReader file = new FileReader(USB_CONNECTED_PATH); |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 167 | int len = file.read(buffer, 0, 1024); |
| Brian Carlstrom | fd9ddd1 | 2010-11-04 11:24:58 -0700 | [diff] [blame] | 168 | file.close(); |
| Mike Lockwood | b92df0f | 2010-12-10 16:19:32 -0800 | [diff] [blame] | 169 | mConnected = Integer.valueOf((new String(buffer, 0, len)).trim()); |
| 170 | |
| 171 | file = new FileReader(USB_CONFIGURATION_PATH); |
| 172 | len = file.read(buffer, 0, 1024); |
| 173 | file.close(); |
| 174 | mConfiguration = Integer.valueOf((new String(buffer, 0, len)).trim()); |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 175 | |
| 176 | } catch (FileNotFoundException e) { |
| David 'Digit' Turner | 49db853 | 2011-01-17 00:19:37 +0100 | [diff] [blame] | 177 | Slog.i(TAG, "This kernel does not have USB configuration switch support"); |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 178 | } catch (Exception e) { |
| 179 | Slog.e(TAG, "" , e); |
| 180 | } |
| David 'Digit' Turner | 49db853 | 2011-01-17 00:19:37 +0100 | [diff] [blame] | 181 | if (mConfiguration < 0) |
| 182 | return; |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 183 | |
| 184 | try { |
| 185 | File[] files = new File(USB_COMPOSITE_CLASS_PATH).listFiles(); |
| 186 | for (int i = 0; i < files.length; i++) { |
| 187 | File file = new File(files[i], "enable"); |
| 188 | FileReader reader = new FileReader(file); |
| 189 | int len = reader.read(buffer, 0, 1024); |
| Brian Carlstrom | fd9ddd1 | 2010-11-04 11:24:58 -0700 | [diff] [blame] | 190 | reader.close(); |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 191 | int value = Integer.valueOf((new String(buffer, 0, len)).trim()); |
| 192 | String functionName = files[i].getName(); |
| 193 | if (value == 1) { |
| 194 | mEnabledFunctions.add(functionName); |
| 195 | } else { |
| 196 | mDisabledFunctions.add(functionName); |
| 197 | } |
| 198 | } |
| 199 | } catch (FileNotFoundException e) { |
| 200 | Slog.w(TAG, "This kernel does not have USB composite class support"); |
| 201 | } catch (Exception e) { |
| 202 | Slog.e(TAG, "" , e); |
| 203 | } |
| 204 | } |
| 205 | |
| Mike Lockwood | a8e3a89 | 2011-02-01 13:46:50 -0500 | [diff] [blame^] | 206 | private boolean isBlackListed(String deviceName) { |
| 207 | int count = mHostBlacklist.length; |
| 208 | for (int i = 0; i < count; i++) { |
| 209 | if (deviceName.startsWith(mHostBlacklist[i])) { |
| 210 | return true; |
| 211 | } |
| 212 | } |
| 213 | return false; |
| 214 | } |
| 215 | |
| Mike Lockwood | e7d511e | 2010-12-30 13:39:37 -0500 | [diff] [blame] | 216 | // called from JNI in monitorUsbHostBus() |
| 217 | private void usbDeviceAdded(String deviceName, int vendorID, int productID, |
| 218 | int deviceClass, int deviceSubclass, int deviceProtocol, |
| 219 | /* array of quintuples containing id, class, subclass, protocol |
| 220 | and number of endpoints for each interface */ |
| 221 | int[] interfaceValues, |
| 222 | /* array of quadruples containing address, attributes, max packet size |
| 223 | and interval for each endpoint */ |
| 224 | int[] endpointValues) { |
| 225 | |
| 226 | // ignore hubs |
| 227 | if (deviceClass == UsbConstants.USB_CLASS_HUB) { |
| 228 | return; |
| 229 | } |
| 230 | |
| Mike Lockwood | a8e3a89 | 2011-02-01 13:46:50 -0500 | [diff] [blame^] | 231 | if (isBlackListed(deviceName)) { |
| 232 | return; |
| 233 | } |
| 234 | |
| Mike Lockwood | e7d511e | 2010-12-30 13:39:37 -0500 | [diff] [blame] | 235 | synchronized (mDevices) { |
| 236 | if (mDevices.get(deviceName) != null) { |
| 237 | Log.w(TAG, "device already on mDevices list: " + deviceName); |
| 238 | return; |
| 239 | } |
| 240 | |
| 241 | int numInterfaces = interfaceValues.length / 5; |
| 242 | Parcelable[] interfaces = new UsbInterface[numInterfaces]; |
| 243 | try { |
| 244 | // repackage interfaceValues as an array of UsbInterface |
| 245 | int intf, endp, ival = 0, eval = 0; |
| 246 | boolean hasGoodInterface = false; |
| 247 | for (intf = 0; intf < numInterfaces; intf++) { |
| 248 | int interfaceId = interfaceValues[ival++]; |
| 249 | int interfaceClass = interfaceValues[ival++]; |
| 250 | int interfaceSubclass = interfaceValues[ival++]; |
| 251 | int interfaceProtocol = interfaceValues[ival++]; |
| 252 | int numEndpoints = interfaceValues[ival++]; |
| 253 | |
| 254 | Parcelable[] endpoints = new UsbEndpoint[numEndpoints]; |
| 255 | for (endp = 0; endp < numEndpoints; endp++) { |
| 256 | int address = endpointValues[eval++]; |
| 257 | int attributes = endpointValues[eval++]; |
| 258 | int maxPacketSize = endpointValues[eval++]; |
| 259 | int interval = endpointValues[eval++]; |
| 260 | endpoints[endp] = new UsbEndpoint(address, attributes, |
| 261 | maxPacketSize, interval); |
| 262 | } |
| 263 | |
| 264 | if (interfaceClass != UsbConstants.USB_CLASS_HUB) { |
| 265 | hasGoodInterface = true; |
| 266 | } |
| 267 | interfaces[intf] = new UsbInterface(interfaceId, interfaceClass, |
| 268 | interfaceSubclass, interfaceProtocol, endpoints); |
| 269 | } |
| 270 | |
| 271 | if (!hasGoodInterface) { |
| 272 | return; |
| 273 | } |
| 274 | } catch (Exception e) { |
| 275 | // beware of index out of bound exceptions, which might happen if |
| 276 | // a device does not set bNumEndpoints correctly |
| 277 | Log.e(TAG, "error parsing USB descriptors", e); |
| 278 | return; |
| 279 | } |
| 280 | |
| 281 | UsbDevice device = new UsbDevice(deviceName, vendorID, productID, |
| 282 | deviceClass, deviceSubclass, deviceProtocol, interfaces); |
| 283 | mDevices.put(deviceName, device); |
| 284 | |
| 285 | Intent intent = new Intent(UsbManager.ACTION_USB_DEVICE_ATTACHED); |
| 286 | intent.putExtra(UsbManager.EXTRA_DEVICE_NAME, deviceName); |
| 287 | intent.putExtra(UsbManager.EXTRA_VENDOR_ID, vendorID); |
| 288 | intent.putExtra(UsbManager.EXTRA_PRODUCT_ID, productID); |
| 289 | intent.putExtra(UsbManager.EXTRA_DEVICE_CLASS, deviceClass); |
| 290 | intent.putExtra(UsbManager.EXTRA_DEVICE_SUBCLASS, deviceSubclass); |
| 291 | intent.putExtra(UsbManager.EXTRA_DEVICE_PROTOCOL, deviceProtocol); |
| 292 | intent.putExtra(UsbManager.EXTRA_DEVICE, device); |
| 293 | Log.d(TAG, "usbDeviceAdded, sending " + intent); |
| 294 | mContext.sendBroadcast(intent); |
| 295 | } |
| 296 | } |
| 297 | |
| 298 | // called from JNI in monitorUsbHostBus() |
| 299 | private void usbDeviceRemoved(String deviceName) { |
| 300 | synchronized (mDevices) { |
| 301 | UsbDevice device = mDevices.remove(deviceName); |
| 302 | if (device != null) { |
| 303 | Intent intent = new Intent(UsbManager.ACTION_USB_DEVICE_DETACHED); |
| 304 | intent.putExtra(UsbManager.EXTRA_DEVICE_NAME, deviceName); |
| 305 | Log.d(TAG, "usbDeviceRemoved, sending " + intent); |
| 306 | mContext.sendBroadcast(intent); |
| 307 | } |
| 308 | } |
| 309 | } |
| 310 | |
| Mike Lockwood | da39f0e | 2010-07-27 18:44:30 -0400 | [diff] [blame] | 311 | private void initHostSupport() { |
| Mike Lockwood | e7d511e | 2010-12-30 13:39:37 -0500 | [diff] [blame] | 312 | // Create a thread to call into native code to wait for USB host events. |
| 313 | // This thread will call us back on usbDeviceAdded and usbDeviceRemoved. |
| 314 | Runnable runnable = new Runnable() { |
| 315 | public void run() { |
| 316 | monitorUsbHostBus(); |
| 317 | } |
| 318 | }; |
| 319 | new Thread(null, runnable, "UsbService host thread").start(); |
| Mike Lockwood | da39f0e | 2010-07-27 18:44:30 -0400 | [diff] [blame] | 320 | } |
| 321 | |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 322 | void systemReady() { |
| 323 | synchronized (this) { |
| Mike Lockwood | da39f0e | 2010-07-27 18:44:30 -0400 | [diff] [blame] | 324 | if (mContext.getResources().getBoolean( |
| 325 | com.android.internal.R.bool.config_hasUsbHostSupport)) { |
| 326 | // start monitoring for connected USB devices |
| 327 | initHostSupport(); |
| 328 | } |
| 329 | |
| Mike Lockwood | b92df0f | 2010-12-10 16:19:32 -0800 | [diff] [blame] | 330 | update(false); |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 331 | mSystemReady = true; |
| 332 | } |
| 333 | } |
| 334 | |
| Mike Lockwood | b92df0f | 2010-12-10 16:19:32 -0800 | [diff] [blame] | 335 | private final void update(boolean delayed) { |
| 336 | mHandler.removeMessages(MSG_UPDATE); |
| 337 | mHandler.sendEmptyMessageDelayed(MSG_UPDATE, delayed ? UPDATE_DELAY : 0); |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 338 | } |
| 339 | |
| Mike Lockwood | e7d511e | 2010-12-30 13:39:37 -0500 | [diff] [blame] | 340 | /* Returns a list of all currently attached USB devices */ |
| 341 | public void getDeviceList(Bundle devices) { |
| 342 | mContext.enforceCallingOrSelfPermission(android.Manifest.permission.ACCESS_USB, null); |
| 343 | synchronized (mDevices) { |
| 344 | for (String name : mDevices.keySet()) { |
| 345 | devices.putParcelable(name, mDevices.get(name)); |
| 346 | } |
| 347 | } |
| 348 | } |
| 349 | |
| 350 | public ParcelFileDescriptor openDevice(String deviceName) { |
| Mike Lockwood | a8e3a89 | 2011-02-01 13:46:50 -0500 | [diff] [blame^] | 351 | if (isBlackListed(deviceName)) { |
| 352 | throw new SecurityException("USB device is on a restricted bus"); |
| 353 | } |
| Mike Lockwood | e7d511e | 2010-12-30 13:39:37 -0500 | [diff] [blame] | 354 | mContext.enforceCallingOrSelfPermission(android.Manifest.permission.ACCESS_USB, null); |
| 355 | return nativeOpenDevice(deviceName); |
| 356 | } |
| 357 | |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 358 | private final Handler mHandler = new Handler() { |
| Mike Lockwood | 709981e | 2010-06-28 09:58:58 -0400 | [diff] [blame] | 359 | private void addEnabledFunctions(Intent intent) { |
| 360 | // include state of all USB functions in our extras |
| 361 | for (int i = 0; i < mEnabledFunctions.size(); i++) { |
| Mike Lockwood | 770126a | 2010-12-09 22:30:37 -0800 | [diff] [blame] | 362 | intent.putExtra(mEnabledFunctions.get(i), UsbManager.USB_FUNCTION_ENABLED); |
| Mike Lockwood | 709981e | 2010-06-28 09:58:58 -0400 | [diff] [blame] | 363 | } |
| 364 | for (int i = 0; i < mDisabledFunctions.size(); i++) { |
| Mike Lockwood | 770126a | 2010-12-09 22:30:37 -0800 | [diff] [blame] | 365 | intent.putExtra(mDisabledFunctions.get(i), UsbManager.USB_FUNCTION_DISABLED); |
| Mike Lockwood | 709981e | 2010-06-28 09:58:58 -0400 | [diff] [blame] | 366 | } |
| 367 | } |
| 368 | |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 369 | @Override |
| 370 | public void handleMessage(Message msg) { |
| 371 | switch (msg.what) { |
| 372 | case MSG_UPDATE: |
| 373 | synchronized (this) { |
| Mike Lockwood | b92df0f | 2010-12-10 16:19:32 -0800 | [diff] [blame] | 374 | if (mConnected != mLastConnected || mConfiguration != mLastConfiguration) { |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 375 | |
| Mike Lockwood | b92df0f | 2010-12-10 16:19:32 -0800 | [diff] [blame] | 376 | final ContentResolver cr = mContext.getContentResolver(); |
| 377 | if (Settings.Secure.getInt(cr, |
| 378 | Settings.Secure.DEVICE_PROVISIONED, 0) == 0) { |
| 379 | Slog.i(TAG, "Device not provisioned, skipping USB broadcast"); |
| 380 | return; |
| 381 | } |
| 382 | |
| 383 | mLastConnected = mConnected; |
| 384 | mLastConfiguration = mConfiguration; |
| 385 | |
| 386 | // send a sticky broadcast containing current USB state |
| 387 | Intent intent = new Intent(UsbManager.ACTION_USB_STATE); |
| 388 | intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING); |
| 389 | intent.putExtra(UsbManager.USB_CONNECTED, mConnected != 0); |
| 390 | intent.putExtra(UsbManager.USB_CONFIGURATION, mConfiguration); |
| Mike Lockwood | 709981e | 2010-06-28 09:58:58 -0400 | [diff] [blame] | 391 | addEnabledFunctions(intent); |
| Mike Lockwood | b92df0f | 2010-12-10 16:19:32 -0800 | [diff] [blame] | 392 | mContext.sendStickyBroadcast(intent); |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 393 | } |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 394 | } |
| 395 | break; |
| 396 | } |
| 397 | } |
| 398 | }; |
| Mike Lockwood | e7d511e | 2010-12-30 13:39:37 -0500 | [diff] [blame] | 399 | |
| 400 | private native void monitorUsbHostBus(); |
| 401 | private native ParcelFileDescriptor nativeOpenDevice(String deviceName); |
| Mike Lockwood | 2423607 | 2010-06-23 17:36:36 -0400 | [diff] [blame] | 402 | } |