aboutsummaryrefslogtreecommitdiff
path: root/build/algorithm.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-02-23 15:56:03 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-02-23 15:56:03 +0200
commitfefe0657f29b8db782f7a722dd46b074b991cf08 (patch)
tree62008e350c4f6048a68444fe50c47281643d276a /build/algorithm.cxx
parent962cb1040670977085f0a187ecc6730608578151 (diff)
Redo rule match/build logic
Now the rule is fully responsible for searching, matching, and building of prerequisites.
Diffstat (limited to 'build/algorithm.cxx')
-rw-r--r--build/algorithm.cxx141
1 files changed, 115 insertions, 26 deletions
diff --git a/build/algorithm.cxx b/build/algorithm.cxx
index 9d1a6fa..5026782 100644
--- a/build/algorithm.cxx
+++ b/build/algorithm.cxx
@@ -13,6 +13,7 @@
#include <build/target>
#include <build/prerequisite>
#include <build/rule>
+#include <build/search>
#include <build/utility>
#include <build/diagnostics>
@@ -23,37 +24,17 @@ namespace build
target&
search (prerequisite& p)
{
- tracer trace ("search");
-
assert (p.target == nullptr);
- //@@ TODO for now we just default to the directory scope.
- //
- path d;
- if (p.dir.absolute ())
- d = p.dir; // Already normalized.
- else
- {
- d = p.scope.path () / p.dir;
- d.normalize ();
- }
-
- // Find or insert.
- //
- auto r (targets.insert (p.type, move (d), p.name, p.ext, trace));
-
- level4 ([&]{trace << (r.second ? "new" : "existing") << " target "
- << r.first << " for prerequsite " << p;});
+ if (target* t = p.type.search (p))
+ return *t;
- p.target = &r.first;
- return r.first;
+ return create_new_target (p);
}
- bool
- match (target& t)
+ void
+ match_impl (target& t)
{
- assert (!t.recipe ());
-
for (auto tt (&t.type ());
tt != nullptr && !t.recipe ();
tt = tt->base)
@@ -131,6 +112,14 @@ namespace build
if (!ambig)
{
+ auto g (
+ make_exception_guard (
+ [](target& t, const string& n)
+ {
+ info << "while selecting rule " << n << " for target " << t;
+ },
+ t, n));
+
t.recipe (ru.select (t, m));
break;
}
@@ -140,6 +129,106 @@ namespace build
}
}
- return bool (t.recipe ());
+ if (!t.recipe ())
+ fail << "no rule to update target " << t;
+ }
+
+ void
+ search_and_match (target& t)
+ {
+ for (prerequisite& p: t.prerequisites)
+ {
+ if (p.target == nullptr)
+ search (p);
+
+ match (*p.target);
+ }
+ }
+
+ target_state
+ update (target& t)
+ {
+ // Implementation with some multi-threading ideas in mind.
+ //
+ switch (target_state ts = t.state ())
+ {
+ case target_state::unknown:
+ {
+ t.state (target_state::failed); // So the rule can just throw.
+
+ auto g (
+ make_exception_guard (
+ [](target& t){info << "while updating target " << t;},
+ t));
+
+ ts = t.recipe () (t);
+ assert (ts != target_state::unknown && ts != target_state::failed);
+ t.state (ts);
+ return ts;
+ }
+ case target_state::uptodate:
+ case target_state::updated:
+ return ts;
+ case target_state::failed:
+ throw failed ();
+ }
+ }
+
+ target_state
+ update_prerequisites (target& t)
+ {
+ target_state ts (target_state::uptodate);
+
+ for (const prerequisite& p: t.prerequisites)
+ {
+ assert (p.target != nullptr);
+
+ if (update (*p.target) != target_state::uptodate)
+ ts = target_state::updated;
+ }
+
+ return ts;
+ }
+
+ bool
+ update_prerequisites (target& t, const timestamp& mt)
+ {
+ bool u (mt == timestamp_nonexistent);
+
+ for (const prerequisite& p: t.prerequisites)
+ {
+ assert (p.target != nullptr);
+ target& pt (*p.target);
+
+ target_state ts (update (pt));
+
+ if (!u)
+ {
+ // If this is an mtime-based target, then compare timestamps.
+ //
+ if (auto mpt = dynamic_cast<const mtime_target*> (&pt))
+ {
+ timestamp mp (mpt->mtime ());
+
+ // What do we do if timestamps are equal? This can happen, for
+ // example, on filesystems that don't have subsecond resolution.
+ // There is not much we can do here except detect the case where
+ // the prerequisite was updated in this run which means the
+ // target must be out of date.
+ //
+ if (mt < mp || mt == mp && ts == target_state::updated)
+ u = true;
+ }
+ else
+ {
+ // Otherwise we assume the prerequisite is newer if it was updated.
+ //
+ if (ts == target_state::updated)
+ u = true;
+ }
+ }
+ }
+
+ return u;
}
}