1 /*
2  * Copyright (c) 2022 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #ifndef EXECUTOR_DRIVER_H
17 #define EXECUTOR_DRIVER_H
18 
19 #include <string>
20 #include <vector>
21 
22 #include "nocopyable.h"
23 
24 #include "executor.h"
25 #include "iam_executor_idriver_manager.h"
26 
27 namespace OHOS {
28 namespace UserIam {
29 namespace UserAuth {
30 class Driver : public NoCopyable {
31 public:
32     Driver(const std::string &serviceName, HdiConfig hdiConfig);
33     ~Driver() override = default;
34 
35     void OnHdiConnect();
36     void OnHdiDisconnect();
37     void OnFrameworkReady();
38 
39 private:
40     std::mutex mutex_;
41     std::string serviceName_;
42     HdiConfig hdiConfig_;
43     bool hdiConnected_ = false;
44     std::vector<std::shared_ptr<Executor>> executorList_;
45 };
46 } // namespace UserAuth
47 } // namespace UserIam
48 } // namespace OHOS
49 
50 #endif // EXECUTOR_DRIVER_H