]> git.tdb.fi Git - builder.git/blob - source/sourcepackage.h
Have SourcePackage generate the interface version
[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::Loader>
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_feature(const std::string &);
50                 void interface_version(const std::string &);
51                 void source_tarball();
52                 void tarball(const std::string &);
53                 void tar_file(const std::string &);
54                 void version(const std::string &);
55         };
56
57         typedef std::list<Component> ComponentList;
58
59 private:
60         typedef std::list<Feature> FeatureList;
61
62         std::string version;
63         std::string interface_version;
64         std::string description;
65
66         FileTarget *build_file;
67         Msp::FS::Path source_dir;
68         const BuildType *build_type;
69         FeatureList features;
70         BuildInfo build_info;
71         ComponentList components;
72         Component *source_tarball;
73         Config config;
74         mutable Cache cache;
75
76 public:
77         SourcePackage(Builder &, const std::string &, const Msp::FS::Path &);
78
79         const std::string &get_version() const { return version; }
80         const std::string &get_interface_version() const { return interface_version; }
81         const std::string &get_description() const { return description; }
82         FileTarget &get_build_file() const { return *build_file; }
83         const Msp::FS::Path &get_source_directory() const { return source_dir; }
84         Msp::FS::Path get_temp_dir() const;
85         Msp::FS::Path get_out_dir() const;
86         const ComponentList &get_components() const { return components; }
87         const Config &get_config() const { return config; }
88         void set_build_type(const BuildType &);
89         const BuildInfo &get_build_info() const { return build_info; }
90         Builder &get_builder() const { return builder; }
91
92         Cache &get_cache() const { return cache; }
93 private:
94         virtual void do_prepare();
95
96         virtual void save_caches();
97 };
98
99 #endif