/* * Copyright (C) 2012 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. */ #ifndef ANDROID_SERVERS_CAMERA_CAMERA2_CAPTURESEQUENCER_H #define ANDROID_SERVERS_CAMERA_CAMERA2_CAPTURESEQUENCER_H #include #include #include #include #include #include #include "camera/CameraMetadata.h" #include "Parameters.h" #include "FrameProcessor.h" namespace android { class Camera2Client; namespace camera2 { class ZslProcessorInterface; class BurstCapture; /** * Manages the still image capture process for * zero-shutter-lag, regular, and video snapshots. */ class CaptureSequencer: virtual public Thread, virtual public FrameProcessor::FilteredListener { public: CaptureSequencer(wp client); ~CaptureSequencer(); // Get reference to the ZslProcessor, which holds the ZSL buffers and frames void setZslProcessor(wp processor); // Begin still image capture status_t startCapture(int msgType); // Wait until current image capture completes; returns immediately if no // capture is active. Returns TIMED_OUT if capture does not complete during // the specified duration. status_t waitUntilIdle(nsecs_t timeout); // Notifications about AE state changes void notifyAutoExposure(uint8_t newState, int triggerId); // Notifications from the frame processor virtual void onFrameAvailable(int32_t requestId, const CameraMetadata &frame); // Notifications from the JPEG processor void onCaptureAvailable(nsecs_t timestamp, sp captureBuffer); void dump(int fd, const Vector& args); private: /** * Accessed by other threads */ Mutex mInputMutex; bool mStartCapture; bool mBusy; Condition mStartCaptureSignal; bool mNewAEState; uint8_t mAEState; int mAETriggerId; Condition mNewNotifySignal; bool mNewFrameReceived; int32_t mNewFrameId; CameraMetadata mNewFrame; Condition mNewFrameSignal; bool mNewCaptureReceived; nsecs_t mCaptureTimestamp; sp mCaptureBuffer; Condition mNewCaptureSignal; bool mShutterNotified; /** * Internal to CaptureSequencer */ static const nsecs_t kWaitDuration = 100000000; // 100 ms static const int kMaxTimeoutsForPrecaptureStart = 10; // 1 sec static const int kMaxTimeoutsForPrecaptureEnd = 20; // 2 sec static const int kMaxTimeoutsForCaptureEnd = 40; // 4 sec wp mClient; wp mZslProcessor; sp mBurstCapture; enum CaptureState { IDLE, START, ZSL_START, ZSL_WAITING, ZSL_REPROCESSING, STANDARD_START, STANDARD_PRECAPTURE_WAIT, STANDARD_CAPTURE, STANDARD_CAPTURE_WAIT, BURST_CAPTURE_START, BURST_CAPTURE_WAIT, DONE, ERROR, NUM_CAPTURE_STATES } mCaptureState; static const char* kStateNames[]; int mStateTransitionCount; Mutex mStateMutex; // Guards mCaptureState Condition mStateChanged; typedef CaptureState (CaptureSequencer::*StateManager)(sp &client); static const StateManager kStateManagers[]; CameraMetadata mCaptureRequest; int mTriggerId; int mTimeoutCount; bool mAeInPrecapture; int32_t mCaptureId; int mMsgType; // Main internal methods virtual bool threadLoop(); CaptureState manageIdle(sp &client); CaptureState manageStart(sp &client); CaptureState manageZslStart(sp &client); CaptureState manageZslWaiting(sp &client); CaptureState manageZslReprocessing(sp &client); CaptureState manageStandardStart(sp &client); CaptureState manageStandardPrecaptureWait(sp &client); CaptureState manageStandardCapture(sp &client); CaptureState manageStandardCaptureWait(sp &client); CaptureState manageBurstCaptureStart(sp &client); CaptureState manageBurstCaptureWait(sp &client); CaptureState manageDone(sp &client); // Utility methods status_t updateCaptureRequest(const Parameters ¶ms, sp &client); // Emit Shutter/Raw callback to java, and maybe play a shutter sound static void shutterNotifyLocked(const Parameters ¶ms, sp client, int msgType); }; }; // namespace camera2 }; // namespace android #endif