"vscode:/vscode.git/clone" did not exist on "d27c06a7b036c367d2f4e79b2aaa3477068e60e5"
scanner.cpp 9.17 KB
Newer Older
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
#include "crt.h"
#include "scanner.h"
#include "token.h"
#include "exceptions.h"
#include "exp.h"
#include <cassert>

namespace YAML
{
	Scanner::Scanner(std::istream& in)
		: INPUT(in), m_startedStream(false), m_endedStream(false), m_simpleKeyAllowed(false), m_flowLevel(0)
	{
	}

	Scanner::~Scanner()
	{
	}

	// empty
	// . Returns true if there are no more tokens to be read
	bool Scanner::empty()
	{
		EnsureTokensInQueue();
		return m_tokens.empty();
	}

	// pop
	// . Simply removes the next token on the queue.
	void Scanner::pop()
	{
		EnsureTokensInQueue();
32
33
		if(!m_tokens.empty()) {
			// Saved anchors shouldn't survive popping the document end marker
34
			if (m_tokens.front().type == Token::DOC_END) {
35
36
				ClearAnchors();
			}
37
			m_tokens.pop();
38
		}
39
40
41
42
43
44
45
46
47
48
	}

	// peek
	// . Returns (but does not remove) the next token on the queue.
	Token& Scanner::peek()
	{
		EnsureTokensInQueue();
		assert(!m_tokens.empty());  // should we be asserting here? I mean, we really just be checking
		                            // if it's empty before peeking.

49
//		std::cerr << "peek: (" << &m_tokens.front() << ") " << m_tokens.front() << "\n";
50
51
52
53
54
55
56
57
58
59
60
61
62
		return m_tokens.front();
	}

	// EnsureTokensInQueue
	// . Scan until there's a valid token at the front of the queue,
	//   or we're sure the queue is empty.
	void Scanner::EnsureTokensInQueue()
	{
		while(1) {
			if(!m_tokens.empty()) {
				Token& token = m_tokens.front();

				// if this guy's valid, then we're done
63
				if(token.status == Token::VALID)
64
65
66
					return;

				// here's where we clean up the impossible tokens
67
				if(token.status == Token::INVALID) {
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
					m_tokens.pop();
					continue;
				}

				// note: what's left are the unverified tokens
			}

			// no token? maybe we've actually finished
			if(m_endedStream)
				return;

			// no? then scan...
			ScanNextToken();
		}
	}

	// ScanNextToken
	// . The main scanning function; here we branch out and
	//   scan whatever the next token should be.
	void Scanner::ScanNextToken()
	{
		if(m_endedStream)
			return;

		if(!m_startedStream)
			return StartStream();

		// get rid of whitespace, etc. (in between tokens it should be irrelevent)
		ScanToNextToken();

		// maybe need to end some blocks
99
		PopIndentToHere();
100

101
102
103
		// check the latest simple key
		VerifySimpleKey();
		
104
105
106
		// *****
		// And now branch based on the next few characters!
		// *****
107
		
108
		// end of stream
109
		if(!INPUT)
110
111
			return EndStream();

112
		if(INPUT.column() == 0 && INPUT.peek() == Keys::Directive)
113
114
115
			return ScanDirective();

		// document token
116
		if(INPUT.column() == 0 && Exp::DocStart.Matches(INPUT))
117
118
			return ScanDocStart();

119
		if(INPUT.column() == 0 && Exp::DocEnd.Matches(INPUT))
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
			return ScanDocEnd();

		// flow start/end/entry
		if(INPUT.peek() == Keys::FlowSeqStart || INPUT.peek() == Keys::FlowMapStart)
			return ScanFlowStart();

		if(INPUT.peek() == Keys::FlowSeqEnd || INPUT.peek() == Keys::FlowMapEnd)
			return ScanFlowEnd();
	
		if(INPUT.peek() == Keys::FlowEntry)
			return ScanFlowEntry();

		// block/map stuff
		if(Exp::BlockEntry.Matches(INPUT))
			return ScanBlockEntry();

		if((m_flowLevel == 0 ? Exp::Key : Exp::KeyInFlow).Matches(INPUT))
			return ScanKey();

		if((m_flowLevel == 0 ? Exp::Value : Exp::ValueInFlow).Matches(INPUT))
			return ScanValue();

		// alias/anchor
		if(INPUT.peek() == Keys::Alias || INPUT.peek() == Keys::Anchor)
			return ScanAnchorOrAlias();

		// tag
		if(INPUT.peek() == Keys::Tag)
			return ScanTag();

		// special scalars
		if(m_flowLevel == 0 && (INPUT.peek() == Keys::LiteralScalar || INPUT.peek() == Keys::FoldedScalar))
			return ScanBlockScalar();

		if(INPUT.peek() == '\'' || INPUT.peek() == '\"')
			return ScanQuotedScalar();

		// plain scalars
		if((m_flowLevel == 0 ? Exp::PlainScalar : Exp::PlainScalarInFlow).Matches(INPUT))
			return ScanPlainScalar();

		// don't know what it is!
162
		throw ParserException(INPUT.mark(), ErrorMsg::UNKNOWN_TOKEN);
163
164
165
166
167
168
169
170
	}

