Add Privacy-Guard
[platform/core/security/privacy-guard.git] / common / inc / IPrivacyGuard.h
1 /*
2  * Copyright (c) 2012 Samsung Electronics Co., Ltd All Rights Reserved
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 _IPRIVACYGUARD_H_
18 #define _IPRIVACYGUARD_H_
19
20 #include <string>
21 #include <mutex>
22 #include <list>
23 #include <vector>
24 #include <memory>
25 #include "PrivacyGuardTypes.h"
26
27 class SocketClient;
28
29 class EXTERN_API IPrivacyGuard
30 {
31 public:
32         int addAppPackagePrivacyInfo(const std::string pkgId, const std::list < std::string >& pList, bool privacyPopupRequired);
33
34         int removeAppPackagePrivacyInfo(const std::string pkgId);
35
36         int setPrivacySetting(const std::string pkgId, const std::string privacyId, bool isEnabled);
37         
38         int getPrivacyAppPackages(std::list < std::string >& pList);
39
40         int     getAppPackagePrivacyInfo(const std::string pkgId, std::list < std::pair <std::string, bool > > & pList);
41 };
42
43 #endif // _IPRIVACYGUARD_H_