update the header for Doxygen
[platform/framework/native/bluetooth.git] / src / FNetBt_BluetoothConnectionEvent.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_BluetoothConnectionEvent.cpp
18 // @brief   This is the implementation file for the _BluetoothDeviceEvent class.
19 //
20
21 #include <FBaseRtIEventListener.h>
22 #include <FBaseSysLog.h>
23 #include <FBaseRtIEventArg.h>
24 #include "FNetBt_BluetoothConnectionEvent.h"
25 #include "FNetBt_BluetoothConnectionEventArg.h"
26 #include "FNetBt_IBluetoothConnectionEventListener.h"
27
28
29 using namespace Tizen::Base;
30
31 namespace Tizen { namespace Net { namespace Bluetooth
32 {
33
34 _BluetoothConnectionEvent::_BluetoothConnectionEvent(void)
35         : __listenerCount(0)
36 {
37 }
38
39 _BluetoothConnectionEvent::~_BluetoothConnectionEvent(void)
40 {
41 }
42
43 result
44 _BluetoothConnectionEvent::Construct(void)
45 {
46         return _Event::Initialize();
47 }
48
49 void
50 _BluetoothConnectionEvent::FireImpl(Tizen::Base::Runtime::IEventListener& listener, const Tizen::Base::Runtime::IEventArg& arg)
51 {
52         _IBluetoothConnectionEventListener* pEventListener = dynamic_cast <_IBluetoothConnectionEventListener*>(&listener);
53         SysTryReturnVoidResult(NID_NET_BT, pEventListener != null, E_INVALID_ARG,
54                                 "[E_INVALID_ARG] The listener argument is invalid.");
55
56         const _BluetoothConnectionEventArg* pEventArg = dynamic_cast <const _BluetoothConnectionEventArg*>(&arg);
57         SysTryReturnVoidResult(NID_NET_BT, pEventArg != null, E_INVALID_ARG, "[E_INVALID_ARG] The event argument is invalid type.");
58
59         _BluetoothConnectionEventType eventType = pEventArg->GetEventType();
60
61         switch (eventType)
62         {
63         case _BT_CONNECTION_EVENT_CONNECTED:
64                 SysLog(NID_NET_BT, "Firing Bluetooth Connection state changed Event (Type: _BT_CONNECTION_EVENT_CONNECTED)");
65                 pEventListener->OnBluetoothDeviceConnected(*pEventArg->GetRemoteAddress());
66                 break;
67
68         case _BT_CONNECTION_EVENT_DISCONNECTED:
69                 SysLog(NID_NET_BT, "Firing Bluetooth Connection state changed Event (Type: _BT_CONNECTION_EVENT_DISCONNECTED)");
70                 pEventListener->OnBluetoothDeviceDisconnected(*pEventArg->GetRemoteAddress());
71                 break;
72
73         default:
74                 break;
75         }
76 }
77
78 } } } // Tizen::Net::Bluetooth