1 #ifndef PACKAGEMANAGER_H_
2 #define PACKAGEMANAGER_H_
7 #include <msp/fs/path.h>
13 Keeps track of packages. Also responsible for locating previously unknown
19 typedef std::map<std::string, Package *> PackageMap;
22 typedef std::list<Msp::FS::Path> SearchPath;
31 PackageManager(Builder &);
34 void set_no_externals(bool);
36 /** Adds a package to the manager. Called from Package constructor. */
37 void add_package(Package *);
39 /** Returns a package from the cache. */
40 Package *get_package(const std::string &);
42 const PackageMap &get_packages() const { return packages; }
44 /** Locates a package and creates it if necessary. */
45 Package *find_package(const std::string &);
48 std::string run_pkgconfig(const std::string &, const std::string &);
50 /** Determines the source directory of a package. Pkg-config is consulted
51 first, and if it fails, the package path is searched for matches. */
52 Msp::FS::Path get_package_location(const std::string &);