-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSCMachineInf.cpp
214 lines (164 loc) · 6.15 KB
/
SCMachineInf.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/*-----------------------------------------------------------------------------+
| |
| SCL - Simulation Class Library |
| |
| (c) 1994-98 Marc Diefenbruch, Wolfgang Textor |
| University of Essen, Germany |
| |
+---------------+-------------------+---------------+-------------------+------+
| Module | File | Created | Project | |
+---------------+-------------------+---------------+-------------------+------+
| SCMachineInf | SCMachineInf.cpp | 03. Nov 1996 | SCL | |
+---------------+-------------------+---------------+-------------------+------+
| |
| Change Log |
| |
| Nr. Date Description |
| ----- -------- ------------------------------------------------------ |
| 001 |
| 000 03.11.96 Neu angelegt |
| |
+-----------------------------------------------------------------------------*/
/* Lineal
00000000001111111111222222222233333333334444444444555555555566666666667777777777
01234567890123456789012345678901234567890123456789012345678901234567890123456789
*/
#include <string.h>
#include "SCMachineInf.h"
#include <float.h>
#include "SCStream.h"
#include "SCScheduler.h"
#include "SCRequest.h"
#include "SCMem.h"
#include "SCTraceControl.h"
#include "SCDebug.h"
#if _SC_DMALLOC
#include <dmalloc.h>
#endif
SCMachineInf::SCMachineInf (SCRunnableID pMachineID,
SCDiscipline pDiscipline,
SCNatural pServers,
SCNatural pServices,
const SCDuration *const pSpeeds,
const char *pName,
SCObject *father) :
SCMachine (pMachineID, pDiscipline,
pServers, pServices, pSpeeds, pName,
father),
relativeSpeed(1.0)
{
}
SCMachineInf::~SCMachineInf (void)
{
}
void SCMachineInf::StartRequest (SCRequest * request)
{
#if _SC_DEBUGOUTPUT
scDebugLog << SCScheduler::GetCurrentTime() << ": " << *this;
scDebugLog << " is starting ";
scDebugLog << *request << ", amount: " << request->GetRemainingService();
scDebugLog << ", speed: " << Speed(request->GetRequestType()) << std::endl;
#endif
request->serviceStartTime = SCScheduler::GetCurrentTime();
GetServiceQueue()->InsertAfter(request);
if (IsTraceOn())
SCTraceControl::LogEvent (scTraceServiceStart, this, request);
}
void SCMachineInf::UpdateWork (void)
{
SCDuration timeSpent;
SCDuration timeWorked;
SCRequestIter iter (*GetServiceQueue());
SCRequest * request;
timeSpent = SCScheduler::GetCurrentTime() - lastTime;
timeWorked = timeSpent * relativeSpeed;
for (request = iter++;
request;
request = iter++)
{
request->remainingTime -= timeWorked;
request->remainingService -= timeWorked * Speed (request->GetRequestType());
}
lastTime = SCScheduler::GetCurrentTime();
#if _SC_VALIDATION_OPTIMIZE >= 2
GetServiceQueue()->SetModified(kSCQueueCorrupted);
#endif
}
void SCMachineInf::RecalcTimes (void)
{
SCRequestIter iter (*GetServiceQueue());
SCRequest * request;
if (NumOfServers() != kSCInfiniteServers && // PS Machine and not
GetServiceQueue()->NumOfElems() > NumOfServers()) // enough servers for
{ // all requests?
relativeSpeed = (SCDuration)NumOfServers() / // share servers
(SCDuration)GetServiceQueue()->NumOfElems();
}
else // IS Machine or each request has an own server
{
relativeSpeed = 1.0;
}
for (request = iter++;
request;
request = iter++)
{
request->remainingTime = request->GetRemainingService() /
(Speed (request->GetRequestType()) * relativeSpeed);
}
#if _SC_VALIDATION_OPTIMIZE >= 2
GetServiceQueue()->SetModified(kSCQueueCorrupted);
#endif
}
void SCMachineInf::Body (void)
{
if (IsVerbose())
SCScheduler::outputStream << "Executing " << *this << std::endl;
while (true)
{
/* Update all currently running requests */
UpdateWork();
/* Remove finished requests */
FinishRequests();
/* Recalculate work for remaining requests */
if (!GetServiceQueue()->IsEmpty())
RecalcTimes();
/* Determine next regular wakeup time */
Reschedule();
#if _SC_VALIDATION_DEBUG
scValidationDebugLog << "SCMachineInf::Body(): " << *this;
scValidationDebugLog << " suspending" << std::endl;
#endif
Suspend();
#if _SC_VALIDATION_DEBUG
scValidationDebugLog << "SCMachineInf::Body(): " << *this;
scValidationDebugLog << " resuming" << std::endl;
#endif
}
}
/* Validation stack and display functions */
void SCMachineInf::Size(SCSize *curSize) const
{
SCMachine::Size(curSize); // Get size of base class.
curSize->historySize += sizeof(SCReal); // Member relativeSpeed.
}
SCBoolean SCMachineInf::Save (SCMem& saveArea) const
{
SCMachine::Save (saveArea);
saveArea.HistoryStore(&relativeSpeed, sizeof(SCReal));
return true;
}
SCBoolean SCMachineInf::Restore (SCMem &saveArea)
{
SCMachine::Restore (saveArea);
saveArea.HistoryRestore(&relativeSpeed, sizeof(SCReal));
return true;
}
SCStream& operator<< (SCStream& pStream,
const SCMachineInf& pData)
{
return pData.Display(pStream); // virtuelle Funktion aufrufen
}
SCStream& SCMachineInf::Display (SCStream& pStream) const
{
return SCMachine::Display(pStream);
}