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
|
// file : build/algorithm.ixx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <utility> // pair
#include <build/prerequisite>
#include <build/context>
namespace build
{
inline target&
search (prerequisite& p)
{
if (p.target == nullptr)
p.target = &search (p.key ());
return *p.target;
}
inline target&
search (const target_type& t, const prerequisite_key& k)
{
return search (
prerequisite_key {{&t, k.tk.dir, k.tk.name, k.tk.ext}, k.scope});
}
inline target&
search (const target_type& type,
const dir_path& dir,
const std::string& name,
const std::string* ext,
scope* scope)
{
return search (prerequisite_key {{&type, &dir, &name, &ext}, scope});
}
template <typename T>
inline T&
search (const dir_path& dir,
const std::string& name,
const std::string* ext,
scope* scope)
{
return static_cast<T&> (search (T::static_type, dir, name, ext, scope));
}
std::pair<const rule*, match_result>
match_impl (action, target&, bool apply);
inline void
match (action a, target& t)
{
if (!t.recipe (a))
match_impl (a, t, true);
t.dependents++;
}
group_view
resolve_group_members_impl (action, target&);
inline group_view
resolve_group_members (action a, target& g)
{
group_view r (g.group_members (a));
return r.members != nullptr ? r : resolve_group_members_impl (a, g);
}
inline void
search_and_match_prerequisites (action a, target& t)
{
search_and_match_prerequisites (
a, t, a.operation () != clean_id ? dir_path () : t.dir);
}
inline void
search_and_match_prerequisite_members (action a, target& t)
{
if (a.operation () != clean_id)
search_and_match_prerequisite_members (a, t, dir_path ());
else
// Note that here we don't iterate over members even for see
// through groups since the group target should clean eveything
// up. A bit of an optimization.
//
search_and_match_prerequisites (a, t, t.dir);
}
target_state
execute_impl (action, target&);
inline target_state
execute (action a, target& t)
{
t.dependents--;
switch (t.state)
{
case target_state::unchanged:
case target_state::changed: return t.state;
default:
{
// Handle the "last" execution mode.
//
if (current_mode == execution_mode::last && t.dependents != 0)
return (t.state = target_state::postponed);
return execute_impl (a, t);
}
}
}
inline target_state
execute_direct (action a, target& t)
{
switch (t.state)
{
case target_state::unchanged:
case target_state::changed: return t.state;
default: return execute_impl (a, t);
}
}
}
|