The license change version 1.0 to version 1.1
[platform/framework/web/web-provider.git] / src / Plugin / AppBoxPlugin / box_plugin_interface.cpp
1 /*
2  * Copyright (c) 2013 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Flora License, Version 1.1 (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://floralicense.org/license/
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  * @file    box_plugin_interface.cpp
18  * @author  Yunchan Cho (yunchan.cho@samsung.com)
19  */
20 #include <memory>
21 #include <Core/BoxData.h>
22 #include <Core/Util/Log.h>
23 #include <Plugin/box_plugin_interface.h>
24 #include "AppBoxManager.h"
25 #include "AppBoxPluginFactory.h"
26
27 static std::shared_ptr<IBoxManager> g_manager;
28
29 int web_provider_plugin_interface_initialize()
30 {
31     LogD("enter");
32     IBoxPluginFactoryPtr factory(new AppBoxPluginFactory());
33     g_manager = AppBoxManager::create(factory);
34
35     return 0;
36 }
37
38 int web_provider_plugin_interface_command(const request_cmd_type type, const BoxInfoPtr& boxInfo)
39 {
40     LogD("enter");
41     int ret = g_manager->doCommand(type, boxInfo);   
42
43     if (!ret) {
44         return -1;
45     }
46
47     return 0;
48 }
49
50 int web_provider_plugin_interface_shutdown()
51 {
52     LogD("enter");
53     g_manager.reset();
54     return 0;
55 }