summaryrefslogtreecommitdiffstats
path: root/java/com/android/incallui/InCallCameraManager.java
blob: b5a8f91af9cfe2700e6ffc7a1313a39c7d47ab56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*
 * Copyright (C) 2014 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 com.android.incallui;

import android.content.Context;
import android.hardware.camera2.CameraAccessException;
import android.hardware.camera2.CameraCharacteristics;
import android.hardware.camera2.CameraManager;
import java.util.Collections;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;

/** Used to track which camera is used for outgoing video. */
public class InCallCameraManager {

  private final Set<Listener> cameraSelectionListeners =
      Collections.newSetFromMap(new ConcurrentHashMap<Listener, Boolean>(8, 0.9f, 1));
  /** The camera ID for the front facing camera. */
  private String frontFacingCameraId;
  /** The camera ID for the rear facing camera. */
  private String rearFacingCameraId;
  /** The currently active camera. */
  private boolean useFrontFacingCamera;
  /**
   * Indicates whether the list of cameras has been initialized yet. Initialization is delayed until
   * a video call is present.
   */
  private boolean isInitialized = false;
  /** The context. */
  private Context context;

  /**
   * Initializes the InCall CameraManager.
   *
   * @param context The current context.
   */
  public InCallCameraManager(Context context) {
    useFrontFacingCamera = true;
    this.context = context;
  }

  /**
   * Sets whether the front facing camera should be used or not.
   *
   * @param useFrontFacingCamera {@code True} if the front facing camera is to be used.
   */
  public void setUseFrontFacingCamera(boolean useFrontFacingCamera) {
    this.useFrontFacingCamera = useFrontFacingCamera;
    for (Listener listener : cameraSelectionListeners) {
      listener.onActiveCameraSelectionChanged(this.useFrontFacingCamera);
    }
  }

  /**
   * Determines whether the front facing camera is currently in use.
   *
   * @return {@code True} if the front facing camera is in use.
   */
  public boolean isUsingFrontFacingCamera() {
    return useFrontFacingCamera;
  }

  /**
   * Determines the active camera ID.
   *
   * @return The active camera ID.
   */
  public String getActiveCameraId() {
    maybeInitializeCameraList(context);

    if (useFrontFacingCamera) {
      return frontFacingCameraId;
    } else {
      return rearFacingCameraId;
    }
  }

  /** Calls when camera permission is granted by user. */
  public void onCameraPermissionGranted() {
    for (Listener listener : cameraSelectionListeners) {
      listener.onCameraPermissionGranted();
    }
  }

  /**
   * Get the list of cameras available for use.
   *
   * @param context The context.
   */
  private void maybeInitializeCameraList(Context context) {
    if (isInitialized || context == null) {
      return;
    }

    Log.v(this, "initializeCameraList");

    CameraManager cameraManager = null;
    try {
      cameraManager = (CameraManager) context.getSystemService(Context.CAMERA_SERVICE);
    } catch (Exception e) {
      Log.e(this, "Could not get camera service.");
      return;
    }

    if (cameraManager == null) {
      return;
    }

    String[] cameraIds = {};
    try {
      cameraIds = cameraManager.getCameraIdList();
    } catch (CameraAccessException e) {
      Log.d(this, "Could not access camera: " + e);
      // Camera disabled by device policy.
      return;
    }

    for (int i = 0; i < cameraIds.length; i++) {
      CameraCharacteristics c = null;
      try {
        c = cameraManager.getCameraCharacteristics(cameraIds[i]);
      } catch (IllegalArgumentException e) {
        // Device Id is unknown.
      } catch (CameraAccessException e) {
        // Camera disabled by device policy.
      }
      if (c != null) {
        int facingCharacteristic = c.get(CameraCharacteristics.LENS_FACING);
        if (facingCharacteristic == CameraCharacteristics.LENS_FACING_FRONT) {
          frontFacingCameraId = cameraIds[i];
        } else if (facingCharacteristic == CameraCharacteristics.LENS_FACING_BACK) {
          rearFacingCameraId = cameraIds[i];
        }
      }
    }

    isInitialized = true;
    Log.v(this, "initializeCameraList : done");
  }

  public void addCameraSelectionListener(Listener listener) {
    if (listener != null) {
      cameraSelectionListeners.add(listener);
    }
  }

  public void removeCameraSelectionListener(Listener listener) {
    if (listener != null) {
      cameraSelectionListeners.remove(listener);
    }
  }

  public interface Listener {

    void onActiveCameraSelectionChanged(boolean isUsingFrontFacingCamera);

    void onCameraPermissionGranted();
  }
}