blob: 95a16da51a14607d6f540f662e465237e052c5e5 [file] [log] [blame]
/*
* 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.camera.burst;
import android.content.Context;
import com.android.camera.app.OrientationManager;
import com.android.camera.gl.FrameDistributor;
import com.android.camera.gl.FrameDistributor.FrameConsumer;
import com.android.camera.one.OneCamera;
import com.android.camera.session.CaptureSession;
import java.io.File;
/**
* Factory for creating burst manager objects.
*/
public class BurstFacadeFactory {
private BurstFacadeFactory() {
/* cannot be instantiated */
}
/**
* An empty burst manager that is instantiated when burst is not supported.
*/
private static class BurstFacadeStub implements BurstFacade {
@Override
public void onCameraAttached(OneCamera camera) {
}
@Override
public void onCameraDetached() {
}
@Override
public FrameConsumer getPreviewFrameConsumer() {
return new FrameConsumer() {
@Override
public void onStop() {
}
@Override
public void onStart() {
}
@Override
public void onNewFrameAvailable(FrameDistributor frameDistributor,
long timestampNs) {
}
};
}
@Override
public void startBurst(CaptureSession captureSession, File tempSessionDirectory) {
}
@Override
public boolean isReady() {
return true;
}
@Override
public boolean stopBurst() {
return false;
}
}
/**
* Creates and returns an instance of {@link BurstFacade}
*
* @param appContext the Android application context which is passes through
* to the burst controller.
* @param orientationManager for querying orientation of burst.
* @param readyStateListener gets called when the ready state of Burst
* changes.
*/
public static BurstFacade create(Context appContext, OrientationManager orientationManager,
BurstReadyStateChangeListener readyStateListener) {
if (BurstControllerImpl.isBurstModeSupported()) {
return new BurstFacadeImpl(appContext, orientationManager, readyStateListener);
} else {
// Burst is not supported return a stub instance.
return new BurstFacadeStub();
}
}
}