blob: d4f1b7b7c893ea66cee111f25355991ad42422d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#pragma once
#include <optional>
#include <scn/scan.h>
#include <string>
namespace WebStat {
struct QuotedString : std::string {
using std::string::string;
using std::string::operator=;
};
struct QueryString : std::optional<std::string> {
using std::optional<std::string>::optional;
using std::optional<std::string>::operator=;
bool operator<=>(const QueryString &) const = default;
};
struct CLFString : std::optional<std::string> {
using std::optional<std::string>::optional;
using std::optional<std::string>::operator=;
bool operator<=>(const CLFString &) const = default;
};
}
namespace scn {
using ContextType = scn::v4::basic_scan_context<scn::v4::detail::buffer_range_tag, char>;
template<> struct scanner<WebStat::QuotedString> : scanner<std::string, char> {
static scan_expected<typename ContextType::iterator> scan(WebStat::QuotedString & value, ContextType & ctx);
};
template<> struct scanner<WebStat::QueryString> : scanner<std::string, char> {
static scan_expected<typename ContextType::iterator> scan(WebStat::QueryString & value, ContextType & ctx);
};
template<> struct scanner<WebStat::CLFString> : scanner<std::string, char> {
static scan_expected<typename ContextType::iterator> scan(WebStat::CLFString & value, ContextType & ctx);
static void decode(std::string &);
};
}
|