]> git.tdb.fi Git - builder.git/blob - source/lib/builder.h
d9a942b4f65000d4b4eec7071a95e6658271f792
[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 "libbuilder_api.h"
14 #include "logger.h"
15 #include "packagemanager.h"
16 #include "sourcepackage.h"
17 #include "target.h"
18 #include "toolchain.h"
19 #include "virtualfilesystem.h"
20
21 class Package;
22 class Plugin;
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 LIBBUILDER_API 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 &operator=(LoadedPlugin &&);
58                 ~LoadedPlugin();
59         };
60
61         std::vector<LoadedPlugin> plugins;
62         PackageManager package_manager;
63         SourcePackage::ComponentRegistry component_registry;
64
65         Architecture native_arch;
66         Architecture *current_arch = 0;
67         std::map<std::string, BuildType> build_types;
68         BuildType *build_type = 0;
69         Toolchain toolchain;
70         VirtualFileSystem vfs;
71         BuildGraph build_graph;
72         Logger default_logger;
73         const Logger *logger;
74
75         bool auto_prefix = true;
76         Msp::FS::Path prefix;
77         Msp::FS::Path tempdir = "temp";
78
79         Loader *top_loader = 0;
80
81 public:
82         Builder();
83         ~Builder();
84
85         void load_plugins();
86         PackageManager &get_package_manager() { return package_manager; }
87         SourcePackage::ComponentRegistry &get_component_registry() { return component_registry; }
88
89         template<typename F>
90         void call_plugins(F) const;
91
92         void set_architecture(const std::string &);
93         const Architecture &get_current_arch() const { return *current_arch; }
94         const Architecture &get_native_arch() const { return native_arch; }
95         void set_build_type(const std::string &);
96         std::vector<std::string> get_build_types() const;
97         const BuildType &get_build_type() const;
98         BuildGraph &get_build_graph() { return build_graph; }
99         void set_prefix(const Msp::FS::Path &);
100         void set_temp_directory(const Msp::FS::Path &);
101         const Msp::FS::Path &get_prefix() const { return prefix; }
102         const Msp::FS::Path &get_temp_directory() const { return tempdir; }
103
104 private:
105         void update_auto_prefix();
106
107 public:
108         void add_default_tools();
109         const Toolchain &get_toolchain() const { return toolchain; }
110         VirtualFileSystem &get_vfs() { return vfs; }
111         void set_logger(const Logger *);
112         const Logger &get_logger() const { return *logger; }
113
114         std::vector<std::string> collect_problems() const;
115 private:
116         void collect_broken_packages(const Package &, std::vector<const Package *> &) const;
117
118 public:
119         /** Loads a build file.  If opts is not null, it is used to configure any
120         packages loaded from this file.  If all is true, external packages are also
121         configured. */
122         void load_build_file(const Msp::FS::Path &, const Config::InputOptions *opts = 0, bool all = false);
123
124         /** Saves package configuration and dependency caches. */
125         void save_caches();
126
127         /** Builds the goal targets.  The build graph must be prepared first. */
128         int build(unsigned jobs = 1, bool dry_run = false, bool show_progress = false);
129
130         /** Cleans buildable targets.  If all is true, cleans all packages.
131         Otherwise cleans only the default package. */
132         int clean(bool all = false, bool dry_run = false);
133
134         int do_create_makefile();
135 };
136
137 template<typename F>
138 void Builder::call_plugins(F func) const
139 {
140         for(const LoadedPlugin &p: plugins)
141                 func(*p.plugin);
142 }
143
144 #endif