blob: c98b902812a24a60677f88a660c8993f988d4ed9 [file] [log] [blame]
/*
* Copyright (C) 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.car.usb.handler;
import android.app.Notification;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.hardware.usb.UsbDevice;
import android.hardware.usb.UsbManager;
import android.os.Binder;
import android.os.UserHandle;
import android.util.Log;
import java.util.ArrayList;
/**
* Starts the {@link UsbHostManagementActivity} for each connected usb device when {@link
* #onStartCommand(Intent, int, int)} is called. This is meant to allow this activity to start for
* connected devices on start up, without holding up processing of the LOCKED_BOOT_COMPLETED intent.
*/
public class BootUsbService extends Service {
private static final String TAG = BootUsbService.class.getSimpleName();
private static final int NOTIFICATION_ID = 1;
static final String USB_DEVICE_LIST_KEY = "usb_device_list";
private ArrayList<UsbDevice> mDeviceList;
@Override
public Binder onBind(Intent intent) {
return null;
}
@Override
public void onCreate() {
String notificationIdString =
getResources().getString(R.string.usb_boot_service_notification);
NotificationManager notificationManager = getSystemService(NotificationManager.class);
NotificationChannel notificationChannel =
new NotificationChannel(
notificationIdString,
"Car Usb Handler enumeration",
NotificationManager.IMPORTANCE_NONE);
notificationManager.createNotificationChannel(notificationChannel);
Notification notification =
new Notification.Builder(
this, notificationIdString).setSmallIcon(R.drawable.ic_launcher).build();
// CarUsbHandler runs in the background, so startForeground must be explicitly called.
startForeground(NOTIFICATION_ID, notification);
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
mDeviceList = intent.getParcelableArrayListExtra(USB_DEVICE_LIST_KEY);
processDevices();
return START_NOT_STICKY;
}
private void processDevices() {
for (UsbDevice device : mDeviceList) {
Log.d(TAG, "Processing device: " + device.getProductName());
handle(this, device);
}
stopSelf();
}
private void handle(Context context, UsbDevice device) {
Intent manageDevice = new Intent(context, UsbHostManagementActivity.class);
manageDevice.setAction(UsbManager.ACTION_USB_DEVICE_ATTACHED);
manageDevice.putExtra(UsbManager.EXTRA_DEVICE, device);
manageDevice.addFlags(Intent.FLAG_ACTIVITY_MULTIPLE_TASK | Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivityAsUser(manageDevice, UserHandle.CURRENT);
}
}