Add caching of App/Pkg data & use faster way to retrieve this data
[platform/core/security/askuser.git] / src / common / policy / PrivilegeInfo.h
1 /*
2  *  Copyright (c) 2016-2018 Samsung Electronics Co.
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  * @file        PrivilegeInfo.h
18  * @author      Zofia Grzelewska <z.abramowska@samsung.com>
19  * @brief       Definition of Privilege Info wrappers.
20  */
21
22 #pragma once
23
24 #include <string>
25 #include <vector>
26
27 #include <policy/AppInfo.h>
28 #include <types/PolicyTypes.h>
29
30 namespace AskUser {
31
32 namespace PrivilegeInfo {
33     std::vector<Privilege> getPrivilegeMapping(AppInfo &appInfo,
34                                                const std::string &appId,
35                                                const Privilege &privilege);
36     std::vector<Privacy> getPrivilegesPrivacies(const std::vector<std::string> &corePrivileges);
37     bool isPrivacy(const Privilege &privilege);
38
39     std::string getPrivacyDisplayName(const Privacy &privacy);
40
41     std::vector<Privilege> getPrivacyPrivileges(const Privacy &privacy);
42 };
43
44 } /* namespace AskUser */
45
46