blob: 0eeac6430800cbd528ac4c3403878a31eacc61c3 [file] [log] [blame]
Haoxiang Lid2454a52019-06-18 13:23:12 -07001/*
2 * Copyright (C) 2019 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 */
16#ifndef CAR_LIB_EVS_SUPPORT_DISPLAY_USECASE_H
17#define CAR_LIB_EVS_SUPPORT_DISPLAY_USECASE_H
18
Haoxiang Lid2454a52019-06-18 13:23:12 -070019#include <android/hardware/automotive/evs/1.0/IEvsDisplay.h>
Haoxiang Lid2454a52019-06-18 13:23:12 -070020
21#include <string>
22#include <thread>
23
24#include "BaseRenderCallback.h"
25#include "BaseUseCase.h"
26#include "ConfigManager.h"
27#include "RenderBase.h"
Haoxiang Li5cb69052019-08-30 16:24:25 -070028#include "StreamHandler.h"
Haoxiang Lic8888592019-09-19 16:39:53 -070029#include "ResourceManager.h"
Haoxiang Lid2454a52019-06-18 13:23:12 -070030
31namespace android {
32namespace automotive {
33namespace evs {
34namespace support {
35
36using namespace ::android::hardware::automotive::evs::V1_0;
37using ::android::sp;
38using ::android::hardware::Return;
39using ::std::string;
40
41// TODO(b/130246434): Think about multi-camera situation.
42class DisplayUseCase : public BaseUseCase {
43 public:
44 ~DisplayUseCase();
Haoxiang Li2010d392019-09-04 14:06:20 -070045 bool startVideoStream() override;
46 void stopVideoStream() override;
Haoxiang Lid2454a52019-06-18 13:23:12 -070047
48 // TODO(b/130246434): Add configuration class to create more use case.
49 static DisplayUseCase createDefaultUseCase(string cameraId,
50 BaseRenderCallback* cb = nullptr);
51
52 private:
53 DisplayUseCase(string cameraId, BaseRenderCallback* renderCallback);
54
55 // TODO(b/130246434): Think about whether we should make init public so
56 // users can call it.
57 bool initialize();
58 bool streamFrame();
59
60 bool mIsInitialized = false;
61 BaseRenderCallback* mRenderCallback = nullptr;
62 std::unique_ptr<RenderBase> mCurrentRenderer;
63
Haoxiang Lid2454a52019-06-18 13:23:12 -070064 sp<IEvsDisplay> mDisplay;
Haoxiang Lic8888592019-09-19 16:39:53 -070065 sp<StreamHandler> mStreamHandler;
66 sp<ResourceManager> mResourceManager;
Haoxiang Lid2454a52019-06-18 13:23:12 -070067 bool mIsReadyToRun;
68 std::thread mWorkerThread;
Haoxiang Li1709b372019-09-18 15:08:52 -070069 BufferDesc mImageBuffer;
Haoxiang Lid2454a52019-06-18 13:23:12 -070070};
71
72} // namespace support
73} // namespace evs
74} // namespace automotive
75} // namespace android
76
77#endif // CAR_LIB_EVS_SUPPORT_DISPLAY_USECASE_H