X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fsourcepackage.cpp;h=ddfa00fb9bf3175eb59a7391b2e16cd38555370b;hb=02097e6a1ddbffbc2217005c3c2ebba528f5248f;hp=dbb759205fe0eef45f3b0b1ded50cfe5ba80a077;hpb=c9a64955c551ad341f07505262d0e6ff9fb93a2c;p=builder.git diff --git a/source/sourcepackage.cpp b/source/sourcepackage.cpp index dbb7592..ddfa00f 100644 --- a/source/sourcepackage.cpp +++ b/source/sourcepackage.cpp @@ -4,6 +4,7 @@ #include #include #include "binarypackage.h" +#include "booleanevaluator.h" #include "builder.h" #include "file.h" #include "pkgconfigfile.h" @@ -63,25 +64,13 @@ FS::Path SourcePackage::get_output_directory() const return source_dir/arch.get_name(); } -bool SourcePackage::match_feature(const string &cond) const +bool SourcePackage::match_feature(const string &feat, const string *comp) const { - string::size_type equals = cond.find('='); - if(equals!=string::npos) - { - if(equals==0) - throw invalid_argument("SourcePackage::match_feature"); - bool negate = cond[equals-1]=='!'; - string feat = cond.substr(0, equals-negate); - string value = config.get_option("with_"+feat).value; - return (value==cond.substr(equals+1))!=negate; - } + string value = config.get_option("with_"+feat).value; + if(comp) + return value==*comp; else - { - bool negate = (cond[0]=='!'); - string feat = cond.substr(negate); - string value = config.get_option("with_"+feat).value; - return lexical_cast(value)!=negate; - } + return lexical_cast(value); } void SourcePackage::set_build_type(const BuildType &t) @@ -229,7 +218,8 @@ void SourcePackage::Loader::generate(const string &tag) void SourcePackage::Loader::if_feature(const string &cond) { - bool match = obj.match_feature(cond); + BooleanEvaluator eval(sigc::mem_fun(&obj, &SourcePackage::match_feature)); + bool match = eval.evaluate(cond); obj.builder.get_logger().log("configure", format("%s: feature %s %smatched", obj.name, cond, (match ? "" : "not "))); if(match) load_sub_with(*this);