]> git.tdb.fi Git - builder.git/blob - source/builder.h
Eliminate all global typedefs, making misc.h finally unnecessary
[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 "packagemanager.h"
15 #include "problem.h"
16 #include "target.h"
17 #include "toolchain.h"
18 #include "virtualfilesystem.h"
19
20 class Analyzer;
21 class FileTarget;
22 class Package;
23 class SourcePackage;
24
25 /**
26 The main application class.  Handles command line options and supervises the
27 build process.
28 */
29 class Builder: public Msp::RegisteredApplication<Builder>
30 {
31 private:
32         class Loader: public Msp::DataFile::ObjectLoader<Builder>
33         {
34         public:
35                 Loader(Builder &);
36         private:
37                 void architecture(const std::string &);
38                 void binpkg(const std::string &);
39                 void build_type(const std::string &);
40                 void profile(const std::string &);
41                 void package(const std::string &);
42         };
43
44 public:
45         typedef std::map<std::string, Target *> TargetMap;
46
47 private:
48         typedef std::list<std::string> NameList;
49         typedef std::map<std::string, BuildType> BuildTypeMap;
50         typedef std::list<Problem> ProblemList;
51
52         NameList cmdline_targets;
53         Config::InputOptions cmdline_options;
54         Msp::FS::Path cwd;
55
56         PackageManager package_manager;
57         SourcePackage *main_pkg;
58
59         TargetMap targets;
60
61         Architecture native_arch;
62         Architecture *current_arch;
63         BuildTypeMap build_types;
64         BuildType *build_type;
65         Toolchain toolchain;
66         VirtualFileSystem vfs;
67         Logger logger;
68
69         ProblemList problems;
70         Analyzer *analyzer;
71         bool build;
72         unsigned clean;
73         bool dry_run;
74         bool help;
75         bool show_progress;
76         std::string build_file;
77         unsigned jobs;
78         NameList what_if;
79         bool conf_all;
80         bool conf_only;
81         bool build_all;
82         bool create_makefile;
83         Msp::FS::Path prefix;
84         Msp::FS::Path tempdir;
85
86         static std::string usagemsg;
87         static std::string helpmsg;
88
89 public:
90         Builder(int, char **);
91         ~Builder();
92
93         int main();
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.  It can later be retrieved by name.  Called from Target
113         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         void 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