]> git.tdb.fi Git - builder.git/blob - source/sourcepackage.cpp
Move conditionals into helper classes
[builder.git] / source / sourcepackage.cpp
1 #include <algorithm>
2 #include <cstdlib>
3 #include <msp/core/maputils.h>
4 #include <msp/fs/utils.h>
5 #include <msp/io/print.h>
6 #include <msp/strings/lexicalcast.h>
7 #include <msp/strings/utils.h>
8 #include "androidapplicationcomponent.h"
9 #include "binarycomponent.h"
10 #include "binarypackage.h"
11 #include "builder.h"
12 #include "datapackcomponent.h"
13 #include "file.h"
14 #include "installcomponent.h"
15 #include "pkgconfigfile.h"
16 #include "sourcearchivecomponent.h"
17 #include "sourcegenerator.h"
18 #include "sourcepackage.h"
19 #include "tool.h"
20
21 using namespace std;
22 using namespace Msp;
23
24 SourcePackage::SourcePackage(Builder &b, const string &n, const FS::Path &f):
25         Package(b, n),
26         source_dir(FS::dirname(f)),
27         build_type(0),
28         config(*this),
29         cache(*this)
30 {
31         config.load();
32
33         build_file = builder.get_vfs().get_target(f);
34         if(!build_file)
35                 build_file = new File(builder, *this, f);
36         source_archive = new SourceArchiveComponent(*this);
37         components.push_back(source_archive);
38 }
39
40 SourcePackage::~SourcePackage()
41 {
42         for(ComponentList::iterator i=components.begin(); i!=components.end(); ++i)
43                 delete *i;
44 }
45
46 FS::Path SourcePackage::get_temp_directory() const
47 {
48         string subdir = builder.get_current_arch().get_name();
49         if(build_type)
50         {
51                 subdir += '.';
52                 subdir += build_type->get_name();
53         }
54
55         const FS::Path &temp = builder.get_temp_directory();
56         if(temp.is_absolute())
57                 return temp/name/subdir;
58         else
59                 return source_dir/temp/subdir;
60 }
61
62 FS::Path SourcePackage::get_output_directory() const
63 {
64         const Architecture &arch = builder.get_current_arch();
65         if(arch.is_native())
66                 return source_dir;
67         else
68                 return source_dir/arch.get_name();
69 }
70
71 const Component &SourcePackage::get_component(const string &n) const
72 {
73         for(ComponentList::const_iterator i=components.begin(); i!=components.end(); ++i)
74                 if((*i)->get_name()==n)
75                         return **i;
76         throw key_error(n);
77 }
78
79 bool SourcePackage::match_feature(const string &feat, const string *comp) const
80 {
81         string value = config.get_option("with_"+feat).value;
82         if(comp)
83                 return value==*comp;
84         else
85                 return lexical_cast<bool>(value);
86 }
87
88 void SourcePackage::set_build_type(const BuildType &t)
89 {
90         build_type = &t;
91 }
92
93 void SourcePackage::do_prepare()
94 {
95         BuildInfo final_build_info;
96
97         if(build_type)
98                 final_build_info.update_from(build_type->get_build_info());
99
100         final_build_info.update_from(build_info);
101         build_info = final_build_info;
102
103         build_info.incpath.push_back((builder.get_prefix()/"include").str());
104         build_info.libpath.push_back((builder.get_prefix()/"lib").str());
105
106         for(FeatureList::iterator i=features.begin(); i!=features.end(); ++i)
107         {
108                 string ident = "WITH_"+toupper(i->name);
109                 string value = config.get_option("with_"+i->name).value;
110                 if(!i->choices.empty())
111                         build_info.defines[ident] = value;
112                 else if(lexical_cast<bool>(value))
113                         build_info.defines[ident] = "1";
114         }
115
116         for(ComponentList::iterator i=components.begin(); i!=components.end(); ++i)
117         {
118                 (*i)->prepare();
119                 (*i)->create_build_info();
120
121                 (*i)->update_exported_build_info(export_binfo);
122         }
123
124         cache.load();
125
126         for(ComponentList::iterator i=components.begin(); i!=components.end(); ++i)
127                 (*i)->create_targets();
128
129         if(!export_binfo.libs.empty())
130         {
131                 export_binfo.incpath.push_back((builder.get_prefix()/"include").str());
132                 export_binfo.libpath.push_back((builder.get_prefix()/"lib").str());
133
134                 PkgConfigFile *pc = new PkgConfigFile(builder, *this);
135                 builder.get_build_graph().get_target("install")->add_dependency(*builder.get_toolchain().get_tool("CP").create_target(*pc));
136         }
137 }
138
139 void SourcePackage::save_caches()
140 {
141         config.save();
142         cache.save();
143 }
144
145
146 SourcePackage::Loader::Loader(SourcePackage &p):
147         DataFile::DerivedObjectLoader<SourcePackage, Package::Loader>(p),
148         FeatureConditional(p, p.name)
149 {
150         init(0);
151 }
152
153 SourcePackage::Loader::Loader(SourcePackage &p, const Config::InputOptions &o):
154         DataFile::DerivedObjectLoader<SourcePackage, Package::Loader>(p),
155         FeatureConditional(p, p.name)
156 {
157         init(&o);
158 }
159
160 void SourcePackage::Loader::init(const Config::InputOptions *o)
161 {
162         options = o;
163         add("android_application", &Loader::component<AndroidApplicationComponent>);
164         add("build_info",  &Loader::build_info);
165         add("datapack",    &Loader::component<DataPackComponent>);
166         add("description", &SourcePackage::description);
167         add("feature",     &Loader::feature);
168         add("generate",    &Loader::generate);
169         add("install",     &Loader::component<InstallComponent>);
170         add("interface_version", &Loader::interface_version);
171         add("library",     &Loader::component_arg<BinaryComponent, BinaryComponent::Type, BinaryComponent::LIBRARY>);
172         add("module",      &Loader::component_arg<BinaryComponent, BinaryComponent::Type, BinaryComponent::MODULE>);
173         add("program",     &Loader::component_arg<BinaryComponent, BinaryComponent::Type, BinaryComponent::PROGRAM>);
174         add("source_archive", &Loader::source_archive);
175         add("source_tarball", &Loader::source_archive);
176         add("tarball",     &Loader::tarball);
177         add("version",     &Loader::version);
178 }
179
180 void SourcePackage::Loader::finish()
181 {
182         /* Make sure the source tarball is last in the list so targets from all
183         other components wil be created first */
184         ComponentList::iterator i = find(obj.components.begin(), obj.components.end(), obj.source_archive);
185         if(i!=obj.components.end())
186                 obj.components.splice(obj.components.end(), obj.components, i);
187 }
188
189 void SourcePackage::Loader::feature(const string &n, const string &d)
190 {
191         Feature feat(n);
192         feat.description = d;
193         load_sub(feat);
194         obj.features.push_back(feat);
195
196         const Config::Option &opt = obj.config.add_option(feat);
197         if(options)
198         {
199                 Config::InputOptions::const_iterator i = options->find(opt.name);
200                 if(i!=options->end())
201                         obj.config.set_option(opt.name, i->second);
202         }
203 }
204
205 template<typename C>
206 void SourcePackage::Loader::component(const string &n)
207 {
208         C *comp = new C(obj, n);
209         load_sub(*comp);
210         obj.components.push_back(comp);
211 }
212
213 template<typename C, typename A, A a>
214 void SourcePackage::Loader::component_arg(const string &n)
215 {
216         C *comp = new C(obj, n, a);
217         load_sub(*comp);
218         obj.components.push_back(comp);
219 }
220
221 void SourcePackage::Loader::build_info()
222 {
223         load_sub(obj.build_info);
224 }
225
226 void SourcePackage::Loader::generate(const string &tag)
227 {
228         SourceGenerator *gen = new SourceGenerator(obj.builder, obj, tag);
229         load_sub(*gen);
230         obj.local_tools.add_tool(gen);
231 }
232
233 void SourcePackage::Loader::interface_version(const string &v)
234 {
235         obj.interface_version = v;
236         if(obj.version.empty())
237                 obj.version = v;
238 }
239
240 void SourcePackage::Loader::source_archive()
241 {
242         load_sub(*obj.source_archive);
243 }
244
245 void SourcePackage::Loader::tarball(const string &)
246 {
247         IO::print("%s: Deprecated tarball component ignored\n", get_source());
248 }
249
250 void SourcePackage::Loader::version(const string &v)
251 {
252         obj.version = v;
253
254         string::size_type i = 0;
255         for(unsigned dots=0; i<obj.version.size(); ++i)
256                 if(obj.version[i]=='.' && ++dots>=2)
257                         break;
258         obj.interface_version = obj.version.substr(0, i);
259 }