tizen beta release
[platform/framework/web/wrt-plugins-common.git] / src / Commons / EventListener.h
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 #ifndef WRTDEVICEAPIS_COMMONS_EVENT_LISTENER_H_
17 #define WRTDEVICEAPIS_COMMONS_EVENT_LISTENER_H_
18
19 #include <dpl/shared_ptr.h>
20 #include <Commons/ThreadPool.h>
21 #include <Commons/EventReceiver.h>
22
23 namespace WrtDeviceApis {
24 namespace Commons {
25
26 /**
27  * Base class for listeners.
28  * Object that is to act as listener should dervie from this class and implement
29  * OnAnswerReceived() function.
30  */
31 template<class TemplateEvent>
32 class EventListener : private EventReceiver<TemplateEvent>
33 {
34   public:
35     EventListener(ThreadEnum::Enumeration threadType) :
36         EventReceiver<TemplateEvent>(threadType)
37     {
38     }
39
40     virtual void onAnswerReceived(const DPL::SharedPtr<TemplateEvent>& event) =
41         0;
42
43     void postAnswer(const DPL::SharedPtr<TemplateEvent>& event)
44     {
45         DPL::Event::ControllerEventHandler<DPL::SharedPtr<TemplateEvent> >::PostEvent(
46             event);
47     }
48
49   protected:
50     void OnEventReceived(const DPL::SharedPtr<TemplateEvent> &event)
51     {
52         onAnswerReceived(event);
53     }
54 };
55
56 }
57 } // WrtDeviceApisCommon
58
59 #endif /* WRTDEVICEAPIS_COMMONS_EVENT_LISTENER_H_ */