-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSCDelayedSignal.cpp
160 lines (126 loc) · 4.78 KB
/
SCDelayedSignal.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/*-----------------------------------------------------------------------------+
| |
| SCL - Simulation Class Library |
| |
| (c) 1994-98 Marc Diefenbruch, Wolfgang Textor |
| University of Essen, Germany |
| |
+---------------+-------------------+---------------+-------------------+------+
| Module | File | Created | Project | |
+---------------+-------------------+---------------+-------------------+------+
|SCDelayedSignal|SCDelayedSignal.cc | 20. Apr 1997 | SCL | |
+---------------+-------------------+---------------+-------------------+------+
| |
| Change Log |
| |
| Nr. Date Description |
| ----- -------- ------------------------------------------------------ |
| 001 |
| 000 --.--.-- Neu angelegt |
| |
+-----------------------------------------------------------------------------*/
/* Lineal
00000000001111111111222222222233333333334444444444555555555566666666667777777777
01234567890123456789012345678901234567890123456789012345678901234567890123456789
*/
#include "SCStream.h"
#include "SCSignal.h"
#include "SCDelayedSignal.h"
#include "SCProcess.h"
#include "SCProcessType.h"
#include "SCScheduler.h"
#include "SCSignalTable.h"
#include "SCMem.h"
#if _SC_DMALLOC
#include <dmalloc.h>
#endif
#if _SC_NOINLINES
#include "SCDelayedSignal.inl.h"
#endif
#include "SCDebug.h"
/*----- Konstruktor -----*/
SCDelayedSignal::SCDelayedSignal (SCSignal *pSignal,
const SCProcessID pReceiverID,
const SCProcessType * const pReceiverType,
const SCTime pDelayedUntil,
const SCObject* pParent) :
SCObject(SC_DELAYED_SIGNAL, pParent),
signal(pSignal),
receiverID(pReceiverID),
receiverType((SCProcessType *)pReceiverType),
delayedUntil(pDelayedUntil)
{
}
SCDelayedSignal::SCDelayedSignal(SCMem &saveArea, const SCObject *pParent):
SCObject(SC_DELAYED_SIGNAL, pParent),
signal(NULL),
receiverType(NULL)
{
Restore(saveArea);
}
SCDelayedSignal::~SCDelayedSignal (void)
{
if (signal)
delete signal;
}
SCStream& operator<< (SCStream& pStream, const SCDelayedSignal& pData)
{
assert(pData.GetSignal());
pStream << *pData.GetSignal() << ", delayed until " << pData.delayedUntil;
return pStream;
}
SCStream& SCDelayedSignal::Display(SCStream& pStream) const
{
return (pStream << *this);
}
void SCDelayedSignal::Size(SCSize *curSize) const
{
assert(signal);
signal->Size(curSize);
#if _SC_VALIDATION_TIME == 1
curSize->size += sizeof(SCDuration); // remainingTime
#endif
// history system state members:
curSize->historySize += (sizeof(SCProcessID) + // Member receiverID
sizeof(SCProcessType *) + // Member receiverType
sizeof(SCTime)); // Member delayedUntil
}
SCBoolean SCDelayedSignal::Save (SCMem& saveArea) const
{
#if _SC_VALIDATION_TIME == 1
SCDuration remainingTime;
#endif
assert(signal);
signal->Save(saveArea);
saveArea.HistoryStore(&receiverID, sizeof(SCProcessID));
saveArea.HistoryStore(&receiverType, sizeof(SCProcessType *));
saveArea.HistoryStore(&delayedUntil, sizeof(SCTime));
#if _SC_VALIDATION_TIME == 1
remainingTime = delayedUntil - SCScheduler::GetCurrentTime();
assert(remainingTime >= 0.0);
saveArea.Store(&remainingTime, sizeof(SCDuration));
#endif
return true;
}
SCBoolean SCDelayedSignal::Restore (SCMem& saveArea)
{
#if _SC_VALIDATION_TIME == 1
SCDuration remainingTime;
#endif
if (signal) // not recreated ?
{
signal->Restore(saveArea);
}
else // recreated!
{
signal = new SCSignal(saveArea);
assert(signal);
}
saveArea.HistoryRestore(&receiverID, sizeof(SCProcessID));
saveArea.HistoryRestore(&receiverType, sizeof(SCProcessType *));
saveArea.HistoryRestore(&delayedUntil, sizeof(SCTime));
#if _SC_VALIDATION_TIME == 1
saveArea.Restore (&remainingTime, sizeof (SCDuration));
#endif
return true;
}