]> git.tdb.fi Git - builder.git/blobdiff - source/builder.h
Big rewrite for a more tool-centric approach
[builder.git] / source / builder.h
index 977785c39b47a703b73d66957e3cf9f467dfb105..25f06457b624da63f1a011f0d570c6badba03a82 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of builder
-Copyright © 2006-2009  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef BUILDER_H_
 #define BUILDER_H_
 
@@ -19,16 +12,19 @@ Distributed under the LGPL
 #include "misc.h"
 #include "problem.h"
 #include "target.h"
+#include "toolchain.h"
 
 class Analyzer;
 class Config;
+class FileTarget;
 class Package;
 class SourcePackage;
+class VirtualTarget;
 
 /**
 The main application class.  Controls and owns everything.  Rules the world.
 */
-class Builder: public Msp::Application
+class Builder: public Msp::RegisteredApplication<Builder>
 {
 private:
        class Loader: public Msp::DataFile::Loader
@@ -40,8 +36,8 @@ private:
        public:
                Loader(Builder &, const Msp::FS::Path &);
        private:
-               void architecture(const std::string &);
                void binpkg(const std::string &);
+               void cross_prefix(const std::string &, const std::string &);
                void profile(const std::string &);
                void package(const std::string &);
        };
@@ -57,6 +53,10 @@ private:
                void option(const std::string &, const std::string &);
        };
 
+public:
+       typedef std::map<std::string, Target *> TargetMap;
+
+private:
        typedef std::list<Package *> PackageList;
        typedef std::map<std::string, Package *> PackageMap;
        typedef std::map<std::string, StringMap> ProfileTemplateMap;
@@ -69,16 +69,19 @@ private:
        SourcePackage *main_pkg;
        PathList pkg_path;
        PathList pkg_dirs;
+       bool no_externals;
 
        TargetMap targets;
+       TargetMap targets_by_path;
        TargetList new_tgts;
        TargetMap includes;
        TargetMap libraries;
 
-       ArchMap archs;
-       Architecture *native_arch;
-       const Architecture *current_arch;
+       Architecture native_arch;
+       Architecture *current_arch;
+       StringMap cross_prefixes;
        ProfileTemplateMap profile_tmpl;
+       Toolchain toolchain;
 
        ProblemList problems;
        Analyzer *analyzer;
@@ -98,7 +101,6 @@ private:
        Msp::FS::Path prefix;
        StringList warnings;
 
-       static Msp::Application::RegApp<Builder> reg;
        static std::string usagemsg;
        static std::string helpmsg;
 
@@ -122,6 +124,8 @@ public:
        /** Looks up a target by name.  Returns 0 if no such target exists. */
        Target *get_target(const std::string &) const;
 
+       FileTarget *get_target_by_path(const Msp::FS::Path &) const;
+
        const TargetMap &get_targets() const { return targets; }
 
        /** Tries to locate a header based on location of including file and include
@@ -138,16 +142,18 @@ public:
        Target *get_library(const std::string &, const StringList &, LibMode);
 
        const Msp::FS::Path &get_cwd() const { return cwd; }
-       const Architecture &get_architecture(const std::string &) const;
        const Architecture &get_current_arch() const { return *current_arch; }
-       const Architecture &get_native_arch() const { return *native_arch; }
+       const Architecture &get_native_arch() const { return native_arch; }
        const Msp::FS::Path &get_prefix() const { return prefix; }
        const StringList &get_warnings() const { return warnings; }
        void apply_profile_template(Config &, const std::string &) const;
 
+       const Toolchain &get_toolchain() const { return toolchain; }
+
        /** Adds a target to both the target map and the new target queue.  Called
        from Target constructor. */
        void add_target(Target *);
+       void register_path(const Msp::FS::Path &, FileTarget *);
 
        void problem(const std::string &, const std::string &);