]> git.tdb.fi Git - builder.git/blob - source/sourcepackage.h
97c9b32eb8ffa233ca980892d704a3c5ea1d8d6b
[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 "cache.h"
8 #include "component.h"
9 #include "condition.h"
10 #include "config.h"
11 #include "feature.h"
12 #include "package.h"
13
14 class Builder;
15 class BuildType;
16 class FileTarget;
17
18 class bad_expansion: public std::runtime_error
19 {
20 public:
21         bad_expansion(const std::string &w): std::runtime_error(w) { }
22         virtual ~bad_expansion() throw() { }
23 };
24
25 /**
26 A package that can be built by Builder.
27 */
28 class SourcePackage: public Package
29 {
30 public:
31         class Loader: public Msp::DataFile::DerivedObjectLoader<SourcePackage, Package>
32         {
33         private:
34                 const Config::InputOptions *options;
35                 std::map<std::string, std::string> install_map;
36
37         public:
38                 Loader(SourcePackage &);
39                 Loader(SourcePackage &, const Config::InputOptions &);
40         private:
41                 void init(const Config::InputOptions *);
42                 virtual void finish();
43                 void feature(const std::string &, const std::string &);
44                 template<Component::Type>
45                 void component(const std::string &);
46                 void condition(const std::string &);
47                 void build_info();
48                 void headers(const std::string &);
49                 void if_arch(const std::string &);
50                 void if_feature(const std::string &);
51                 void tarball(const std::string &);
52                 void tar_file(const std::string &);
53         };
54
55         typedef std::list<Component> ComponentList;
56
57 private:
58         std::string version;
59         std::string description;
60
61         FileTarget *build_file;
62         Msp::FS::Path source_dir;
63         const BuildType *build_type;
64         FeatureList features;
65         BuildInfo build_info;
66         ComponentList components;
67         Config config;
68         mutable Cache cache;
69
70 public:
71         SourcePackage(Builder &, const std::string &, const Msp::FS::Path &);
72
73         const std::string &get_version() const { return version; }
74         const std::string &get_description() const { return description; }
75         FileTarget &get_build_file() const { return *build_file; }
76         const Msp::FS::Path &get_source_directory() const { return source_dir; }
77         Msp::FS::Path get_temp_dir() const;
78         Msp::FS::Path get_out_dir() const;
79         const ComponentList &get_components() const { return components; }
80         const Config &get_config() const { return config; }
81         void set_build_type(const BuildType &);
82         const BuildInfo &get_build_info() const { return build_info; }
83         Builder &get_builder() const { return builder; }
84
85         Cache &get_cache() const { return cache; }
86 private:
87         virtual void create_build_info();
88
89         virtual void create_targets();
90
91         virtual void save_caches();
92 };
93
94 #endif