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& touchInfo, sptr<IRemoteObject> callerToken) override; 34 bool ReduceAfterVerifySavePermission(AccessToken::AccessTokenID tokenId) override; 35 sptr<IRemoteObject> GetEnhanceRemoteObject() override; 36 37 private: 38 static inline BrokerDelegator<SecCompProxy> delegator_; 39 }; 40 } // namespace SecurityComponent 41 } // namespace Security 42 } // namespace OHOS 43 #endif // SECURITY_COMPONENT_PROXY_H 44