Add caching of App/Pkg data & use faster way to retrieve this data
[platform/core/security/askuser.git] / src / common / policy / PkgInfo.h
1 /*
2  *  Copyright (c) 2017-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        src/common/policy/PkgInfo.h
18  * @author      Zofia Abramowska <z.abramowska@samsung.com>
19  * @author      Tomasz Swierczek <t.swierczek@samsung.com>
20  * @brief       Definition of package-data wrappers/cache (sub)classes
21  */
22
23 #pragma once
24
25 #include <string>
26 #include <sys/types.h>
27
28 namespace AskUser {
29
30 class PkgInfo {
31 public:
32     PkgInfo() :  m_uid(0) {};
33     virtual ~PkgInfo() {};
34
35     virtual void purgeCache() {
36         m_pkgId.clear();
37         m_mainAppId.clear();
38         m_pkgLabel.clear();
39         m_uid = 0;
40     }
41
42     std::string mainAppId(const std::string &pkgId, uid_t uid) {
43         update(pkgId, uid);
44         return m_mainAppId;
45     }
46
47     std::string pkgLabel(const std::string &pkgId, uid_t uid) {
48         update(pkgId, uid);
49         return m_pkgLabel;
50     }
51
52 protected:
53     virtual void fetch(const std::string &pkgId, uid_t uid) = 0;
54
55     virtual void update(const std::string &pkgId, uid_t uid) {
56         if (pkgId != m_pkgId || uid != m_uid) {
57             purgeCache();
58             fetch(pkgId, uid);
59         }
60     }
61
62     std::string m_pkgId;
63     uid_t m_uid;
64     std::string m_mainAppId;
65     std::string m_pkgLabel;
66 };
67
68 class AulPkgInfo : public PkgInfo {
69 protected:
70     virtual void fetch(const std::string &pkgId, uid_t uid);
71 };
72
73 class PkgMgrPkgInfo : public PkgInfo {
74 protected:
75     virtual void fetch(const std::string &pkgId, uid_t uid);
76 };
77
78 } // namespace AskUser