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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
// file : mod/types-parsers.hxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
// CLI parsers, included into the generated source files.
//
#ifndef MOD_TYPES_PARSERS_HXX
#define MOD_TYPES_PARSERS_HXX
#include <regex>
#include <libbpkg/manifest.hxx> // repository_location
#include <libbbot/manifest.hxx> // interactive_mode
#include <web/xhtml/fragment.hxx>
#include <libbrep/types.hxx>
#include <libbrep/utility.hxx>
#include <mod/options-types.hxx>
namespace brep
{
namespace cli
{
class scanner;
template <typename T>
struct parser;
template <>
struct parser<path>
{
static void
parse (path&, bool&, scanner&);
};
template <>
struct parser<dir_path>
{
static void
parse (dir_path&, bool&, scanner&);
};
// Parse time of day specified in the `hh:mm` form.
//
template <>
struct parser<duration>
{
static void
parse (duration&, bool&, scanner&);
};
template <>
struct parser<bpkg::repository_location>
{
static void
parse (bpkg::repository_location&, bool&, scanner&);
};
template <>
struct parser<bbot::interactive_mode>
{
static void
parse (bbot::interactive_mode&, bool&, scanner&);
};
template <>
struct parser<page_form>
{
static void
parse (page_form&, bool&, scanner&);
};
template <>
struct parser<page_menu>
{
static void
parse (page_menu&, bool&, scanner&);
};
template <>
struct parser<web::xhtml::fragment>
{
static void
parse (web::xhtml::fragment&, bool&, scanner&);
};
template <>
struct parser<pair<std::regex, string>>
{
static void
parse (pair<std::regex, string>&, bool&, scanner&);
};
template <>
struct parser<build_order>
{
static void
parse (build_order&, bool&, scanner&);
};
template <>
struct parser<build_email>
{
static void
parse (build_email&, bool&, scanner&);
};
}
}
#endif // MOD_TYPES_PARSERS_HXX
|