X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpackagemanager.h;h=a2c684e0bfd7796f487b2185f20f0658bdbdc71d;hb=aa053d637e8259755af7d2e4b510a242f4d29c7b;hp=48c3c16fd4fcbdb486368fa2dfed5147af7f7b8b;hpb=7606161ee4a6fd13c2f5ddca413ba3582df66f03;p=builder.git diff --git a/source/packagemanager.h b/source/packagemanager.h index 48c3c16..a2c684e 100644 --- a/source/packagemanager.h +++ b/source/packagemanager.h @@ -1,9 +1,9 @@ #ifndef PACKAGEMANAGER_H_ #define PACKAGEMANAGER_H_ -#include #include #include +#include #include class Builder; @@ -15,19 +15,14 @@ packages by name. */ class PackageManager { -public: - typedef std::map PackageMap; - private: - typedef std::list SearchPath; - Builder &builder; - SearchPath pkg_path; - SearchPath pkg_dirs; - SearchPath binpkg_path; - SearchPath binpkg_files; + std::vector pkg_path; + std::vector pkg_dirs; + std::vector binpkg_path; + std::vector binpkg_files; bool no_externals; - PackageMap packages; + std::map packages; Package *main_pkg; std::set not_found; bool env_set; @@ -49,13 +44,13 @@ public: void add_package(Package *); /** Returns a package from the cache. */ - Package *get_package(const std::string &); + Package *get_package(const std::string &) const; /** Returns the package that was added first. This should be considered the primary build target. */ Package &get_main_package() const; - const PackageMap &get_packages() const { return packages; } + const std::map &get_packages() const { return packages; } /** Locates a package and loads it if necessary. */ Package *find_package(const std::string &); @@ -71,6 +66,9 @@ private: /** Determines the file containing a binary package. The file is expected to be named after the package. */ Msp::FS::Path get_binary_package_file(const std::string &); + +public: + void save_all_caches() const; }; #endif