From 137df0bea6cebabe5278e67e5dad6f3047c762fb Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 2 Apr 2015 15:44:49 +0200 Subject: Handle "nothing to be done" case for disfigure --- build/algorithm.cxx | 2 +- build/config/operation.cxx | 48 ++++++++++++++++++++++++++++++++++------------ build/context | 23 +++++++++++++++++----- build/context.cxx | 2 +- build/context.txx | 4 ++-- build/cxx/module.cxx | 2 +- 6 files changed, 59 insertions(+), 22 deletions(-) (limited to 'build') diff --git a/build/algorithm.cxx b/build/algorithm.cxx index d649210..87e2259 100644 --- a/build/algorithm.cxx +++ b/build/algorithm.cxx @@ -328,7 +328,7 @@ namespace build // file& ft (dynamic_cast (t)); - bool r (rmfile (ft.path (), ft) == rmfile_status::success); + bool r (rmfile (ft.path (), ft)); // Update timestamp in case there are operations after us that // could use the information. diff --git a/build/config/operation.cxx b/build/config/operation.cxx index 3269f9d..6886752 100644 --- a/build/config/operation.cxx +++ b/build/config/operation.cxx @@ -112,12 +112,12 @@ namespace build const list_value& lv (dynamic_cast (*pval)); ofs << var.name << " = " << lv.data << endl; - text << var.name << " = " << lv.data; + //text << var.name << " = " << lv.data; } else { ofs << var.name << " =" << endl; // @@ TODO: [undefined] - text << var.name << " = [undefined]"; + //text << var.name << " = [undefined]"; } } } @@ -230,6 +230,8 @@ namespace build const path& out_root (root.path ()); const path& src_root (root.src_path ()); + bool m (false); // Keep track of whether we actually did anything. + // We distinguish between a complete disfigure and operation- // specific. // @@ -237,27 +239,49 @@ namespace build { level4 ([&]{trace << "completely disfiguring " << out_root;}); - rmfile (out_root / config_file); + m = rmfile (out_root / config_file) || m; if (out_root != src_root) { - rmfile (out_root / src_root_file); + m = rmfile (out_root / src_root_file) || m; // Clean up the directories. // - rmdir (out_root / bootstrap_dir); - rmdir (out_root / build_dir); - - if (rmdir (out_root) == rmdir_status::not_empty) - warn << "directory " << out_root.string () << " is " - << (out_root == work - ? "current working directory" - : "not empty") << ", not removing"; + m = rmdir (out_root / bootstrap_dir) || m; + m = rmdir (out_root / build_dir) || m; + + switch (rmdir (out_root)) + { + case rmdir_status::not_empty: + { + warn << "directory " << out_root.string () << " is " + << (out_root == work + ? "current working directory" + : "not empty") << ", not removing"; + break; + } + case rmdir_status::success: + m = true; + default: + break; + } } } else { } + + if (!m) + { + // Create a dir{$out_root/} target to signify the project's + // root in diagnostics. Not very clean but seems harmless. + // + target& t ( + targets.insert ( + dir::static_type, out_root, "", nullptr, trace).first); + + info << diag_already_done (a, t); + } } } diff --git a/build/context b/build/context index 723f9f9..8ebce26 100644 --- a/build/context +++ b/build/context @@ -32,12 +32,25 @@ namespace build void reset (); + // The dual interface wrapper for the {mk,rm}{file,dir}() functions + // below that allows you to use it as a true/false return or a more + // detailed enum from + // + template + struct fs_status + { + T v; + fs_status (T v): v (v) {}; + operator T () const {return v;} + explicit operator bool () const {return v == T::success;} + }; + // Create the directory and print the standard diagnostics. Note that // this implementation is not suitable if it is expected that the // directory will exist in the majority of case and performance is // important. See the fsdir{} rule for details. // - mkdir_status + fs_status mkdir (const path&); // Remove the file and print the standard diagnostics. The second @@ -46,19 +59,19 @@ namespace build // being printed. // template - rmfile_status + fs_status rmfile (const path&, const T& target); - inline rmfile_status + inline fs_status rmfile (const path& f) {return rmfile (f, f);} // Similar to rmfile() but for directories. // template - rmdir_status + fs_status rmdir (const path&, const T& target); - inline rmdir_status + inline fs_status rmdir (const path& d) {return rmdir (d, d);} // Return the src/out directory corresponding to the given out/src. The diff --git a/build/context.cxx b/build/context.cxx index 69b10d7..a0952ec 100644 --- a/build/context.cxx +++ b/build/context.cxx @@ -42,7 +42,7 @@ namespace build global_scope->variables["home"] = home; } - mkdir_status + fs_status mkdir (const path& d) { // We don't want to print the command if the directory already diff --git a/build/context.txx b/build/context.txx index cae1ce8..53081b1 100644 --- a/build/context.txx +++ b/build/context.txx @@ -9,7 +9,7 @@ namespace build { template - rmfile_status + fs_status rmfile (const path& f, const T& t) { // We don't want to print the command if we couldn't remove the @@ -45,7 +45,7 @@ namespace build } template - rmdir_status + fs_status rmdir (const path& d, const T& t) { bool w (d == work); // Don't try to remove working directory. diff --git a/build/cxx/module.cxx b/build/cxx/module.cxx index 1179ce3..04b1ae5 100644 --- a/build/cxx/module.cxx +++ b/build/cxx/module.cxx @@ -92,7 +92,7 @@ namespace build throw failed (); } - text << "toolchain version " << ver; + //text << "toolchain version " << ver; // Set on the project root. // -- cgit v1.1