Fix Metadata Plugin Parser
[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   Database* GetDB();
40
41   void Do();
42   void Clean();
43   void Undo();
44
45   virtual bool Prepare();
46   virtual bool StepBackup(const std::unique_ptr<AppEventArgs>& args);
47   virtual bool StepInstall(const std::unique_ptr<AppEventArgs>& args);
48   virtual bool StepUninstall(const std::unique_ptr<AppEventArgs>& args);
49   virtual bool StepUpgrade(const std::unique_ptr<AppEventArgs>& args);
50   virtual bool StepRestore();
51   virtual void Post();
52   virtual void Rollback();
53
54   static uid_t GetUid();
55
56  public:
57   std::unique_ptr<Database> db_;
58   std::list<std::unique_ptr<AppEventArgs>> list_;
59 };
60
61 }  // namespace plugin
62
63 #endif  // COMMON_METADATA_PLUGIN_HH_