-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdynamic_executor.cc
188 lines (166 loc) · 4.81 KB
/
dynamic_executor.cc
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
#include "dynamic_executor.hh"
Dynamic_Executor::Dynamic_Executor(
shared_ptr <const Dynamic_Dep> dep_,
Executor *parent, int &error_additional)
: dep(dep_)
{
assert(dep_);
assert(dep_->is_normalized());
assert(parent);
dep->check();
/* Set the rule here, so cycles in the dependency graph can be detected. Note
* however that the rule of dynamic executors is otherwise not used. */
parents[parent]= dep;
if (error_additional) {
*this << "";
done.set_all();
parents.erase(parent);
raise(error_additional);
return;
}
/* Find the rule of the inner dependency */
shared_ptr <const Dep> inner_dep= dep->strip_dynamic();
if (auto inner_plain_dep= to <const Plain_Dep> (inner_dep)) {
Hash_Dep hash_dep_base(inner_plain_dep->place_target.flags,
inner_plain_dep->place_target.place_name.unparametrized());
Hash_Dep hash_dep= dep->get_target();
try {
std::map <string, string> mapping_parameter;
shared_ptr <const Rule> rule=
rule_set.get(hash_dep_base, param_rule, mapping_parameter,
dep->get_place());
} catch (int e) {
assert(e);
*this << "";
error_additional |= e;
raise(e);
return;
}
executors_by_hash_dep[hash_dep]= this;
}
parents.erase(parent);
if (find_cycle(parent, this, dep)) {
parent->raise(ERROR_LOGICAL);
error_additional |= ERROR_LOGICAL;
return;
}
parents[parent]= dep;
/* Push the single initial dependency */
shared_ptr <Dep> dep_child= dep->dep->clone();
dep_child->flags |= F_RESULT_NOTIFY;
push(dep_child);
if (dep->flags & F_PHASE_B) bits |= B_NEED_BUILD;
}
Proceed Dynamic_Executor::execute(shared_ptr <const Dep> dep_link)
{
TRACE_FUNCTION(show_trace(dep_link));
TRACE("done= %s; bits= %s", done.show(), show_bits(bits));
Debug debug(this);
bool need_build;
Proceed proceed= execute_phase_A(dep_link);
TRACE("proceed= %s", show(proceed));
assert(is_valid(proceed));
if (proceed & P_ABORT) {
assert(proceed & P_FINISHED);
done |= Done::from_flags(dep_link->flags);
return proceed;
}
if (proceed & (P_WAIT | P_CALL_AGAIN)) {
assert((proceed & P_FINISHED) == 0);
return proceed;
}
assert(proceed & P_FINISHED);
proceed &= ~P_FINISHED;
assert(get_buffer_A().empty());
if (finished(dep_link->flags)) {
assert(! (proceed & P_WAIT));
return proceed |= P_FINISHED;
}
need_build= (bits & B_NEED_BUILD) != 0 || dep_link->flags & F_PHASE_B;
TRACE("need_build= %s", frmt("%d", need_build));
if (! need_build) {
done |= Done::from_flags(dep_link->flags);
return proceed |= P_FINISHED;
}
Proceed proceed_B= execute_phase_B(dep_link);
assert(is_valid(proceed_B));
proceed |= proceed_B;
if (proceed & (P_WAIT | P_CALL_AGAIN)) {
assert((proceed & P_FINISHED) == 0);
return proceed;
}
if (proceed & P_FINISHED) {
done |= Done::from_flags(dep_link->flags);
return proceed;
}
if (finished(dep_link->flags)) {
assert(! (proceed & P_WAIT));
return P_FINISHED;
}
assert(is_valid(proceed));
return proceed;
}
bool Dynamic_Executor::finished() const
{
TRACE_FUNCTION();
TRACE("done= %s", done.show());
bool ret= done.is_all();
TRACE("ret= %s", frmt("%d", ret));
return ret;
}
bool Dynamic_Executor::finished(Flags flags) const
{
TRACE_FUNCTION();
TRACE("flags= %s; done= %s", show_flags(flags, S_DEBUG), done.show());
bool ret= done.is_done_from_flags(flags);
TRACE("ret= %s", frmt("%d", ret));
return ret;
}
bool Dynamic_Executor::want_delete() const
{
return to <Plain_Dep> (dep->strip_dynamic()) == nullptr;
}
void Dynamic_Executor::render(Parts &parts, Rendering rendering) const
{
dep->render(parts, rendering);
}
void Dynamic_Executor::notify_variable(
const std::map <string, string> &result_variable_child)
{
result_variable.insert(result_variable_child.begin(),
result_variable_child.end());
}
void Dynamic_Executor::notify_result(
shared_ptr <const Dep> dep_result, Executor *source,
Flags flags, shared_ptr <const Dep> dep_source)
{
TRACE_FUNCTION(show_trace(dep));
TRACE("d= %s; flags= %s; dep_source= %s",
show_trace(dep_result), show_flags(flags), show_trace(dep_source));
assert(!(flags & ~(F_RESULT_NOTIFY | F_RESULT_COPY)));
assert((flags & ~(F_RESULT_NOTIFY | F_RESULT_COPY))
!= (F_RESULT_NOTIFY | F_RESULT_COPY));
assert(dep_source);
if (flags & F_RESULT_NOTIFY) {
std::vector <shared_ptr <const Dep> > deps;
source->read_dynamic(to <const Plain_Dep> (dep_result), deps, dep, this);
for (auto &j: deps) {
shared_ptr <Dep> j_new= j->clone();
/* Add -% flag */
j_new->flags |= F_RESULT_COPY;
/* Add flags from self */
j_new->flags |= dep->flags & (F_WORD & ~F_TARGET_DYNAMIC);
for (unsigned i= 0; i < C_PLACED; ++i) {
if (j_new->get_place_flag(i).empty() &&
! dep->get_place_flag(i).empty())
j_new->set_place_flag(i, dep->get_place_flag(i));
}
j= j_new;
push(j);
}
} else if (flags & F_RESULT_COPY) {
push_result(dep_result);
} else {
unreachable();
}
}