]> git.tdb.fi Git - builder.git/blobdiff - source/builder.h
Improve automatic package finding to detect directories with version number
[builder.git] / source / builder.h
index 786b48c37f8f1752a8fbe17630d80aeacf5196e1..19885c56291729d971776ec57a3295c546073edb 100644 (file)
@@ -1,3 +1,10 @@
+/* $Id$
+
+This file is part of builder
+Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
+Distributed under the LGPL
+*/
+
 #ifndef BUILDER_H_
 #define BUILDER_H_
 
 #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 "config.h"
 #include "misc.h"
+#include "problem.h"
 #include "target.h"
 
 class Analyzer;
+class Config;
 class Package;
+class SourcePackage;
 
+/**
+The main application class.  Controls and owns everything.  Rules the world.
+*/
 class Builder: public Msp::Application
 {
 public:
        Builder(int, char **);
-       unsigned get_verbose() const { return verbose; }
-       bool     get_dry_run() const { return dry_run; }
+       unsigned get_verbose() const   { return verbose; }
+       bool     get_dry_run() const   { return dry_run; }
        bool     get_build_all() const { return build_all; }
        Package  *get_package(const std::string &);
-       Target   *get_target(const std::string &);
+       SourcePackage *get_main_package() const { return main_pkg; }
+       Target   *get_target(const std::string &) const;
+       const TargetMap &get_targets() const { return targets; }
        Target   *get_header(const std::string &, const std::string &, const StringList &);
-       Target   *get_library(const std::string &, const StringList &);
-       const Msp::Path::Path &get_cwd() const { return cwd; }
+       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;
+       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;
+       void     add_target(Target *);
+       void     problem(const std::string &, const std::string &);
        int      main();
        ~Builder();
 
-       static void usage(const char *, bool);
+       static void usage(const char *, const char *, bool);
 private:
-       class Loader: public Msp::Parser::Loader
+       class Loader: public Msp::DataFile::Loader
        {
        public:
-               Loader(Builder &, const Msp::Path::Path &);
+               Loader(Builder &, const Msp::FS::Path &);
        private:
-               Builder         &bld;
-               Msp::Path::Path src;
-               
+               Builder       &bld;
+               Msp::FS::Path src;
+
+               void architecture(const std::string &);
+               void binpkg(const std::string &);
+               void profile(const std::string &);
                void package(const std::string &);
        };
 
+       class ProfileLoader: public Msp::DataFile::Loader
+       {
+       public:
+               ProfileLoader(StringMap &);
+       private:
+               StringMap &profile;
+
+               void option(const std::string &, const std::string &);
+       };
+
        typedef std::list<Package *>               PackageList;
        typedef std::map<std::string, Package *>   PackageMap;
-       typedef std::map<std::string, Target *>    TargetMap;
-       typedef std::map<std::string, std::string> ToolMap;
-       
+       typedef std::map<std::string, StringMap>   ProfileTemplateMap;
+
        StringList   cmdline_targets;
-       RawOptionMap cmdline_options;
-       Msp::Path::Path cwd;
-       
+       StringMap    cmdline_options;
+       Msp::FS::Path cwd;
+
        PackageMap   packages;
-       PackageList  new_pkgs;
-       Package      *default_pkg;
+       SourcePackage *main_pkg;
+       PathList     pkg_path;
+       PathList     pkg_dirs;
 
        TargetMap    targets;
        TargetList   new_tgts;
        TargetMap    includes;
        TargetMap    libraries;
 
-       ToolMap      tools;    /// Not used yet
-       
+       ArchMap      archs;
+       ProfileTemplateMap profile_tmpl;
+
+       ProblemList     problems;
        Analyzer        *analyzer;
-       bool            do_build;
+       bool            build;
+       unsigned        clean;
        bool            dry_run;
        bool            help;
        unsigned        verbose;
-       bool            chrome;
-       Msp::Path::Path build_file;
+       bool            show_progress;
+       std::string     build_file;
        unsigned        jobs;
        StringList      what_if;
        bool            conf_all;
+       bool            conf_only;
        bool            build_all;
+       bool            create_makefile;
+       std::string     current_arch;
+       Msp::FS::Path   prefix;
+       StringList      warnings;
 
-       int    load_build_file(const Msp::Path::Path &);
+       Msp::FS::Path get_package_location(const std::string &);
+       int    load_build_file(const Msp::FS::Path &);
        int    create_targets();
-       Target *check_header(const Msp::Path::Path &);
-       void   add_target(Target *);
+       Target *get_header(const Msp::FS::Path &);
+       Target *get_library(const std::string &, const Msp::FS::Path &, LibMode);
        void   update_hash(std::string &, const std::string &);
-       int    build();
+       int    do_build();
+       int    do_clean();
+       int    do_create_makefile();
        void   package_help();
-       
+
        static Msp::Application::RegApp<Builder> reg;
 };