X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcomponent.cpp;h=6272321b56b702b3b730c9ccca53618efab08078;hb=654de39b62a9a58fd8e1b5a557361d628345788b;hp=bab7ba1e264a3e80e6ebfba74133e2c3fd7a843f;hpb=4dc31cca056ea293d320928f61fef0558089d32d;p=builder.git diff --git a/source/component.cpp b/source/component.cpp index bab7ba1..6272321 100644 --- a/source/component.cpp +++ b/source/component.cpp @@ -1,23 +1,227 @@ +/* $Id$ + +This file is part of builder +Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + +#include +#include +#include +#include "builder.h" #include "component.h" -#include "package.h" +#include "header.h" +#include "install.h" +#include "objectfile.h" +#include "sharedlibrary.h" +#include "sourcepackage.h" +#include "staticlibrary.h" +#include "target.h" using namespace std; +using namespace Msp; -Component::Component(Package &p, Type t, const string &n): +Component::Component(SourcePackage &p, Type t, const string &n): pkg(p), type(t), - name(n) + name(n), + install(false), + module_host(0), + modular(false), + deflt(true) { } +/** +Tries to resolve all references to packages. +*/ +void Component::resolve_refs() +{ + for(PkgRefList::iterator i=requires.begin(); i!=requires.end(); ++i) + i->resolve(); +} + +/** +Prepares the build information for building. +*/ +void Component::create_build_info() +{ + build_info.add(pkg.get_build_info()); + + for(PkgRefList::iterator i=requires.begin(); i!=requires.end(); ++i) + { + if(!i->get_package()) + continue; + //i->get_package()->create_build_info(); + build_info.add(i->get_package()->get_exported_binfo()); + } + + if(type==PROGRAM) + { + string strip=pkg.get_config().get_option("strip").value; + if(lexical_cast(strip)) + build_info.ldflags.push_back("-s"); + } + + if(modular) + { + build_info.ldflags.push_back("-rdynamic"); + build_info.libs.push_back("dl"); + } + 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()); + } + + build_info.unique(); +} + +/** +Creates all targets needed for building this component. +*/ +void Component::create_targets() const +{ + Builder &builder=pkg.get_builder(); + Target *world=builder.get_target("world"); + Target *def_tgt=builder.get_target("default"); + + PathList files=collect_source_files(); + + bool build_exe=(type!=HEADERS); + + list objs; + list inst_tgts; + for(PathList::const_iterator i=files.begin(); i!=files.end(); ++i) + { + string basename=(*i)[-1]; + string ext=Path::splitext(basename).ext; + if((ext==".cpp" || ext==".c") && build_exe) + { + SourceFile *src=new SourceFile(builder, this, i->str()); + + // Compile sources + ObjectFile *obj=new ObjectFile(builder, *this, *src); + objs.push_back(obj); + } + else if(ext==".h") + { + Target *hdr=builder.get_target(i->str()); + if(!hdr) + hdr=new Header(builder, this, i->str()); + + // Install headers if requested + if(!install_headers.empty()) + inst_tgts.push_back(hdr); + } + } + + if(build_exe) + { + Executable *exe=0; + StaticLibrary *slib=0; + if(type==LIBRARY) + { + exe=new SharedLibrary(builder, *this, objs); + slib=new StaticLibrary(builder, *this, objs); + } + else + exe=new Executable(builder, *this, objs); + + if(&pkg==builder.get_default_package() && deflt) + { + def_tgt->add_depend(exe); + if(slib) def_tgt->add_depend(slib); + } + else + { + world->add_depend(exe); + if(slib) world->add_depend(slib); + } + + if(install) + { + inst_tgts.push_back(exe); + if(slib) + inst_tgts.push_back(slib); + } + } + + Target *inst_tgt=builder.get_target("install"); + for(TargetList::const_iterator i=inst_tgts.begin(); i!=inst_tgts.end(); ++i) + inst_tgt->add_depend(new Install(builder, pkg, **i)); +} + +/** +Collects all files belonging to the component. +*/ +PathList Component::collect_source_files() const +{ + PathList files; + for(PathList::const_iterator i=sources.begin(); i!=sources.end(); ++i) + { + struct stat st; + stat(*i, st); + if(S_ISDIR(st.st_mode)) + { + list sfiles=list_files(*i); + for(list::iterator j=sfiles.begin(); j!=sfiles.end(); ++j) + files.push_back(*i / *j); + } + else + files.push_back(*i); + } + + return files; +} + + Component::Loader::Loader(Component &c): comp(c) { add("source", &Loader::source); add("install", &Component::install); add("install_headers", &Component::install_headers); + add("build_info", &Loader::build_info); + add("require", &Loader::require); + add("modular", &Loader::modular); + add("host", &Loader::host); + add("default", &Component::deflt); } void Component::Loader::source(const string &s) { - comp.source=comp.pkg.get_source()/s; + comp.sources.push_back(comp.pkg.get_source()/s); +} + +void Component::Loader::require(const string &n) +{ + comp.requires.push_back(PackageRef(comp.pkg.get_builder(), n)); +} + +void Component::Loader::modular() +{ + if(comp.type!=PROGRAM) + throw Msp::Exception("Only programs can be modular"); + comp.modular=true; +} + +void Component::Loader::host(const string &n) +{ + const ComponentList &comps=comp.pkg.get_components(); + for(ComponentList::const_iterator i=comps.begin(); i!=comps.end(); ++i) + if(i->get_name()==n) + { + if(i->get_type()!=PROGRAM || !i->get_modular()) + throw Msp::Exception("Module host must be a modular program"); + comp.module_host=&*i; + return; + } + + throw Msp::Exception("Unknown component"); +} + +void Component::Loader::build_info() +{ + load_sub(comp.build_info); }