	// ScanToNextToken
	// . Eats input until we reach the next token-like thing.
	void Scanner::ScanToNextToken()
	{
		while(1) {
			// first eat whitespace
171
			while(INPUT && IsWhitespaceToBeEaten(INPUT.peek()))
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
				INPUT.eat(1);

			// then eat a comment
			if(Exp::Comment.Matches(INPUT)) {
				// eat until line break
				while(INPUT && !Exp::Break.Matches(INPUT))
					INPUT.eat(1);
			}

			// if it's NOT a line break, then we're done!
			if(!Exp::Break.Matches(INPUT))
				break;

			// otherwise, let's eat the line break and keep going
			int n = Exp::Break.Match(INPUT);
			INPUT.eat(n);

			// oh yeah, and let's get rid of that simple key
			VerifySimpleKey();

			// new line - we may be able to accept a simple key now
			if(m_flowLevel == 0)
				m_simpleKeyAllowed = true;
        }
	}

	///////////////////////////////////////////////////////////////////////
	// Misc. helpers

	// IsWhitespaceToBeEaten
	// . We can eat whitespace if:
	//   1. It's a space
	//   2. It's a tab, and we're either:
	//      a. In the flow context
	//      b. In the block context but not where a simple key could be allowed
	//         (i.e., not at the beginning of a line, or following '-', '?', or ':')
	bool Scanner::IsWhitespaceToBeEaten(char ch)
	{
		if(ch == ' ')
			return true;

		if(ch == '\t' && (m_flowLevel >= 0 || !m_simpleKeyAllowed))
			return true;

		return false;
	}

	// StartStream
	// . Set the initial conditions for starting a stream.
	void Scanner::StartStream()
	{
		m_startedStream = true;
		m_simpleKeyAllowed = true;
225
		m_indents.push(IndentMarker(-1, IndentMarker::NONE));
226
		m_anchors.clear();
227
228
229
230
231
232
233
	}

	// EndStream
	// . Close out the stream, finish up, etc.
	void Scanner::EndStream()
	{
		// force newline
234
235
		if(INPUT.column() > 0)
			INPUT.ResetColumn();
236

237
		PopAllIndents();
238
239
240
241
242
243
244
245
246
		VerifyAllSimpleKeys();

		m_simpleKeyAllowed = false;
		m_endedStream = true;
	}

