Fix Metadata Plugin Parser
[platform/core/appfw/aul-1.git] / parser / metadata / alias-appid / appsvc_db.hh
1 /*
2  * Copyright (c) 2020 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 ALIAS_APPID_APPSVC_DB_HH_
18 #define ALIAS_APPID_APPSVC_DB_HH_
19
20 #include <unistd.h>
21
22 #include <memory>
23 #include <string>
24 #include <vector>
25
26 #include "alias-appid/alias_info.hh"
27 #include "common/database.hh"
28
29 namespace plugin {
30
31 class AppSvcDB : public Database {
32  public:
33   AppSvcDB(uid_t uid);
34   virtual ~AppSvcDB();
35
36   std::vector<std::shared_ptr<AliasInfo>> Select(const std::string& appid);
37   void Insert(const std::string& alias_appid, const std::string& appid);
38   void Delete(const std::string& alias_appid, const std::string& appid);
39   void Delete(const std::string& appid);
40
41  private:
42   static std::string GetDBPath(uid_t uid);
43 };
44
45 }  // namespace plugin
46
47 #endif  // ALIAS_APPID_APPSVC_DB_HH_