7 #include <msp/datafile/loader.h>
8 #include <msp/fs/path.h>
9 #include "architecture.h"
10 #include "buildgraph.h"
11 #include "buildtype.h"
14 #include "packagemanager.h"
16 #include "toolchain.h"
17 #include "virtualfilesystem.h"
24 This class ties everything else together. It also contains code for loading
25 build files and supervising the build process.
30 class Loader: public Msp::DataFile::ObjectLoader<Builder>
33 const Config::InputOptions *options;
37 Loader(Builder &, const Config::InputOptions * = 0, bool = false);
41 void architecture(const std::string &);
42 void binpkg(const std::string &);
43 void build_type(const std::string &);
44 void package(const std::string &);
48 typedef std::map<std::string, BuildType> BuildTypeMap;
50 PackageManager package_manager;
52 Architecture native_arch;
53 Architecture *current_arch;
54 BuildTypeMap build_types;
55 BuildType *build_type;
57 VirtualFileSystem vfs;
58 BuildGraph build_graph;
59 Logger default_logger;
63 Msp::FS::Path tempdir;
71 PackageManager &get_package_manager() { return package_manager; }
73 void set_architecture(const std::string &);
74 const Architecture &get_current_arch() const { return *current_arch; }
75 const Architecture &get_native_arch() const { return native_arch; }
76 void set_build_type(const std::string &);
77 const BuildType &get_build_type() const { return *build_type; }
78 BuildGraph &get_build_graph() { return build_graph; }
79 void set_prefix(const Msp::FS::Path &);
80 void set_temp_directory(const Msp::FS::Path &);
81 const Msp::FS::Path &get_prefix() const { return prefix; }
82 const Msp::FS::Path &get_temp_directory() const { return tempdir; }
84 void add_default_tools();
85 const Toolchain &get_toolchain() const { return toolchain; }
86 VirtualFileSystem &get_vfs() { return vfs; }
87 void set_logger(const Logger *);
88 const Logger &get_logger() const { return *logger; }
90 std::list<std::string> collect_problems() const;
92 /** Loads a build file. If opts is not null, it is used to configure any
93 packages loaded from this file. If all is true, external packages are also
95 void load_build_file(const Msp::FS::Path &, const Config::InputOptions *opts = 0, bool all = false);
97 /** Builds the goal targets. The build graph must be prepared first. */
98 int build(unsigned jobs = 1, bool dry_run = false, bool show_progress = false);
100 /** Cleans buildable targets. If all is true, cleans all packages.
101 Otherwise cleans only the default package. */
102 int clean(bool all = false, bool dry_run = false);
104 int do_create_makefile();