blob: db489504c6d09b5510ceb6470776290fbf95fd0b (
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
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
|
// Copyright (c) 2016-2017 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/PEGTL/
#ifndef TAOCPP_PEGTL_INCLUDE_INTERNAL_ACTION_INPUT_HPP
#define TAOCPP_PEGTL_INCLUDE_INTERNAL_ACTION_INPUT_HPP
#include <cstddef>
#include <string>
#include "iterator.hpp"
#include "../config.hpp"
#include "../position.hpp"
namespace tao
{
namespace TAOCPP_PEGTL_NAMESPACE
{
namespace internal
{
inline const char* begin_c_ptr( const char* p ) noexcept
{
return p;
}
inline const char* begin_c_ptr( const iterator& it ) noexcept
{
return it.data;
}
template< typename Input >
class action_input
{
public:
using input_t = Input;
using iterator_t = typename Input::iterator_t;
action_input( const iterator_t& in_begin, const Input& in_input ) noexcept
: m_begin( in_begin ),
m_input( in_input )
{
}
action_input( const action_input& ) = delete;
action_input& operator=( const action_input& ) = delete;
const iterator_t& iterator() const noexcept
{
return m_begin;
}
const Input& input() const noexcept
{
return m_input;
}
const char* begin() const noexcept
{
return begin_c_ptr( iterator() );
}
const char* end() const noexcept
{
return input().current();
}
bool empty() const noexcept
{
return begin() == end();
}
std::size_t size() const noexcept
{
return std::size_t( end() - begin() );
}
std::string string() const
{
return std::string( begin(), end() );
}
char peek_char( const std::size_t offset = 0 ) const noexcept
{
return begin()[ offset ];
}
unsigned char peek_byte( const std::size_t offset = 0 ) const noexcept
{
return static_cast< unsigned char >( peek_char( offset ) );
}
TAOCPP_PEGTL_NAMESPACE::position position() const noexcept
{
return input().position( iterator() ); // NOTE: Not efficient with LAZY inputs.
}
protected:
const iterator_t m_begin;
const Input& m_input;
};
} // namespace internal
} // namespace TAOCPP_PEGTL_NAMESPACE
} // namespace tao
#endif
|