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/types-parsers.cxx | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'mod/types-parsers.cxx') 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:: -- cgit v1.1