X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fsourcepackage.cpp;h=bb9999476d0041f3529aacc44b7a3a60b3d8b960;hb=HEAD;hp=8c535e72192d8dd8dae16b5989f70b3faa4367f6;hpb=b45cfe5e437ca79bb3176618769628c58c0734d1;p=builder.git diff --git a/source/sourcepackage.cpp b/source/sourcepackage.cpp deleted file mode 100644 index 8c535e7..0000000 --- a/source/sourcepackage.cpp +++ /dev/null @@ -1,283 +0,0 @@ -#include -#include -#include -#include -#include -#include -#include -#include "androidapplicationcomponent.h" -#include "binarycomponent.h" -#include "binarypackage.h" -#include "builder.h" -#include "compilecommandsjson.h" -#include "datapackcomponent.h" -#include "file.h" -#include "installcomponent.h" -#include "pkgconfigfile.h" -#include "sourcearchivecomponent.h" -#include "sourcegenerator.h" -#include "sourcepackage.h" -#include "tool.h" -#include "vcxprojectfile.h" -#include "vssolutionfile.h" - -using namespace std; -using namespace Msp; - -SourcePackage::SourcePackage(Builder &b, const string &n, const FS::Path &f): - Package(b, n), - source_dir(FS::dirname(f)), - build_type(0), - config(*this), - cache(*this) -{ - config.load(); - - build_file = builder.get_vfs().get_target(f); - if(!build_file) - build_file = new File(builder, *this, f); - source_archive = new SourceArchiveComponent(*this); - components.push_back(source_archive); -} - -SourcePackage::~SourcePackage() -{ - for(Component *c: components) - delete c; -} - -FS::Path SourcePackage::get_temp_directory() const -{ - string subdir = builder.get_current_arch().get_name(); - if(build_type) - { - subdir += '.'; - subdir += build_type->get_name(); - } - - const FS::Path &temp = builder.get_temp_directory(); - if(temp.is_absolute()) - return temp/name/subdir; - else - return source_dir/temp/subdir; -} - -FS::Path SourcePackage::get_output_directory() const -{ - const Architecture &arch = builder.get_current_arch(); - if(arch.is_native()) - return source_dir; - else - return source_dir/arch.get_name(); -} - -const Component &SourcePackage::get_component(const string &n) const -{ - auto i = find_if(components, [&n](const Component *c){ return c->get_name()==n; }); - if(i!=components.end()) - return **i; - throw key_error(n); -} - -bool SourcePackage::match_feature(const string &feat, const string *comp) const -{ - string value = config.get_option("with_"+feat).value; - if(comp) - return value==*comp; - else - return lexical_cast(value); -} - -void SourcePackage::set_build_type(const BuildType &t) -{ - build_type = &t; -} - -void SourcePackage::do_prepare() -{ - BuildInfo final_build_info; - - if(build_type) - final_build_info.update_from(build_type->get_build_info()); - - final_build_info.update_from(build_info); - build_info = final_build_info; - - build_info.incpath.push_back((builder.get_prefix()/"include").str()); - build_info.libpath.push_back((builder.get_prefix()/"lib").str()); - - for(const Feature &f: features) - { - string ident = "WITH_"+toupper(f.name); - string value = config.get_option("with_"+f.name).value; - - if(f.choices.empty()) - { - if(!lexical_cast(value)) - continue; - value = "1"; - } - - build_info.defines[ident] = value; - if(f.exported) - export_binfo.defines[ident] = value; - } - - for(Component *c: components) - { - c->prepare(); - c->create_build_info(); - - c->update_exported_build_info(export_binfo); - } - - cache.load(); - - for(Component *c: components) - c->create_targets(); - - const Architecture &arch = builder.get_native_arch(); - if(!export_binfo.libs.empty()) - { - export_binfo.incpath.push_back((builder.get_prefix()/"include").str()); - export_binfo.libpath.push_back((builder.get_prefix()/"lib").str()); - - if(arch.get_system()=="linux") - { - PkgConfigFile *pc = new PkgConfigFile(builder, *this); - builder.get_build_graph().get_target("install")->add_dependency(*builder.get_toolchain().get_tool("CP").create_target(*pc)); - } - } - - export_binfo.standards = build_info.standards; - - if(arch.get_system()=="windows") - { - new VcxProjectFile(builder, *this); - new VsSolutionFile(builder, *this); - } - - new CompileCommandsJson(builder, *this); -} - -void SourcePackage::save_caches() -{ - config.save(); - cache.save(); -} - - -SourcePackage::Loader::Loader(SourcePackage &p): - DataFile::DerivedObjectLoader(p), - FeatureConditional(p, p.name) -{ - init(0); -} - -SourcePackage::Loader::Loader(SourcePackage &p, const Config::InputOptions &o): - DataFile::DerivedObjectLoader(p), - FeatureConditional(p, p.name) -{ - init(&o); -} - -void SourcePackage::Loader::init(const Config::InputOptions *o) -{ - options = o; - add("android_application", &Loader::component); - add("build_info", &Loader::build_info); - add("datapack", &Loader::component); - add("description", &SourcePackage::description); - add("feature", &Loader::feature); - add("generate", &Loader::generate); - add("install", &Loader::component); - add("interface_version", &Loader::interface_version); - add("library", &Loader::component_arg); - add("module", &Loader::component_arg); - add("program", &Loader::component_arg); - add("source_archive", &Loader::source_archive); - add("source_tarball", &Loader::source_archive); - add("tarball", &Loader::tarball); - add("version", &Loader::version); -} - -void SourcePackage::Loader::finish() -{ - /* Make sure the source tarball is last in the list so targets from all - other components wil be created first */ - ComponentList::iterator i = find(obj.components, obj.source_archive); - if(i!=obj.components.end()) - obj.components.splice(obj.components.end(), obj.components, i); -} - -void SourcePackage::Loader::feature(const string &n, const string &d) -{ - Feature feat(n); - feat.description = d; - load_sub(feat); - obj.features.push_back(feat); - - const Config::Option &opt = obj.config.add_option(feat); - if(options) - { - Config::InputOptions::const_iterator i = options->find(opt.name); - if(i!=options->end()) - obj.config.set_option(opt.name, i->second); - } -} - -template -void SourcePackage::Loader::component(const string &n) -{ - C *comp = new C(obj, n); - load_sub(*comp); - obj.components.push_back(comp); -} - -template -void SourcePackage::Loader::component_arg(const string &n) -{ - C *comp = new C(obj, n, a); - load_sub(*comp); - obj.components.push_back(comp); -} - -void SourcePackage::Loader::build_info() -{ - load_sub(obj.build_info); -} - -void SourcePackage::Loader::generate(const string &tag) -{ - SourceGenerator *gen = new SourceGenerator(obj.builder, obj, tag); - load_sub(*gen); - obj.local_tools.add_tool(gen); -} - -void SourcePackage::Loader::interface_version(const string &v) -{ - obj.interface_version = v; - if(obj.version.empty()) - obj.version = v; -} - -void SourcePackage::Loader::source_archive() -{ - load_sub(*obj.source_archive); -} - -void SourcePackage::Loader::tarball(const string &) -{ - IO::print("%s: Deprecated tarball component ignored\n", get_source()); -} - -void SourcePackage::Loader::version(const string &v) -{ - obj.version = v; - - string::size_type i = 0; - for(unsigned dots=0; i=2) - break; - obj.interface_version = obj.version.substr(0, i); -}