Modify the spec file for secure log
[framework/osp/social.git] / src / FScl_ContactDbChangeEvent.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_ContactDbChangeEvent.cpp
18  * @brief       This is the implementation file for the _ContactDbChangeEvent class.
19  *
20  */
21
22 #include <FBaseRtIEventListener.h>
23 #include <FBaseRtIEventArg.h>
24 #include <FBaseSysLog.h>
25 #include "FScl_IContactDbChangeEventListener.h"
26 #include "FScl_ContactDbChangeEventArg.h"
27 #include "FScl_ContactDbChangeEvent.h"
28
29 using namespace Tizen::Base;
30 using namespace Tizen::Base::Runtime;
31
32 namespace Tizen { namespace Social
33 {
34
35 _ContactDbChangeEvent::_ContactDbChangeEvent(void)
36 {
37         // empty body
38 }
39
40 _ContactDbChangeEvent::~_ContactDbChangeEvent(void)
41 {
42         // emtpy body
43 }
44
45 result
46 _ContactDbChangeEvent::Construct(void)
47 {
48         result r = E_SUCCESS;
49
50         r = _Event::Initialize();
51         if (!IsFailed(r))
52         {
53                 SysLog(NID_SCL, "This is not an event-driven thread.");
54         }
55
56         return E_SUCCESS;
57 }
58
59 void
60 _ContactDbChangeEvent::FireImpl(IEventListener& listener, const IEventArg& arg)
61 {
62         _IContactDbChangeEventListener* pEventListener = dynamic_cast<_IContactDbChangeEventListener*>(&listener);
63         const _ContactDbChangeEventArg* pEventArg = dynamic_cast<const _ContactDbChangeEventArg*>(&arg);
64
65         if (pEventListener != null && pEventArg != null)
66         {
67                 if (pEventArg->GetChangeType() == _CONTACT_DB_CHANGE_TYPE_CONTACT)
68                 {
69                         pEventListener->OnContactChanged();
70                 }
71                 else if (pEventArg->GetChangeType() == _CONTACT_DB_CHANGE_TYPE_GROUP)
72                 {
73                         pEventListener->OnCategoryChanged();
74                 }
75                 else
76                 {
77                         pEventListener->OnRelationChanged();
78                 }
79         }
80 }
81
82 }} // Tizen::Social