aboutsummaryrefslogtreecommitdiff
path: root/build2/module.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-12-04 11:23:44 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-12-04 11:23:44 +0200
commit6d58efb0a5ca051bb205812edd130573bf3c39ce (patch)
tree3bc10055cfc9fee76d1b115979a0323c2e9798bf /build2/module.cxx
parent8240b1f8664195865ad69aabeb1375c2b7f2d364 (diff)
Suppress duplicate module init() calls for same scope
Diffstat (limited to 'build2/module.cxx')
-rw-r--r--build2/module.cxx46
1 files changed, 38 insertions, 8 deletions
diff --git a/build2/module.cxx b/build2/module.cxx
index f1e7dd3..7a35008 100644
--- a/build2/module.cxx
+++ b/build2/module.cxx
@@ -96,17 +96,47 @@ namespace build2
}
}
- bool l (i != lm.end ());
- bool c (l &&
- i->second.init (rs, bs, loc, i->second.module, f, opt, hints));
-
- auto& vp (var_pool.rw (rs));
-
// Note: pattern-typed in context.cxx:reset() as project-visibility
// variables of type bool.
//
- bs.assign (vp.insert (name + ".loaded")) = l;
- bs.assign (vp.insert (name + ".configured")) = c;
+ auto& vp (var_pool.rw (rs));
+ value& lv (bs.assign (vp.insert (name + ".loaded")));
+ value& cv (bs.assign (vp.insert (name + ".configured")));
+
+ bool l; // Loaded.
+ bool c; // Configured.
+
+ // Suppress duplicate init() calls for the same module in the same scope.
+ //
+ if (!lv.null)
+ {
+ assert (!cv.null);
+
+ l = cast<bool> (lv);
+ c = cast<bool> (cv);
+
+ if (!opt)
+ {
+ if (!l)
+ fail (loc) << "unknown module " << name;
+
+ // We don't have original diagnostics. We could call init() again so
+ // that it can issue it. But that means optional modules must be
+ // prepared to be called again if configuring failed. Let's keep it
+ // simple for now.
+ //
+ if (!c)
+ fail (loc) << "module " << name << " failed to configure";
+ }
+ }
+ else
+ {
+ l = i != lm.end ();
+ c = l && i->second.init (rs, bs, loc, i->second.module, f, opt, hints);
+
+ lv = l;
+ cv = c;
+ }
return l && c;
}