1 /*
2  * Copyright (c) 2023 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 #ifndef SECURITY_COMPONENT_PROXY_H
16 #define SECURITY_COMPONENT_PROXY_H
17 
18 #include <string>
19 #include "i_sec_comp_service.h"
20 #include "iremote_proxy.h"
21 
22 namespace OHOS {
23 namespace Security {
24 namespace SecurityComponent {
25 class SecCompProxy : public IRemoteProxy<ISecCompService> {
26 public:
27     explicit SecCompProxy(const sptr<IRemoteObject>& impl);
28     ~SecCompProxy() override;
29     int32_t RegisterSecurityComponent(SecCompType type, const std::string& componentInfo, int32_t& scId) override;
30     int32_t UpdateSecurityComponent(int32_t scId, const std::string& componentInfo) override;
31     int32_t UnregisterSecurityComponent(int32_t scId) override;
32     int32_t ReportSecurityComponentClickEvent(int32_t scId,
33         const std::string& componentInfo, const SecCompClickEvent& clickInfo,
34         sptr<IRemoteObject> callerToken, sptr<IRemoteObject> dialogCallback) override;
35     bool VerifySavePermission(AccessToken::AccessTokenID tokenId) override;
36     sptr<IRemoteObject> GetEnhanceRemoteObject() override;
37     int32_t PreRegisterSecCompProcess() override;
38 
39 private:
40     int32_t SendReportClickEventRequest(MessageParcel& data);
41     static inline BrokerDelegator<SecCompProxy> delegator_;
42     std::mutex useIPCMutex_;
43 };
44 }  // namespace SecurityComponent
45 }  // namespace Security
46 }  // namespace OHOS
47 #endif  // SECURITY_COMPONENT_PROXY_H
48