tizen beta release
[framework/web/wrt-commons.git] / modules / event / src / thread_event_dispatcher.cpp
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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        thread_event_dispatcher.cpp
18  * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of thread event dispatcher
21  */
22 #include <dpl/event/thread_event_dispatcher.h>
23 #include <dpl/log/log.h>
24 #include <dpl/assert.h>
25
26 namespace DPL
27 {
28 namespace Event
29 {
30
31 ThreadEventDispatcher::ThreadEventDispatcher()
32     : m_thread(NULL)
33 {
34 }
35
36 ThreadEventDispatcher::~ThreadEventDispatcher()
37 {
38 }
39
40 void ThreadEventDispatcher::SetThread(Thread *thread)
41 {
42     m_thread = thread;
43 }
44
45 void ThreadEventDispatcher::StaticEventDelete(void *event, void *userParam)
46 {
47     AbstractEventCall *abstractEventCall = static_cast<AbstractEventCall *>(event);
48     ThreadEventDispatcher *This = static_cast<ThreadEventDispatcher *>(userParam);
49
50     LogPedantic("Received static event delete from thread");
51
52     Assert(abstractEventCall != NULL);
53     Assert(This != NULL);
54
55     This->EventDelete(abstractEventCall);
56 }
57
58 void ThreadEventDispatcher::StaticEventDispatch(void *event, void *userParam)
59 {
60     AbstractEventCall *abstractEventCall = static_cast<AbstractEventCall *>(event);
61     ThreadEventDispatcher *This = static_cast<ThreadEventDispatcher *>(userParam);
62
63     LogPedantic("Received static event dispatch from thread");
64
65     Assert(abstractEventCall != NULL);
66     Assert(This != NULL);
67
68     This->EventDispatch(abstractEventCall);
69 }
70
71 void ThreadEventDispatcher::EventDelete(AbstractEventCall *abstractEventCall)
72 {
73     LogPedantic("Deleting event");
74     delete abstractEventCall;
75 }
76
77 void ThreadEventDispatcher::EventDispatch(AbstractEventCall *abstractEventCall)
78 {
79     LogPedantic("Dispatching event to event support");
80     abstractEventCall->Call();
81 }
82
83 void ThreadEventDispatcher::AddEventCall(AbstractEventCall *abstractEventCall)
84 {
85     // Thread must be set prior to call
86     Assert(m_thread != NULL);
87
88     LogPedantic("Adding event to thread event loop");
89
90     // Call abstract event call in dedicated thread
91     m_thread->PushEvent(abstractEventCall, &StaticEventDispatch, &StaticEventDelete, this);
92 }
93
94 void ThreadEventDispatcher::AddTimedEventCall(AbstractEventCall *abstractEventCall, double dueTime)
95 {
96     // Thread must be set prior to call
97     Assert(m_thread != NULL);
98
99     LogPedantic("Adding timed event to thread event loop");
100
101     // Call abstract event call in dedicated thread
102     m_thread->PushTimedEvent(abstractEventCall, dueTime, &StaticEventDispatch, &StaticEventDelete, this);
103 }
104
105 }
106 } // namespace DPL