// file : build/algorithm.cxx -*- C++ -*- // copyright : Copyright (c) 2014-2015 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file #include #include // unique_ptr #include // size_t #include // move #include #include #include #include #include #include #include #include #include #include using namespace std; namespace build { target& search (const prerequisite_key& pk) { if (target* t = pk.tk.type->search (pk)) return *t; return create_new_target (pk); } void match_impl (action a, target& t) { // Clear the resolved targets list before calling match(). The rule // is free to, say, resize() this list in match() (provided that it // matches) in order to, for example, prepare it for apply(). // t.prerequisite_targets.clear (); for (auto tt (&t.type ()); tt != nullptr && !t.recipe (a); tt = tt->base) { auto i (current_rules->find (tt->id)); if (i == current_rules->end () || i->second.empty ()) continue; // No rules registered for this target type, try base. const auto& rules (i->second); // Hint map. // @@ TODO // // Different rules can be used for different operations (update // vs test is a good example). So, at some point, we will probably // have to support a list of hints or even an operation-hint map // (e.g., 'hint=cxx test=foo' if cxx supports the test operation // but we want the foo rule instead). This is also the place where // the '{build clean}=cxx' construct (which we currently do not // support) can come handy. // // Also, ignore the hint (that is most likely ment for a different // operation) if this is a unique match. // string hint; auto rs (rules.size () == 1 ? make_pair (rules.begin (), rules.end ()) : rules.find_prefix (hint)); for (auto i (rs.first); i != rs.second; ++i) { const string& n (i->first); const rule& ru (i->second); void* m (nullptr); { auto g ( make_exception_guard ( [](action a, target& t, const string& n) { info << "while matching rule " << n << " to " << diag_do (a, t); }, a, t, n)); m = ru.match (a, t, hint); } if (m != nullptr) { // Do the ambiguity test. // bool ambig (false); diag_record dr; for (++i; i != rs.second; ++i) { const string& n1 (i->first); const rule& ru1 (i->second); void* m1; { auto g ( make_exception_guard ( [](action a, target& t, const string& n1) { info << "while matching rule " << n1 << " to " << diag_do (a, t); }, a, t, n1)); m1 = ru1.match (a, t, hint); } if (m1 != nullptr) { if (!ambig) { dr << fail << "multiple rules matching " << diag_doing (a, t) << info << "rule " << n << " matches"; ambig = true; } dr << info << "rule " << n1 << " also matches"; } } if (!ambig) { auto g ( make_exception_guard ( [](action a, target& t, const string& n) { info << "while applying rule " << n << " to " << diag_do (a, t); }, a, t, n)); t.recipe (a, ru.apply (a, t, m)); break; } else dr << info << "use rule hint to disambiguate this match"; } } } if (!t.recipe (a)) fail << "no rule to " << diag_do (a, t); } void search_and_match (action a, target& t) { group_prerequisites gp (t); t.prerequisite_targets.resize (gp.size ()); size_t i (0); for (prerequisite& p: gp) { target& pt (search (p)); match (a, pt); t.prerequisite_targets[i++] = &pt; } } void search_and_match (action a, target& t, const dir_path& d) { for (prerequisite& p: group_prerequisites (t)) { target& pt (search (p)); if (pt.dir.sub (d)) { match (a, pt); t.prerequisite_targets.push_back (&pt); } } } void inject_parent_fsdir (action a, target& t) { tracer trace ("inject_parent_fsdir"); scope& s (t.base_scope ()); scope* rs (s.root_scope ()); if (rs == nullptr) // Could be outside any project. return; const dir_path& out_root (rs->path ()); // If t is a directory (name is empty), say foo/bar/, then // t is bar and its parent directory is foo/. // const dir_path& d (t.name.empty () ? t.dir.directory () : t.dir); if (!d.sub (out_root) || d == out_root) return; prerequisite& p ( s.prerequisites.insert ( fsdir::static_type, d, string (), nullptr, s, trace).first); // This function is normally called from match() which means // it can be called several times if we are performing several // operations (e.g., clean update). Since it is a fairly common // pattern to add this prerequisite at the end, do a quick check // if the last prerequisite is already what we are about to add. // if (!t.prerequisites.empty () && &t.prerequisites.back ().get () == &p) return; level5 ([&]{trace << "injecting prerequisite for " << t;}); t.prerequisites.emplace_back (p); } target_state execute_impl (action a, target& t) { // Implementation with some multi-threading ideas in mind. // switch (target_state ts = t.state) { case target_state::unknown: case target_state::postponed: { t.state = target_state::failed; // So the rule can just throw. auto g ( make_exception_guard ( [](action a, target& t){info << "while " << diag_doing (a, t);}, a, t)); ts = t.recipe (a) (a, t); assert (ts != target_state::unknown && ts != target_state::failed); // The recipe may have set the target's state manually. // if (t.state == target_state::failed) t.state = ts; return ts; } case target_state::unchanged: case target_state::changed: // Should have been handled by inline execute(). assert (false); case target_state::failed: break; } throw failed (); } target_state execute_prerequisites (action a, target& t) { target_state ts (target_state::unchanged); for (target* pt: t.prerequisite_targets) { if (pt == nullptr) // Skipped. continue; if (execute (a, *pt) == target_state::changed) ts = target_state::changed; } return ts; } target_state reverse_execute_prerequisites (action a, target& t) { target_state ts (target_state::unchanged); for (target* pt: reverse_iterate (t.prerequisite_targets)) { if (pt == nullptr) // Skipped. continue; if (execute (a, *pt) == target_state::changed) ts = target_state::changed; } return ts; } bool execute_prerequisites (action a, target& t, const timestamp& mt) { bool e (mt == timestamp_nonexistent); for (target* pt: t.prerequisite_targets) { if (pt == nullptr) // Skipped. continue; target_state ts (execute (a, *pt)); if (!e) { // If this is an mtime-based target, then compare timestamps. // if (auto mpt = dynamic_cast (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 changed in this run which means the // action must be executed on the target as well. // if (mt < mp || (mt == mp && ts == target_state::changed)) e = true; } else { // Otherwise we assume the prerequisite is newer if it was changed. // if (ts == target_state::changed) e = true; } } } return e; } target_state noop_action (action, target&) { assert (false); // We shouldn't be called, see target::recipe(). return target_state::unchanged; } target_state default_action (action a, target& t) { return current_mode == execution_mode::first ? execute_prerequisites (a, t) : reverse_execute_prerequisites (a, t); } target_state perform_clean (action a, target& t) { // The reverse order of update: first delete the file, then clean // prerequisites. // file& ft (dynamic_cast (t)); bool r (rmfile (ft.path (), ft)); // Update timestamp in case there are operations after us that // could use the information. // ft.mtime (timestamp_nonexistent); // Clean prerequisites. // target_state ts (reverse_execute_prerequisites (a, t)); return r ? target_state::changed : ts; } }