blob: c1ce609d16671bb5de909d65765ff707efc57145 [file] [log] [blame]
/*
* Copyright 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 androidx.camera.core.impl;
import android.content.Context;
import androidx.annotation.NonNull;
import androidx.camera.core.CameraInfoUnavailableException;
import java.util.Set;
/**
* The factory class that creates {@link CameraInternal} instances.
*/
public interface CameraFactory {
/**
* Interface for deferring creation of a CameraFactory.
*/
interface Provider {
/** Creates a new, initialized instance of a CameraFactory. */
@NonNull CameraFactory newInstance(@NonNull Context context,
@NonNull CameraThreadConfig threadConfig);
}
/**
* Gets the camera with the associated id.
*
* @param cameraId the camera id to get camera with
* @return the camera object with given camera id
* @throws CameraInfoUnavailableException if unable to access cameras, perhaps due
* to insufficient permissions.
* @throws IllegalArgumentException if the given camera id is not on the available
* camera id list.
*/
@NonNull
CameraInternal getCamera(@NonNull String cameraId) throws CameraInfoUnavailableException;
/**
* Gets the ids of all available cameras.
*
* @return the list of available cameras
* @throws CameraInfoUnavailableException if unable to access cameras, perhaps due
* to insufficient permissions.
*/
@NonNull
Set<String> getAvailableCameraIds() throws CameraInfoUnavailableException;
}