9cdc9a859287e8c2d1452d6f296f7062fdfbdb02
[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         return tacInstall(std::string(pkgId), TAC_STATE_INSTALL);
30 }
31
32 extern "C" int PKGMGR_MDPARSER_PLUGIN_UPGRADE(const char *pkgId, const char *appId, GList *list)
33 {
34         return tacUpgrade(std::string(pkgId), TAC_STATE_UPGRADE);
35 }
36
37 extern "C" int PKGMGR_MDPARSER_PLUGIN_UNINSTALL(const char *pkgId, const char *appId, GList *list)
38 {
39         return tacUninstall(std::string(pkgId), TAC_STATE_UNINSTALL);
40 }
41
42 extern "C" int PKGMGR_MDPARSER_PLUGIN_REMOVED(const char *pkgId, const char *appId, GList *list)
43 {
44         return tacRemoved(std::string(pkgId));
45 }
46
47 extern "C" int PKGMGR_MDPARSER_PLUGIN_UNDO(const char *pkgId, const char *appId, GList *list)
48 {
49         return tacUndo(std::string(pkgId));
50 }
51
52 extern "C" int PKGMGR_MDPARSER_PLUGIN_CLEAN(const char *pkgId, const char *appId, GList *list)
53 {
54         return tacClean(std::string(pkgId));
55 }