]> git.tdb.fi Git - builder.git/blob - source/packagemanager.cpp
ee07987d0186e86641cf43cf8aa11f801d3ea18f
[builder.git] / source / packagemanager.cpp
1 #include <cstdlib>
2 #include <msp/fs/dir.h>
3 #include <msp/fs/stat.h>
4 #include <msp/fs/utils.h>
5 #include <msp/io/print.h>
6 #include <msp/strings/format.h>
7 #include <msp/strings/utils.h>
8 #include <msp/time/units.h>
9 #include <msp/time/utils.h>
10 #include "binarypackage.h"
11 #include "builder.h"
12 #include "externaltask.h"
13 #include "package.h"
14 #include "packagemanager.h"
15
16 using namespace std;
17 using namespace Msp;
18
19 PackageManager::PackageManager(Builder &b):
20         builder(b),
21         no_externals(false),
22         main_pkg(0),
23         env_set(false)
24 { }
25
26 PackageManager::~PackageManager()
27 {
28         for(PackageMap::iterator i=packages.begin(); i!=packages.end(); ++i)
29                 delete i->second;
30 }
31
32 void PackageManager::append_package_path(const FS::Path &p)
33 {
34         pkg_path.push_back(p);
35 }
36
37 void PackageManager::append_binary_package_path(const FS::Path &p)
38 {
39         binpkg_path.push_back(p);
40 }
41
42 void PackageManager::set_no_externals(bool x)
43 {
44         no_externals = x;
45 }
46
47 void PackageManager::add_package(Package *pkg)
48 {
49         PackageMap::iterator i = packages.find(pkg->get_name());
50         if(i!=packages.end())
51         {
52                 if(i->second!=pkg)
53                         throw invalid_argument("Package name conflict");
54                 else
55                         throw logic_error("Package is already managed");
56         }
57
58         if(packages.empty())
59                 main_pkg = pkg;
60
61         packages.insert(PackageMap::value_type(pkg->get_name(), pkg));
62 }
63
64 Package *PackageManager::get_package(const string &name) const
65 {
66         PackageMap::const_iterator i = packages.find(name);
67         if(i!=packages.end())
68                 return i->second;
69
70         return 0;
71 }
72
73 Package &PackageManager::get_main_package() const
74 {
75         if(!main_pkg)
76                 throw logic_error("No packages");
77         return *main_pkg;
78 }
79
80 Package *PackageManager::find_package(const string &name)
81 {
82         if(not_found.count(name))
83                 return 0;
84
85         if(Package *pkg = get_package(name))
86                 return pkg;
87
88         if(!no_externals)
89         {
90                 FS::Path path = get_package_location(name);
91                 if(!path.empty())
92                 {
93                         builder.load_build_file(path/"Build");
94                         PackageMap::iterator i = packages.find(name);
95                         if(i!=packages.end())
96                                 return i->second;
97                 }
98         }
99
100         FS::Path path = get_binary_package_file(name);
101         if(!path.empty())
102         {
103                 builder.load_build_file(path);
104                 if(Package *pkg = get_package(name))
105                         return pkg;
106         }
107
108         try
109         {
110                 // Package source not found - create a binary package
111                 string flags_str = run_pkgconfig(name, "flags");
112                 vector<string> flags = split(flags_str);
113                 Package *pkg = BinaryPackage::from_flags(builder, name, flags);
114                 packages.insert(PackageMap::value_type(name, pkg));
115                 return pkg;
116         }
117         catch(...)
118         {
119                 not_found.insert(name);
120                 return 0;
121         }
122 }
123
124 string PackageManager::run_pkgconfig(const string &pkg, const string &what)
125 {
126         if(!env_set)
127         {
128                 const FS::Path &prefix = builder.get_prefix();
129                 if(prefix.str()!="/usr")
130                 {
131                         FS::Path pcdir = prefix/"lib/pkgconfig";
132                         if(const char *pcp = getenv("PKG_CONFIG_PATH"))
133                         {
134                                 vector<string> path = split(pcp, ':');
135                                 bool found = false;
136                                 for(vector<string>::const_iterator i=path.begin(); (!found && i!=path.end()); ++i)
137                                         found = (*i==pcdir.str());
138                                 if(!found)
139                                 {
140                                         path.push_back(pcdir.str());
141                                         setenv("PKG_CONFIG_PATH", join(path.begin(), path.end(), ":").c_str(), true);
142                                 }
143                         }
144                         else
145                                 setenv("PKG_CONFIG_PATH", pcdir.str().c_str(), true);
146                 }
147         }
148
149         ExternalTask::Arguments argv;
150         argv.push_back("pkg-config");
151         if(what=="cflags" || what=="libs")
152                 argv.push_back("--"+what);
153         else if(what=="flags")
154         {
155                 argv.push_back("--cflags");
156                 argv.push_back("--libs");
157         }
158         else
159                 argv.push_back("--variable="+what);
160         argv.push_back(pkg);
161
162         builder.get_logger().log("auxcommands", format("Running %s", join(argv.begin(), argv.end())));
163
164         return ExternalTask::run_and_capture_output(argv);
165 }
166
167 FS::Path PackageManager::get_package_location(const string &name)
168 {
169         builder.get_logger().log("packagemgr", format("Looking for source package %s", name));
170
171         try
172         {
173                 // Try to get source directory with pkgconfig
174                 string srcdir = strip(run_pkgconfig(name, "source"));
175                 if(!srcdir.empty() && FS::exists(FS::Path(srcdir)/"Build"))
176                         return srcdir;
177         }
178         catch(...)
179         { }
180
181         if(pkg_dirs.empty())
182         {
183                 for(SearchPath::const_iterator i=pkg_path.begin(); i!=pkg_path.end(); ++i)
184                 {
185                         builder.get_logger().log("files", format("Traversing %s", *i));
186                         list<string> files = list_files(*i);
187                         unsigned count = 0;
188                         for(list<string>::const_iterator j=files.begin(); j!=files.end(); ++j)
189                         {
190                                 FS::Path full = *i / *j;
191                                 if(FS::exists(full/"Build"))
192                                 {
193                                         pkg_dirs.push_back(full);
194                                         ++count;
195                                 }
196                         }
197
198                         builder.get_logger().log("packagemgr", format("%d source packages found in %s", count, *i));
199                 }
200
201                 builder.get_logger().log("packagemgr", format("%d source packages found", pkg_dirs.size()));
202         }
203
204         bool msp = !name.compare(0, 3, "msp");
205         for(SearchPath::const_iterator i=pkg_dirs.begin(); i!=pkg_dirs.end(); ++i)
206         {
207                 string base = FS::basename(*i);
208                 unsigned dash = base.rfind('-');
209
210                 if(!base.compare(0, dash, name))
211                         return *i;
212                 else if(msp && !base.compare(0, dash, name, 3, string::npos))
213                         return *i;
214         }
215
216         return FS::Path();
217 }
218
219 FS::Path PackageManager::get_binary_package_file(const string &name)
220 {
221         builder.get_logger().log("packagemgr", format("Looking for binary package %s", name));
222
223         if(binpkg_files.empty())
224         {
225                 for(list<FS::Path>::const_iterator i=binpkg_path.begin(); i!=binpkg_path.end(); ++i)
226                 {
227                         builder.get_logger().log("files", format("Traversing %s", *i));
228                         list<string> files = list_filtered(*i, "\\.bpk$");
229                         for(list<string>::const_iterator j=files.begin(); j!=files.end(); ++j)
230                                 binpkg_files.push_back(*i / *j);
231                         builder.get_logger().log("packagemgr", format("%d binary packages found in %s", files.size(), *i));
232                 }
233
234                 builder.get_logger().log("packagemgr", format("%d binary packages found", binpkg_files.size()));
235         }
236
237         for(SearchPath::const_iterator i=binpkg_files.begin(); i!=binpkg_files.end(); ++i)
238         {
239                 string base = FS::basepart(FS::basename(*i));
240                 if(base==name)
241                         return *i;
242         }
243
244         return FS::Path();
245 }
246
247 void PackageManager::save_all_caches() const
248 {
249         for(PackageMap::const_iterator i=packages.begin(); i!=packages.end(); ++i)
250                 i->second->save_caches();
251 }