]> git.tdb.fi Git - builder.git/blob - source/packagemanager.cpp
2319c5a906022ffab072e09eb87531e888d08d95
[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                 BinaryPackage::Flags flags = split(flags_str);
113                 flags_str = run_pkgconfig(name, "staticflags");
114                 BinaryPackage::Flags static_flags = split(flags_str);
115                 Package *pkg = BinaryPackage::from_flags(builder, name, flags, static_flags);
116                 packages.insert(PackageMap::value_type(name, pkg));
117                 return pkg;
118         }
119         catch(...)
120         {
121                 not_found.insert(name);
122                 return 0;
123         }
124 }
125
126 string PackageManager::run_pkgconfig(const string &pkg, const string &what)
127 {
128         if(!env_set)
129         {
130                 const FS::Path &prefix = builder.get_prefix();
131                 if(prefix.str()!="/usr")
132                 {
133                         FS::Path pcdir = prefix/"lib/pkgconfig";
134                         if(const char *pcp = getenv("PKG_CONFIG_PATH"))
135                         {
136                                 vector<string> path = split(pcp, ':');
137                                 bool found = false;
138                                 for(vector<string>::const_iterator i=path.begin(); (!found && i!=path.end()); ++i)
139                                         found = (*i==pcdir.str());
140                                 if(!found)
141                                 {
142                                         path.push_back(pcdir.str());
143                                         setenv("PKG_CONFIG_PATH", join(path.begin(), path.end(), ":").c_str(), true);
144                                 }
145                         }
146                         else
147                                 setenv("PKG_CONFIG_PATH", pcdir.str().c_str(), true);
148                 }
149         }
150
151         ExternalTask::Arguments argv;
152         argv.push_back("pkg-config");
153         if(what=="cflags" || what=="libs")
154                 argv.push_back("--"+what);
155         else if(what=="flags" || what=="staticflags")
156         {
157                 argv.push_back("--cflags");
158                 argv.push_back("--libs");
159                 if(what=="staticflags")
160                         argv.push_back("--static");
161         }
162         else
163                 argv.push_back("--variable="+what);
164         argv.push_back(pkg);
165
166         builder.get_logger().log("auxcommands", format("Running %s", join(argv.begin(), argv.end())));
167
168         return ExternalTask::run_and_capture_output(argv);
169 }
170
171 FS::Path PackageManager::get_package_location(const string &name)
172 {
173         builder.get_logger().log("packagemgr", format("Looking for source package %s", name));
174
175         try
176         {
177                 // Try to get source directory with pkgconfig
178                 string srcdir = strip(run_pkgconfig(name, "source"));
179                 if(!srcdir.empty() && FS::exists(FS::Path(srcdir)/"Build"))
180                         return srcdir;
181         }
182         catch(...)
183         { }
184
185         if(pkg_dirs.empty())
186         {
187                 for(SearchPath::const_iterator i=pkg_path.begin(); i!=pkg_path.end(); ++i)
188                 {
189                         builder.get_logger().log("files", format("Traversing %s", *i));
190                         list<string> files = list_files(*i);
191                         unsigned count = 0;
192                         for(list<string>::const_iterator j=files.begin(); j!=files.end(); ++j)
193                         {
194                                 FS::Path full = *i / *j;
195                                 if(FS::exists(full/"Build"))
196                                 {
197                                         pkg_dirs.push_back(full);
198                                         ++count;
199                                 }
200                         }
201
202                         builder.get_logger().log("packagemgr", format("%d source packages found in %s", count, *i));
203                 }
204
205                 builder.get_logger().log("packagemgr", format("%d source packages found", pkg_dirs.size()));
206         }
207
208         bool msp = !name.compare(0, 3, "msp");
209         for(SearchPath::const_iterator i=pkg_dirs.begin(); i!=pkg_dirs.end(); ++i)
210         {
211                 string base = FS::basename(*i);
212                 unsigned dash = base.rfind('-');
213
214                 if(!base.compare(0, dash, name))
215                         return *i;
216                 else if(msp && !base.compare(0, dash, name, 3, string::npos))
217                         return *i;
218         }
219
220         return FS::Path();
221 }
222
223 FS::Path PackageManager::get_binary_package_file(const string &name)
224 {
225         builder.get_logger().log("packagemgr", format("Looking for binary package %s", name));
226
227         if(binpkg_files.empty())
228         {
229                 for(list<FS::Path>::const_iterator i=binpkg_path.begin(); i!=binpkg_path.end(); ++i)
230                 {
231                         builder.get_logger().log("files", format("Traversing %s", *i));
232                         list<string> files = list_filtered(*i, "\\.bpk$");
233                         for(list<string>::const_iterator j=files.begin(); j!=files.end(); ++j)
234                                 binpkg_files.push_back(*i / *j);
235                         builder.get_logger().log("packagemgr", format("%d binary packages found in %s", files.size(), *i));
236                 }
237
238                 builder.get_logger().log("packagemgr", format("%d binary packages found", binpkg_files.size()));
239         }
240
241         for(SearchPath::const_iterator i=binpkg_files.begin(); i!=binpkg_files.end(); ++i)
242         {
243                 string base = FS::basepart(FS::basename(*i));
244                 if(base==name)
245                         return *i;
246         }
247
248         return FS::Path();
249 }
250
251 void PackageManager::save_all_caches() const
252 {
253         for(PackageMap::const_iterator i=packages.begin(); i!=packages.end(); ++i)
254                 i->second->save_caches();
255 }