]> git.tdb.fi Git - builder.git/blob - source/builder.cpp
Move to a more abstract way of defining warnings
[builder.git] / source / builder.cpp
1 #include <set>
2 #include <msp/core/getopt.h>
3 #include <msp/datafile/parser.h>
4 #include <msp/fs/dir.h>
5 #include <msp/fs/stat.h>
6 #include <msp/fs/utils.h>
7 #include <msp/io/buffered.h>
8 #include <msp/io/file.h>
9 #include <msp/io/print.h>
10 #include <msp/strings/format.h>
11 #include <msp/strings/regex.h>
12 #include <msp/strings/utils.h>
13 #include <msp/time/units.h>
14 #include <msp/time/utils.h>
15 #include "analyzer.h"
16 #include "binarypackage.h"
17 #include "builder.h"
18 #include "copy.h"
19 #include "gnuarchiver.h"
20 #include "gnuccompiler.h"
21 #include "gnucxxcompiler.h"
22 #include "gnulinker.h"
23 #include "installedfile.h"
24 #include "package.h"
25 #include "pkgconfiggenerator.h"
26 #include "sharedlibrary.h"
27 #include "sourcepackage.h"
28 #include "tar.h"
29 #include "task.h"
30 #include "virtualtarget.h"
31
32 using namespace std;
33 using namespace Msp;
34
35 Builder::Builder(int argc, char **argv):
36         package_manager(*this),
37         main_pkg(0),
38         native_arch(*this, string()),
39         build_type(0),
40         vfs(*this),
41         analyzer(0),
42         build(false),
43         clean(0),
44         dry_run(false),
45         help(false),
46         show_progress(false),
47         build_file("Build"),
48         jobs(1),
49         conf_all(false),
50         conf_only(false),
51         build_all(false),
52         create_makefile(false),
53         tempdir("temp")
54 {
55         string analyze_mode;
56         string work_dir;
57         bool full_paths = false;
58         unsigned max_depth = 5;
59         StringList cmdline_warn;
60         string prfx;
61         string temp_str;
62         string arch;
63         bool no_externals = false;
64         unsigned verbose = 1;
65         bool silent = false;
66         list<string> log_channels;
67         string build_type_name;
68
69         GetOpt getopt;
70         getopt.add_option('a', "analyze",    analyze_mode,  GetOpt::REQUIRED_ARG).set_help("Perform analysis.  MODE can be deps, alldeps or rebuild.", "MODE");
71         getopt.add_option('b', "build",      build,         GetOpt::NO_ARG).set_help("Perform build even if doing analysis.");
72         getopt.add_option('c', "clean",      clean,         GetOpt::NO_ARG).set_help("Clean buildable targets.");
73         getopt.add_option('f', "file",       build_file,    GetOpt::REQUIRED_ARG).set_help("Read info from FILE instead of Build.", "FILE");
74         getopt.add_option('h', "help",       help,          GetOpt::NO_ARG).set_help("Print this message.");
75         getopt.add_option('j', "jobs",       jobs,          GetOpt::REQUIRED_ARG).set_help("Run NUM commands at once, whenever possible.", "NUM");
76         getopt.add_option('l', "log",        log_channels,  GetOpt::REQUIRED_ARG).set_help("Set log channels to be displayed.", "LIST");
77         getopt.add_option('n', "dry-run",    dry_run,       GetOpt::NO_ARG).set_help("Don't actually do anything, only show what would be done.");
78         getopt.add_option('s', "silent",     silent,        GetOpt::NO_ARG).set_help("Don't print any messages other than errors.");
79         getopt.add_option('t', "build-type", build_type_name, GetOpt::REQUIRED_ARG).set_help("Set build type.", "TYPE");
80         getopt.add_option('v', "verbose",    verbose,       GetOpt::NO_ARG).set_help("Print more information about what's going on.");
81         getopt.add_option('x', "no-externals",  no_externals, GetOpt::NO_ARG).set_help("Do not load external source packages.");
82         getopt.add_option('A', "conf-all",   conf_all,      GetOpt::NO_ARG).set_help("Apply configuration to all packages.");
83         getopt.add_option('B', "build-all",  build_all,     GetOpt::NO_ARG).set_help("Build all targets unconditionally.");
84         getopt.add_option('C', "chdir",      work_dir,      GetOpt::REQUIRED_ARG).set_help("Change to DIR before doing anything else.", "DIR");
85         getopt.add_option('P', "progress",   show_progress, GetOpt::NO_ARG).set_help("Display progress while building.");
86         getopt.add_option('W', "what-if",    what_if,       GetOpt::REQUIRED_ARG).set_help("Pretend that FILE has changed.", "FILE");
87         getopt.add_option(     "arch",       arch,          GetOpt::REQUIRED_ARG).set_help("Build for architecture ARCH.", "ARCH");
88         getopt.add_option(     "conf-only",  conf_only,     GetOpt::NO_ARG).set_help("Stop after configuring packages.");
89         getopt.add_option(     "full-paths", full_paths,    GetOpt::NO_ARG).set_help("Output full paths in analysis.");
90         getopt.add_option(     "max-depth",  max_depth,     GetOpt::REQUIRED_ARG).set_help("Show up to NUM levels in analysis..", "NUM");
91         getopt.add_option(     "prefix",     prfx,          GetOpt::REQUIRED_ARG).set_help("Install things to DIR.", "DIR");
92         getopt.add_option(     "tempdir",    temp_str,      GetOpt::REQUIRED_ARG).set_help("Store temporary files in DIR.", "DIR");
93         usagemsg = getopt.generate_usage(argv[0])+" [<target> ...]";
94         helpmsg = getopt.generate_help();
95         getopt(argc, argv);
96
97         if(silent)
98                 --verbose;
99         if(verbose>=1)
100         {
101                 logger.enable_channel("summary");
102                 logger.enable_channel("tasks");
103         }
104         if(verbose>=2)
105         {
106                 logger.enable_channel("environment");
107                 logger.enable_channel("packages");
108                 logger.enable_channel("commands");
109         }
110         if(verbose>=3)
111         {
112                 logger.enable_channel("packagemgr");
113                 logger.enable_channel("configure");
114         }
115         if(verbose>=4)
116         {
117                 logger.enable_channel("files");
118                 logger.enable_channel("auxcommands");
119         }
120         if(verbose>=5)
121         {
122                 logger.enable_channel("tools");
123                 logger.enable_channel("vfs");
124         }
125         for(list<string>::const_iterator i=log_channels.begin(); i!=log_channels.end(); ++i)
126         {
127                 vector<string> parts = split(*i, ',');
128                 for(vector<string>::const_iterator j=parts.begin(); j!=parts.end(); ++j)
129                         logger.enable_channel(*j);
130         }
131
132         if(!analyze_mode.empty())
133         {
134                 analyzer = new Analyzer(*this);
135
136                 if(analyze_mode=="deps")
137                         analyzer->set_mode(Analyzer::DEPS);
138                 else if(analyze_mode=="alldeps")
139                         analyzer->set_mode(Analyzer::ALLDEPS);
140                 else if(analyze_mode=="rebuild")
141                         analyzer->set_mode(Analyzer::REBUILD);
142                 else if(analyze_mode=="rdeps")
143                         analyzer->set_mode(Analyzer::RDEPS);
144                 else
145                         throw usage_error("Invalid analyze mode");
146
147                 analyzer->set_max_depth(max_depth);
148                 analyzer->set_full_paths(full_paths);
149         }
150         else if(!clean && !create_makefile)
151                 build = true;
152
153         const vector<string> &args = getopt.get_args();
154         for(vector<string>::const_iterator i=args.begin(); i!=args.end(); ++i)
155         {
156                 string::size_type equal = i->find('=');
157                 if(equal!=string::npos)
158                         cmdline_options.insert(StringMap::value_type(i->substr(0, equal), i->substr(equal+1)));
159                 else
160                         cmdline_targets.push_back(*i);
161         }
162
163         if(cmdline_targets.empty())
164                 cmdline_targets.push_back("default");
165
166         if(!work_dir.empty())
167                 FS::chdir(work_dir);
168
169         cwd = FS::getcwd();
170
171         package_manager.set_no_externals(no_externals);
172
173         if(arch.empty())
174                 current_arch = &native_arch;
175         else
176                 current_arch = new Architecture(*this, arch);
177
178         load_build_file((FS::get_sys_data_dir(argv[0], "builder")/"builderrc").str());
179         load_build_file((FS::get_user_data_dir("builder")/"rc").str());
180
181         if(prfx.empty())
182         {
183                 if(current_arch->is_native())
184                         prefix = (FS::get_home_dir()/"local").str();
185                 else
186                         prefix = (FS::get_home_dir()/"local"/current_arch->get_name()).str();
187         }
188         else
189                 prefix = cwd/prfx;
190
191         if(!temp_str.empty())
192                 tempdir = temp_str;
193
194         if(!build_type_name.empty())
195         {
196                 BuildTypeMap::iterator i = build_types.find(build_type_name);
197                 if(i==build_types.end())
198                         throw usage_error("Unknown build type");
199                 build_type = &i->second;
200         }
201
202         toolchain.add_tool(new GnuCCompiler(*this, *current_arch));
203         toolchain.add_tool(new GnuCxxCompiler(*this, *current_arch));
204         toolchain.add_tool(new GnuLinker(*this, *current_arch));
205         toolchain.add_tool(new GnuArchiver(*this, *current_arch));
206         toolchain.add_tool(new Copy(*this));
207         toolchain.add_tool(new Tar(*this));
208         toolchain.add_tool(new PkgConfigGenerator(*this));
209 }
210
211 Builder::~Builder()
212 {
213         for(TargetMap::iterator i=targets.begin(); i!=targets.end(); ++i)
214                 delete i->second;
215         delete analyzer;
216 }
217
218 int Builder::main()
219 {
220         if(load_build_file(cwd/build_file))
221         {
222                 if(help)
223                 {
224                         usage(0, "builder", false);
225                         return 0;
226                 }
227                 else
228                 {
229                         IO::print(IO::cerr, "No build info here.\n");
230                         return 1;
231                 }
232         }
233
234         if(help)
235         {
236                 usage(0, "builder", false);
237                 IO::print("\n");
238                 package_help();
239                 return 0;
240         }
241
242         if(!prepare_build())
243                 return 1;
244
245         if(conf_only)
246                 return 0;
247
248         logger.log("environment", format("Building on %s, for %s%s", native_arch.get_name(),
249                 current_arch->get_name(), (current_arch->is_native() ? " (native)" : "")));
250         logger.log("environment", format("Prefix is %s", prefix));
251         if(tempdir.is_absolute())
252                 logger.log("environment", format("Temporary directory is %s", tempdir));
253         else
254                 logger.log("environment", format("Using per-package temporary directory %s", tempdir));
255         if(build_type)
256                 logger.log("environment", format("Build type is %s", build_type->get_name()));
257
258         const PackageManager::PackageMap &packages = package_manager.get_packages();
259         list<string> package_details;
260         for(PackageManager::PackageMap::const_iterator i=packages.begin(); i!=packages.end(); ++i)
261         {
262                 if(!i->second || !i->second->is_prepared())
263                         continue;
264
265                 string line = i->second->get_name();
266                 if(dynamic_cast<SourcePackage *>(i->second))
267                 {
268                         line += '*';
269
270                         unsigned count = 0;
271                         unsigned to_be_built = 0;
272                         for(TargetMap::iterator j=targets.begin(); j!=targets.end(); ++j)
273                                 if(j->second->get_package()==i->second)
274                                 {
275                                         ++count;
276                                         if(j->second->needs_rebuild())
277                                                 ++to_be_built;
278                                 }
279                         if(count)
280                         {
281                                 line += format(" (%d targets", count);
282                                 if(to_be_built)
283                                         line += format(", %d to be built", to_be_built);
284                                 line += ')';
285                         }
286                 }
287
288                 package_details.push_back(line);
289         }
290
291         logger.log("summary", format("%d active packages, %d targets", package_details.size(), targets.size()));
292         for(list<string>::const_iterator i=package_details.begin(); i!=package_details.end(); ++i)
293                 logger.log("packages", *i);
294
295         if(analyzer)
296                 analyzer->analyze();
297
298         if(!problems.empty())
299         {
300                 IO::print(IO::cerr, "The following problems were detected:\n");
301                 for(ProblemList::iterator i=problems.begin(); i!=problems.end(); ++i)
302                         IO::print(IO::cerr, "  %s: %s\n", i->package, i->descr);
303                 if(!analyzer)
304                         IO::print(IO::cerr, "Please fix them and try again.\n");
305                 return 1;
306         }
307
308         if(clean)
309                 exit_code = do_clean();
310         else if(build)
311                 exit_code = do_build();
312
313         return exit_code;
314 }
315
316 Target *Builder::get_target(const string &n) const
317 {
318         TargetMap::const_iterator i = targets.find(n);
319         if(i!=targets.end())
320                 return i->second;
321         return 0;
322 }
323
324 void Builder::problem(const string &p, const string &d)
325 {
326         problems.push_back(Problem(p, d));
327 }
328
329 void Builder::add_target(Target *t)
330 {
331         targets.insert(TargetMap::value_type(t->get_name(), t));
332 }
333
334 void Builder::usage(const char *reason, const char *argv0, bool brief)
335 {
336         if(reason)
337                 IO::print(IO::cerr, "%s\n", reason);
338
339         if(brief)
340                 IO::print(IO::cerr, "Usage: %s\n", usagemsg);
341         else
342         {
343                 IO::print(IO::cerr, "Builder 1.0\n\n");
344                 IO::print(IO::cerr, "Usage: %s [options] [<target> ...]\n\n", argv0);
345                 IO::print(IO::cerr, "Options:\n");
346                 IO::print(IO::cerr, helpmsg);
347         }
348 }
349
350 int Builder::load_build_file(const FS::Path &fn)
351 {
352         if(!FS::exists(fn))
353                 return -1;
354
355         IO::BufferedFile in(fn.str());
356
357         logger.log("files", format("Reading %s", fn));
358
359         DataFile::Parser parser(in, fn.str());
360         Loader loader(*this, fn.subpath(0, fn.size()-1));
361         loader.load(parser);
362
363         return 0;
364 }
365
366 bool Builder::prepare_build()
367 {
368         Target *world = new VirtualTarget(*this, "world");
369
370         Target *def_tgt = new VirtualTarget(*this, "default");
371         world->add_dependency(*def_tgt);
372
373         Target *install = new VirtualTarget(*this, "install");
374         world->add_dependency(*install);
375
376         Target *tarballs = new VirtualTarget(*this, "tarballs");
377         world->add_dependency(*tarballs);
378
379         main_pkg->prepare();
380
381         // Make the cmdline target depend on all targets mentioned on the command line
382         Target *cmdline = new VirtualTarget(*this, "cmdline");
383         for(list<string>::iterator i=cmdline_targets.begin(); i!=cmdline_targets.end(); ++i)
384         {
385                 Target *tgt = get_target(*i);
386                 if(!tgt)
387                         tgt = vfs.get_target(*i);
388                 if(!tgt)
389                         tgt = vfs.get_target(cwd/ *i);
390                 if(!tgt)
391                 {
392                         IO::print("I don't know anything about %s\n", *i);
393                         return false;
394                 }
395
396                 cmdline->add_dependency(*tgt);
397         }
398
399         cmdline->prepare();
400
401         // Apply what-ifs
402         for(StringList::iterator i=what_if.begin(); i!=what_if.end(); ++i)
403         {
404                 FileTarget *tgt = vfs.get_target(cwd/ *i);
405                 if(!tgt)
406                 {
407                         IO::print(IO::cerr, "Unknown what-if target %s\n", *i);
408                         return false;
409                 }
410                 tgt->touch();
411         }
412
413         if(build_all)
414         {
415                 for(TargetMap::iterator i=targets.begin(); i!=targets.end(); ++i)
416                         if(i->second->is_buildable() && !i->second->needs_rebuild())
417                                 i->second->force_rebuild();
418         }
419
420         if(!dry_run)
421         {
422                 const PackageManager::PackageMap &packages = package_manager.get_packages();
423                 for(PackageManager::PackageMap::const_iterator i=packages.begin(); i!=packages.end(); ++i)
424                         i->second->save_caches();
425         }
426
427         return true;
428 }
429
430 int Builder::do_build()
431 {
432         Target *cmdline = get_target("cmdline");
433
434         unsigned total = 0;
435         for(map<string, Target *>::const_iterator i=targets.begin(); i!=targets.end(); ++i)
436                 if(i->second->is_buildable() && i->second->needs_rebuild())
437                         ++total;
438
439         if(!total)
440         {
441                 logger.log("summary", "Already up to date");
442                 return 0;
443         }
444         logger.log("summary", format("Will build %d target%s", total, (total!=1 ? "s" : "")));
445
446         vector<Task *> tasks;
447
448         unsigned count = 0;
449
450         bool fail = false;
451         bool finish = false;
452
453         while(!finish)
454         {
455                 if(tasks.size()<jobs && !fail)
456                 {
457                         Target *tgt = cmdline->get_buildable_target();
458                         if(tgt)
459                         {
460                                 if(tgt->get_tool())
461                                         logger.log("tasks", format("%-4s  %s", tgt->get_tool()->get_tag(), tgt->get_name()));
462                                 Task *task = tgt->build();
463                                 if(task)
464                                 {
465                                         logger.log("commands", format("%s", task->get_command()));
466                                         if(dry_run)
467                                         {
468                                                 task->signal_finished.emit(true);
469                                                 delete task;
470                                         }
471                                         else
472                                         {
473                                                 task->start();
474                                                 tasks.push_back(task);
475                                         }
476                                 }
477
478                                 if(show_progress)
479                                         IO::print("%d of %d target%s built\033[1G", count, total, (total!=1 ? "s" : ""));
480                         }
481                         else if(tasks.empty())
482                                 finish = true;
483                 }
484                 else
485                         Time::sleep(10*Time::msec);
486
487                 for(unsigned i=0; i<tasks.size();)
488                 {
489                         Task::Status status = tasks[i]->check();
490                         if(status!=Task::RUNNING)
491                         {
492                                 ++count;
493
494                                 delete tasks[i];
495                                 tasks.erase(tasks.begin()+i);
496                                 if(status==Task::ERROR)
497                                         fail = true;
498                                 if(tasks.empty() && fail)
499                                         finish = true;
500                         }
501                         else
502                                 ++i;
503                 }
504         }
505
506         if(show_progress)
507                 IO::print("\033[K");
508         if(fail)
509                 logger.log("summary", "Build failed");
510         else if(show_progress)
511                 logger.log("summary", "Build complete");
512
513         return fail;
514 }
515
516 int Builder::do_clean()
517 {
518         // Cleaning doesn't care about ordering, so a simpler method can be used
519
520         set<Target *> clean_tgts;
521         list<Target *> queue;
522         queue.push_back(get_target("cmdline"));
523
524         while(!queue.empty())
525         {
526                 Target *tgt = queue.front();
527                 queue.erase(queue.begin());
528
529                 if(tgt->is_buildable() && (tgt->get_package()==main_pkg || clean>=2))
530                         clean_tgts.insert(tgt);
531
532                 const Target::Dependencies &deps = tgt->get_dependencies();
533                 for(list<Target *>::const_iterator i=deps.begin(); i!=deps.end(); ++i)
534                         if(!clean_tgts.count(*i))
535                                 queue.push_back(*i);
536         }
537
538         for(set<Target *>::iterator i=clean_tgts.begin(); i!=clean_tgts.end(); ++i)
539                 if(FileTarget *ft = dynamic_cast<FileTarget *>(*i))
540                         if(ft->get_mtime())
541                                 FS::unlink(ft->get_path());
542
543         return 0;
544 }
545
546 void Builder::package_help()
547 {
548         const Config &config = main_pkg->get_config();
549         const Config::OptionMap &options = config.get_options();
550
551         IO::print("Required packages:\n  ");
552         const PackageList &requires = main_pkg->get_required_packages();
553         for(PackageList::const_iterator i=requires.begin(); i!=requires.end(); ++i)
554         {
555                 if(i!=requires.begin())
556                         IO::print(", ");
557                 IO::print((*i)->get_name());
558         }
559         IO::print("\n\nPackage configuration:\n");
560         for(Config::OptionMap::const_iterator i=options.begin(); i!=options.end(); ++i)
561         {
562                 const Config::Option &opt = i->second;
563                 IO::print("  %s: %s (%s)", opt.name, opt.description, opt.value);
564                 if(opt.value!=opt.default_value)
565                         IO::print(" [%s]", opt.default_value);
566                 IO::print("\n");
567         }
568 }
569
570 string Builder::usagemsg;
571 string Builder::helpmsg;
572
573
574 Builder::Loader::Loader(Builder &b, const FS::Path &s):
575         DataFile::ObjectLoader<Builder>(b),
576         src(s)
577 {
578         add("architecture", &Loader::architecture);
579         add("binary_package", &Loader::binpkg);
580         add("build_type", &Loader::build_type);
581         add("profile", &Loader::profile);
582         add("package", &Loader::package);
583 }
584
585 void Builder::Loader::architecture(const string &n)
586 {
587         if(obj.current_arch->match_name(n))
588                 load_sub(*obj.current_arch);
589 }
590
591 void Builder::Loader::binpkg(const string &n)
592 {
593         BinaryPackage *pkg = new BinaryPackage(obj, n);
594         load_sub(*pkg);
595 }
596
597 void Builder::Loader::build_type(const string &n)
598 {
599         BuildType btype(n);
600         load_sub(btype);
601         BuildTypeMap::iterator i = obj.build_types.insert(BuildTypeMap::value_type(n, btype)).first;
602         if(!obj.build_type)
603                 obj.build_type = &i->second;
604 }
605
606 void Builder::Loader::profile(const string &)
607 {
608         IO::print("Profiles are deprecated\n");
609 }
610
611 void Builder::Loader::package(const string &n)
612 {
613         SourcePackage *pkg = new SourcePackage(obj, n, src);
614         if(!obj.main_pkg)
615                 obj.main_pkg = pkg;
616
617         if(obj.conf_all || pkg==obj.main_pkg)
618                 load_sub(*pkg, obj.cmdline_options);
619         else
620                 load_sub(*pkg);
621
622         if(obj.build_type)
623                 pkg->set_build_type(*obj.build_type);
624 }