]> git.tdb.fi Git - builder.git/blob - source/builder.h
Improve automatic package finding to detect directories with version number
[builder.git] / source / builder.h
1 /* $Id$
2
3 This file is part of builder
4 Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef BUILDER_H_
9 #define BUILDER_H_
10
11 #include <list>
12 #include <map>
13 #include <string>
14 #include <msp/core/application.h>
15 #include <msp/datafile/loader.h>
16 #include <msp/fs/path.h>
17 #include "architecture.h"
18 #include "config.h"
19 #include "misc.h"
20 #include "problem.h"
21 #include "target.h"
22
23 class Analyzer;
24 class Config;
25 class Package;
26 class SourcePackage;
27
28 /**
29 The main application class.  Controls and owns everything.  Rules the world.
30 */
31 class Builder: public Msp::Application
32 {
33 public:
34         Builder(int, char **);
35         unsigned get_verbose() const   { return verbose; }
36         bool     get_dry_run() const   { return dry_run; }
37         bool     get_build_all() const { return build_all; }
38         Package  *get_package(const std::string &);
39         SourcePackage *get_main_package() const { return main_pkg; }
40         Target   *get_target(const std::string &) const;
41         const TargetMap &get_targets() const { return targets; }
42         Target   *get_header(const std::string &, const std::string &, const StringList &);
43         Target   *get_library(const std::string &, const StringList &, LibMode);
44         const Msp::FS::Path &get_cwd() const { return cwd; }
45         const Architecture &get_architecture(const std::string &) const;
46         const Architecture &get_current_arch() const;
47         const Msp::FS::Path &get_prefix() const { return prefix; }
48         const StringList &get_warnings() const { return warnings; }
49         void     apply_profile_template(Config &, const std::string &) const;
50         void     add_target(Target *);
51         void     problem(const std::string &, const std::string &);
52         int      main();
53         ~Builder();
54
55         static void usage(const char *, const char *, bool);
56 private:
57         class Loader: public Msp::DataFile::Loader
58         {
59         public:
60                 Loader(Builder &, const Msp::FS::Path &);
61         private:
62                 Builder       &bld;
63                 Msp::FS::Path src;
64
65                 void architecture(const std::string &);
66                 void binpkg(const std::string &);
67                 void profile(const std::string &);
68                 void package(const std::string &);
69         };
70
71         class ProfileLoader: public Msp::DataFile::Loader
72         {
73         public:
74                 ProfileLoader(StringMap &);
75         private:
76                 StringMap &profile;
77
78                 void option(const std::string &, const std::string &);
79         };
80
81         typedef std::list<Package *>               PackageList;
82         typedef std::map<std::string, Package *>   PackageMap;
83         typedef std::map<std::string, StringMap>   ProfileTemplateMap;
84
85         StringList   cmdline_targets;
86         StringMap    cmdline_options;
87         Msp::FS::Path cwd;
88
89         PackageMap   packages;
90         SourcePackage *main_pkg;
91         PathList     pkg_path;
92         PathList     pkg_dirs;
93
94         TargetMap    targets;
95         TargetList   new_tgts;
96         TargetMap    includes;
97         TargetMap    libraries;
98
99         ArchMap      archs;
100         ProfileTemplateMap profile_tmpl;
101
102         ProblemList     problems;
103         Analyzer        *analyzer;
104         bool            build;
105         unsigned        clean;
106         bool            dry_run;
107         bool            help;
108         unsigned        verbose;
109         bool            show_progress;
110         std::string     build_file;
111         unsigned        jobs;
112         StringList      what_if;
113         bool            conf_all;
114         bool            conf_only;
115         bool            build_all;
116         bool            create_makefile;
117         std::string     current_arch;
118         Msp::FS::Path   prefix;
119         StringList      warnings;
120
121         Msp::FS::Path get_package_location(const std::string &);
122         int    load_build_file(const Msp::FS::Path &);
123         int    create_targets();
124         Target *get_header(const Msp::FS::Path &);
125         Target *get_library(const std::string &, const Msp::FS::Path &, LibMode);
126         void   update_hash(std::string &, const std::string &);
127         int    do_build();
128         int    do_clean();
129         int    do_create_makefile();
130         void   package_help();
131
132         static Msp::Application::RegApp<Builder> reg;
133 };
134
135 #endif