From 8d7926359d2477a9928d7367678314bcbc1f6e81 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Wed, 19 Jan 2011 14:14:33 +0000 Subject: [PATCH] Move variable expansion from Config to SourcePackage Allow variables to be used in component sources --- source/component.cpp | 28 ++++++++++++++------- source/component.h | 6 +++-- source/config.cpp | 46 ++-------------------------------- source/sourcepackage.cpp | 53 +++++++++++++++++++++++++++++++++++----- source/sourcepackage.h | 1 + 5 files changed, 73 insertions(+), 61 deletions(-) diff --git a/source/component.cpp b/source/component.cpp index c440e4c..04c9d17 100644 --- a/source/component.cpp +++ b/source/component.cpp @@ -40,6 +40,15 @@ Component::Component(SourcePackage &p, Type t, const string &n): deflt(true) { } +void Component::configure(const StringMap &opts, unsigned flag) +{ + for(StringList::iterator i=sources.begin(); i!=sources.end(); ++i) + *i = (pkg.get_source()/pkg.expand_string(*i)).str(); + + for(PackageList::const_iterator i=requires.begin(); i!=requires.end(); ++i) + (*i)->configure(opts, flag&2); +} + void Component::create_build_info() { const PackageList &pkg_reqs = pkg.get_requires(); @@ -99,9 +108,9 @@ void Component::create_build_info() } else if(module_host) { - const PathList &host_src = module_host->get_sources(); - for(PathList::const_iterator i=host_src.begin(); i!=host_src.end(); ++i) - build_info.incpath.push_back(i->str()); + const StringList &host_src = module_host->get_sources(); + for(StringList::const_iterator i=host_src.begin(); i!=host_src.end(); ++i) + build_info.incpath.push_back(*i); } build_info.unique(); @@ -245,16 +254,17 @@ void Component::create_targets() const PathList Component::collect_source_files() const { PathList files; - for(PathList::const_iterator i=sources.begin(); i!=sources.end(); ++i) + for(StringList::const_iterator i=sources.begin(); i!=sources.end(); ++i) { - if(FS::is_dir(*i)) + FS::Path path(*i); + if(FS::is_dir(path)) { - list sfiles = list_files(*i); + list sfiles = list_files(path); for(list::iterator j=sfiles.begin(); j!=sfiles.end(); ++j) - files.push_back(*i / *j); + files.push_back(path / *j); } else - files.push_back(*i); + files.push_back(path); } return files; @@ -287,7 +297,7 @@ void Component::Loader::finish() void Component::Loader::source(const string &s) { - comp.sources.push_back(comp.pkg.get_source()/s); + comp.sources.push_back(s); } void Component::Loader::require(const string &n) diff --git a/source/component.h b/source/component.h index 3a358ce..d83cc6e 100644 --- a/source/component.h +++ b/source/component.h @@ -60,7 +60,7 @@ protected: SourcePackage &pkg; Type type; std::string name; - PathList sources; + StringList sources; bool install; const Component *module_host; bool modular; @@ -73,13 +73,15 @@ public: const SourcePackage &get_package() const { return pkg; } Type get_type() const { return type; } const std::string &get_name() const { return name; } - const PathList &get_sources() const { return sources; } + const StringList &get_sources() const { return sources; } const BuildInfo &get_build_info() const { return build_info; } bool get_install() const { return install; } bool is_modular() const { return modular; } const PackageList &get_requires() const { return requires; } bool is_default() const { return deflt; } + void configure(const StringMap &, unsigned); + /** Prepares the build information for building. Pulls build info from the parent and dependency packages, and adds any component-specific flags. */ void create_build_info(); diff --git a/source/config.cpp b/source/config.cpp index 4ec969a..dd5cda1 100644 --- a/source/config.cpp +++ b/source/config.cpp @@ -5,7 +5,6 @@ Copyright © 2006-2009 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ -#include #include #include #include @@ -97,49 +96,8 @@ bool Config::update(const StringMap &opts) void Config::finish() { - for(unsigned n=0; n<20; ++n) - { - bool changed = false; - for(OptionMap::iterator i=options.begin(); i!=options.end(); ++i) - { - Option &opt = i->second; - string::size_type dollar = 0; - while((dollar = opt.value.find('$', dollar))!=string::npos) - { - string::size_type end; - string var; - if(opt.value[dollar+1]=='{') - { - end = opt.value.find('}', dollar+2); - if(end==string::npos) - throw Exception("Unterminated variable reference"); - var = opt.value.substr(dollar+2, end-dollar-2); - ++end; - } - else - { - for(end=dollar+1; (isalnum(opt.value[end]) && opt.value[end]!='_'); ++end) ; - var = opt.value.substr(dollar+1, end-dollar-1); - } - - string value; - if(is_option(var)) - value = get_option(var).value; - else if(var=="arch") - value = package.get_builder().get_current_arch().get_name(); - else if(const char *ptr = getenv(var.c_str())) - value = ptr; - - opt.value.replace(dollar, end-dollar, value); - - dollar += value.size(); - changed = true; - } - } - - if(!changed) - break; - } + for(OptionMap::iterator i=options.begin(); i!=options.end(); ++i) + i->second.value = package.expand_string(i->second.value); } void Config::save() const diff --git a/source/sourcepackage.cpp b/source/sourcepackage.cpp index e946d01..a466089 100644 --- a/source/sourcepackage.cpp +++ b/source/sourcepackage.cpp @@ -5,6 +5,7 @@ Copyright © 2007-2010 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ +#include #include #include #include @@ -78,6 +79,50 @@ LibMode SourcePackage::get_library_mode() const throw Exception("Unknown library mode"); } +string SourcePackage::expand_string(const string &str) const +{ + string result = str; + string::size_type dollar = 0; + unsigned n = 0; + while((dollar = result.find('$'))!=string::npos) + { + if(n>1000) + throw Exception("Too much variable expansions"); + + string::size_type end; + string var; + if(dollar+1get_requires(); - for(PackageList::const_iterator j=reqs.begin(); j!=reqs.end(); ++j) - (*j)->configure(opts, flag&2); - } + i->configure(opts, flag); } void SourcePackage::init_config() @@ -274,5 +315,5 @@ void SourcePackage::Loader::tar_file(const string &f) SourcePackage &spkg = static_cast(pkg); for(ComponentList::iterator i=spkg.components.begin(); i!=spkg.components.end(); ++i) if(i->get_type()==Component::TARBALL && i->get_name()=="@src") - const_cast(i->get_sources()).push_back(spkg.source/f); + const_cast(i->get_sources()).push_back((spkg.source/f).str()); } diff --git a/source/sourcepackage.h b/source/sourcepackage.h index e170399..5218592 100644 --- a/source/sourcepackage.h +++ b/source/sourcepackage.h @@ -81,6 +81,7 @@ public: LibMode get_library_mode() const; DependencyCache &get_deps_cache() const { return deps_cache; } + std::string expand_string(const std::string &) const; private: virtual void do_configure(const StringMap &, unsigned); -- 2.43.0