tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / tizen / Radio / Source.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_RADIO_SOURCE_H_
21 #define WRTDEVICEAPIS_RADIO_SOURCE_H_
22
23 #include <Radio/ISource.h>
24 #include <Commons/Emitters.h>
25 #include <VConf/Key.h>
26
27 namespace WrtDeviceApis {
28 namespace Radio {
29 class Manager;
30
31 class Source : public Api::ISource
32 {
33     friend class Manager;
34
35   public:
36     /**
37      * @see WrtDeviceApis::Radio::Api::ISource::isConnected()
38      */
39     bool isConnected() const;
40
41     /**
42      * @see WrtDeviceApis::Radio::Api::ISource::getType()
43      */
44     Api::SourceType getType() const;
45
46     /**
47      * @see WrtDeviceApis::Radio::Api::ISource::addOnTypeChange()
48      */
49     void addOnTypeChange(
50             const Api::EventSourceTypeChangeEmitterPtr& emitter);
51
52     /**
53      * @see WrtDeviceApis::Radio::Api::ISource::removeOnTypeChange()
54      */
55     void removeOnTypeChange(Api::EventSourceTypeChangeEmitter::IdType id);
56
57   protected:
58     typedef Commons::Emitters<Api::EventSourceTypeChangeEmitter>
59     SourceTypeChangeEmitters;
60
61   protected:
62     Source();
63
64   private:
65     /**
66      * Callback method called by platform when service type changes.
67      * @param key Vconf key object.
68      * @param data User data.
69      */
70     static void onTypeChange(const VConf::Node* node,
71             void* data);
72
73   private:
74     VConf::Key m_serviceType;
75     SourceTypeChangeEmitters m_onSourceTypeChange;
76 };
77 } // Radio
78 } // WrtDeviceApis
79
80 #endif // WRTDEVICEAPIS_RADIO_SOURCE_H_