]> git.tdb.fi Git - builder.git/blob - source/lib/builder.h
Allow plugins to create additional targets in SourcePackages
[builder.git] / source / lib / builder.h
1 #ifndef BUILDER_H_
2 #define BUILDER_H_
3
4 #include <map>
5 #include <string>
6 #include <msp/core/module.h>
7 #include <msp/datafile/loader.h>
8 #include <msp/fs/path.h>
9 #include "architecture.h"
10 #include "buildgraph.h"
11 #include "buildtype.h"
12 #include "config.h"
13 #include "logger.h"
14 #include "packagemanager.h"
15 #include "target.h"
16 #include "toolchain.h"
17 #include "virtualfilesystem.h"
18
19 class FileTarget;
20 class Package;
21 class Plugin;
22 class SourcePackage;
23
24 /**
25 This class ties everything else together.  It also contains code for loading
26 build files and supervising the build process.
27 */
28 class Builder
29 {
30 private:
31         class Loader: public Msp::DataFile::ObjectLoader<Builder>
32         {
33         private:
34                 const Config::InputOptions *options;
35                 bool conf_all;
36
37         public:
38                 Loader(Builder &, const Config::InputOptions * = 0, bool = false);
39                 ~Loader();
40
41         private:
42                 void architecture(const std::string &);
43                 void binpkg(const std::string &);
44                 void build_type(const std::string &);
45                 void package(const std::string &);
46         };
47
48 private:
49         struct LoadedPlugin
50         {
51                 Msp::FS::Path path;
52                 Msp::Module *module = nullptr;
53                 Plugin *plugin = nullptr;
54
55                 LoadedPlugin() = default;
56                 LoadedPlugin(LoadedPlugin &&);
57                 ~LoadedPlugin();
58         };
59
60         std::vector<LoadedPlugin> plugins;
61         PackageManager package_manager;
62
63         Architecture native_arch;
64         Architecture *current_arch = 0;
65         std::map<std::string, BuildType> build_types;
66         BuildType *build_type = 0;
67         Toolchain toolchain;
68         VirtualFileSystem vfs;
69         BuildGraph build_graph;
70         Logger default_logger;
71         const Logger *logger;
72
73         bool auto_prefix = true;
74         Msp::FS::Path prefix;
75         Msp::FS::Path tempdir = "temp";
76
77         Loader *top_loader = 0;
78
79 public:
80         Builder();
81         ~Builder();
82
83         void load_plugins();
84         PackageManager &get_package_manager() { return package_manager; }
85
86         template<typename F>
87         void call_plugins(F) const;
88
89         void set_architecture(const std::string &);
90         const Architecture &get_current_arch() const { return *current_arch; }
91         const Architecture &get_native_arch() const { return native_arch; }
92         void set_build_type(const std::string &);
93         std::vector<std::string> get_build_types() const;
94         const BuildType &get_build_type() const;
95         BuildGraph &get_build_graph() { return build_graph; }
96         void set_prefix(const Msp::FS::Path &);
97         void set_temp_directory(const Msp::FS::Path &);
98         const Msp::FS::Path &get_prefix() const { return prefix; }
99         const Msp::FS::Path &get_temp_directory() const { return tempdir; }
100
101 private:
102         void update_auto_prefix();
103
104 public:
105         void add_default_tools();
106         const Toolchain &get_toolchain() const { return toolchain; }
107         VirtualFileSystem &get_vfs() { return vfs; }
108         void set_logger(const Logger *);
109         const Logger &get_logger() const { return *logger; }
110
111         std::vector<std::string> collect_problems() const;
112
113         /** Loads a build file.  If opts is not null, it is used to configure any
114         packages loaded from this file.  If all is true, external packages are also
115         configured. */
116         void load_build_file(const Msp::FS::Path &, const Config::InputOptions *opts = 0, bool all = false);
117
118         /** Saves package configuration and dependency caches. */
119         void save_caches();
120
121         /** Builds the goal targets.  The build graph must be prepared first. */
122         int build(unsigned jobs = 1, bool dry_run = false, bool show_progress = false);
123
124         /** Cleans buildable targets.  If all is true, cleans all packages.
125         Otherwise cleans only the default package. */
126         int clean(bool all = false, bool dry_run = false);
127
128         int do_create_makefile();
129 };
130
131 template<typename F>
132 void Builder::call_plugins(F func) const
133 {
134         for(const LoadedPlugin &p: plugins)
135                 func(*p.plugin);
136 }
137
138 #endif