2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * @file thread_event_dispatcher.cpp
18 * @author Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
20 * @brief This file is the implementation file of thread event dispatcher
23 #include <dpl/event/thread_event_dispatcher.h>
24 #include <dpl/log/log.h>
25 #include <dpl/assert.h>
32 ThreadEventDispatcher::ThreadEventDispatcher()
37 ThreadEventDispatcher::~ThreadEventDispatcher()
41 void ThreadEventDispatcher::SetThread(Thread *thread)
46 void ThreadEventDispatcher::StaticEventDelete(void *event, void *userParam)
48 AbstractEventCall *abstractEventCall = static_cast<AbstractEventCall *>(event);
49 ThreadEventDispatcher *This = static_cast<ThreadEventDispatcher *>(userParam);
51 LogPedantic("Received static event delete from thread");
53 Assert(abstractEventCall != NULL);
56 This->EventDelete(abstractEventCall);
59 void ThreadEventDispatcher::StaticEventDispatch(void *event, void *userParam)
61 AbstractEventCall *abstractEventCall = static_cast<AbstractEventCall *>(event);
62 ThreadEventDispatcher *This = static_cast<ThreadEventDispatcher *>(userParam);
64 LogPedantic("Received static event dispatch from thread");
66 Assert(abstractEventCall != NULL);
69 This->EventDispatch(abstractEventCall);
72 void ThreadEventDispatcher::EventDelete(AbstractEventCall *abstractEventCall)
74 LogPedantic("Deleting event");
75 delete abstractEventCall;
78 void ThreadEventDispatcher::EventDispatch(AbstractEventCall *abstractEventCall)
80 LogPedantic("Dispatching event to event support");
81 abstractEventCall->Call();
84 void ThreadEventDispatcher::AddEventCall(AbstractEventCall *abstractEventCall)
86 // Thread must be set prior to call
87 Assert(m_thread != NULL);
89 LogPedantic("Adding event to thread event loop");
91 // Call abstract event call in dedicated thread
92 m_thread->PushEvent(abstractEventCall, &StaticEventDispatch, &StaticEventDelete, this);
95 void ThreadEventDispatcher::AddTimedEventCall(AbstractEventCall *abstractEventCall, double dueTime)
97 // Thread must be set prior to call
98 Assert(m_thread != NULL);
100 LogPedantic("Adding timed event to thread event loop");
102 // Call abstract event call in dedicated thread
103 m_thread->PushTimedEvent(abstractEventCall, dueTime, &StaticEventDispatch, &StaticEventDelete, this);