update the header for Doxygen
[platform/framework/native/bluetooth.git] / src / FNetBt_BluetoothManagerEvent.cpp
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17 // @file    FNetBt_BluetoothManagerEvent.cpp
18 // @brief   This is the implementation file for the _BluetoothManagerEvent class.
19 //
20
21 #include <FBaseRtIEventListener.h>
22 #include <FBaseSysLog.h>
23 #include <FBaseRtIEventArg.h>
24 #include "FNetBt_BluetoothManagerEvent.h"
25 #include "FNetBt_BluetoothManagerEventArg.h"
26 #include "FNetBtIBluetoothManagerEventListener.h"
27
28 namespace Tizen { namespace Net { namespace Bluetooth
29 {
30
31 _BluetoothManagerEvent::_BluetoothManagerEvent(void)
32 {
33 }
34
35 _BluetoothManagerEvent::~_BluetoothManagerEvent(void)
36 {
37 }
38
39 result
40 _BluetoothManagerEvent::Construct(void)
41 {
42         return _Event::Initialize();
43 }
44
45 void
46 _BluetoothManagerEvent::FireImpl(Tizen::Base::Runtime::IEventListener& listener, const Tizen::Base::Runtime::IEventArg& arg)
47 {
48         IBluetoothManagerEventListener* pEventListener = dynamic_cast <IBluetoothManagerEventListener*>(&listener);
49         SysTryReturnVoidResult(NID_NET_BT, pEventListener != null, E_INVALID_ARG, "[E_INVALID_ARG] The listener argument is invalid.");
50
51         const _BluetoothManagerEventArg* pEventArg = dynamic_cast <const _BluetoothManagerEventArg*>(&arg);
52         SysTryReturnVoidResult(NID_NET_BT, pEventArg != null, E_INVALID_ARG, "[E_INVALID_ARG] The event argument is invalid type.");
53
54         _BluetoothMangerEventType eventType = pEventArg->GetEventType();
55
56         switch (eventType)
57         {
58         case _BT_MANAGER_EVENT_ACTIVATED:
59                 SysLog(NID_NET_BT, "Firing Bluetooth Manager Event (Type: _BT_MANAGER_EVENT_ACTIVATED)");
60                 pEventListener->OnBluetoothActivated(pEventArg->GetErrorResult());
61                 break;
62
63         case _BT_MANAGER_EVENT_DEACTIVATED:
64                 SysLog(NID_NET_BT, "Firing Bluetooth Manager Event (Type: _BT_MANAGER_EVENT_DEACTIVATED)");
65                 pEventListener->OnBluetoothDeactivated(pEventArg->GetErrorResult());
66                 break;
67
68         case _BT_MANAGER_EVENT_DISCOVERABLE:
69                 SysLog(NID_NET_BT, "Firing Bluetooth Manager Event (Type: _BT_MANAGER_EVENT_DISCOVERABLE)");
70                 pEventListener->OnBluetoothDiscoverableModeChanged(pEventArg->GetDiscoverableMode());
71                 break;
72
73         default:
74                 break;
75         }
76 }
77
78 } } } // Tizen::Net::Bluetooth