aboutsummaryrefslogtreecommitdiff
path: root/build2/install
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-08-03 16:35:17 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-08-03 16:35:17 +0200
commit073838d6f0d7846dc537bf1d0308392a79320f06 (patch)
tree006f56f52c502f9179898e1a25e21b6a673d76cd /build2/install
parent5f010bb45851d335136369e70f71903c394e9a48 (diff)
Add support for preserving subdirectories when installing
This is handy, for example, when installing headers: install.include = $install.include/foo install.include.subdirs = true The base for calculating the subdirectories is the scope where the subdirs value is set.
Diffstat (limited to 'build2/install')
-rw-r--r--build2/install/module.cxx4
-rw-r--r--build2/install/rule.cxx40
2 files changed, 36 insertions, 8 deletions
diff --git a/build2/install/module.cxx b/build2/install/module.cxx
index 89b8a96..ad2af6c 100644
--- a/build2/install/module.cxx
+++ b/build2/install/module.cxx
@@ -95,6 +95,10 @@ namespace build2
set_var<string> (s, r, n, ".sudo", (string*) (nullptr));
set_var<path> (s, r, n, ".cmd", c.empty () ? nullptr : &c);
set_var<strings> (s, r, n, ".options", (strings*) (nullptr));
+
+ // This one doesn't have config.* value (only set in a buildfile).
+ //
+ var_pool.insert<bool> (string ("install.") + n + ".subdirs");
}
static alias_rule alias_;
diff --git a/build2/install/rule.cxx b/build2/install/rule.cxx
index 298aa1a..165b43d 100644
--- a/build2/install/rule.cxx
+++ b/build2/install/rule.cxx
@@ -367,7 +367,7 @@ namespace build2
// creating leading directories as necessary.
//
static install_dir
- resolve (scope& s, dir_path d, const string* var = nullptr)
+ resolve (target& t, dir_path d, const string* var = nullptr)
{
install_dir r;
@@ -383,9 +383,9 @@ namespace build2
//
const string& sn (*d.begin ());
const string var ("install." + sn);
- if (const dir_path* dn = lookup (s, var))
+ if (const dir_path* dn = lookup (t.base_scope (), var))
{
- r = resolve (s, *dn, &var);
+ r = resolve (t, *dn, &var);
d = r.dir / dir_path (++d.begin (), d.end ());
r.dir = move (d.normalize ());
@@ -401,11 +401,34 @@ namespace build2
//
if (var != nullptr)
{
+ scope& s (t.base_scope ());
+
if (auto l = s[*var + ".sudo"]) r.sudo = cast<string> (l);
if (auto l = s[*var + ".cmd"]) r.cmd = cast<path> (l);
if (auto l = s[*var + ".mode"]) r.mode = cast<string> (l);
if (auto l = s[*var + ".dir_mode"]) r.dir_mode = cast<string> (l);
if (auto l = s[*var + ".options"]) r.options = cast<strings> (l);
+
+ if (auto l = s[*var + ".subdirs"])
+ {
+ if (cast<bool> (l))
+ {
+ // Find the scope from which this value came and use as a base
+ // to calculate the subdirectory.
+ //
+ for (const scope* p (&s); p != nullptr; p = p->parent_scope ())
+ {
+ if (l.belongs (*p)) // Ok since no target/type in lookup.
+ {
+ // The target can be in out or src.
+ //
+ r.dir /= (t.out.empty () ? t.dir : t.out).leaf (
+ p->out_path ());
+ break;
+ }
+ }
+ }
+ }
}
// Set defaults for unspecified components.
@@ -417,7 +440,10 @@ namespace build2
// If the directory still doesn't exist, then this means it was
// specified as absolute (it will normally be install.root with
// everything else defined in term of it). We used to fail in this
- // case but that proved to be just too anal. So now we just create it.
+ // case but that proved to be just too anal. So now we create it.
+ //
+ // Also, with the .subdirs logic we may end up with a non-existent
+ // subdirectory.
//
if (!dir_exists (r.dir)) // May throw (e.g., EACCES).
// fail << "installation directory " << d << " does not exist";
@@ -438,13 +464,11 @@ namespace build2
file& t (static_cast<file&> (xt));
assert (!t.path ().empty ()); // Should have been assigned by update.
- scope& bs (t.base_scope ());
-
- auto install_target = [&bs](file& t, const dir_path& d, bool verbose)
+ auto install_target = [](file& t, const dir_path& d, bool verbose)
{
// Resolve and, if necessary, create target directory.
//
- install_dir id (resolve (bs, d));
+ install_dir id (resolve (t, d));
// Override mode if one was specified.
//