aboutsummaryrefslogtreecommitdiff
path: root/libbutl/string-parser.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-09-22 23:32:28 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-09-22 23:32:28 +0200
commitc09cd7512491cee1e82c1ad8128ce9fd4bc3f79b (patch)
treea659ed768d849130ab5780a11b7f791a463a1a91 /libbutl/string-parser.hxx
parent2a00871f07067f8f9e2de08bb9c8f50e1bf6a650 (diff)
Initial modularization with both Clang and VC hacks
Note: gave up on VC about half way though.
Diffstat (limited to 'libbutl/string-parser.hxx')
-rw-r--r--libbutl/string-parser.hxx56
1 files changed, 0 insertions, 56 deletions
diff --git a/libbutl/string-parser.hxx b/libbutl/string-parser.hxx
deleted file mode 100644
index b445f34..0000000
--- a/libbutl/string-parser.hxx
+++ /dev/null
@@ -1,56 +0,0 @@
-// file : libbutl/string-parser.hxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
-// license : MIT; see accompanying LICENSE file
-
-#ifndef LIBBUTL_STRING_PARSER_HXX
-#define LIBBUTL_STRING_PARSER_HXX
-
-#include <string>
-#include <vector>
-#include <cstddef> // size_t
-#include <utility> // pair
-#include <stdexcept> // invalid_argument
-
-#include <libbutl/export.hxx>
-
-namespace butl
-{
- class LIBBUTL_SYMEXPORT invalid_string: public std::invalid_argument
- {
- public:
- invalid_string (std::size_t p, const std::string& d)
- : invalid_argument (d), position (p) {}
-
- std::size_t position; // Zero-based.
- };
-
- class LIBBUTL_SYMEXPORT string_parser
- {
- public:
- // Parse a whitespace-separated list of strings. Can contain single or
- // double quoted substrings. No escaping is supported. If unquote is true,
- // return one-level unquoted values. Throw invalid_string in case of
- // invalid quoting.
- //
- static std::vector<std::string>
- parse_quoted (const std::string&, bool unquote);
-
- // As above but return a list of string and zero-based position pairs.
- // Position is useful for issuing diagnostics about an invalid string
- // during second-level parsing.
- //
- static std::vector<std::pair<std::string, std::size_t>>
- parse_quoted_position (const std::string&, bool unquote);
-
- // Remove a single level of quotes. Note that the format or the
- // correctness of the quotation is not validated.
- //
- static std::string
- unquote (const std::string&);
-
- static std::vector<std::string>
- unquote (const std::vector<std::string>&);
- };
-}
-
-#endif // LIBBUTL_STRING_PARSER_HXX