]> git.tdb.fi Git - builder.git/blobdiff - source/builder.h
Save caches before starting the build
[builder.git] / source / builder.h
index bdc5e2fb931e36d6df53229702197ed04447f504..70ca861bc64cefb22c13c7d91c98eacfbef61a15 100644 (file)
 #include <list>
 #include <map>
 #include <string>
-#include <msp/core/application.h>
-#include <msp/parser/loader.h>
-#include <msp/path/path.h>
+#include <msp/datafile/loader.h>
+#include <msp/fs/path.h>
+#include "architecture.h"
+#include "buildgraph.h"
+#include "buildtype.h"
 #include "config.h"
+#include "logger.h"
+#include "packagemanager.h"
+#include "target.h"
+#include "toolchain.h"
+#include "virtualfilesystem.h"
 
+class FileTarget;
 class Package;
-class Target;
+class SourcePackage;
 
-class Builder: public Msp::Application
+/**
+This class ties everything else together.  It also contains code for loading
+build files and supervising the build process.
+*/
+class Builder
 {
-public:
-       Builder(int, char **);
-       unsigned get_verbose() const { return verbose; }
-       Package  *get_package(const std::string &);
-       Target   *get_target(const std::string &);
-       Target   *get_header(const std::string &, const std::string &, const std::list<std::string> &);
-       int      main();
 private:
-       class Loader: public Msp::Parser::Loader
+       class Loader: public Msp::DataFile::ObjectLoader<Builder>
        {
+       private:
+               const Config::InputOptions *options;
+               bool conf_all;
+
        public:
-               Loader(Builder &, const Msp::Path::Path &);
+               Loader(Builder &, const Config::InputOptions * = 0, bool = false);
+               ~Loader();
+
        private:
-               Builder &bld;
-               Msp::Path::Path src;
-               
+               void architecture(const std::string &);
+               void binpkg(const std::string &);
+               void build_type(const std::string &);
                void package(const std::string &);
        };
 
-       typedef std::map<std::string, Package *>   PackageMap;
-       typedef std::map<std::string, Target *>    TargetMap;
-       typedef std::map<std::string, std::string> ToolMap;
-       
-       std::list<std::string> cmdline_targets;
-       RawOptionMap cmdline_options;
-       TargetMap  targets;
-       PackageMap packages;
-       unsigned   verbose;
-       Package    *default_pkg;
-       Msp::Path::Path cwd;
-       std::list<Package *> new_pkgs;
-       TargetMap  includes;
-       std::list<Target *> new_tgts;
-       ToolMap    tools;
-
-       int load_build_file(const Msp::Path::Path &);
-       int create_targets();
-       Target *check_header(const Msp::Path::Path &);
-       void add_target(Target *);
-       int build();
-       
-       static Msp::Application::RegApp<Builder> reg;
+private:
+       typedef std::map<std::string, BuildType> BuildTypeMap;
+
+       PackageManager package_manager;
+
+       Architecture native_arch;
+       Architecture *current_arch;
+       BuildTypeMap build_types;
+       BuildType *build_type;
+       Toolchain toolchain;
+       VirtualFileSystem vfs;
+       BuildGraph build_graph;
+       Logger default_logger;
+       const Logger *logger;
+
+       Msp::FS::Path prefix;
+       Msp::FS::Path tempdir;
+
+       Loader *top_loader;
+
+public:
+       Builder();
+       ~Builder();
+
+       PackageManager &get_package_manager() { return package_manager; }
+
+       void set_architecture(const std::string &);
+       const Architecture &get_current_arch() const { return *current_arch; }
+       const Architecture &get_native_arch() const { return native_arch; }
+       void set_build_type(const std::string &);
+       std::vector<std::string> get_build_types() const;
+       const BuildType &get_build_type() const { return *build_type; }
+       BuildGraph &get_build_graph() { return build_graph; }
+       void set_prefix(const Msp::FS::Path &);
+       void set_temp_directory(const Msp::FS::Path &);
+       const Msp::FS::Path &get_prefix() const { return prefix; }
+       const Msp::FS::Path &get_temp_directory() const { return tempdir; }
+
+       void add_default_tools();
+       const Toolchain &get_toolchain() const { return toolchain; }
+       VirtualFileSystem &get_vfs() { return vfs; }
+       void set_logger(const Logger *);
+       const Logger &get_logger() const { return *logger; }
+
+       std::list<std::string> collect_problems() const;
+
+       /** Loads a build file.  If opts is not null, it is used to configure any
+       packages loaded from this file.  If all is true, external packages are also
+       configured. */
+       void load_build_file(const Msp::FS::Path &, const Config::InputOptions *opts = 0, bool all = false);
+
+       /** Saves package configuration and dependency caches. */
+       void save_caches();
+
+       /** Builds the goal targets.  The build graph must be prepared first. */
+       int build(unsigned jobs = 1, bool dry_run = false, bool show_progress = false);
+
+       /** Cleans buildable targets.  If all is true, cleans all packages.
+       Otherwise cleans only the default package. */
+       int clean(bool all = false, bool dry_run = false);
+
+       int do_create_makefile();
 };
 
 #endif