]> git.tdb.fi Git - builder.git/blobdiff - source/builder.h
Big rewrite for a more tool-centric approach
[builder.git] / source / builder.h
index 18f4b52c56dfa744f085d4e3e2eaeb2e486856b4..25f06457b624da63f1a011f0d570c6badba03a82 100644 (file)
@@ -12,6 +12,7 @@
 #include "misc.h"
 #include "problem.h"
 #include "target.h"
+#include "toolchain.h"
 
 class Analyzer;
 class Config;
@@ -52,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;
@@ -67,6 +72,7 @@ private:
        bool no_externals;
 
        TargetMap targets;
+       TargetMap targets_by_path;
        TargetList new_tgts;
        TargetMap includes;
        TargetMap libraries;
@@ -75,6 +81,7 @@ private:
        Architecture *current_arch;
        StringMap cross_prefixes;
        ProfileTemplateMap profile_tmpl;
+       Toolchain toolchain;
 
        ProblemList problems;
        Analyzer *analyzer;
@@ -117,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
@@ -139,10 +148,12 @@ public:
        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(FileTarget *);
-       void add_target(VirtualTarget *);
+       void add_target(Target *);
+       void register_path(const Msp::FS::Path &, FileTarget *);
 
        void problem(const std::string &, const std::string &);