blob: 092664ae54f55866c24e15114a90fe098da66167 (
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
109
110
|
/*
Ousía
Copyright (C) 2014, 2015 Benjamin Paaßen, Andreas Stöckel
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @file Callbacks.hpp
*
* Contains an interface defining the callbacks that can be directed from a
* StateHandler to the StateStack, and from the StateStack to
* the actual parser.
*
* @author Andreas Stöckel (astoecke@techfak.uni-bielefeld.de)
*/
#ifndef _OUSIA_PARSER_STACK_CALLBACKS_HPP_
#define _OUSIA_PARSER_STACK_CALLBACKS_HPP_
#include <string>
#include <vector>
#include <core/common/Whitespace.hpp>
#include <core/common/Token.hpp>
#include <core/model/Syntax.hpp>
namespace ousia {
// Forward declarations
class Variant;
namespace parser_stack {
/**
* Interface between the Stack class and the underlying parser used for
* registering and unregistering tokens.
*/
class ParserCallbacks {
public:
/**
* Virtual descructor.
*/
virtual ~ParserCallbacks();
/**
* Registers the given token as token that should be reported to the handler
* using the "token" function.
*
* @param token is the token string that should be reported.
* @return the token id with which the token will be reported. Should return
* Tokens::Empty if the given token could not be registered.
*/
virtual TokenId registerToken(const std::string &token) = 0;
/**
* Unregisters the given token, it will no longer be reported to the handler
* using the "token" function.
*
* @param id is the token id of the token that should be unregistered.
*/
virtual void unregisterToken(TokenId id) = 0;
};
/**
* Interface defining a set of callback functions that act as a basis for the
* StateStackCallbacks and the ParserCallbacks.
*/
class HandlerCallbacks : public ParserCallbacks {
public:
/**
* Pushes a list of TokenSyntaxDescriptor instances onto the internal stack.
* The tokens described in the token list are the tokens that are currently
* enabled.
*
* @param tokens is a list of TokenSyntaxDescriptor instances that should be
* stored on the stack.
*/
void pushTokens(const std::vector<SyntaxDescriptor> &tokens);
/**
* Removes the previously pushed list of tokens from the stack.
*/
virtual void popTokens() = 0;
/**
* Reads a string variant form the current input stream. This function must
* be called from the data() method.
*
* @return a string variant containing the current text data. The return
* value depends on the currently set whitespace mode and the tokens that
* were enabled using the enableTokens callback method.
*/
virtual Variant readData() = 0;
};
}
}
#endif /* _OUSIA_PARSER_STACK_CALLBACKS_HPP_ */
|