]> git.tdb.fi Git - builder.git/blob - source/sourcepackage.h
Evaluate conditions at load time to allow more flexibility
[builder.git] / source / sourcepackage.h
1 #ifndef SOURCEPACKAGE_H_
2 #define SOURCEPACKAGE_H_
3
4 #include <stdexcept>
5 #include <string>
6 #include "buildinfo.h"
7 #include "component.h"
8 #include "condition.h"
9 #include "config.h"
10 #include "dependencycache.h"
11 #include "feature.h"
12 #include "package.h"
13
14 class Builder;
15 class BuildType;
16
17 class bad_expansion: public std::runtime_error
18 {
19 public:
20         bad_expansion(const std::string &w): std::runtime_error(w) { }
21         virtual ~bad_expansion() throw() { }
22 };
23
24 /**
25 A package that can be built by Builder.
26 */
27 class SourcePackage: public Package
28 {
29 public:
30         class Loader: public Msp::DataFile::DerivedObjectLoader<SourcePackage, Package>
31         {
32         private:
33                 const Config::InputOptions *options;
34                 std::map<std::string, std::string> install_map;
35
36         public:
37                 Loader(SourcePackage &);
38                 Loader(SourcePackage &, const Config::InputOptions &);
39         private:
40                 void init(const Config::InputOptions *);
41                 virtual void finish();
42                 void feature(const std::string &, const std::string &);
43                 template<Component::Type>
44                 void component(const std::string &);
45                 void condition(const std::string &);
46                 void build_info();
47                 void headers(const std::string &);
48                 void if_arch(const std::string &);
49                 void if_feature(const std::string &);
50                 void tarball(const std::string &);
51                 void tar_file(const std::string &);
52         };
53
54 private:
55         std::string version;
56         std::string description;
57
58         Msp::FS::Path source;
59         const BuildType *build_type;
60         FeatureList features;
61         BuildInfo build_info;
62         ComponentList components;
63         Config config;
64         mutable DependencyCache deps_cache;
65
66 public:
67         SourcePackage(Builder &, const std::string &, const Msp::FS::Path &);
68         const std::string &get_version() const { return version; }
69         const std::string &get_description() const { return description; }
70         const Msp::FS::Path &get_source() const { return source; }
71         Msp::FS::Path get_temp_dir() const;
72         Msp::FS::Path get_out_dir() const;
73         const ComponentList &get_components() const { return components; }
74         const Config &get_config() const { return config; }
75         void set_build_type(const BuildType &);
76         const BuildInfo &get_build_info() const { return build_info; }
77         Builder &get_builder() const { return builder; }
78
79         DependencyCache &get_deps_cache() const { return deps_cache; }
80         std::string expand_string(const std::string &) const;
81 private:
82         virtual void do_configure(const StringMap &, unsigned);
83
84         /** Initializes configuration options. */
85         void init_config();
86
87         /** Fills in build info based on configuration.  All required packages must be
88         configured when this is called. */
89         virtual void create_build_info();
90
91         virtual void create_targets();
92
93         virtual void save_caches();
94 };
95
96 #endif