	// PushIndentTo
	// . Pushes an indentation onto the stack, and enqueues the
	//   proper token (sequence start or mapping start).
247
248
	// . Returns the indent marker it generates (if any).
	Scanner::IndentMarker *Scanner::PushIndentTo(int column, IndentMarker::INDENT_TYPE type)
249
250
251
252
	{
		// are we in flow?
		if(m_flowLevel > 0)
			return 0;
253
254
255
		
		IndentMarker indent(column, type);
		const IndentMarker& lastIndent = m_indents.top();
256
257

		// is this actually an indentation?
258
259
260
		if(indent.column < lastIndent.column)
			return 0;
		if(indent.column == lastIndent.column && !(indent.type == IndentMarker::SEQ && lastIndent.type == IndentMarker::MAP))
261
262
			return 0;

263
		// push a start token
264
		if(type == IndentMarker::SEQ)
265
			m_tokens.push(Token(Token::BLOCK_SEQ_START, INPUT.mark()));
266
		else if(type == IndentMarker::MAP)
267
			m_tokens.push(Token(Token::BLOCK_MAP_START, INPUT.mark()));
268
269
		else
			assert(false);
270
		indent.pStartToken = &m_tokens.back();
271

272
273
274
		// and then the indent
		m_indents.push(indent);
		return &m_indents.top();
275
276
	}

277
278
	// PopIndentToHere
	// . Pops indentations off the stack until we reach the current indentation level,
279
	//   and enqueues the proper token each time.
280
	void Scanner::PopIndentToHere()
281
282
283
284
285
286
	{
		// are we in flow?
		if(m_flowLevel > 0)
			return;

		// now pop away
287
288
289
290
291
292
293
294
		while(!m_indents.empty()) {
			const IndentMarker& indent = m_indents.top();
			if(indent.column < INPUT.column())
				break;
			if(indent.column == INPUT.column() && !(indent.type == IndentMarker::SEQ && !Exp::BlockEntry.Matches(INPUT)))
				break;
				
			PopIndent();
295
296
		}
	}
297
298
	
	// PopAllIndents
299
	// . Pops all indentations (except for the base empty one) off the stack,
300
301
302
303
304
305
306
307
	//   and enqueues the proper token each time.
	void Scanner::PopAllIndents()
	{
		// are we in flow?
		if(m_flowLevel > 0)
			return;

		// now pop away
308
309
310
311
312
		while(!m_indents.empty()) {
			const IndentMarker& indent = m_indents.top();
			if(indent.type == IndentMarker::NONE)
				break;
			
313
			PopIndent();
314
		}
315
316
317
318
319
320
	}
	
	// PopIndent
	// . Pops a single indent, pushing the proper token
	void Scanner::PopIndent()
	{
321
322
		IndentMarker indent = m_indents.top();
		IndentMarker::INDENT_TYPE type = indent.type;
323
		m_indents.pop();
324
325
326
		if(!indent.isValid)
			return;
		
327
		if(type == IndentMarker::SEQ)
328
			m_tokens.push(Token(Token::BLOCK_SEQ_END, INPUT.mark()));
329
		else if(type == IndentMarker::MAP)
330
			m_tokens.push(Token(Token::BLOCK_MAP_END, INPUT.mark()));
331
332
333
334
335
336
337
338
339
	}

	// GetTopIndent
	int Scanner::GetTopIndent() const
	{
		if(m_indents.empty())
			return 0;
		return m_indents.top().column;
	}
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369

	// Save
	// . Saves a pointer to the Node object referenced by a particular anchor
	//   name.
	void Scanner::Save(const std::string& anchor, Node* value)
	{
		m_anchors[anchor] = value;
	}

	// Retrieve
	// . Retrieves a pointer previously saved for an anchor name.
	// . Throws an exception if the anchor has not been defined.
	const Node *Scanner::Retrieve(const std::string& anchor) const
	{
		typedef std::map<std::string, const Node *> map;

		map::const_iterator itNode = m_anchors.find(anchor);

		if(m_anchors.end() == itNode)
			ThrowParserException(ErrorMsg::UNKNOWN_ANCHOR);

		return itNode->second;
	}

	// ThrowParserException
	// . Throws a ParserException with the current token location
	//   (if available).
	// . Does not parse any more tokens.
	void Scanner::ThrowParserException(const std::string& msg) const
	{
370
		Mark mark = Mark::null();
371
372
		if(!m_tokens.empty()) {
			const Token& token = m_tokens.front();
373
			mark = token.mark;
374
		}
375
		throw ParserException(mark, msg);
376
377
378
379
380
381
	}

	void Scanner::ClearAnchors()
	{
		m_anchors.clear();
	}
382
}