Tizen 2.1 base
[framework/osp/social.git] / src / FScl_CalendarbookRecordRetrivalEvent.cpp
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 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 /**
18  * @file        FScl_CalendarbookRecordRetrivalEvent.cpp
19  * @brief       This is the implementation file for the _CalendarbookRecordRetrivalEvent class.
20  *
21  * This file contains definitions of @e _CalendarbookRecordRetrivalEvent class.
22  */
23
24 #include <FSclIRecordListener.h>
25 #include <FBaseSysLog.h>
26 #include "FScl_CalendarbookRecordRetrivalEventArg.h"
27 #include "FScl_CalendarbookRecordRetrivalEvent.h"
28
29 using namespace Tizen::Base;
30 using namespace Tizen::Base::Runtime;
31
32 namespace Tizen { namespace Social
33 {
34
35 _CalendarbookRecordRetrivalEvent::_CalendarbookRecordRetrivalEvent(void)
36 {
37         // empty body
38 }
39
40 _CalendarbookRecordRetrivalEvent::~_CalendarbookRecordRetrivalEvent(void)
41 {
42         // emtpy body
43 }
44
45 result
46 _CalendarbookRecordRetrivalEvent::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 _CalendarbookRecordRetrivalEvent::FireImpl(IEventListener& listener, const IEventArg& arg)
58 {
59         IRecordListener* pIRecordListener = dynamic_cast<IRecordListener*>(&listener);
60         const _CalendarbookRecordRetrivalEventArg* pEventArg = dynamic_cast<const _CalendarbookRecordRetrivalEventArg*>(&arg);
61
62         if (pIRecordListener != null && pEventArg != null)
63         {
64                 pIRecordListener->OnRecordsReceivedN(pEventArg->GetRequestId(), pEventArg->GetEventInstanceList(), pEventArg->GetRequestResult());
65         }
66 }
67
68 }} // Tizen::Social