bf41b450d4a628fca06a35d257ff5f81f55261c5
[platform/core/appfw/aul-1.git] / parser / metadata / common / metadata_plugin.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 COMMON_METADATA_PLUGIN_HH_
18 #define COMMON_METADATA_PLUGIN_HH_
19
20 #include <glib.h>
21 #include <unistd.h>
22
23 #include <list>
24 #include <memory>
25 #include <string>
26
27 #include "common/app_event_args.hh"
28 #include "common/database.hh"
29
30 namespace plugin {
31
32 class MetadataPlugin {
33  public:
34   MetadataPlugin(std::unique_ptr<Database> db) : db_(std::move(db)) { }
35   virtual ~MetadataPlugin() = default;
36
37   void AddAppEventArgs(const std::string& pkgid, const std::string& appid,
38       EventType event_type, GList* list);
39   void Clean();
40   void Undo();
41   Database* GetDB();
42
43   virtual bool Prepare();
44   virtual bool StepInstall(const std::unique_ptr<AppEventArgs>& args);
45   virtual bool StepUninstall(const std::unique_ptr<AppEventArgs>& args);
46   virtual bool StepUpgrade(const std::unique_ptr<AppEventArgs>& args);
47   virtual void Post();
48   virtual void Rollback();
49
50   static uid_t GetUid();
51
52  public:
53   std::unique_ptr<Database> db_;
54   std::list<std::unique_ptr<AppEventArgs>> list_;
55 };
56
57 }  // namespace plugin
58
59 #endif  // COMMON_METADATA_PLUGIN_HH_