X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fbuilder.cpp;h=7135a8d97b1a42a4e6aa24860ade31c32fa4f9b4;hb=83d2a8a39e0a09733ffc666d7f885fc328b831f2;hp=286f53b049cf8284b770821b0098fe58a4f2c77c;hpb=3585dea6eabf5f1565886bf09c2bdb2eee978912;p=builder.git diff --git a/source/builder.cpp b/source/builder.cpp index 286f53b..7135a8d 100644 --- a/source/builder.cpp +++ b/source/builder.cpp @@ -1,12 +1,12 @@ /* $Id$ This file is part of builder -Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions +Copyright © 2006-2009 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ -#include #include +#include #include #include #include @@ -17,6 +17,7 @@ Distributed under the LGPL #include #include #include +#include #include #include #include @@ -34,13 +35,23 @@ Distributed under the LGPL #include "sharedlibrary.h" #include "sourcepackage.h" #include "systemlibrary.h" -#include "tarball.h" #include "unlink.h" #include "virtualtarget.h" using namespace std; using namespace Msp; +namespace { + +void update_hash(string &hash, const string &value) +{ + for(unsigned i=0; i ...]"; + helpmsg=getopt.generate_help(); getopt(argc, argv); if(!analyze_mode.empty()) @@ -123,7 +135,7 @@ Builder::Builder(int argc, char **argv): cmdline_targets.push_back("default"); if(!work_dir.empty()) - chdir(work_dir.c_str()); + FS::chdir(work_dir); cwd=FS::getcwd(); @@ -139,6 +151,7 @@ Builder::Builder(int argc, char **argv): native_arch->set_tool("LXX", "g++"); native_arch->set_tool("AR", "ar"); + load_build_file((FS::get_sys_data_dir(argv[0], "builder")/"builderrc").str()); load_build_file((FS::get_home_dir()/".builderrc").str()); if(arch.empty()) @@ -171,16 +184,148 @@ Builder::Builder(int argc, char **argv): pkg_path.push_back(cwd/".."); } -/** -Gets a package by name, possibly creating it. +Builder::~Builder() +{ + for(PackageMap::iterator i=packages.begin(); i!=packages.end(); ++i) + delete i->second; + for(TargetMap::iterator i=targets.begin(); i!=targets.end(); ++i) + delete i->second; + delete analyzer; +} -@param name Package name +int Builder::main() +{ + if(prefix.str()!="/usr") + { + FS::Path pcdir=prefix/"lib"/"pkgconfig"; + if(const char *pcp=getenv("PKG_CONFIG_PATH")) + { + vector path=split(pcp, ':'); + bool found=false; + for(vector::const_iterator i=path.begin(); (!found && i!=path.end()); ++i) + found=(*i==pcdir.str()); + if(!found) + { + path.push_back(pcdir.str()); + setenv("PKG_CONFIG_PATH", join(path.begin(), path.end(), ":").c_str(), true); + } + } + else + setenv("PKG_CONFIG_PATH", pcdir.str().c_str(), true); + } + + if(load_build_file(cwd/build_file)) + { + if(help) + { + usage(0, "builder", false); + return 0; + } + else + { + IO::print(IO::cerr, "No build info here.\n"); + return 1; + } + } + + main_pkg->configure(cmdline_options, conf_all?2:1); + + if(help) + { + usage(0, "builder", false); + IO::print("\n"); + package_help(); + return 0; + } + + if(!conf_only && create_targets()) + return 1; + + PackageList all_reqs=main_pkg->collect_requires(); + + if(conf_only) + return 0; + + if(verbose>=2) + IO::print("Building on %s, for %s\n", native_arch->get_name(), current_arch->get_name()); + if(verbose>=1) + IO::print("%d active packages, %d targets\n", all_reqs.size(), targets.size()); + if(verbose>=2) + { + for(PackageList::const_iterator i=all_reqs.begin(); i!=all_reqs.end(); ++i) + { + IO::print(" %s", (*i)->get_name()); + if(dynamic_cast(*i)) + IO::print("*"); + unsigned count=0; + unsigned ood_count=0; + for(TargetMap::iterator j=targets.begin(); j!=targets.end(); ++j) + if(j->second->get_package()==*i) + { + ++count; + if(j->second->get_rebuild()) + ++ood_count; + } + if(count) + { + IO::print(" (%d targets", count); + if(ood_count) + IO::print(", %d out-of-date", ood_count); + IO::print(")"); + } + IO::print("\n"); + } + } + + if(analyzer) + analyzer->analyze(); + + if(!problems.empty()) + { + IO::print(IO::cerr, "The following problems were detected:\n"); + for(ProblemList::iterator i=problems.begin(); i!=problems.end(); ++i) + IO::print(IO::cerr, " %s: %s\n", i->package, i->descr); + IO::print(IO::cerr, "Please fix them and try again.\n"); + return 1; + } + + if(clean) + exit_code=do_clean(); + else if(build) + exit_code=do_build(); + + return exit_code; +} + +string Builder::run_pkgconfig(const string &pkg, const string &what) +{ + list argv; + argv.push_back("pkg-config"); + if(what=="cflags" || what=="libs") + argv.push_back("--"+what); + else if(what=="flags") + { + argv.push_back("--cflags"); + argv.push_back("--libs"); + } + else + argv.push_back("--variable="+what); + argv.push_back(pkg); + + if(verbose>=4) + IO::print("Running %s\n", join(argv.begin(), argv.end())); + + int status; + string res=run_command(argv, &status); + if(status) + throw Exception(format("pkg-config for package %s failed", pkg)); + + return res; +} -@return Pointer to the package, or 0 if the package could not be located -*/ Package *Builder::get_package(const string &name) { - PackageMap::iterator i=packages.find(format("%s/%s", name, current_arch)); + PackageMap::iterator i=packages.find(format("%s/%s", name, current_arch->get_name())); if(i==packages.end()) i=packages.find(name); if(i!=packages.end()) @@ -194,38 +339,36 @@ Package *Builder::get_package(const string &name) return i->second; } - // Package source not found - create a binary package - Package *pkg=BinaryPackage::from_pkgconfig(*this, name); + Package *pkg=0; + try + { + // Package source not found - create a binary package + pkg=BinaryPackage::from_pkgconfig(*this, name); + } + catch(...) + { + problem(name, "not found"); + } packages.insert(PackageMap::value_type(name, pkg)); - if(!pkg) - problem(name, "not found"); - return pkg; } -/** -Returns the target with the given name, or 0 if no such target exists. -*/ Target *Builder::get_target(const string &n) const { + // XXX Used for getting targets by path. get_target(const FS::Path &)? TargetMap::const_iterator i=targets.find(n); if(i!=targets.end()) return i->second; return 0; } -/** -Tries to locate a header included from a given location and with a given include -path. Considers known targets as well as existing files. If a matching target -is not found but a file exists, a new SystemHeader target will be created and -returned. -*/ -Target *Builder::get_header(const string &include, const string &from, const list &path) +Target *Builder::get_header(const string &include, const FS::Path &from, const list &path) { string hash(8, 0); - update_hash(hash, from); + if(include[0]=='\"') + update_hash(hash, from.str()); for(list::const_iterator i=path.begin(); i!=path.end(); ++i) update_hash(hash, *i); @@ -238,7 +381,7 @@ Target *Builder::get_header(const string &include, const string &from, const lis if(cxx_ver.empty()) { StringList argv; - argv.push_back(get_current_arch().get_tool("CXX")); + argv.push_back(current_arch->get_tool("CXX")); argv.push_back("--version"); cxx_ver=Regex("[0-9]\\.[0-9.]+").match(run_command(argv))[0].str; while(!cxx_ver.empty() && !FS::is_dir(FS::Path("/usr/include/c++")/cxx_ver)) @@ -249,19 +392,19 @@ Target *Builder::get_header(const string &include, const string &from, const lis cxx_ver.erase(dot); } if(verbose>=5) - cout<<"C++ version is "<=5) - cout<<"Looking for include "<is_native()) syspath.push_back("/usr/include"); else syspath.push_back("/usr/"+current_arch->get_prefix()+"/include"); - syspath.push_back((FS::Path("/usr/include/c++/")/cxx_ver/fn).str()); + syspath.push_back((FS::Path("/usr/include/c++/")/cxx_ver).str()); Target *tgt=0; if(include[0]=='\"') @@ -276,17 +419,6 @@ Target *Builder::get_header(const string &include, const string &from, const lis return tgt; } -/** -Tries to locate a library with the given library path. Considers known targets -as well as existing files. If a matching target is not found but a file exists, -a new SystemLibrary target will be created and returned. - -@param lib Name of the library to get (without "lib" prefix or extension) -@param path List of paths to search for the library -@param mode Shared / static mode - -@return Some kind of library target, if a match was found -*/ Target *Builder::get_library(const string &lib, const list &path, LibMode mode) { string hash(8, 0); @@ -305,10 +437,10 @@ Target *Builder::get_library(const string &lib, const list &path, LibMod syspath.push_back("/usr/lib"); } else - syspath.push_back("/usr/"+get_current_arch().get_prefix()+"/lib"); + syspath.push_back("/usr/"+current_arch->get_prefix()+"/lib"); if(verbose>=5) - cout<<"Looking for library "<get_name(), t)); new_tgts.push_back(t); } -int Builder::main() -{ - if(load_build_file(cwd/build_file)) - { - cerr<<"No build info here.\n"; - return 1; - } - - main_pkg->configure(cmdline_options, conf_all?2:1); - - if(help) - { - usage(0, "builder", false); - cout<<'\n'; - package_help(); - return 0; - } - - if(!conf_only && create_targets()) - return 1; - - PackageList all_reqs=main_pkg->collect_requires(); - - if(conf_only) - return 0; - - if(verbose>=2) - cout<<"Building on "<get_name()<<", for "<get_name()<<'\n'; - if(verbose>=1) - cout<=2) - { - for(PackageList::const_iterator i=all_reqs.begin(); i!=all_reqs.end(); ++i) - { - cout<<' '<<(*i)->get_name(); - if(dynamic_cast(*i)) - cout<<'*'; - unsigned count=0; - unsigned ood_count=0; - for(TargetMap::iterator j=targets.begin(); j!=targets.end(); ++j) - if(j->second->get_package()==*i) - { - ++count; - if(j->second->get_rebuild()) - ++ood_count; - } - if(count) - { - cout<<" ("<analyze(); - - if(!problems.empty()) - { - cerr<<"The following problems were detected:\n"; - for(ProblemList::iterator i=problems.begin(); i!=problems.end(); ++i) - cerr<<" "<package<<": "<descr<<'\n'; - cerr<<"Please fix them and try again.\n"; - return 1; - } - - //if(create_makefile - - if(clean) - exit_code=do_clean(); - else if(build) - exit_code=do_build(); - - return exit_code; -} - -Builder::~Builder() -{ - for(PackageMap::iterator i=packages.begin(); i!=packages.end(); ++i) - delete i->second; - for(TargetMap::iterator i=targets.begin(); i!=targets.end(); ++i) - delete i->second; - delete analyzer; -} - void Builder::usage(const char *reason, const char *argv0, bool brief) { if(reason) - cerr< ...]\n"; + IO::print(IO::cerr, "Usage: %s\n", usagemsg); else { - cerr<< - "Usage: "< ...]\n" - "\n" - "Options:\n" - " -a, --analyze MODE Perform analysis. MODE can be deps, alldeps or rebuild.\n" - " -b, --build Perform build even if doing analysis.\n" - " -c, --clean Clean buildable targets.\n" - " -f, --file FILE Read info from FILE instead of Build.\n" - " -h, --help Print this message.\n" - " -j, --jobs NUM Run NUM commands at once, whenever possible.\n" - " -n, --dry-run Don't actually do anything, only show what would be done.\n" - " -v, --verbose Print more information about what's going on.\n" - " -A, --conf-all Apply configuration to all packages.\n" - " -B, --build-all Build all targets unconditionally.\n" - " -C, --chdir DIR Change to DIR before doing anything else.\n" - " -P, --progress Display progress while building.\n" - " -W, --what-if FILE Pretend that FILE has changed.\n" - " --arch ARCH Architecture to build for.\n" - " --conf-only Stop after configuring packages.\n" - " --full-paths Output full paths in analysis.\n" - //" --makefile Create a makefile for this package.\n" - " --max-depth NUM Maximum depth to show in analysis.\n" - " --prefix DIR Directory to install things to.\n" - " --warnings LIST Compiler warnings to use.\n"; + IO::print(IO::cerr, "Usage: %s [options] [ ...]\n\n", argv0); + IO::print(IO::cerr, "Options:\n"); + IO::print(IO::cerr, helpmsg); } } -/** -Determines the source directory of a package. pkg-config is consulted first, -and if it fails, the package path is searched for matches. -*/ FS::Path Builder::get_package_location(const string &name) { if(verbose>=3) - cout<<"Looking for package "< argv; - argv.push_back("pkg-config"); - argv.push_back("--variable=source"); - argv.push_back(name); - if(verbose>=4) - cout<<"Running "<=3) - cout<=3) - cout<<"Reading "<add_depend(new Install(*this, *spkg, *pc)); } - - tarballs->add_depend(new TarBall(*this, *spkg)); } // Find dependencies until no new targets are created @@ -618,7 +616,7 @@ int Builder::create_targets() Target *tgt=get_target((cwd/ *i).str()); if(!tgt) { - cerr<<"Unknown what-if target "<<*i<<'\n'; + IO::print(IO::cerr, "Unknown what-if target %s\n", *i); return -1; } tgt->touch(); @@ -634,7 +632,7 @@ int Builder::create_targets() tgt=get_target((cwd/ *i).str()); if(!tgt) { - cerr<<"I don't know anything about "<<*i<<'\n'; + IO::print("I don't know anything about %s\n", *i); return -1; } if(tgt==world) @@ -643,8 +641,10 @@ int Builder::create_targets() } /* If world is to be built, prepare cmdline. If not, add cmdline to world - and prepare world. I don't really like this, but it keeps the graph - acyclic. */ + and prepare world. I don't really like this, but it keeps the graph + acyclic. + + XXX Could we skip preparing targets we are not interested in? */ if(build_world) cmdline->prepare(); else @@ -660,11 +660,7 @@ int Builder::create_targets() return 0; } -/** -Check if a header exists, either as a target or a file. Either an existing -target or a new SystemHeader target will be returned. -*/ -Target *Builder::get_header(const Msp::FS::Path &fn) +Target *Builder::get_header(const FS::Path &fn) { Target *tgt=get_target(fn.str()); if(tgt) return tgt; @@ -707,8 +703,8 @@ Target *Builder::get_library(const string &lib, const FS::Path &path, LibMode mo if(tgt) { Target *real_tgt=tgt; - if(dynamic_cast(tgt)) - real_tgt=real_tgt->get_depends().front(); + if(Install *inst=dynamic_cast(tgt)) + real_tgt=&inst->get_source(); /* Ignore dynamic libraries from local packages unless library mode is DYNAMIC */ @@ -727,19 +723,6 @@ Target *Builder::get_library(const string &lib, const FS::Path &path, LibMode mo return 0; } -/** -Updates a hash with a string. This is used from get_header and get_library. -*/ -void Builder::update_hash(string &hash, const string &value) -{ - for(unsigned i=0; icount_rebuild(); if(!total) { - cout<<"Already up to date\n"; + IO::print("Already up to date\n"); return 0; } if(verbose>=1) - cout<<"Will build "< actions; @@ -772,10 +755,7 @@ int Builder::do_build() actions.push_back(action); if(show_progress) - { - cout<get_buildable() && (tgt->get_package()==main_pkg || clean>=2)) + if(tgt->is_buildable() && (tgt->get_package()==main_pkg || clean>=2)) clean_tgts.insert(tgt); const TargetList &deps=tgt->get_depends(); @@ -839,41 +815,43 @@ int Builder::do_clean() } for(set::iterator i=clean_tgts.begin(); i!=clean_tgts.end(); ++i) - { - Action *action=new Unlink(*this, **i); - while(action->check()<0) ; - delete action; - } + if(FileTarget *ft=dynamic_cast(*i)) + { + Action *action=new Unlink(*this, *ft); + while(action->check()<0) ; + delete action; + } return 0; } -/** -Prints out information about the default package. -*/ void Builder::package_help() { const Config &config=main_pkg->get_config(); const Config::OptionMap &options=config.get_options(); - cout<<"Required packages:\n "; + IO::print("Required packages:\n "); const PackageList &requires=main_pkg->get_requires(); for(PackageList::const_iterator i=requires.begin(); i!=requires.end(); ++i) { if(i!=requires.begin()) - cout<<", "; - cout<<(*i)->get_name(); + IO::print(", "); + IO::print((*i)->get_name()); } - cout<<"\n\n"; - cout<<"Package configuration:\n"; + IO::print("\n\nPackage configuration:\n"); for(Config::OptionMap::const_iterator i=options.begin(); i!=options.end(); ++i) { const Config::Option &opt=i->second; - cout<<" "< Builder::reg; +string Builder::usagemsg; +string Builder::helpmsg; Builder::Loader::Loader(Builder &b, const FS::Path &s):