blob: ca8823f61ee2f21efa4eac46449d68ea1f8fd2e9 [file] [log] [blame]
Ruben Brunk9d21ee52015-03-20 22:18:55 -07001/*
2 * Copyright 2015 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 */
16package com.android.server.camera;
17
Ruben Brunka59a8702015-06-23 11:52:08 -070018import android.content.BroadcastReceiver;
Ruben Brunk9d21ee52015-03-20 22:18:55 -070019import android.content.Context;
Ruben Brunka59a8702015-06-23 11:52:08 -070020import android.content.Intent;
21import android.content.IntentFilter;
Ruben Brunk9d21ee52015-03-20 22:18:55 -070022import android.hardware.ICameraService;
Ruben Brunk6664aee2015-05-19 17:20:24 -070023import android.hardware.ICameraServiceProxy;
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -070024import android.metrics.LogMaker;
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -070025import android.nfc.INfcAdapter;
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -070026import android.os.Binder;
Ruben Brunk28388e82015-06-01 18:41:28 -070027import android.os.Handler;
Ruben Brunk9d21ee52015-03-20 22:18:55 -070028import android.os.IBinder;
Ruben Brunk28388e82015-06-01 18:41:28 -070029import android.os.Message;
30import android.os.Process;
Ruben Brunk9d21ee52015-03-20 22:18:55 -070031import android.os.RemoteException;
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -070032import android.os.SystemClock;
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -070033import android.os.SystemProperties;
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -070034import android.os.UserManager;
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -070035import android.util.ArrayMap;
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -070036import android.util.ArraySet;
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -070037import android.util.Slog;
Ruben Brunk9d21ee52015-03-20 22:18:55 -070038
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -070039import com.android.internal.logging.MetricsLogger;
40import com.android.internal.logging.nano.MetricsProto.MetricsEvent;
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -070041import com.android.server.LocalServices;
Ruben Brunk28388e82015-06-01 18:41:28 -070042import com.android.server.ServiceThread;
Ruben Brunk9d21ee52015-03-20 22:18:55 -070043import com.android.server.SystemService;
44
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -070045import java.util.ArrayList;
Ruben Brunk7f75da22015-04-30 17:46:30 -070046import java.util.Collection;
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -070047import java.util.Collections;
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -070048import java.util.List;
Ruben Brunk7f75da22015-04-30 17:46:30 -070049import java.util.Set;
50
Ruben Brunk9d21ee52015-03-20 22:18:55 -070051/**
Wei Wanged7f5482017-02-21 11:35:10 -080052 * CameraServiceProxy is the system_server analog to the camera service running in mediaserver.
Ruben Brunk9d21ee52015-03-20 22:18:55 -070053 *
54 * @hide
55 */
Wei Wanged7f5482017-02-21 11:35:10 -080056public class CameraServiceProxy extends SystemService
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -070057 implements Handler.Callback, IBinder.DeathRecipient {
Ruben Brunk28388e82015-06-01 18:41:28 -070058 private static final String TAG = "CameraService_proxy";
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -070059 private static final boolean DEBUG = false;
Ruben Brunk9d21ee52015-03-20 22:18:55 -070060
61 /**
62 * This must match the ICameraService.aidl definition
63 */
64 private static final String CAMERA_SERVICE_BINDER_NAME = "media.camera";
65
Ruben Brunk6664aee2015-05-19 17:20:24 -070066 public static final String CAMERA_SERVICE_PROXY_BINDER_NAME = "media.camera.proxy";
67
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -070068 // Flags arguments to NFC adapter to enable/disable NFC
69 public static final int DISABLE_POLLING_FLAGS = 0x1000;
70 public static final int ENABLE_POLLING_FLAGS = 0x0000;
71
Ruben Brunk28388e82015-06-01 18:41:28 -070072 // Handler message codes
73 private static final int MSG_SWITCH_USER = 1;
74
75 private static final int RETRY_DELAY_TIME = 20; //ms
76
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -070077 // Maximum entries to keep in usage history before dumping out
78 private static final int MAX_USAGE_HISTORY = 100;
79
Ruben Brunk7f75da22015-04-30 17:46:30 -070080 private final Context mContext;
Ruben Brunk28388e82015-06-01 18:41:28 -070081 private final ServiceThread mHandlerThread;
82 private final Handler mHandler;
Ruben Brunk7f75da22015-04-30 17:46:30 -070083 private UserManager mUserManager;
Ruben Brunk6664aee2015-05-19 17:20:24 -070084
85 private final Object mLock = new Object();
Ruben Brunk7f75da22015-04-30 17:46:30 -070086 private Set<Integer> mEnabledCameraUsers;
Ruben Brunka59a8702015-06-23 11:52:08 -070087 private int mLastUser;
88
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -070089 private ICameraService mCameraServiceRaw;
90
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -070091 private final ArrayMap<String, CameraUsageEvent> mActiveCameraUsage = new ArrayMap<>();
92 private final List<CameraUsageEvent> mCameraUsageHistory = new ArrayList<>();
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -070093 private final MetricsLogger mLogger = new MetricsLogger();
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -070094 private static final String NFC_NOTIFICATION_PROP = "ro.camera.notify_nfc";
95 private static final String NFC_SERVICE_BINDER_NAME = "nfc";
96 private static final IBinder nfcInterfaceToken = new Binder();
97
98 private final boolean mNotifyNfc;
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -070099
100 /**
101 * Structure to track camera usage
102 */
103 private static class CameraUsageEvent {
104 public final int mCameraFacing;
105 public final String mClientName;
Emilian Peev6bf0a552018-02-10 02:15:49 +0000106 public final int mAPILevel;
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -0700107
108 private boolean mCompleted;
109 private long mDurationOrStartTimeMs; // Either start time, or duration once completed
110
Emilian Peev6bf0a552018-02-10 02:15:49 +0000111 public CameraUsageEvent(int facing, String clientName, int apiLevel) {
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -0700112 mCameraFacing = facing;
113 mClientName = clientName;
Emilian Peev6bf0a552018-02-10 02:15:49 +0000114 mAPILevel = apiLevel;
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -0700115 mDurationOrStartTimeMs = SystemClock.elapsedRealtime();
116 mCompleted = false;
117 }
118
119 public void markCompleted() {
120 if (mCompleted) {
121 return;
122 }
123 mCompleted = true;
124 mDurationOrStartTimeMs = SystemClock.elapsedRealtime() - mDurationOrStartTimeMs;
125 if (CameraServiceProxy.DEBUG) {
126 Slog.v(TAG, "A camera facing " + cameraFacingToString(mCameraFacing) +
127 " was in use by " + mClientName + " for " +
128 mDurationOrStartTimeMs + " ms");
129 }
130 }
131
132 /**
133 * Return duration of camera usage event, or 0 if the event is not done
134 */
135 public long getDuration() {
136 return mCompleted ? mDurationOrStartTimeMs : 0;
137 }
138 }
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -0700139
Ruben Brunka59a8702015-06-23 11:52:08 -0700140 private final BroadcastReceiver mIntentReceiver = new BroadcastReceiver() {
141 @Override
142 public void onReceive(Context context, Intent intent) {
143 final String action = intent.getAction();
144 if (action == null) return;
145
146 switch (action) {
147 case Intent.ACTION_USER_ADDED:
148 case Intent.ACTION_USER_REMOVED:
149 case Intent.ACTION_USER_INFO_CHANGED:
150 case Intent.ACTION_MANAGED_PROFILE_ADDED:
151 case Intent.ACTION_MANAGED_PROFILE_REMOVED:
152 synchronized(mLock) {
153 // Return immediately if we haven't seen any users start yet
154 if (mEnabledCameraUsers == null) return;
155 switchUserLocked(mLastUser);
156 }
157 break;
158 default:
159 break; // do nothing
160 }
161
162 }
163 };
Ruben Brunk7f75da22015-04-30 17:46:30 -0700164
Ruben Brunk6664aee2015-05-19 17:20:24 -0700165 private final ICameraServiceProxy.Stub mCameraServiceProxy = new ICameraServiceProxy.Stub() {
166 @Override
167 public void pingForUserUpdate() {
Ruben Brunk28388e82015-06-01 18:41:28 -0700168 notifySwitchWithRetries(30);
Ruben Brunk6664aee2015-05-19 17:20:24 -0700169 }
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -0700170
171 @Override
Eino-Ville Talvalafb9b64c2017-06-28 12:44:03 -0700172 public void notifyCameraState(String cameraId, int newCameraState, int facing,
Emilian Peev6bf0a552018-02-10 02:15:49 +0000173 String clientName, int apiLevel) {
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -0700174 String state = cameraStateToString(newCameraState);
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -0700175 String facingStr = cameraFacingToString(facing);
176 if (DEBUG) Slog.v(TAG, "Camera " + cameraId + " facing " + facingStr + " state now " +
Emilian Peev6bf0a552018-02-10 02:15:49 +0000177 state + " for client " + clientName + " API Level " + apiLevel);
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -0700178
Emilian Peev6bf0a552018-02-10 02:15:49 +0000179 updateActivityCount(cameraId, newCameraState, facing, clientName, apiLevel);
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -0700180 }
Ruben Brunk6664aee2015-05-19 17:20:24 -0700181 };
182
Wei Wanged7f5482017-02-21 11:35:10 -0800183 public CameraServiceProxy(Context context) {
Ruben Brunk9d21ee52015-03-20 22:18:55 -0700184 super(context);
Ruben Brunk7f75da22015-04-30 17:46:30 -0700185 mContext = context;
Ruben Brunk28388e82015-06-01 18:41:28 -0700186 mHandlerThread = new ServiceThread(TAG, Process.THREAD_PRIORITY_DISPLAY, /*allowTo*/false);
187 mHandlerThread.start();
188 mHandler = new Handler(mHandlerThread.getLooper(), this);
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -0700189
190 mNotifyNfc = SystemProperties.getInt(NFC_NOTIFICATION_PROP, 0) > 0;
191 if (DEBUG) Slog.v(TAG, "Notify NFC behavior is " + (mNotifyNfc ? "active" : "disabled"));
Ruben Brunk28388e82015-06-01 18:41:28 -0700192 }
193
194 @Override
195 public boolean handleMessage(Message msg) {
196 switch(msg.what) {
197 case MSG_SWITCH_USER: {
198 notifySwitchWithRetries(msg.arg1);
199 } break;
200 default: {
Wei Wanged7f5482017-02-21 11:35:10 -0800201 Slog.e(TAG, "CameraServiceProxy error, invalid message: " + msg.what);
Ruben Brunk28388e82015-06-01 18:41:28 -0700202 } break;
203 }
204 return true;
Ruben Brunk9d21ee52015-03-20 22:18:55 -0700205 }
206
207 @Override
Ruben Brunk7f75da22015-04-30 17:46:30 -0700208 public void onStart() {
209 mUserManager = UserManager.get(mContext);
210 if (mUserManager == null) {
211 // Should never see this unless someone messes up the SystemServer service boot order.
Wei Wanged7f5482017-02-21 11:35:10 -0800212 throw new IllegalStateException("UserManagerService must start before" +
213 " CameraServiceProxy!");
Ruben Brunk7f75da22015-04-30 17:46:30 -0700214 }
Ruben Brunka59a8702015-06-23 11:52:08 -0700215
216 IntentFilter filter = new IntentFilter();
217 filter.addAction(Intent.ACTION_USER_ADDED);
218 filter.addAction(Intent.ACTION_USER_REMOVED);
219 filter.addAction(Intent.ACTION_USER_INFO_CHANGED);
220 filter.addAction(Intent.ACTION_MANAGED_PROFILE_ADDED);
221 filter.addAction(Intent.ACTION_MANAGED_PROFILE_REMOVED);
222 mContext.registerReceiver(mIntentReceiver, filter);
223
Ruben Brunk6664aee2015-05-19 17:20:24 -0700224 publishBinderService(CAMERA_SERVICE_PROXY_BINDER_NAME, mCameraServiceProxy);
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -0700225 publishLocalService(CameraServiceProxy.class, this);
226
227 CameraStatsJobService.schedule(mContext);
Ruben Brunk7f75da22015-04-30 17:46:30 -0700228 }
229
230 @Override
231 public void onStartUser(int userHandle) {
Ruben Brunk6664aee2015-05-19 17:20:24 -0700232 synchronized(mLock) {
233 if (mEnabledCameraUsers == null) {
234 // Initialize mediaserver, or update mediaserver if we are recovering from a crash.
235 switchUserLocked(userHandle);
236 }
Ruben Brunk7f75da22015-04-30 17:46:30 -0700237 }
238 }
Ruben Brunk9d21ee52015-03-20 22:18:55 -0700239
240 @Override
241 public void onSwitchUser(int userHandle) {
Ruben Brunk6664aee2015-05-19 17:20:24 -0700242 synchronized(mLock) {
243 switchUserLocked(userHandle);
244 }
245 }
246
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -0700247 /**
248 * Handle the death of the native camera service
249 */
250 @Override
251 public void binderDied() {
252 if (DEBUG) Slog.w(TAG, "Native camera service has died");
253 synchronized(mLock) {
254 mCameraServiceRaw = null;
255
256 // All cameras reset to idle on camera service death
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -0700257 boolean wasEmpty = mActiveCameraUsage.isEmpty();
258 mActiveCameraUsage.clear();
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -0700259
260 if ( mNotifyNfc && !wasEmpty ) {
261 notifyNfcService(/*enablePolling*/ true);
262 }
263 }
264 }
265
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -0700266 /**
267 * Dump camera usage events to log.
268 * Package-private
269 */
270 void dumpUsageEvents() {
271 synchronized(mLock) {
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -0700272 // Randomize order of events so that it's not meaningful
273 Collections.shuffle(mCameraUsageHistory);
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -0700274 for (CameraUsageEvent e : mCameraUsageHistory) {
275 if (DEBUG) {
276 Slog.v(TAG, "Camera: " + e.mClientName + " used a camera facing " +
277 cameraFacingToString(e.mCameraFacing) + " for " +
278 e.getDuration() + " ms");
279 }
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -0700280 int subtype = 0;
281 switch(e.mCameraFacing) {
282 case ICameraServiceProxy.CAMERA_FACING_BACK:
283 subtype = MetricsEvent.CAMERA_BACK_USED;
284 break;
285 case ICameraServiceProxy.CAMERA_FACING_FRONT:
286 subtype = MetricsEvent.CAMERA_FRONT_USED;
287 break;
288 case ICameraServiceProxy.CAMERA_FACING_EXTERNAL:
289 subtype = MetricsEvent.CAMERA_EXTERNAL_USED;
290 break;
291 default:
292 continue;
293 }
294 LogMaker l = new LogMaker(MetricsEvent.ACTION_CAMERA_EVENT)
295 .setType(MetricsEvent.TYPE_ACTION)
296 .setSubtype(subtype)
297 .setLatency(e.getDuration())
Emilian Peev6bf0a552018-02-10 02:15:49 +0000298 .addTaggedData(MetricsEvent.FIELD_CAMERA_API_LEVEL, e.mAPILevel)
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -0700299 .setPackageName(e.mClientName);
300 mLogger.write(l);
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -0700301 }
302 mCameraUsageHistory.clear();
303 }
304 CameraStatsJobService.schedule(mContext);
305 }
306
Ruben Brunk6664aee2015-05-19 17:20:24 -0700307 private void switchUserLocked(int userHandle) {
Ruben Brunk7f75da22015-04-30 17:46:30 -0700308 Set<Integer> currentUserHandles = getEnabledUserHandles(userHandle);
Ruben Brunka59a8702015-06-23 11:52:08 -0700309 mLastUser = userHandle;
Ruben Brunk7f75da22015-04-30 17:46:30 -0700310 if (mEnabledCameraUsers == null || !mEnabledCameraUsers.equals(currentUserHandles)) {
311 // Some user handles have been added or removed, update mediaserver.
312 mEnabledCameraUsers = currentUserHandles;
Eino-Ville Talvala5d2d7782015-12-17 16:50:50 -0800313 notifyMediaserverLocked(ICameraService.EVENT_USER_SWITCHED, currentUserHandles);
Ruben Brunk7f75da22015-04-30 17:46:30 -0700314 }
315 }
Ruben Brunk9d21ee52015-03-20 22:18:55 -0700316
Ruben Brunk7f75da22015-04-30 17:46:30 -0700317 private Set<Integer> getEnabledUserHandles(int currentUserHandle) {
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700318 int[] userProfiles = mUserManager.getEnabledProfileIds(currentUserHandle);
319 Set<Integer> handles = new ArraySet<>(userProfiles.length);
Ruben Brunk7f75da22015-04-30 17:46:30 -0700320
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700321 for (int id : userProfiles) {
322 handles.add(id);
Ruben Brunk7f75da22015-04-30 17:46:30 -0700323 }
324
325 return handles;
326 }
327
Ruben Brunk28388e82015-06-01 18:41:28 -0700328 private void notifySwitchWithRetries(int retries) {
329 synchronized(mLock) {
330 if (mEnabledCameraUsers == null) {
331 return;
332 }
Eino-Ville Talvala5d2d7782015-12-17 16:50:50 -0800333 if (notifyMediaserverLocked(ICameraService.EVENT_USER_SWITCHED, mEnabledCameraUsers)) {
Ruben Brunk28388e82015-06-01 18:41:28 -0700334 retries = 0;
335 }
336 }
337 if (retries <= 0) {
338 return;
339 }
340 Slog.i(TAG, "Could not notify camera service of user switch, retrying...");
341 mHandler.sendMessageDelayed(mHandler.obtainMessage(MSG_SWITCH_USER, retries - 1, 0, null),
342 RETRY_DELAY_TIME);
343 }
344
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -0700345 private boolean notifyMediaserverLocked(int eventType, Set<Integer> updatedUserHandles) {
Ruben Brunk7f75da22015-04-30 17:46:30 -0700346 // Forward the user switch event to the native camera service running in the mediaserver
347 // process.
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -0700348 if (mCameraServiceRaw == null) {
349 IBinder cameraServiceBinder = getBinderService(CAMERA_SERVICE_BINDER_NAME);
350 if (cameraServiceBinder == null) {
351 Slog.w(TAG, "Could not notify mediaserver, camera service not available.");
352 return false; // Camera service not active, cannot evict user clients.
353 }
354 try {
355 cameraServiceBinder.linkToDeath(this, /*flags*/ 0);
356 } catch (RemoteException e) {
357 Slog.w(TAG, "Could not link to death of native camera service");
358 return false;
359 }
360
361 mCameraServiceRaw = ICameraService.Stub.asInterface(cameraServiceBinder);
Ruben Brunk9d21ee52015-03-20 22:18:55 -0700362 }
Ruben Brunk7f75da22015-04-30 17:46:30 -0700363
Ruben Brunk9d21ee52015-03-20 22:18:55 -0700364 try {
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -0700365 mCameraServiceRaw.notifySystemEvent(eventType, toArray(updatedUserHandles));
Ruben Brunk9d21ee52015-03-20 22:18:55 -0700366 } catch (RemoteException e) {
Ruben Brunk28388e82015-06-01 18:41:28 -0700367 Slog.w(TAG, "Could not notify mediaserver, remote exception: " + e);
Ruben Brunk7f75da22015-04-30 17:46:30 -0700368 // Not much we can do if camera service is dead.
Ruben Brunk28388e82015-06-01 18:41:28 -0700369 return false;
Ruben Brunk9d21ee52015-03-20 22:18:55 -0700370 }
Ruben Brunk28388e82015-06-01 18:41:28 -0700371 return true;
Ruben Brunk9d21ee52015-03-20 22:18:55 -0700372 }
Ruben Brunk7f75da22015-04-30 17:46:30 -0700373
Emilian Peev6bf0a552018-02-10 02:15:49 +0000374 private void updateActivityCount(String cameraId, int newCameraState, int facing,
375 String clientName, int apiLevel) {
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -0700376 synchronized(mLock) {
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -0700377 // Update active camera list and notify NFC if necessary
378 boolean wasEmpty = mActiveCameraUsage.isEmpty();
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -0700379 switch (newCameraState) {
Eino-Ville Talvalafb9b64c2017-06-28 12:44:03 -0700380 case ICameraServiceProxy.CAMERA_STATE_OPEN:
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -0700381 break;
Eino-Ville Talvalafb9b64c2017-06-28 12:44:03 -0700382 case ICameraServiceProxy.CAMERA_STATE_ACTIVE:
Emilian Peev6bf0a552018-02-10 02:15:49 +0000383 CameraUsageEvent newEvent = new CameraUsageEvent(facing, clientName, apiLevel);
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -0700384 CameraUsageEvent oldEvent = mActiveCameraUsage.put(cameraId, newEvent);
385 if (oldEvent != null) {
386 Slog.w(TAG, "Camera " + cameraId + " was already marked as active");
387 oldEvent.markCompleted();
388 mCameraUsageHistory.add(oldEvent);
389 }
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -0700390 break;
Eino-Ville Talvalafb9b64c2017-06-28 12:44:03 -0700391 case ICameraServiceProxy.CAMERA_STATE_IDLE:
392 case ICameraServiceProxy.CAMERA_STATE_CLOSED:
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -0700393 CameraUsageEvent doneEvent = mActiveCameraUsage.remove(cameraId);
394 if (doneEvent != null) {
395 doneEvent.markCompleted();
396 mCameraUsageHistory.add(doneEvent);
Eino-Ville Talvala31ad8a32017-07-10 16:23:50 -0700397 if (mCameraUsageHistory.size() > MAX_USAGE_HISTORY) {
398 dumpUsageEvents();
399 }
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -0700400 }
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -0700401 break;
402 }
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -0700403 boolean isEmpty = mActiveCameraUsage.isEmpty();
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -0700404 if ( mNotifyNfc && (wasEmpty != isEmpty) ) {
405 notifyNfcService(isEmpty);
406 }
407 }
408 }
409
410 private void notifyNfcService(boolean enablePolling) {
411
412 IBinder nfcServiceBinder = getBinderService(NFC_SERVICE_BINDER_NAME);
413 if (nfcServiceBinder == null) {
414 Slog.w(TAG, "Could not connect to NFC service to notify it of camera state");
415 return;
416 }
417 INfcAdapter nfcAdapterRaw = INfcAdapter.Stub.asInterface(nfcServiceBinder);
418 int flags = enablePolling ? ENABLE_POLLING_FLAGS : DISABLE_POLLING_FLAGS;
419 if (DEBUG) Slog.v(TAG, "Setting NFC reader mode to flags " + flags);
420 try {
421 nfcAdapterRaw.setReaderMode(nfcInterfaceToken, null, flags, null);
422 } catch (RemoteException e) {
423 Slog.w(TAG, "Could not notify NFC service, remote exception: " + e);
424 }
425 }
426
Ruben Brunk7f75da22015-04-30 17:46:30 -0700427 private static int[] toArray(Collection<Integer> c) {
428 int len = c.size();
429 int[] ret = new int[len];
430 int idx = 0;
431 for (Integer i : c) {
432 ret[idx++] = i;
433 }
434 return ret;
435 }
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -0700436
437 private static String cameraStateToString(int newCameraState) {
438 switch (newCameraState) {
Eino-Ville Talvalafb9b64c2017-06-28 12:44:03 -0700439 case ICameraServiceProxy.CAMERA_STATE_OPEN: return "CAMERA_STATE_OPEN";
440 case ICameraServiceProxy.CAMERA_STATE_ACTIVE: return "CAMERA_STATE_ACTIVE";
441 case ICameraServiceProxy.CAMERA_STATE_IDLE: return "CAMERA_STATE_IDLE";
442 case ICameraServiceProxy.CAMERA_STATE_CLOSED: return "CAMERA_STATE_CLOSED";
Eino-Ville Talvala2e3215c2015-08-20 15:43:57 -0700443 default: break;
444 }
445 return "CAMERA_STATE_UNKNOWN";
446 }
Eino-Ville Talvalae91012b2017-07-10 15:27:24 -0700447
448 private static String cameraFacingToString(int cameraFacing) {
449 switch (cameraFacing) {
450 case ICameraServiceProxy.CAMERA_FACING_BACK: return "CAMERA_FACING_BACK";
451 case ICameraServiceProxy.CAMERA_FACING_FRONT: return "CAMERA_FACING_FRONT";
452 case ICameraServiceProxy.CAMERA_FACING_EXTERNAL: return "CAMERA_FACING_EXTERNAL";
453 default: break;
454 }
455 return "CAMERA_FACING_UNKNOWN";
456 }
457
Ruben Brunk9d21ee52015-03-20 22:18:55 -0700458}