02de1f4f7fcc6de4b5099b2526b9e1b625653e24
[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
21 #ifdef  LOG_TAG
22 #undef  LOG_TAG
23 #endif
24 #define LOG_TAG "DOTNET_INSTALLER_PLUGIN"
25
26 extern "C" int PKGMGR_MDPARSER_PLUGIN_INSTALL(const char *pkgId, const char *appId, GList *list)
27 {
28         return tacInstall(std::string(pkgId), TAC_STATE_INSTALL);
29 }
30
31 extern "C" int PKGMGR_MDPARSER_PLUGIN_UPGRADE(const char *pkgId, const char *appId, GList *list)
32 {
33         return tacUpgrade(std::string(pkgId), TAC_STATE_UPGRADE);
34 }
35
36 extern "C" int PKGMGR_MDPARSER_PLUGIN_UNINSTALL(const char *pkgId, const char *appId, GList *list)
37 {
38         return tacUninstall(std::string(pkgId), TAC_STATE_UNINSTALL);
39 }
40
41 extern "C" int PKGMGR_MDPARSER_PLUGIN_REMOVED(const char *pkgId, const char *appId, GList *list)
42 {
43         return tacRemoved(std::string(pkgId));
44 }
45
46 extern "C" int PKGMGR_MDPARSER_PLUGIN_UNDO(const char *pkgId, const char *appId, GList *list)
47 {
48         return tacUndo(std::string(pkgId));
49 }
50
51 extern "C" int PKGMGR_MDPARSER_PLUGIN_CLEAN(const char *pkgId, const char *appId, GList *list)
52 {
53         return tacClean(std::string(pkgId));
54 }