forked from perabrahamsen/daisy-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction_wait.C
280 lines (246 loc) · 7.29 KB
/
action_wait.C
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
// action_wait.C
//
// Copyright 1996-2001 Per Abrahamsen and Søren Hansen
// Copyright 2000-2001 KVL.
//
// This file is part of Daisy.
//
// Daisy is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser Public License as published by
// the Free Software Foundation; either version 2.1 of the License, or
// (at your option) any later version.
//
// Daisy is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser Public License for more details.
//
// You should have received a copy of the GNU Lesser Public License
// along with Daisy; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#define BUILD_DLL
#include "action.h"
#include "block_model.h"
#include "condition.h"
#include "log.h"
#include "daisy.h"
#include "assertion.h"
#include "librarian.h"
#include "treelog.h"
#include "frame.h"
#include <memory>
#include <sstream>
struct ActionWait : public Action
{
std::unique_ptr<Condition> condition;
void tick (const Daisy& daisy, const Scope& scope, Treelog& out)
{ condition->tick (daisy, scope, out); }
void doIt (Daisy&, const Scope&, Treelog&)
{ }
bool done (const Daisy& daisy, const Scope& scope, Treelog& msg) const
{ return condition->match (daisy, scope, msg); }
void output (Log& log) const
{ output_object (condition, "condition", log); }
void initialize (const Daisy& daisy, const Scope& scope, Treelog& out)
{ condition->initialize (daisy, scope, out); }
bool check (const Daisy& daisy, const Scope& scope, Treelog& out) const
{ return condition->check (daisy, scope, out); }
ActionWait (const BlockModel& al)
: Action (al),
condition (Librarian::build_item<Condition> (al, "condition"))
{ }
~ActionWait ()
{ }
};
struct ActionWaitDays : public Action
{
const int days;
const int hours;
bool activated;
Time end_time;
void doIt (Daisy& daisy, const Scope&, Treelog&)
{
if (!activated)
{
activated = true;
end_time = daisy.time ();
end_time.tick_hour (hours - 1);
end_time.tick_day (days);
}
}
bool done (const Daisy& daisy, const Scope&, Treelog&) const
{
daisy_assert (activated);
return daisy.time () >= end_time;
}
void output (Log& log) const
{
if (activated)
output_submodule (end_time, "end_time", log);
}
void tick (const Daisy&, const Scope&, Treelog&)
{ }
void initialize (const Daisy&, const Scope&, Treelog&)
{ }
bool check (const Daisy&, const Scope&, Treelog& err) const
{ return true; }
ActionWaitDays (const BlockModel& al)
: Action (al),
days (al.integer ("days")),
hours (al.integer ("hours")),
activated (al.check ("end_time")),
end_time (1, 1, 1, 1)
{
if (activated)
end_time = Time (al.submodel ("end_time"));
}
~ActionWaitDays ()
{ }
};
struct ActionWaitMMDD : public Action
{
const int month;
const int day;
const int hour;
void doIt (Daisy&, const Scope&, Treelog&)
{ }
bool done (const Daisy& daisy, const Scope&, Treelog&) const
{
return daisy.time ().month () == month
&& daisy.time ().mday () == day
&& daisy.time ().hour () == hour;
}
void tick (const Daisy&, const Scope&, Treelog&)
{ }
void initialize (const Daisy&, const Scope&, Treelog&)
{ }
bool check (const Daisy&, const Scope&, Treelog& err) const
{ return true; }
ActionWaitMMDD (const BlockModel& al)
: Action (al),
month (al.integer ("month")),
day (al.integer ("day")),
hour (al.integer ("hour"))
{ }
~ActionWaitMMDD ()
{ }
};
static struct ActionWaitSyntax : public DeclareModel
{
Model* make (const BlockModel& al) const
{ return new ActionWait (al); }
ActionWaitSyntax ()
: DeclareModel (Action::component, "wait", "\
Wait until the specified condition is true.")
{ }
void load_frame (Frame& frame) const
{
frame.declare_object ("condition", Condition::component,
"Condition to wait for.");
frame.order ("condition");
}
} ActionWait_syntax;
static struct ActionWaitPeriodSyntax : public DeclareModel
{
Model* make (const BlockModel& al) const
{ return new ActionWaitDays (al); }
ActionWaitPeriodSyntax ()
: DeclareModel (Action::component, "wait_period", "\
Waits the specified period.")
{ }
static bool check_alist (const Metalib&, const Frame& frame, Treelog& err)
{
bool ok = true;
const int days = frame.integer ("days");
const int hours = frame.integer ("hours");
if (days * 24 + hours < 1)
{
err.entry ("you must wait at least 1 hour");
ok = false;
}
return ok;
}
void load_frame (Frame& frame) const
{
frame.add_check (check_alist);
frame.declare_integer ("days", Attribute::Const,
"Wait this number of days.");
frame.declare_integer ("hours", Attribute::Const,
"Wait this number of hours.");
frame.declare_submodule ("end_time", Attribute::OptionalState,
"Wait until this date.\
Setting this overrides the 'days' and 'hours' parameters.", Time::load_syntax);
}
} ActionWaitPeriod_syntax;
static struct ActionWaitDaysSyntax : public DeclareParam
{
ActionWaitDaysSyntax ()
: DeclareParam (Action::component, "wait_days", "wait_period", "\
Waits the specified number of days.")
{ }
void load_frame (Frame& frame) const
{
frame.set ("hours", 0);
frame.order ("days");
}
} ActionWaitDays_syntax;
static struct ActionWaitHoursSyntax : public DeclareParam
{
ActionWaitHoursSyntax ()
: DeclareParam (Action::component, "wait_hours", "wait_period", "\
Waits the specified number of hours.")
{ }
void load_frame (Frame& frame) const
{
frame.set ("days", 0);
frame.order ("hours");
}
} ActionWaitHours_syntax;
static struct ActionWaitMMDDSyntax : public DeclareModel
{
Model* make (const BlockModel& al) const
{ return new ActionWaitMMDD (al); }
ActionWaitMMDDSyntax ()
: DeclareModel (Action::component, "wait_mm_dd", "\
Wait until a specific month and day in the year.")
{ }
static bool check_alist (const Metalib&, const Frame& frame, Treelog& err)
{
bool ok = true;
const int mm = frame.integer ("month");
const int dd = frame.integer ("day");
const int hh = frame.integer ("hour");
if (mm < 1 || mm > 12)
{
err.entry ("month should be between 1 and 12");
ok = false;
}
// don't test for bad month.
else if (dd < 1 || dd > Time::month_length (1 /* not a leap year */, mm))
{
std::ostringstream tmp;
tmp << "day should be between 1 and " << Time::month_length (1, mm);
err.entry (tmp.str ());
ok = false;
}
if (hh < 0 || hh > 23)
{
err.entry ("hour should be between 0 and 23");
ok = false;
}
return ok;
}
void load_frame (Frame& frame) const
{
frame.add_check (check_alist);
frame.declare_integer ("month", Attribute::Const,
"Wait until this month.");
frame.declare_integer ("day", Attribute::Const,
"Wait until this day in the month.");
frame.declare_integer ("hour", Attribute::Const,
"Wait until this hour.");
frame.set ("hour", 8);
frame.order ("month", "day");
}
} ActionWaitMMDD_syntax;
// action_wait.C ends here.