]> git.tdb.fi Git - builder.git/blob - source/builder.h
Pass the full path to the Build file to SourcePackage and create a target for it
[builder.git] / source / builder.h
1 #ifndef BUILDER_H_
2 #define BUILDER_H_
3
4 #include <list>
5 #include <map>
6 #include <string>
7 #include <msp/core/application.h>
8 #include <msp/datafile/loader.h>
9 #include <msp/fs/path.h>
10 #include "architecture.h"
11 #include "buildtype.h"
12 #include "config.h"
13 #include "logger.h"
14 #include "misc.h"
15 #include "packagemanager.h"
16 #include "problem.h"
17 #include "target.h"
18 #include "toolchain.h"
19 #include "virtualfilesystem.h"
20
21 class Analyzer;
22 class FileTarget;
23 class Package;
24 class SourcePackage;
25
26 /**
27 The main application class.  Handles command line options and supervises the
28 build process.
29 */
30 class Builder: public Msp::RegisteredApplication<Builder>
31 {
32 private:
33         class Loader: public Msp::DataFile::ObjectLoader<Builder>
34         {
35         public:
36                 Loader(Builder &);
37         private:
38                 void architecture(const std::string &);
39                 void binpkg(const std::string &);
40                 void build_type(const std::string &);
41                 void profile(const std::string &);
42                 void package(const std::string &);
43         };
44
45 public:
46         typedef std::map<std::string, Target *> TargetMap;
47
48 private:
49         typedef std::map<std::string, BuildType> BuildTypeMap;
50
51         StringList cmdline_targets;
52         Config::InputOptions cmdline_options;
53         Msp::FS::Path cwd;
54
55         PackageManager package_manager;
56         SourcePackage *main_pkg;
57
58         TargetMap targets;
59
60         Architecture native_arch;
61         Architecture *current_arch;
62         BuildTypeMap build_types;
63         BuildType *build_type;
64         Toolchain toolchain;
65         VirtualFileSystem vfs;
66         Logger logger;
67
68         ProblemList problems;
69         Analyzer *analyzer;
70         bool build;
71         unsigned clean;
72         bool dry_run;
73         bool help;
74         bool show_progress;
75         std::string build_file;
76         unsigned jobs;
77         StringList what_if;
78         bool conf_all;
79         bool conf_only;
80         bool build_all;
81         bool create_makefile;
82         Msp::FS::Path prefix;
83         Msp::FS::Path tempdir;
84
85         static std::string usagemsg;
86         static std::string helpmsg;
87
88 public:
89         Builder(int, char **);
90         ~Builder();
91
92         int main();
93         bool get_dry_run() const { return dry_run; }
94
95         PackageManager &get_package_manager() { return package_manager; }
96
97         /** Looks up a target by name.  Returns 0 if no such target exists. */
98         Target *get_target(const std::string &) const;
99
100         const TargetMap &get_targets() const { return targets; }
101
102         const Msp::FS::Path &get_work_directory() const { return cwd; }
103         const Architecture &get_current_arch() const { return *current_arch; }
104         const Architecture &get_native_arch() const { return native_arch; }
105         const Msp::FS::Path &get_prefix() const { return prefix; }
106         const Msp::FS::Path &get_temp_directory() const { return tempdir; }
107
108         const Toolchain &get_toolchain() const { return toolchain; }
109         VirtualFileSystem &get_vfs() { return vfs; }
110         const Logger &get_logger() const { return logger; }
111
112         /** Adds a target to both the target map and the new target queue.  Called
113         from Target constructor. */
114         void add_target(Target *);
115
116         /** Adds a target that is a primary build goal.  Such targets will be added
117         as dependencies of the "world" virtual target.  If the target belongs to a
118         default component of the main package, it's also added to the "default"
119         virtual target. */
120         void add_primary_target(Target &);
121
122         void problem(const std::string &, const std::string &);
123
124         static void usage(const char *, const char *, bool);
125
126         /** Loads a build file.  Returns 0 on success or -1 if the file could not be
127         opened. */
128         int load_build_file(const Msp::FS::Path &);
129
130 private:
131         /** Prepares packages and targets for building.  Returns true if everything
132         went ok, or false if something bad happened and a build shouldn't be
133         attempted. */
134         bool prepare_build();
135
136         /** Supervises the build process, starting new tasks when slots become
137         available. */
138         int do_build();
139
140         /** Cleans buildable targets.  If clean is 1, cleans only the default
141         package.  If clean is 2 or greater, cleans all buildable packages.
142         */
143         int do_clean();
144
145         int do_create_makefile();
146
147         /** Prints out information about the default package. */
148         void package_help();
149 };
150
151 #endif