Fix static analysis issues
[platform/core/appfw/launchpad.git] / src / launchpad-parser / launchpad_parser_plugin.hh
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
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 LAUNCHPAD_PARSER_LAUNCHPAD_PARSER_PLUGIN_HH_
18 #define LAUNCHPAD_PARSER_LAUNCHPAD_PARSER_PLUGIN_HH_
19
20 #include <libxml/tree.h>
21
22 #include <list>
23 #include <memory>
24 #include <string>
25
26 #include "launchpad-parser/loader_info.hh"
27
28 namespace launchpad_parser_plugin {
29
30 class LaunchpadParser {
31  public:
32   std::string GetFilePath(const std::string& id);
33   int WriteToFile(const std::string& pkgid);
34   int Install(xmlDocPtr doc, const std::string& pkgid);
35   int Upgrade(xmlDocPtr doc, const std::string& pkgid);
36   int UnInstall(xmlDocPtr doc, const std::string& pkgid);
37   bool IsValidId(const std::string& loader_id, const std::string& pkgid);
38
39  private:
40   std::list<std::shared_ptr<LoaderInfo>> loader_list_;
41 };
42
43 }  // namespace launchpad_parser_plugin
44
45 #endif  // LAUNCHPAD_PARSER_LAUNCHPAD_PARSER_PLUGIN_HH_