remove return on void function
[framework/osp/social.git] / src / FScl_AccountDbChangeEvent.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_AccountDbChangeEvent.cpp
18  * @brief       This is the implementation file for the _AccountDbChangeEvent class.
19  *
20  */
21
22 #include <FBaseRtIEventListener.h>
23 #include <FBaseRtIEventArg.h>
24 #include <FBaseSysLog.h>
25 #include "FScl_IAccountDbChangeEventListener.h"
26 #include "FScl_AccountDbChangeEventArg.h"
27 #include "FScl_AccountDbChangeEvent.h"
28
29 using namespace Tizen::Base;
30 using namespace Tizen::Base::Runtime;
31
32 namespace Tizen { namespace Social
33 {
34
35 _AccountDbChangeEvent::_AccountDbChangeEvent(void)
36 {
37         // empty body
38 }
39
40 _AccountDbChangeEvent::~_AccountDbChangeEvent(void)
41 {
42         // emtpy body
43 }
44
45 result
46 _AccountDbChangeEvent::Construct(void)
47 {
48         result r = _Event::Initialize();
49         SysTryReturn(NID_SCL, !IsFailed(r), r, r, "[%s] Propagating. This is not an event-driven thread.", GetErrorMessage(r));
50
51         return E_SUCCESS;
52 }
53
54 void
55 _AccountDbChangeEvent::FireImpl(IEventListener& listener, const IEventArg& arg)
56 {
57         _IAccountDbChangeEventListener* pEventListener = dynamic_cast<_IAccountDbChangeEventListener*>(&listener);
58         const _AccountDbChangeEventArg* pEventArg = dynamic_cast<const _AccountDbChangeEventArg*>(&arg);
59
60         if (pEventListener != null && pEventArg != null)
61         {
62                 AccountId accountId = pEventArg->GetAccountId();
63                 _AccountDbChangeType changeType = pEventArg->GetChangeType();
64
65                 switch (changeType)
66                 {
67                 case _ACCOUNT_DB_CHANGE_TYPE_ADD:
68                 {
69                         pEventListener->OnAccountAdded(accountId);
70                         break;
71                 }
72
73                 case _ACCOUNT_DB_CHANGE_TYPE_UPDATE:
74                 {
75                         pEventListener->OnAccountUpdated(accountId);
76                         break;
77                 }
78
79                 case _ACCOUNT_DB_CHANGE_TYPE_REMOVE:
80                 {
81                         pEventListener->OnAccountRemoved(accountId);
82                         break;
83                 }
84
85                 default:
86                         return;
87                 }
88         }
89
90         return;
91 }
92
93 }} // Tizen::Social