blob: 9b314db97bd777650087f1b615537f9a07ca7e03 [file] [log] [blame]
Matvii Zorinef3c7972020-08-11 15:15:44 +03001/*
2 * Copyright (C) 2020 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
17#ifndef ANDROID_BACKEND_MANAGER_H
18#define ANDROID_BACKEND_MANAGER_H
19
Matvii Zorinef3c7972020-08-11 15:15:44 +030020#include <functional>
21#include <map>
22#include <string>
23#include <vector>
24
Roman Stratiienko13cc3662020-08-29 21:35:39 +030025#include "Backend.h"
Roman Stratiienkoaa3cd542020-08-29 11:26:16 +030026
Matvii Zorinef3c7972020-08-11 15:15:44 +030027#define REGISTER_BACKEND(name_str_, backend_) \
28 static int \
29 backend = BackendManager::GetInstance() \
30 .RegisterBackend(name_str_, \
31 []() -> std::unique_ptr<Backend> { \
32 return std::make_unique<backend_>(); \
33 });
34
35namespace android {
36
37class BackendManager {
38 public:
39 using backend_constructor_t = std::function<std::unique_ptr<Backend>()>;
40 static BackendManager &GetInstance();
41 int RegisterBackend(const std::string &name,
42 backend_constructor_t backend_constructor);
43 int SetBackendForDisplay(DrmHwcTwo::HwcDisplay *display);
44 std::unique_ptr<Backend> GetBackendByName(std::string &name);
45 HWC2::Error ValidateDisplay(DrmHwcTwo::HwcDisplay *display,
46 uint32_t *num_types, uint32_t *num_requests);
47
48 private:
49 BackendManager() = default;
50
Roman Stratiienkoe2f2c922021-02-13 10:57:47 +020051 static const std::vector<std::string> kClientDevices;
Matvii Zorinef3c7972020-08-11 15:15:44 +030052
53 std::map<std::string, backend_constructor_t> available_backends_;
54};
55} // namespace android
56
57#endif