]> git.tdb.fi Git - builder.git/blob - source/package.h
Add Id tag to all files
[builder.git] / source / package.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 PACKAGE_H_
9 #define PACKAGE_H_
10
11 #include <list>
12 #include <string>
13 #include <msp/parser/loader.h>
14 #include "buildinfo.h"
15 #include "component.h"
16 #include "condition.h"
17 #include "config.h"
18 #include "feature.h"
19 #include "packageref.h"
20
21 class Builder;
22 class Package;
23
24 typedef std::list<Package *> PackageList;
25
26 /**
27 A package is a distributable piece of software.  They consist of one or more
28 Components and may depend on other packages.  Packages also have configuration
29 to determine where files are installed and which features to include (features
30 NYI).
31 */
32 class Package
33 {
34 public:
35         enum InstallFlags
36         {
37                 INCLUDE=1,
38                 BIN=2,
39                 LIB=4,
40                 DATA=8
41         };
42
43         /// Loads a package from a file.
44         class Loader: public Msp::Parser::Loader
45         {
46         public:
47                 Loader(Package &);
48                 Package &get_object() { return pkg; }
49         private:
50                 Package &pkg;
51                 
52                 void require(const std::string &);
53                 void feature(const std::string &, const std::string &);
54                 void condition(const std::string &);
55                 void program(const std::string &);
56                 void library(const std::string &);
57                 void module(const std::string &);
58                 void headers(const std::string &);
59                 void build_info();
60         };
61
62         Package(Builder &, const std::string &, const Msp::Path::Path &);
63         void                set_path(const Msp::Path::Path &);
64         const std::string   &get_name() const           { return name; }
65         const std::string   &get_version() const        { return version; }
66         const std::string   &get_description() const    { return description; }
67         const Msp::Path::Path &get_source() const       { return source; }
68         Msp::Path::Path     get_temp_dir() const;
69         Msp::Path::Path     get_out_dir() const;
70         Msp::Path::Path     get_prefix() const          { return config.get_option("prefix").value; }
71         const ComponentList &get_components() const     { return components; }
72         bool                get_buildable() const       { return buildable; }
73         const Config        &get_config() const         { return config; }
74         const PkgRefList    &get_requires() const       { return requires; }
75         const BuildInfo     &get_build_info() const     { return build_info; }
76         const BuildInfo     &get_exported_binfo() const { return export_binfo; }
77         Builder             &get_builder() const        { return builder; }
78         bool                get_need_path() const       { return need_path; }
79         unsigned            get_install_flags();
80         bool                get_use_pkgconfig() const   { return use_pkgconfig; }
81         const std::string   &get_arch() const           { return config.get_option("arch").value; }
82         LibMode             get_library_mode() const;
83         void                resolve_refs();
84         void                configure(const StringMap &, unsigned);
85
86         static Package *create(Builder &, const std::string &);
87 private:
88         Builder       &builder;
89         
90         std::string   name;
91         std::string   version;
92         std::string   description;
93         
94         bool          buildable;
95         Msp::Path::Path source;
96         PkgRefList    requires;
97         PackageList   all_reqs;
98         FeatureList   features;
99         BuildInfo     build_info;
100         BuildInfo     export_binfo;
101         ConditionList conditions;
102         ComponentList components;
103         Config        config;
104         bool          conf_done;
105
106         bool          use_pkgconfig;
107         bool          need_path;
108         Msp::Path::Path path;
109
110         Package(Builder &, const std::string &, const std::vector<std::string> &);
111         void     init_config();
112         void     create_build_info();
113 };
114
115 #endif