Modifying code according to coding idioms
[framework/osp/social.git] / src / FScl_CalendarbookDbChangeEvent.cpp
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
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  * @file        FScl_CalendarbookDbChangeEvent.cpp
18  * @brief       This is the implementation file for the _CalendarbookDbChangeEvent class.
19  *
20  */
21
22 #include <FBaseRtIEventArg.h>
23 #include <FBaseRtIEventListener.h>
24 #include <FBaseSysLog.h>
25 #include "FScl_CalendarbookDbChangeEvent.h"
26 #include "FScl_CalendarbookDbChangeEventArg.h"
27 #include "FScl_ICalendarbookDbChangeEventListener.h"
28
29 using namespace Tizen::Base;
30 using namespace Tizen::Base::Runtime;
31
32 namespace Tizen { namespace Social
33 {
34
35 _CalendarbookDbChangeEvent::_CalendarbookDbChangeEvent(void)
36 {
37         // empty body
38 }
39
40 _CalendarbookDbChangeEvent::~_CalendarbookDbChangeEvent(void)
41 {
42         // emtpy body
43 }
44
45 result
46 _CalendarbookDbChangeEvent::Construct(void)
47 {
48         result r = E_SUCCESS;
49
50         r = _Event::Initialize();
51         SysTryReturn(NID_SCL, r == E_SUCCESS, r, r, "[%s]This is not an event-driven thread.", GetErrorMessage(r));
52
53         return E_SUCCESS;
54 }
55
56 void
57 _CalendarbookDbChangeEvent::FireImpl(IEventListener& listener, const IEventArg& arg)
58 {
59         _ICalendarbookDbChangeEventListener* pEventListener = dynamic_cast<_ICalendarbookDbChangeEventListener*>(&listener);
60         const _CalendarbookDbChangeEventArg* pEventArg = dynamic_cast<const _CalendarbookDbChangeEventArg*>(&arg);
61
62         if (pEventListener != null && pEventArg != null)
63         {
64                 if (pEventArg->GetChangeType() == _CALENDARBOOK_DB_CHANGE_TYPE_EVENT)
65                 {
66                         pEventListener->OnCalEventChanged();
67                 }
68                 else
69                 {
70                         pEventListener->OnCalTodoChanged();
71                 }
72         }
73 }
74
75 }} // Tizen::Social