source: source/ariba/utility/system/SystemEvent.h@ 2848

Last change on this file since 2848 was 2848, checked in by Christoph Mayer, 15 years ago

-friend def für arm gefixt

File size: 4.2 KB
Line 
1// [Licence]
2// The Ariba-Underlay Copyright
3//
4// Copyright (c) 2008-2009, Institute of Telematics, UniversitÀt Karlsruhe (TH)
5//
6// Institute of Telematics
7// UniversitÀt Karlsruhe (TH)
8// Zirkel 2, 76128 Karlsruhe
9// Germany
10//
11// Redistribution and use in source and binary forms, with or without
12// modification, are permitted provided that the following conditions are
13// met:
14//
15// 1. Redistributions of source code must retain the above copyright
16// notice, this list of conditions and the following disclaimer.
17// 2. Redistributions in binary form must reproduce the above copyright
18// notice, this list of conditions and the following disclaimer in the
19// documentation and/or other materials provided with the distribution.
20//
21// THIS SOFTWARE IS PROVIDED BY THE INSTITUTE OF TELEMATICS ``AS IS'' AND
22// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE ARIBA PROJECT OR
25// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
26// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
27// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
28// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
29// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
31// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32//
33// The views and conclusions contained in the software and documentation
34// are those of the authors and should not be interpreted as representing
35// official policies, either expressed or implied, of the Institute of
36// Telematics.
37// [Licence]
38
39#ifndef SYSTEMEVENT_H_
40#define SYSTEMEVENT_H_
41
42#include <boost/date_time.hpp>
43#include <iostream>
44#include "SystemEventType.h"
45
46using boost::posix_time::ptime;
47
48namespace ariba {
49namespace utility {
50
51class SystemQueue;
52class SystemEventListener;
53
54class SystemEvent {
55 friend class SystemQueue;
56private:
57 SystemEventListener* listener; //< handler of the event
58 SystemEventType type; //< type of the event
59 const void* data; //< data attached to the event
60
61public:
62 ptime scheduledTime; //< time the event was originally given to the queue
63 uint32_t delayTime; //< time the event is scheduled at, or 0 if it is to be fired immediately
64 uint32_t remainingDelay; //< remaining delay time for sleeping
65
66public:
67 inline SystemEvent(
68 SystemEventListener* mlistener,
69 SystemEventType mtype = SystemEventType::DEFAULT,
70 void* mdata = NULL)
71 : scheduledTime(boost::posix_time::not_a_date_time),
72 delayTime(0),
73 remainingDelay(0),
74 listener(mlistener),
75 type(mtype),
76 data(mdata) {
77 }
78
79 template<typename T>
80 inline SystemEvent( SystemEventListener* mlistener,
81 SystemEventType mtype = SystemEventType::DEFAULT,
82 T* mdata = NULL)
83 : scheduledTime(boost::posix_time::not_a_date_time),
84 delayTime(0),
85 remainingDelay(0),
86 listener(mlistener),
87 type(mtype),
88 data((void*)mdata) {
89 }
90
91
92
93 inline SystemEvent(const SystemEvent& copy) {
94 this->scheduledTime = copy.scheduledTime;
95 this->delayTime = copy.delayTime;
96 this->remainingDelay = copy.remainingDelay;
97 this->listener = copy.listener;
98 this->type = copy.type;
99 this->data = copy.data;
100 }
101
102 inline void operator=(const SystemEvent& right) {
103 this->scheduledTime = right.scheduledTime;
104 this->delayTime = right.delayTime;
105 this->remainingDelay = right.remainingDelay;
106 this->listener = right.listener;
107 this->type = right.type;
108 this->data = right.data;
109 }
110
111 inline ~SystemEvent() {
112 }
113
114 template<typename T>
115 inline operator T() const {
116 return (T) (data);
117 }
118
119 inline const SystemEventListener* getListener() const {
120 return listener;
121 }
122
123 template<typename T>
124 inline T* getData() const {
125 return (T*)*this;
126 }
127
128 inline const SystemEventType getType() const {
129 return type;
130 }
131
132 inline const ptime getScheduledTime() const {
133 return scheduledTime;
134 }
135
136 inline const uint32_t getRemainingDelay() const {
137 return remainingDelay;
138 }
139
140 inline bool operator<(const SystemEvent& right) const {
141 return remainingDelay < right.remainingDelay;
142 }
143
144};
145
146}} // spovnet, common
147
148#endif /* SYSTEMEVENT_H_ */
Note: See TracBrowser for help on using the repository browser.