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
|
// file : libbuild2/build/script/lexer.hxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#ifndef LIBBUILD2_BUILD_SCRIPT_LEXER_HXX
#define LIBBUILD2_BUILD_SCRIPT_LEXER_HXX
#include <libbuild2/types.hxx>
#include <libbuild2/utility.hxx>
#include <libbuild2/script/lexer.hxx>
#include <libbuild2/build/script/token.hxx>
namespace build2
{
namespace build
{
namespace script
{
struct lexer_mode: build2::script::lexer_mode
{
using base_type = build2::script::lexer_mode;
enum
{
command_line = base_type::value_next,
first_token, // Expires at the end of the token.
second_token, // Expires at the end of the token.
variable_line, // Expires at the end of the line.
for_loop // Used for sensing the for-loop leading tokens.
};
lexer_mode () = default;
lexer_mode (value_type v): base_type (v) {}
lexer_mode (build2::lexer_mode v): base_type (v) {}
};
class lexer: public build2::script::lexer
{
public:
using base_lexer = build2::script::lexer;
// Note that neither the name nor escape arguments are copied.
//
lexer (istream& is,
const path_name& name,
uint64_t line, // Start line in the stream.
lexer_mode m,
const char* escapes = nullptr)
: base_lexer (is, name, line,
nullptr /* escapes */,
false /* set_mode */,
redirect_aliases)
{
mode (m, '\0', escapes);
}
virtual void
mode (build2::lexer_mode,
char = '\0',
optional<const char*> = nullopt,
uintptr_t = 0) override;
virtual token
next () override;
public:
static redirect_aliases_type redirect_aliases;
private:
using build2::script::lexer::mode; // Getter.
token
next_line ();
};
}
}
}
#endif // LIBBUILD2_BUILD_SCRIPT_LEXER_HXX
|