diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2023-04-10 14:28:23 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2023-04-10 14:28:23 +0200 |
commit | 1308eb0d740a687161641d52dabad8c0f849db08 (patch) | |
tree | d44ae8e001db5c54f0b619616d04efe2706a207e /libbuild2/install/utility.cxx | |
parent | 74d42005e25e4a3c8356d44010b82a206b8aa7e6 (diff) |
Add support for negation in config.install.filter
Diffstat (limited to 'libbuild2/install/utility.cxx')
-rw-r--r-- | libbuild2/install/utility.cxx | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/libbuild2/install/utility.cxx b/libbuild2/install/utility.cxx index c8e1699..c8b6a92 100644 --- a/libbuild2/install/utility.cxx +++ b/libbuild2/install/utility.cxx @@ -57,10 +57,21 @@ namespace build2 // If redoing all this work for every entry proves too slow, we can // consider some form of caching (e.g., on the per-project basis). // + auto i (fs->begin ()); + + bool negate (false); + if (i->first == "!") + { + negate = true; + ++i; + } + size_t limit (0); // See below. - for (const pair<string, string>& kv: *fs) + for (auto e (fs->end ()); i != e; ++i) { + const pair<string, optional<string>>& kv (*i); + path k; try { @@ -77,7 +88,7 @@ namespace build2 bool v; { - const string& s (kv.second); + const string& s (kv.second ? *kv.second : string ()); size_t p (s.find (',')); @@ -269,13 +280,16 @@ namespace build2 } } + if (negate) + v = !v; + l4 ([&]{trace << (base / leaf) << (v ? " included by " : " excluded by ") - << kv.first << '@' << kv.second;}); + << kv.first << '@' << *kv.second;}); return v; } - return true; + return !negate; } } } |