// file : bpkg/manifest-utility.hxx -*- C++ -*- // license : MIT; see accompanying LICENSE file #ifndef BPKG_MANIFEST_UTILITY_HXX #define BPKG_MANIFEST_UTILITY_HXX #include #include #include #include namespace bpkg { extern const path repositories_file; // repositories.manifest extern const path packages_file; // packages.manifest extern const path signature_file; // signature.manifest extern const path manifest_file; // manifest // Obtain build2 projects info for package source or output directories. // vector package_b_info (const common_options&, const dir_paths&, bool ext_mods); // As above but return the info for a single package directory. // inline package_info package_b_info (const common_options& o, const dir_path& d, bool ext_mods) { vector r (package_b_info (o, dir_paths ({d}), ext_mods)); return move (r[0]); } // Package naming schemes. // enum class package_scheme { none, sys }; // Extract scheme from [:]. Position the pointer right after // the scheme end if present, otherwise leave unchanged. // package_scheme parse_package_scheme (const char*&); // Extract the package name and version components from [/]. // Diagnose invalid components and throw failed. // package_name parse_package_name (const char*, bool allow_version = true); inline package_name parse_package_name (const string& s, bool allow_version = true) { return parse_package_name (s.c_str (), allow_version); } // Return empty version if none is specified. // version parse_package_version (const char*, bool allow_wildcard = false, version::flags fl = version::fold_zero_revision); inline version parse_package_version (const string& s, bool allow_wildcard = false, version::flags fl = version::fold_zero_revision) { return parse_package_version (s.c_str (), allow_wildcard, fl); } // Extract the package constraint from either [/] or // forms, unless version_only is true. For the // former case return the `== ` constraint. Return nullopt if only // the package name is specified. // optional parse_package_version_constraint ( const char*, bool allow_wildcard = false, version::flags = version::fold_zero_revision, bool version_only = false); // If the passed location is a relative local path, then assume this is a // relative path to the repository directory and complete it based on the // current working directory. Diagnose invalid locations and throw failed. // repository_location parse_location (const string&, optional); // Return the repository state subdirectory for the specified location as it // appears under .bpkg/repos/ in the bpkg configuration. Return empty // directory if the repository type doesn't have any state. // // Note that the semantics used to produce this name is repository type- // specific and can base on the repository canonical name or (potentially a // subset of) the location URL. In particular, a state directory could be // shared by multiple repository locations of the same type. // dir_path repository_state (const repository_location&); // Return true if the argument is a valid repository canonical name. // bool repository_name (const string&); // Return the versions of packages as provided by the build2 version module // together with the build2 project info the versions originate from (in // case the caller may want to reuse it). Return nullopt as a package // version if the version module is disabled for the package (or the build2 // project directory doesn't contain the manifest file). Fail if any of the // specified directories is not a build2 project. // // Note that if a package directory is under the version control, then the // resulting version may be populated with the snapshot information (see // libbutl/standard-version.hxx for more details). Thus, this function can // be used for fixing up the package manifest versions. // class common_options; struct package_version_info { optional version; package_info info; }; using package_version_infos = vector; package_version_infos package_versions (const common_options&, const dir_paths&); // As above but return the version of a single package. // inline package_version_info package_version (const common_options& o, const dir_path& d) { package_version_infos r (package_versions (o, dir_paths ({d}))); return move (r[0]); } // Caclulate the checksum of the manifest file located in the package source // directory and the subproject set (see package::manifest_checksum). // // Pass the build2 project info for the package, if available, to speed up // the call and NULL otherwise (in which case it will be queried by the // implementation). // string package_checksum (const common_options&, const dir_path& src_dir, const package_info*); } #endif // BPKG_MANIFEST_UTILITY_HXX