tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / tizen / Networking / Manager.h
1 /*
2  * Copyright (c) 2011 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  * @author       Zbigniew Kostrzewa (z.kostrzewa@samsung.com)
18  */
19
20 #ifndef WRTDEVICEAPIS_NETWORKING_MANAGER_H_
21 #define WRTDEVICEAPIS_NETWORKING_MANAGER_H_
22
23 #include <map>
24 //extern "C" {
25 //  #include <wlan-interface.h>
26 //}
27 //#include <dpl/mutex.h>
28 #include <Networking/IManager.h>
29
30 namespace WrtDeviceApis {
31 namespace Networking {
32 /* TODO - commented source code will be removed */
33 class Manager : public Api::IManager
34 {
35   public:
36     static Manager& getInstance();
37
38   public:
39     /**
40      * @see Api::IManager::getAdapter()
41      */
42     Api::IAdapter* getAdapter(Api::IAdapter::Type type)
43     const;
44
45     /**
46      * @see Api::IManager::getAvailableAdapters
47      */
48     virtual void getAvailableAdapters(Api::AdaptersSet *retSet)
49     const;
50
51   protected:
52     Manager();
53     virtual ~Manager();
54
55     /**
56      * Initialize adapters available on wac.
57      */
58     void setupAdapters();
59
60     /**
61      * Cleans up adapters.
62      */
63     void removeAdapters();
64
65   private:
66     //  typedef std::map<Api::IAdapter::Type,
67     //                   Api::IAdapter*> Adapters;
68     //private:
69     //  static void wlanCallback(const wlan_event_type_t* event,
70     //                           void* userData,
71     //                           void* data);
72     //
73     //  static void onNetConnectionOpen(const NetErr_t error,
74     //                                  const NetDevInfo_t* device,
75     //                                  int transportErrorCode,
76     //                                  void *userData);
77     //
78     //  static void onNetConnectionClose(const NetErr_t error,
79     //                                   int transportErrorCode,
80     //                                   void *userData);
81     //
82     //  static void onNetConnectionKill(const NetErr_t error,
83     //                                  int transportErrorCode,
84     //                                  void *userData);
85     //
86     //  static void onNetStatusChange(NetStatusInfo_t* status, void *userData);
87     //
88     //  static net_event_callbacks getNetEventCallbacks();
89     //
90     //private:
91     //  static net_event_callbacks m_netEventCallbacks;
92
93   private:
94     //  DPL::Mutex m_mtx; ///< Synchronizes access to this object.
95     //  Adapters m_adapters; ///< Adapters container.
96     Api::AdaptersSet m_adapters;
97 };
98 } // Networking
99 } // WrtDeviceApis
100
101 #endif // WRTDEVICEAPIS_NETWORKING_MANAGER_H_