diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-11-14 20:55:14 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-11-16 14:46:30 +0300 |
commit | 5cb3bc99fba750e95a5e17e8a45ff8134b72082d (patch) | |
tree | d8167d14583bc0df63bc1d036fe032ad28ee31f4 | |
parent | 9deb34a844ec03383a2b51426aec521b899934f9 (diff) |
Adapt to repository typed URLs (dir+file://..., etc)
-rw-r--r-- | bdep/sync.cxx | 40 |
1 files changed, 31 insertions, 9 deletions
diff --git a/bdep/sync.cxx b/bdep/sync.cxx index ff37925..b9a83a0 100644 --- a/bdep/sync.cxx +++ b/bdep/sync.cxx @@ -6,6 +6,8 @@ #include <cstring> // strchr() +#include <libbpkg/manifest.hxx> + #include <bdep/database.hxx> #include <bdep/diagnostics.hxx> #include <bdep/project-odb.hxx> @@ -24,6 +26,9 @@ namespace bdep const dir_path& cfg, const dir_path& prj) { + using bpkg::repository_type; + using bpkg::repository_location; + dir_paths r; // Use bpkg-rep-list to discover the list of project directories. @@ -46,24 +51,41 @@ namespace bdep for (string l; !eof (getline (is, l)); ) { - // The repository type must be 'dir'. + // Skip repository locations other than dir (who knows what else the + // user might have added). // if (l.compare (0, 4, "dir:") != 0) continue; - size_t p (l.find (' ')); + // Note that the dir repository type can not be guessed and so its URL + // is always typed. Thus, it has a URL notation and so can't contain + // the space characters (unlike the canonical name). That's why we can + // just search for the rightmost space to find the beginning of the + // repository URL. + // + size_t p (l.rfind (' ')); if (p == string::npos) fail << "invalid bpkg-rep-list output: no repository location"; - // Paths that we add are absolute and normilized but who knows what - // else the user might have added. - // - dir_path d (l, p + 1, string::npos); + dir_path d; - if (d.relative ()) - continue; + try + { + repository_location rl (string (l, p + 1)); - d.normalize (); // For good measure. + assert (rl.type () == repository_type::dir); + + // Note that the directory is absolute and normalized (see + // <libbpkg/manifest.hxx> for details). + // + d = path_cast<dir_path> (rl.path ()); + + assert (d.absolute ()); + } + catch (const invalid_argument& e) + { + fail << "invalid bpkg-rep-list output: " << e; + } if (d == prj) continue; |