]> git.tdb.fi Git - builder.git/blob - source/lib/builder.h
Add an interface for dynamically loaded plugins
[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         void set_architecture(const std::string &);
87         const Architecture &get_current_arch() const { return *current_arch; }
88         const Architecture &get_native_arch() const { return native_arch; }
89         void set_build_type(const std::string &);
90         std::vector<std::string> get_build_types() const;
91         const BuildType &get_build_type() const;
92         BuildGraph &get_build_graph() { return build_graph; }
93         void set_prefix(const Msp::FS::Path &);
94         void set_temp_directory(const Msp::FS::Path &);
95         const Msp::FS::Path &get_prefix() const { return prefix; }
96         const Msp::FS::Path &get_temp_directory() const { return tempdir; }
97
98 private:
99         void update_auto_prefix();
100
101 public:
102         void add_default_tools();
103         const Toolchain &get_toolchain() const { return toolchain; }
104         VirtualFileSystem &get_vfs() { return vfs; }
105         void set_logger(const Logger *);
106         const Logger &get_logger() const { return *logger; }
107
108         std::vector<std::string> collect_problems() const;
109
110         /** Loads a build file.  If opts is not null, it is used to configure any
111         packages loaded from this file.  If all is true, external packages are also
112         configured. */
113         void load_build_file(const Msp::FS::Path &, const Config::InputOptions *opts = 0, bool all = false);
114
115         /** Saves package configuration and dependency caches. */
116         void save_caches();
117
118         /** Builds the goal targets.  The build graph must be prepared first. */
119         int build(unsigned jobs = 1, bool dry_run = false, bool show_progress = false);
120
121         /** Cleans buildable targets.  If all is true, cleans all packages.
122         Otherwise cleans only the default package. */
123         int clean(bool all = false, bool dry_run = false);
124
125         int do_create_makefile();
126 };
127
128 #endif