tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / API / Networking / IManager.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_IMANAGER_H_
21 #define WRTDEVICEAPIS_NETWORKING_IMANAGER_H_
22
23 #include <dpl/noncopyable.h>
24 #include "IAdapter.h"
25
26 namespace WrtDeviceApis {
27 namespace Networking {
28 namespace Api {
29 class IManager : private DPL::Noncopyable
30 {
31   public:
32     static IManager& getInstance();
33
34   public:
35     virtual ~IManager() = 0;
36
37     /**
38      * Gets specfied adapter.
39      * @param type Adapter type @see IAdapter::Type.
40      * @return Interface to network adapter, NULL if current platform does not
41      *         support such network adapter.
42      * @throw PlatformException If platform error occured.
43      */
44     virtual IAdapter* getAdapter(IAdapter::Type type) const = 0;
45
46     /**
47      * Adds to given set all available on platform adapters
48      * @param [out] list of interfaces to network adapters
49      */
50     virtual void getAvailableAdapters(AdaptersSet *retSet) const = 0;
51 };
52 } // Api
53 } // Networking
54 } // WrtDeviceApis
55
56 #endif // WRTDEVICEAPIS_NETWORKING_IMANAGER_H_