X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbuilder.h;h=55af18a5a2e9b4db855bcefdb67cf84cb9386d89;hb=64f01c486e48f260a5d895092806ee341ef23198;hp=cd6bf16d34fd950ea68ce0fc14a3506ce3e814b6;hpb=a116ad9af4a6a75093f6e1c3603d16b397833154;p=builder.git diff --git a/source/builder.h b/source/builder.h index cd6bf16..55af18a 100644 --- a/source/builder.h +++ b/source/builder.h @@ -19,7 +19,6 @@ #include "virtualfilesystem.h" class Analyzer; -class Config; class FileTarget; class Package; class SourcePackage; @@ -53,7 +52,7 @@ private: typedef std::map BuildTypeMap; StringList cmdline_targets; - StringMap cmdline_options; + Config::InputOptions cmdline_options; Msp::FS::Path cwd; PackageManager package_manager; @@ -84,6 +83,7 @@ private: bool build_all; bool create_makefile; Msp::FS::Path prefix; + Msp::FS::Path tempdir; StringList warnings; static std::string usagemsg; @@ -108,6 +108,7 @@ public: const Architecture &get_current_arch() const { return *current_arch; } const Architecture &get_native_arch() const { return native_arch; } const Msp::FS::Path &get_prefix() const { return prefix; } + const Msp::FS::Path &get_temp_directory() const { return tempdir; } const StringList &get_warnings() const { return warnings; } const Toolchain &get_toolchain() const { return toolchain; } @@ -127,12 +128,12 @@ public: int load_build_file(const Msp::FS::Path &); private: - /** Creates targets for all packages and prepares them for building. - Returns 0 if everything went ok, -1 if something bad happened and a build - shouldn't be attempted. */ - int create_targets(); + /** Prepares packages and targets for building. Returns true if everything + went ok, or false if something bad happened and a build shouldn't be + attempted. */ + bool prepare_build(); - /** Supervises the build process, starting new actions when slots become + /** Supervises the build process, starting new tasks when slots become available. */ int do_build();