Support Multi-Package Install Scenario
[platform/core/dotnet/launcher.git] / NativeLauncher / installer-plugin / prefer_nuget_cache_plugin.cc
1 /*
2  * Copyright (c) 2019 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 #include "tac_installer.h"
18
19 #include <glib.h>
20 #include <string>
21
22 #ifdef  LOG_TAG
23 #undef  LOG_TAG
24 #endif
25 #define LOG_TAG "DOTNET_INSTALLER_PLUGIN"
26
27 extern "C" int PKGMGR_MDPARSER_PLUGIN_INSTALL(const char *pkgId, const char *appId, GList *list)
28 {
29         if (pkgId == NULL || appId == NULL) {
30                 return 0;
31         }
32         return tacInstall(std::string(pkgId), TAC_STATE_INSTALL);
33 }
34
35 extern "C" int PKGMGR_MDPARSER_PLUGIN_UPGRADE(const char *pkgId, const char *appId, GList *list)
36 {
37         if (pkgId == NULL || appId == NULL) {
38                 return 0;
39         }
40         return tacUpgrade(std::string(pkgId), TAC_STATE_UPGRADE);
41 }
42
43 extern "C" int PKGMGR_MDPARSER_PLUGIN_UNINSTALL(const char *pkgId, const char *appId, GList *list)
44 {
45         if (pkgId == NULL || appId == NULL) {
46                 return 0;
47         }
48         return tacUninstall(std::string(pkgId), TAC_STATE_UNINSTALL);
49 }
50
51 extern "C" int PKGMGR_MDPARSER_PLUGIN_REMOVED(const char *pkgId, const char *appId, GList *list)
52 {
53         if (pkgId == NULL || appId == NULL) {
54                 return 0;
55         }
56         return tacRemoved(std::string(pkgId));
57 }
58
59 extern "C" int PKGMGR_MDPARSER_PLUGIN_UNDO(const char *pkgId, const char *appId, GList *list)
60 {
61         if (pkgId == NULL || appId == NULL) {
62                 return 0;
63         }
64         return tacUndo(std::string(pkgId));
65 }
66
67 extern "C" int PKGMGR_MDPARSER_PLUGIN_CLEAN(const char *pkgId, const char *appId, GList *list)
68 {
69         if (pkgId == NULL || appId == NULL) {
70                 return 0;
71         }
72         return tacClean(std::string(pkgId));
73 }