3 #include <msp/core/getopt.h>
4 #include <msp/datafile/parser.h>
5 #include <msp/fs/dir.h>
6 #include <msp/fs/stat.h>
7 #include <msp/fs/utils.h>
8 #include <msp/io/buffered.h>
9 #include <msp/io/file.h>
10 #include <msp/io/print.h>
11 #include <msp/strings/format.h>
12 #include <msp/strings/regex.h>
13 #include <msp/strings/utils.h>
14 #include <msp/time/units.h>
15 #include <msp/time/utils.h>
17 #include "binarypackage.h"
20 #include "gnuarchiver.h"
21 #include "gnuccompiler.h"
22 #include "gnucxxcompiler.h"
23 #include "gnulinker.h"
24 #include "installedfile.h"
26 #include "pkgconfiggenerator.h"
27 #include "sharedlibrary.h"
28 #include "sourcepackage.h"
31 #include "virtualtarget.h"
36 Builder::Builder(int argc, char **argv):
37 package_manager(*this),
39 native_arch(*this, string()),
52 create_makefile(false)
56 bool full_paths = false;
57 unsigned max_depth = 5;
58 StringList cmdline_warn;
61 bool no_externals = false;
64 list<string> log_channels;
67 getopt.add_option('a', "analyze", analyze_mode, GetOpt::REQUIRED_ARG).set_help("Perform analysis. MODE can be deps, alldeps or rebuild.", "MODE");
68 getopt.add_option('b', "build", build, GetOpt::NO_ARG).set_help("Perform build even if doing analysis.");
69 getopt.add_option('c', "clean", clean, GetOpt::NO_ARG).set_help("Clean buildable targets.");
70 getopt.add_option('f', "file", build_file, GetOpt::REQUIRED_ARG).set_help("Read info from FILE instead of Build.", "FILE");
71 getopt.add_option('h', "help", help, GetOpt::NO_ARG).set_help("Print this message.");
72 getopt.add_option('j', "jobs", jobs, GetOpt::REQUIRED_ARG).set_help("Run NUM commands at once, whenever possible.", "NUM");
73 getopt.add_option('l', "log", log_channels, GetOpt::REQUIRED_ARG).set_help("Set log channels to be displayed.", "LIST");
74 getopt.add_option('n', "dry-run", dry_run, GetOpt::NO_ARG).set_help("Don't actually do anything, only show what would be done.");
75 getopt.add_option('s', "silent", silent, GetOpt::NO_ARG).set_help("Don't print any messages other than errors.");
76 getopt.add_option('v', "verbose", verbose, GetOpt::NO_ARG).set_help("Print more information about what's going on.");
77 getopt.add_option('x', "no-externals", no_externals, GetOpt::NO_ARG).set_help("Do not load external source packages.");
78 getopt.add_option('A', "conf-all", conf_all, GetOpt::NO_ARG).set_help("Apply configuration to all packages.");
79 getopt.add_option('B', "build-all", build_all, GetOpt::NO_ARG).set_help("Build all targets unconditionally.");
80 getopt.add_option('C', "chdir", work_dir, GetOpt::REQUIRED_ARG).set_help("Change to DIR before doing anything else.", "DIR");
81 getopt.add_option('P', "progress", show_progress, GetOpt::NO_ARG).set_help("Display progress while building.");
82 getopt.add_option('W', "what-if", what_if, GetOpt::REQUIRED_ARG).set_help("Pretend that FILE has changed.", "FILE");
83 getopt.add_option( "arch", arch, GetOpt::REQUIRED_ARG).set_help("Architecture to build for.", "ARCH");
84 getopt.add_option( "conf-only", conf_only, GetOpt::NO_ARG).set_help("Stop after configuring packages.");
85 getopt.add_option( "full-paths", full_paths, GetOpt::NO_ARG).set_help("Output full paths in analysis.");
86 getopt.add_option( "max-depth", max_depth, GetOpt::REQUIRED_ARG).set_help("Maximum depth to show in analysis.", "NUM");
87 getopt.add_option( "prefix", prfx, GetOpt::REQUIRED_ARG).set_help("Directory to install things to.", "DIR");
88 getopt.add_option( "warnings", cmdline_warn, GetOpt::REQUIRED_ARG).set_help("Compiler warnings to use.", "LIST");
89 usagemsg = getopt.generate_usage(argv[0])+" [<target> ...]";
90 helpmsg = getopt.generate_help();
97 logger.enable_channel("summary");
98 logger.enable_channel("tasks");
102 logger.enable_channel("packages");
103 logger.enable_channel("commands");
107 logger.enable_channel("packagemgr");
108 logger.enable_channel("configure");
112 logger.enable_channel("files");
113 logger.enable_channel("auxcommands");
117 logger.enable_channel("tools");
118 logger.enable_channel("vfs");
120 for(list<string>::const_iterator i=log_channels.begin(); i!=log_channels.end(); ++i)
122 vector<string> parts = split(*i, ',');
123 for(vector<string>::const_iterator j=parts.begin(); j!=parts.end(); ++j)
124 logger.enable_channel(*j);
127 if(!analyze_mode.empty())
129 analyzer = new Analyzer(*this);
131 if(analyze_mode=="deps")
132 analyzer->set_mode(Analyzer::DEPS);
133 else if(analyze_mode=="alldeps")
134 analyzer->set_mode(Analyzer::ALLDEPS);
135 else if(analyze_mode=="rebuild")
136 analyzer->set_mode(Analyzer::REBUILD);
137 else if(analyze_mode=="rdeps")
138 analyzer->set_mode(Analyzer::RDEPS);
140 throw usage_error("Invalid analyze mode");
142 analyzer->set_max_depth(max_depth);
143 analyzer->set_full_paths(full_paths);
145 else if(!clean && !create_makefile)
148 const vector<string> &args = getopt.get_args();
149 for(vector<string>::const_iterator i=args.begin(); i!=args.end(); ++i)
151 string::size_type equal = i->find('=');
152 if(equal!=string::npos)
153 cmdline_options.insert(StringMap::value_type(i->substr(0, equal), i->substr(equal+1)));
155 cmdline_targets.push_back(*i);
158 if(cmdline_targets.empty())
159 cmdline_targets.push_back("default");
161 if(!work_dir.empty())
166 package_manager.set_no_externals(no_externals);
168 load_build_file((FS::get_sys_data_dir(argv[0], "builder")/"builderrc").str());
169 load_build_file((FS::get_user_data_dir("builder")/"rc").str());
172 current_arch = &native_arch;
174 current_arch = new Architecture(*this, arch);
176 if(!current_arch->is_native())
178 for(StringMap::const_iterator i=cross_prefixes.begin(); i!=cross_prefixes.end(); ++i)
179 if(current_arch->match_name(i->first))
181 current_arch->set_cross_prefix(i->second);
186 toolchain.add_tool(new GnuCCompiler(*this));
187 toolchain.add_tool(new GnuCxxCompiler(*this));
188 toolchain.add_tool(new GnuLinker(*this));
189 toolchain.add_tool(new GnuArchiver(*this));
190 toolchain.add_tool(new Copy(*this));
191 toolchain.add_tool(new Tar(*this));
192 toolchain.add_tool(new PkgConfigGenerator(*this));
196 if(current_arch->is_native())
197 prefix = (FS::get_home_dir()/"local").str();
199 prefix = (FS::get_home_dir()/"local"/current_arch->get_name()).str();
202 prefix = FS::getcwd()/prfx;
204 warnings.push_back("all");
205 warnings.push_back("extra");
206 warnings.push_back("shadow");
207 warnings.push_back("pointer-arith");
208 warnings.push_back("error");
209 for(StringList::iterator i=cmdline_warn.begin(); i!=cmdline_warn.end(); ++i)
211 vector<string> warns = split(*i, ',');
212 warnings.insert(warnings.end(), warns.begin(), warns.end());
218 for(TargetMap::iterator i=targets.begin(); i!=targets.end(); ++i)
225 if(prefix.str()!="/usr")
227 FS::Path pcdir = prefix/"lib"/"pkgconfig";
228 if(const char *pcp = getenv("PKG_CONFIG_PATH"))
230 vector<string> path = split(pcp, ':');
232 for(vector<string>::const_iterator i=path.begin(); (!found && i!=path.end()); ++i)
233 found = (*i==pcdir.str());
236 path.push_back(pcdir.str());
237 setenv("PKG_CONFIG_PATH", join(path.begin(), path.end(), ":").c_str(), true);
241 setenv("PKG_CONFIG_PATH", pcdir.str().c_str(), true);
244 if(load_build_file(cwd/build_file))
248 usage(0, "builder", false);
253 IO::print(IO::cerr, "No build info here.\n");
258 main_pkg->configure(cmdline_options, conf_all?2:1);
262 usage(0, "builder", false);
274 logger.log("environment", format("Building on %s, for %s%s", native_arch.get_name(),
275 current_arch->get_name(), (current_arch->is_native() ? " (native)" : "")));
276 logger.log("environment", format("Prefix is %s", prefix));
278 const PackageManager::PackageMap &packages = package_manager.get_packages();
279 list<string> package_details;
280 for(PackageManager::PackageMap::const_iterator i=packages.begin(); i!=packages.end(); ++i)
282 if(!i->second || !i->second->is_configured())
285 string line = i->second->get_name();
286 if(dynamic_cast<SourcePackage *>(i->second))
291 unsigned to_be_built = 0;
292 for(TargetMap::iterator j=targets.begin(); j!=targets.end(); ++j)
293 if(j->second->get_package()==i->second)
296 if(j->second->needs_rebuild())
301 line += format(" (%d targets", count);
303 line += format(", %d to be built", to_be_built);
308 package_details.push_back(line);
311 logger.log("summary", format("%d active packages, %d targets", package_details.size(), targets.size()));
312 for(list<string>::const_iterator i=package_details.begin(); i!=package_details.end(); ++i)
313 logger.log("packages", *i);
318 if(!problems.empty())
320 IO::print(IO::cerr, "The following problems were detected:\n");
321 for(ProblemList::iterator i=problems.begin(); i!=problems.end(); ++i)
322 IO::print(IO::cerr, " %s: %s\n", i->package, i->descr);
324 IO::print(IO::cerr, "Please fix them and try again.\n");
329 exit_code = do_clean();
331 exit_code = do_build();
336 Target *Builder::get_target(const string &n) const
338 TargetMap::const_iterator i = targets.find(n);
344 void Builder::apply_profile_template(Config &config, const string &pt) const
346 vector<string> parts = split(pt, '-');
348 for(vector<string>::iterator i=parts.begin(); i!=parts.end(); ++i)
350 ProfileTemplateMap::const_iterator j = profile_tmpl.find(*i);
351 if(j==profile_tmpl.end())
354 config.update(j->second);
358 void Builder::problem(const string &p, const string &d)
360 problems.push_back(Problem(p, d));
363 void Builder::add_target(Target *t)
365 targets.insert(TargetMap::value_type(t->get_name(), t));
368 void Builder::usage(const char *reason, const char *argv0, bool brief)
371 IO::print(IO::cerr, "%s\n", reason);
374 IO::print(IO::cerr, "Usage: %s\n", usagemsg);
377 IO::print(IO::cerr, "Builder 1.0\n\n");
378 IO::print(IO::cerr, "Usage: %s [options] [<target> ...]\n\n", argv0);
379 IO::print(IO::cerr, "Options:\n");
380 IO::print(IO::cerr, helpmsg);
384 int Builder::load_build_file(const FS::Path &fn)
389 IO::BufferedFile in(fn.str());
391 logger.log("files", format("Reading %s", fn));
393 DataFile::Parser parser(in, fn.str());
394 Loader loader(*this, fn.subpath(0, fn.size()-1));
400 int Builder::create_targets()
402 Target *world = new VirtualTarget(*this, "world");
404 Target *def_tgt = new VirtualTarget(*this, "default");
405 world->add_depend(def_tgt);
407 Target *install = new VirtualTarget(*this, "install");
408 world->add_depend(install);
410 Target *tarballs = new VirtualTarget(*this, "tarballs");
411 world->add_depend(tarballs);
413 const PackageManager::PackageMap &packages = package_manager.get_packages();
414 for(PackageManager::PackageMap::const_iterator i=packages.begin(); i!=packages.end(); ++i)
415 if(i->second && i->second->is_configured())
416 i->second->create_targets();
418 // Make the cmdline target depend on all targets mentioned on the command line
419 Target *cmdline = new VirtualTarget(*this, "cmdline");
420 for(list<string>::iterator i=cmdline_targets.begin(); i!=cmdline_targets.end(); ++i)
422 Target *tgt = get_target(*i);
424 tgt = vfs.get_target(*i);
426 tgt = vfs.get_target(cwd/ *i);
429 IO::print("I don't know anything about %s\n", *i);
433 cmdline->add_depend(tgt);
439 for(StringList::iterator i=what_if.begin(); i!=what_if.end(); ++i)
441 FileTarget *tgt = vfs.get_target(cwd/ *i);
444 IO::print(IO::cerr, "Unknown what-if target %s\n", *i);
452 for(TargetMap::iterator i=targets.begin(); i!=targets.end(); ++i)
453 if(i->second->is_buildable() && !i->second->needs_rebuild())
454 i->second->force_rebuild();
457 for(PackageManager::PackageMap::const_iterator i=packages.begin(); i!=packages.end(); ++i)
458 if(SourcePackage *spkg = dynamic_cast<SourcePackage *>(i->second))
459 spkg->get_deps_cache().save();
464 int Builder::do_build()
466 Target *cmdline = get_target("cmdline");
469 for(map<string, Target *>::const_iterator i=targets.begin(); i!=targets.end(); ++i)
470 if(i->second->is_buildable() && i->second->needs_rebuild())
475 logger.log("summary", "Already up to date");
478 logger.log("summary", format("Will build %d target%s", total, (total!=1 ? "s" : "")));
480 vector<Task *> tasks;
489 if(tasks.size()<jobs && !fail)
491 Target *tgt = cmdline->get_buildable_target();
495 logger.log("tasks", format("%-4s %s", tgt->get_tool()->get_tag(), tgt->get_name()));
496 Task *task = tgt->build();
499 logger.log("commands", format("%s", task->get_command()));
502 task->signal_finished.emit(true);
508 tasks.push_back(task);
513 IO::print("%d of %d target%s built\033[1G", count, total, (total!=1 ? "s" : ""));
515 else if(tasks.empty())
519 Time::sleep(10*Time::msec);
521 for(unsigned i=0; i<tasks.size();)
523 Task::Status status = tasks[i]->check();
524 if(status!=Task::RUNNING)
529 tasks.erase(tasks.begin()+i);
530 if(status==Task::ERROR)
532 if(tasks.empty() && fail)
543 logger.log("summary", "Build failed");
544 else if(show_progress)
545 logger.log("summary", "Build complete");
550 int Builder::do_clean()
552 // Cleaning doesn't care about ordering, so a simpler method can be used
554 set<Target *> clean_tgts;
555 list<Target *> queue;
556 queue.push_back(get_target("cmdline"));
558 while(!queue.empty())
560 Target *tgt = queue.front();
561 queue.erase(queue.begin());
563 if(tgt->is_buildable() && (tgt->get_package()==main_pkg || clean>=2))
564 clean_tgts.insert(tgt);
566 const Target::Dependencies &deps = tgt->get_depends();
567 for(list<Target *>::const_iterator i=deps.begin(); i!=deps.end(); ++i)
568 if(!clean_tgts.count(*i))
572 for(set<Target *>::iterator i=clean_tgts.begin(); i!=clean_tgts.end(); ++i)
573 if(FileTarget *ft = dynamic_cast<FileTarget *>(*i))
575 FS::unlink(ft->get_path());
580 void Builder::package_help()
582 const Config &config = main_pkg->get_config();
583 const Config::OptionMap &options = config.get_options();
585 IO::print("Required packages:\n ");
586 const PackageList &requires = main_pkg->get_requires();
587 for(PackageList::const_iterator i=requires.begin(); i!=requires.end(); ++i)
589 if(i!=requires.begin())
591 IO::print((*i)->get_name());
593 IO::print("\n\nPackage configuration:\n");
594 for(Config::OptionMap::const_iterator i=options.begin(); i!=options.end(); ++i)
596 const Config::Option &opt = i->second;
597 IO::print(" %s: %s (%s)", opt.name, opt.descr, opt.value);
598 if(opt.value!=opt.defv)
599 IO::print(" [%s]", opt.defv);
604 string Builder::usagemsg;
605 string Builder::helpmsg;
608 Builder::Loader::Loader(Builder &b, const FS::Path &s):
612 add("binary_package", &Loader::binpkg);
613 add("cross_prefix", &Loader::cross_prefix);
614 add("profile", &Loader::profile);
615 add("package", &Loader::package);
618 void Builder::Loader::binpkg(const string &n)
620 BinaryPackage *pkg = new BinaryPackage(bld, n);
624 void Builder::Loader::cross_prefix(const string &a, const string &p)
626 bld.cross_prefixes[a] = p;
629 void Builder::Loader::profile(const string &n)
632 ProfileLoader ldr(prf);
634 bld.profile_tmpl.insert(ProfileTemplateMap::value_type(n, prf));
637 void Builder::Loader::package(const string &n)
639 SourcePackage *pkg = new SourcePackage(bld, n, src);
647 Builder::ProfileLoader::ProfileLoader(StringMap &p):
650 add("option", &ProfileLoader::option);
653 void Builder::ProfileLoader::option(const string &o, const string &v)
655 profile.insert(StringMap::value_type(o, v));