From c96ccf5e3cd131e9f3edbd3516b0251dd4461071 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 23 Aug 2018 15:27:06 +0300 Subject: Add repository_url type parser Backup --- mod/options.cli | 4 +++- mod/types-parsers.cxx | 25 +++++++++++++++++++++++++ mod/types-parsers.hxx | 9 +++++++++ 3 files changed, 37 insertions(+), 1 deletion(-) (limited to 'mod') diff --git a/mod/options.cli b/mod/options.cli index 33ed9a1..f7a9387 100644 --- a/mod/options.cli +++ b/mod/options.cli @@ -2,6 +2,8 @@ // copyright : Copyright (c) 2014-2018 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file +include ; // repository_url + include ; include ; @@ -727,7 +729,7 @@ namespace brep { // Package repository URL. // - url repository; + bpkg::repository_url repository; // Package names/versions. // diff --git a/mod/types-parsers.cxx b/mod/types-parsers.cxx index 6b0e721..e40a777 100644 --- a/mod/types-parsers.cxx +++ b/mod/types-parsers.cxx @@ -7,6 +7,7 @@ #include using namespace std; +using namespace bpkg; using namespace web::xhtml; namespace brep @@ -50,6 +51,30 @@ namespace brep parse_path (x, s); } + // Parse repository_url. + // + void parser:: + parse (repository_url& x, bool& xs, scanner& s) + { + xs = true; + + const char* o (s.next ()); + + if (!s.more ()) + throw missing_value (o); + + const char* v (s.next ()); + + try + { + x = repository_url (v); + } + catch (const invalid_argument&) + { + throw invalid_value (o, v); + } + } + // Parse page_form. // void parser:: diff --git a/mod/types-parsers.hxx b/mod/types-parsers.hxx index 4ef06b3..36128d9 100644 --- a/mod/types-parsers.hxx +++ b/mod/types-parsers.hxx @@ -8,6 +8,8 @@ #ifndef MOD_TYPES_PARSERS_HXX #define MOD_TYPES_PARSERS_HXX +#include // repository_url + #include #include @@ -39,6 +41,13 @@ namespace brep }; template <> + struct parser + { + static void + parse (bpkg::repository_url&, bool&, scanner&); + }; + + template <> struct parser { static void -- cgit v1.1