f9744b9995e7e4aaf3f4f28a0b540aec40574edb
[platform/framework/web/web-provider.git] / src / Plugin / BoxPluginConnector.h
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    BoxPluginConnector.h
18  * @author  Yunchan Cho (yunchan.cho@samsung.com)
19  */
20 #ifndef BOX_PLUGIN_CONNECTOR_H
21 #define BOX_PLUGIN_CONNECTOR_H
22
23 #include <map>
24 #include <Core/BoxData.h>
25 #include "IBoxPluginConnector.h"
26 #include "box_plugin_interface.h"
27
28 class BoxPluginConnector: public IBoxPluginConnector {
29     public: // IBoxPluginConnector
30         static IBoxPluginConnectorPtr create() 
31         { 
32             return IBoxPluginConnectorPtr(new BoxPluginConnector()); 
33         };
34         virtual bool initialize();
35         virtual bool shutdown();
36         virtual bool requestCommand(
37                 const request_cmd_type type, const BoxInfoPtr& boxInfo);
38         virtual std::string getBoxType(std::string& serviceBoxId);
39         virtual ~BoxPluginConnector();
40
41     private:
42         BoxPluginConnector();
43         
44         // type definition
45         typedef std::map<std::string, std::shared_ptr<plugin_interfaces> > pluginMap;
46
47         pluginMap m_pluginMap;
48
49 };
50
51 #endif // BOX_PLUGIN_CONNECTOR_H