dyaml/source/dyaml/scanner.d

1758 lines
64 KiB
D
Raw Normal View History

2011-08-16 12:53:13 +00:00
2014-07-23 00:54:50 +00:00
// Copyright Ferdinand Majerech 2011-2014.
2011-08-16 12:53:13 +00:00
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
/**
* YAML scanner.
* Code based on PyYAML: http://www.pyyaml.org
*/
module dyaml.scanner;
import core.stdc.string;
import std.algorithm;
import std.array;
import std.container;
2011-08-16 12:53:13 +00:00
import std.conv;
import std.ascii : isAlphaNum, isDigit, isHexDigit;
import std.exception;
import std.string;
import std.typecons;
import std.traits : Unqual;
2011-08-16 12:53:13 +00:00
import std.utf;
import dyaml.fastcharsearch;
import dyaml.escapes;
2011-08-16 12:53:13 +00:00
import dyaml.exception;
import dyaml.queue;
2011-08-16 12:53:13 +00:00
import dyaml.reader;
import dyaml.style;
2011-08-16 12:53:13 +00:00
import dyaml.token;
package:
/**
* Scanner produces tokens of the following types:
* STREAM-START
* STREAM-END
* DIRECTIVE(name, value)
* DOCUMENT-START
* DOCUMENT-END
* BLOCK-SEQUENCE-START
* BLOCK-MAPPING-START
* BLOCK-END
* FLOW-SEQUENCE-START
* FLOW-MAPPING-START
* FLOW-SEQUENCE-END
* FLOW-MAPPING-END
* BLOCK-ENTRY
* FLOW-ENTRY
* KEY
* VALUE
* ALIAS(value)
* ANCHOR(value)
* TAG(value)
* SCALAR(value, plain, style)
*/
/**
* Marked exception thrown at scanner errors.
*
* See_Also: MarkedYAMLException
*/
class ScannerException : MarkedYAMLException
{
mixin MarkedExceptionCtors;
2011-08-16 12:53:13 +00:00
}
private alias ScannerException Error;
private alias MarkedYAMLExceptionData ErrorData;
2014-07-23 16:26:39 +00:00
/// Generates tokens from data provided by a Reader.
2011-08-16 12:53:13 +00:00
final class Scanner
{
private:
2014-07-23 16:26:39 +00:00
/// A simple key is a key that is not denoted by the '?' indicator.
/// For example:
/// ---
/// block simple key: value
/// ? not a simple key:
/// : { flow simple key: value }
/// We emit the KEY token before all keys, so when we find a potential simple
/// key, we try to locate the corresponding ':' indicator. Simple keys should be
/// limited to a single line and 1024 characters.
///
/// 16 bytes on 64-bit.
2011-08-16 12:53:13 +00:00
static struct SimpleKey
{
2014-07-23 16:26:39 +00:00
/// Character index in reader where the key starts.
uint charIndex = uint.max;
2014-07-23 16:26:39 +00:00
/// Index of the key token from start (first token scanned being 0).
2011-08-16 12:53:13 +00:00
uint tokenIndex;
2014-07-23 16:26:39 +00:00
/// Line the key starts at.
uint line;
2014-07-23 16:26:39 +00:00
/// Column the key starts at.
ushort column;
2014-07-23 16:26:39 +00:00
/// Is this required to be a simple key?
2011-08-16 12:53:13 +00:00
bool required;
2014-07-23 16:26:39 +00:00
/// Is this struct "null" (invalid)?.
bool isNull;
2011-08-16 12:53:13 +00:00
}
2014-07-23 16:26:39 +00:00
/// Block chomping types.
2011-08-16 12:53:13 +00:00
enum Chomping
{
2014-07-23 16:26:39 +00:00
/// Strip all trailing line breaks. '-' indicator.
2011-08-16 12:53:13 +00:00
Strip,
2014-07-23 16:26:39 +00:00
/// Line break of the last line is preserved, others discarded. Default.
2014-07-22 00:12:18 +00:00
Clip,
2014-07-23 16:26:39 +00:00
/// All trailing line breaks are preserved. '+' indicator.
2014-07-22 00:12:18 +00:00
Keep
2011-08-16 12:53:13 +00:00
}
2014-07-23 16:26:39 +00:00
/// Reader used to read from a file/stream.
2011-08-16 12:53:13 +00:00
Reader reader_;
2014-07-23 16:26:39 +00:00
/// Are we done scanning?
2011-08-16 12:53:13 +00:00
bool done_;
2014-07-23 16:26:39 +00:00
/// Level of nesting in flow context. If 0, we're in block context.
2011-08-16 12:53:13 +00:00
uint flowLevel_;
2014-07-23 16:26:39 +00:00
/// Current indentation level.
2011-08-16 12:53:13 +00:00
int indent_ = -1;
2014-07-23 16:26:39 +00:00
/// Past indentation levels. Used as a stack.
Array!int indents_;
2011-08-16 12:53:13 +00:00
2014-07-23 16:26:39 +00:00
/// Processed tokens not yet emitted. Used as a queue.
Queue!Token tokens_;
2014-07-23 16:26:39 +00:00
/// Number of tokens emitted through the getToken method.
2011-08-16 12:53:13 +00:00
uint tokensTaken_;
2014-07-23 16:26:39 +00:00
/// Can a simple key start at the current position? A simple key may start:
/// - at the beginning of the line, not counting indentation spaces
/// (in block context),
/// - after '{', '[', ',' (in the flow context),
/// - after '?', ':', '-' (in the block context).
/// In the block context, this flag also signifies if a block collection
/// may start at the current position.
2011-08-16 12:53:13 +00:00
bool allowSimpleKey_ = true;
2014-07-23 16:26:39 +00:00
/// Possible simple keys indexed by flow levels.
SimpleKey[] possibleSimpleKeys_;
2011-08-16 12:53:13 +00:00
2014-07-23 16:26:39 +00:00
/// Used for constructing strings while limiting reallocation.
Appender!(dchar[]) appender_;
/// Set on error by nothrow/@nogc inner functions along with errorData_.
///
/// Non-nothrow/GC-using caller functions can then throw an exception using
/// data stored in errorData_.
bool error_;
/// Data for the exception to throw if error_ is true.
ErrorData errorData_;
2011-08-16 12:53:13 +00:00
public:
///Construct a Scanner using specified Reader.
2014-07-24 01:50:39 +00:00
this(Reader reader) @safe nothrow
2011-08-16 12:53:13 +00:00
{
//Return the next token, but do not delete it from the queue
reader_ = reader;
appender_ = appender!(dchar[])();
2011-08-16 12:53:13 +00:00
fetchStreamStart();
}
///Destroy the scanner.
@trusted ~this()
2011-08-16 12:53:13 +00:00
{
2014-07-19 02:17:18 +00:00
tokens_.destroy();
indents_.destroy();
possibleSimpleKeys_.destroy();
2011-08-16 12:53:13 +00:00
possibleSimpleKeys_ = null;
2014-07-19 02:17:18 +00:00
appender_.destroy();
2011-08-16 12:53:13 +00:00
reader_ = null;
}
/// If error_ is true, throws a ScannerException constructed from errorData_ and
/// sets error_ to false.
void throwIfError() @safe pure
{
if(!error_) { return; }
error_ = false;
throw new ScannerException(errorData_);
}
/// Called by internal nothrow/@nogc methods to set an error to be thrown by
/// their callers.
///
/// See_Also: dyaml.exception.MarkedYamlException
void setError(string context, const Mark contextMark, string problem,
const Mark problemMark) @safe pure nothrow @nogc
{
assert(error_ == false,
"Setting an error when there already is a not yet thrown error");
error_ = true;
errorData_ =
MarkedYAMLExceptionData(context, contextMark, problem, problemMark);
}
2011-08-16 12:53:13 +00:00
/**
* Check if the next token is one of specified types.
*
* If no types are specified, checks if any tokens are left.
*
* Params: ids = Token IDs to check for.
*
* Returns: true if the next token is one of specified types,
* or if there are any tokens left if no types specified.
* false otherwise.
*/
bool checkToken(const TokenID[] ids ...) @safe
2011-08-16 12:53:13 +00:00
{
//Check if the next token is one of specified types.
while(needMoreTokens()){fetchToken();}
if(!tokens_.empty)
{
if(ids.length == 0){return true;}
else
{
const nextId = tokens_.peek().id;
2011-08-16 12:53:13 +00:00
foreach(id; ids)
{
if(nextId == id){return true;}
}
}
}
return false;
}
/**
2014-07-22 00:12:18 +00:00
* Return the next token, but keep it in the queue.
2011-08-16 12:53:13 +00:00
*
* Must not be called if there are no tokens left.
*/
ref const(Token) peekToken() @safe
2011-08-16 12:53:13 +00:00
{
while(needMoreTokens){fetchToken();}
if(!tokens_.empty){return tokens_.peek();}
2011-08-16 12:53:13 +00:00
assert(false, "No token left to peek");
}
/**
* Return the next token, removing it from the queue.
*
* Must not be called if there are no tokens left.
*/
Token getToken() @safe
2011-08-16 12:53:13 +00:00
{
while(needMoreTokens){fetchToken();}
if(!tokens_.empty)
{
++tokensTaken_;
return tokens_.pop();
2011-08-16 12:53:13 +00:00
}
assert(false, "No token left to get");
}
private:
///Determine whether or not we need to fetch more tokens before peeking/getting a token.
2014-07-24 01:50:39 +00:00
bool needMoreTokens() @safe pure
2011-08-16 12:53:13 +00:00
{
if(done_) {return false;}
if(tokens_.empty){return true;}
2014-07-22 00:12:18 +00:00
2011-08-16 12:53:13 +00:00
///The current token may be a potential simple key, so we need to look further.
stalePossibleSimpleKeys();
return nextPossibleSimpleKey() == tokensTaken_;
}
///Fetch at token, adding it to tokens_.
2014-07-24 01:50:39 +00:00
void fetchToken() @safe
2011-08-16 12:53:13 +00:00
{
///Eat whitespaces and comments until we reach the next token.
scanToNextToken();
//Remove obsolete possible simple keys.
stalePossibleSimpleKeys();
//Compare current indentation and column. It may add some tokens
//and decrease the current indentation level.
unwindIndent(reader_.column);
//Get the next character.
const dchar c = reader_.peek();
2011-08-16 12:53:13 +00:00
//Fetch the token.
if(c == '\0') {return fetchStreamEnd();}
if(checkDirective()) {return fetchDirective();}
if(checkDocumentStart()) {return fetchDocumentStart();}
if(checkDocumentEnd()) {return fetchDocumentEnd();}
//Order of the following checks is NOT significant.
if(c == '[') {return fetchFlowSequenceStart();}
if(c == '{') {return fetchFlowMappingStart();}
if(c == ']') {return fetchFlowSequenceEnd();}
if(c == '}') {return fetchFlowMappingEnd();}
if(c == ',') {return fetchFlowEntry();}
if(checkBlockEntry()) {return fetchBlockEntry();}
if(checkKey()) {return fetchKey();}
if(checkValue()) {return fetchValue();}
if(c == '*') {return fetchAlias();}
if(c == '&') {return fetchAnchor();}
if(c == '!') {return fetchTag();}
if(c == '|' && flowLevel_ == 0){return fetchLiteral();}
if(c == '>' && flowLevel_ == 0){return fetchFolded();}
if(c == '\'') {return fetchSingle();}
if(c == '\"') {return fetchDouble();}
if(checkPlain()) {return fetchPlain();}
throw new Error(format("While scanning for the next token, found "
2012-12-11 16:06:20 +00:00
"character \'%s\', index %s that cannot start any token"
, c, to!int(c)), reader_.mark);
2011-08-16 12:53:13 +00:00
}
///Return the token number of the nearest possible simple key.
2014-07-24 01:50:39 +00:00
uint nextPossibleSimpleKey() @safe pure nothrow @nogc
2011-08-16 12:53:13 +00:00
{
uint minTokenNumber = uint.max;
foreach(k, ref simpleKey; possibleSimpleKeys_)
{
if(simpleKey.isNull){continue;}
2011-08-16 12:53:13 +00:00
minTokenNumber = min(minTokenNumber, simpleKey.tokenIndex);
}
return minTokenNumber;
}
/**
* Remove entries that are no longer possible simple keys.
*
* According to the YAML specification, simple keys
* - should be limited to a single line,
* - should be no longer than 1024 characters.
* Disabling this will allow simple keys of any length and
* height (may cause problems if indentation is broken though).
*/
2014-07-24 01:50:39 +00:00
void stalePossibleSimpleKeys() @safe pure
2011-08-16 12:53:13 +00:00
{
foreach(level, ref key; possibleSimpleKeys_)
{
if(key.isNull){continue;}
2011-08-16 12:53:13 +00:00
if(key.line != reader_.line || reader_.charIndex - key.charIndex > 1024)
{
2014-07-22 00:12:18 +00:00
enforce(!key.required,
new Error("While scanning a simple key",
Mark(key.line, key.column),
"could not find expected ':'", reader_.mark));
key.isNull = true;
2011-08-16 12:53:13 +00:00
}
}
}
/**
2014-07-22 00:12:18 +00:00
* Check if the next token starts a possible simple key and if so, save its position.
*
2011-08-16 12:53:13 +00:00
* This function is called for ALIAS, ANCHOR, TAG, SCALAR(flow), '[', and '{'.
*/
2014-07-24 01:50:39 +00:00
void savePossibleSimpleKey() @safe pure
2011-08-16 12:53:13 +00:00
{
//Check if a simple key is required at the current position.
const required = (flowLevel_ == 0 && indent_ == reader_.column);
2011-08-16 12:53:13 +00:00
assert(allowSimpleKey_ || !required, "A simple key is required only if it is "
"the first token in the current line. Therefore it is always allowed.");
if(!allowSimpleKey_){return;}
//The next token might be a simple key, so save its number and position.
removePossibleSimpleKey();
const tokenCount = tokensTaken_ + cast(uint)tokens_.length;
const line = reader_.line;
const column = reader_.column;
2014-07-22 00:12:18 +00:00
const key = SimpleKey(cast(uint)reader_.charIndex,
tokenCount,
line,
column < ushort.max ? cast(ushort)column : ushort.max,
required);
if(possibleSimpleKeys_.length <= flowLevel_)
{
const oldLength = possibleSimpleKeys_.length;
possibleSimpleKeys_.length = flowLevel_ + 1;
//No need to initialize the last element, it's already done in the next line.
possibleSimpleKeys_[oldLength .. flowLevel_] = SimpleKey.init;
}
2011-08-16 12:53:13 +00:00
possibleSimpleKeys_[flowLevel_] = key;
}
///Remove the saved possible key position at the current flow level.
2014-07-24 01:50:39 +00:00
void removePossibleSimpleKey() @safe pure
2011-08-16 12:53:13 +00:00
{
if(possibleSimpleKeys_.length <= flowLevel_){return;}
if(!possibleSimpleKeys_[flowLevel_].isNull)
2011-08-16 12:53:13 +00:00
{
const key = possibleSimpleKeys_[flowLevel_];
2014-07-22 00:12:18 +00:00
enforce(!key.required,
new Error("While scanning a simple key", Mark(key.line, key.column),
"could not find expected ':'", reader_.mark));
possibleSimpleKeys_[flowLevel_].isNull = true;
2011-08-16 12:53:13 +00:00
}
}
/**
* Decrease indentation, removing entries in indents_.
*
* Params: column = Current column in the file/stream.
*/
void unwindIndent(const int column) @trusted
2011-08-16 12:53:13 +00:00
{
if(flowLevel_ > 0)
{
//In flow context, tokens should respect indentation.
2014-07-22 00:12:18 +00:00
//The condition should be `indent >= column` according to the spec.
2011-08-16 12:53:13 +00:00
//But this condition will prohibit intuitively correct
//constructions such as
//key : {
//}
//In the flow context, indentation is ignored. We make the scanner less
//restrictive than what the specification requires.
//if(pedantic_ && flowLevel_ > 0 && indent_ > column)
//{
// throw new Error("Invalid intendation or unclosed '[' or '{'",
// reader_.mark)
2011-08-16 12:53:13 +00:00
//}
return;
}
//In block context, we may need to issue the BLOCK-END tokens.
while(indent_ > column)
{
indent_ = indents_.back;
indents_.length = indents_.length - 1;
tokens_.push(blockEndToken(reader_.mark, reader_.mark));
2011-08-16 12:53:13 +00:00
}
}
/**
* Increase indentation if needed.
*
* Params: column = Current column in the file/stream.
*
* Returns: true if the indentation was increased, false otherwise.
*/
bool addIndent(int column) @trusted
2011-08-16 12:53:13 +00:00
{
if(indent_ >= column){return false;}
indents_ ~= indent_;
indent_ = column;
return true;
}
///Add STREAM-START token.
void fetchStreamStart() @safe nothrow
2011-08-16 12:53:13 +00:00
{
tokens_.push(streamStartToken(reader_.mark, reader_.mark, reader_.encoding));
2011-08-16 12:53:13 +00:00
}
///Add STREAM-END token.
void fetchStreamEnd() @safe
2011-08-16 12:53:13 +00:00
{
//Set intendation to -1 .
unwindIndent(-1);
removePossibleSimpleKey();
allowSimpleKey_ = false;
2014-07-19 02:17:18 +00:00
possibleSimpleKeys_.destroy;
2011-08-16 12:53:13 +00:00
tokens_.push(streamEndToken(reader_.mark, reader_.mark));
2011-08-16 12:53:13 +00:00
done_ = true;
}
///Add DIRECTIVE token.
void fetchDirective() @safe
2011-08-16 12:53:13 +00:00
{
//Set intendation to -1 .
unwindIndent(-1);
//Reset simple keys.
removePossibleSimpleKey();
allowSimpleKey_ = false;
tokens_.push(scanDirective());
2011-08-16 12:53:13 +00:00
}
///Add DOCUMENT-START or DOCUMENT-END token.
void fetchDocumentIndicator(TokenID id)() @safe
2011-08-16 12:53:13 +00:00
if(id == TokenID.DocumentStart || id == TokenID.DocumentEnd)
{
//Set indentation to -1 .
unwindIndent(-1);
//Reset simple keys. Note that there can't be a block collection after '---'.
removePossibleSimpleKey();
allowSimpleKey_ = false;
Mark startMark = reader_.mark;
reader_.forward(3);
tokens_.push(simpleToken!id(startMark, reader_.mark));
2011-08-16 12:53:13 +00:00
}
///Aliases to add DOCUMENT-START or DOCUMENT-END token.
alias fetchDocumentIndicator!(TokenID.DocumentStart) fetchDocumentStart;
alias fetchDocumentIndicator!(TokenID.DocumentEnd) fetchDocumentEnd;
///Add FLOW-SEQUENCE-START or FLOW-MAPPING-START token.
void fetchFlowCollectionStart(TokenID id)() @trusted
2011-08-16 12:53:13 +00:00
{
//'[' and '{' may start a simple key.
savePossibleSimpleKey();
//Simple keys are allowed after '[' and '{'.
allowSimpleKey_ = true;
++flowLevel_;
Mark startMark = reader_.mark;
reader_.forward();
tokens_.push(simpleToken!id(startMark, reader_.mark));
2011-08-16 12:53:13 +00:00
}
///Aliases to add FLOW-SEQUENCE-START or FLOW-MAPPING-START token.
alias fetchFlowCollectionStart!(TokenID.FlowSequenceStart) fetchFlowSequenceStart;
alias fetchFlowCollectionStart!(TokenID.FlowMappingStart) fetchFlowMappingStart;
///Add FLOW-SEQUENCE-START or FLOW-MAPPING-START token.
void fetchFlowCollectionEnd(TokenID id)() @safe
2011-08-16 12:53:13 +00:00
{
//Reset possible simple key on the current level.
removePossibleSimpleKey();
//No simple keys after ']' and '}'.
allowSimpleKey_ = false;
--flowLevel_;
Mark startMark = reader_.mark;
reader_.forward();
tokens_.push(simpleToken!id(startMark, reader_.mark));
2011-08-16 12:53:13 +00:00
}
///Aliases to add FLOW-SEQUENCE-START or FLOW-MAPPING-START token/
alias fetchFlowCollectionEnd!(TokenID.FlowSequenceEnd) fetchFlowSequenceEnd;
alias fetchFlowCollectionEnd!(TokenID.FlowMappingEnd) fetchFlowMappingEnd;
///Add FLOW-ENTRY token;
void fetchFlowEntry() @safe
2011-08-16 12:53:13 +00:00
{
//Reset possible simple key on the current level.
removePossibleSimpleKey();
//Simple keys are allowed after ','.
allowSimpleKey_ = true;
Mark startMark = reader_.mark;
reader_.forward();
tokens_.push(flowEntryToken(startMark, reader_.mark));
2011-08-16 12:53:13 +00:00
}
/**
* Additional checks used in block context in fetchBlockEntry and fetchKey.
*
2014-07-22 00:12:18 +00:00
* Params: type = String representing the token type we might need to add.
2011-08-16 12:53:13 +00:00
* id = Token type we might need to add.
*/
void blockChecks(string type, TokenID id)() @safe
2011-08-16 12:53:13 +00:00
{
//Are we allowed to start a key (not neccesarily a simple one)?
2014-07-22 00:12:18 +00:00
enforce(allowSimpleKey_, new Error(type ~ " keys are not allowed here",
reader_.mark));
2011-08-16 12:53:13 +00:00
if(addIndent(reader_.column))
{
tokens_.push(simpleToken!id(reader_.mark, reader_.mark));
2011-08-16 12:53:13 +00:00
}
}
///Add BLOCK-ENTRY token. Might add BLOCK-SEQUENCE-START in the process.
void fetchBlockEntry() @safe
2011-08-16 12:53:13 +00:00
{
if(flowLevel_ == 0){blockChecks!("Sequence", TokenID.BlockSequenceStart)();}
2014-07-22 00:12:18 +00:00
2011-08-16 12:53:13 +00:00
//It's an error for the block entry to occur in the flow context,
//but we let the parser detect this.
//Reset possible simple key on the current level.
removePossibleSimpleKey();
//Simple keys are allowed after '-'.
allowSimpleKey_ = true;
Mark startMark = reader_.mark;
reader_.forward();
tokens_.push(blockEntryToken(startMark, reader_.mark));
2011-08-16 12:53:13 +00:00
}
///Add KEY token. Might add BLOCK-MAPPING-START in the process.
void fetchKey() @safe
2011-08-16 12:53:13 +00:00
{
if(flowLevel_ == 0){blockChecks!("Mapping", TokenID.BlockMappingStart)();}
//Reset possible simple key on the current level.
removePossibleSimpleKey();
//Simple keys are allowed after '?' in the block context.
allowSimpleKey_ = (flowLevel_ == 0);
Mark startMark = reader_.mark;
reader_.forward();
tokens_.push(keyToken(startMark, reader_.mark));
2011-08-16 12:53:13 +00:00
}
///Add VALUE token. Might add KEY and/or BLOCK-MAPPING-START in the process.
void fetchValue() @safe
2011-08-16 12:53:13 +00:00
{
//Do we determine a simple key?
2014-07-22 00:12:18 +00:00
if(possibleSimpleKeys_.length > flowLevel_ &&
!possibleSimpleKeys_[flowLevel_].isNull)
2011-08-16 12:53:13 +00:00
{
const key = possibleSimpleKeys_[flowLevel_];
possibleSimpleKeys_[flowLevel_].isNull = true;
2011-08-16 12:53:13 +00:00
Mark keyMark = Mark(key.line, key.column);
const idx = key.tokenIndex - tokensTaken_;
2011-08-16 12:53:13 +00:00
assert(idx >= 0);
//Add KEY.
//Manually inserting since tokens are immutable (need linked list).
tokens_.insert(keyToken(keyMark, keyMark), idx);
2011-08-16 12:53:13 +00:00
//If this key starts a new block mapping, we need to add BLOCK-MAPPING-START.
if(flowLevel_ == 0 && addIndent(key.column))
{
tokens_.insert(blockMappingStartToken(keyMark, keyMark), idx);
2011-08-16 12:53:13 +00:00
}
//There cannot be two simple keys in a row.
allowSimpleKey_ = false;
}
//Part of a complex key
else
{
//We can start a complex value if and only if we can start a simple key.
enforce(flowLevel_ > 0 || allowSimpleKey_,
new Error("Mapping values are not allowed here", reader_.mark));
2011-08-16 12:53:13 +00:00
//If this value starts a new block mapping, we need to add
//BLOCK-MAPPING-START. It'll be detected as an error later by the parser.
if(flowLevel_ == 0 && addIndent(reader_.column))
{
tokens_.push(blockMappingStartToken(reader_.mark, reader_.mark));
2011-08-16 12:53:13 +00:00
}
//Reset possible simple key on the current level.
removePossibleSimpleKey();
//Simple keys are allowed after ':' in the block context.
allowSimpleKey_ = (flowLevel_ == 0);
}
//Add VALUE.
Mark startMark = reader_.mark;
reader_.forward();
tokens_.push(valueToken(startMark, reader_.mark));
2011-08-16 12:53:13 +00:00
}
///Add ALIAS or ANCHOR token.
void fetchAnchor_(TokenID id)() @trusted
2011-08-16 12:53:13 +00:00
if(id == TokenID.Alias || id == TokenID.Anchor)
{
//ALIAS/ANCHOR could be a simple key.
savePossibleSimpleKey();
//No simple keys after ALIAS/ANCHOR.
allowSimpleKey_ = false;
tokens_.push(scanAnchor(id));
2011-08-16 12:53:13 +00:00
}
///Aliases to add ALIAS or ANCHOR token.
alias fetchAnchor_!(TokenID.Alias) fetchAlias;
alias fetchAnchor_!(TokenID.Anchor) fetchAnchor;
///Add TAG token.
void fetchTag() @trusted
2011-08-16 12:53:13 +00:00
{
//TAG could start a simple key.
savePossibleSimpleKey();
//No simple keys after TAG.
allowSimpleKey_ = false;
tokens_.push(scanTag());
2011-08-16 12:53:13 +00:00
}
///Add block SCALAR token.
void fetchBlockScalar(ScalarStyle style)() @trusted
2011-08-16 12:53:13 +00:00
if(style == ScalarStyle.Literal || style == ScalarStyle.Folded)
{
//Reset possible simple key on the current level.
removePossibleSimpleKey();
//A simple key may follow a block scalar.
allowSimpleKey_ = true;
tokens_.push(scanBlockScalar(style));
2011-08-16 12:53:13 +00:00
}
///Aliases to add literal or folded block scalar.
alias fetchBlockScalar!(ScalarStyle.Literal) fetchLiteral;
alias fetchBlockScalar!(ScalarStyle.Folded) fetchFolded;
///Add quoted flow SCALAR token.
void fetchFlowScalar(ScalarStyle quotes)() @trusted
2011-08-16 12:53:13 +00:00
{
//A flow scalar could be a simple key.
savePossibleSimpleKey();
//No simple keys after flow scalars.
allowSimpleKey_ = false;
//Scan and add SCALAR.
tokens_.push(scanFlowScalar(quotes));
2011-08-16 12:53:13 +00:00
}
///Aliases to add single or double quoted block scalar.
alias fetchFlowScalar!(ScalarStyle.SingleQuoted) fetchSingle;
alias fetchFlowScalar!(ScalarStyle.DoubleQuoted) fetchDouble;
/// Add plain SCALAR token.
void fetchPlain() @trusted
2011-08-16 12:53:13 +00:00
{
// A plain scalar could be a simple key
2011-08-16 12:53:13 +00:00
savePossibleSimpleKey();
// No simple keys after plain scalars. But note that scanPlain() will
// change this flag if the scan is finished at the beginning of the line.
2011-08-16 12:53:13 +00:00
allowSimpleKey_ = false;
const plain = scanPlain();
throwIfError();
// Scan and add SCALAR. May change allowSimpleKey_
tokens_.push(plain);
2011-08-16 12:53:13 +00:00
}
///Check if the next token is DIRECTIVE: ^ '%' ...
2014-07-24 01:50:39 +00:00
bool checkDirective() @safe pure nothrow @nogc
{
return reader_.peek() == '%' && reader_.column == 0;
}
2011-08-16 12:53:13 +00:00
2014-07-23 00:17:19 +00:00
/// Check if the next token is DOCUMENT-START: ^ '---' (' '|'\n')
2014-07-24 16:43:46 +00:00
bool checkDocumentStart() @safe
2011-08-16 12:53:13 +00:00
{
2014-07-23 00:17:19 +00:00
// Check one char first, then all 3, to prevent reading outside the buffer.
2014-07-22 00:12:18 +00:00
return reader_.column == 0 &&
2011-08-16 12:53:13 +00:00
reader_.peek() == '-' &&
reader_.prefix(3) == "---" &&
2014-07-22 00:12:18 +00:00
" \t\0\n\r\u0085\u2028\u2029"d.canFind(reader_.peek(3));
2011-08-16 12:53:13 +00:00
}
2014-07-23 00:17:19 +00:00
/// Check if the next token is DOCUMENT-END: ^ '...' (' '|'\n')
2014-07-24 01:50:39 +00:00
bool checkDocumentEnd() @safe pure nothrow @nogc
2011-08-16 12:53:13 +00:00
{
2014-07-23 00:17:19 +00:00
// Check one char first, then all 3, to prevent reading outside the buffer.
2014-07-22 00:12:18 +00:00
return reader_.column == 0 &&
2011-08-16 12:53:13 +00:00
reader_.peek() == '.' &&
reader_.prefix(3) == "..." &&
2014-07-22 00:12:18 +00:00
" \t\0\n\r\u0085\u2028\u2029"d.canFind(reader_.peek(3));
2011-08-16 12:53:13 +00:00
}
///Check if the next token is BLOCK-ENTRY: '-' (' '|'\n')
2014-07-24 01:50:39 +00:00
bool checkBlockEntry() @safe pure nothrow @nogc
2011-08-16 12:53:13 +00:00
{
2014-07-22 00:12:18 +00:00
return reader_.peek() == '-' &&
" \t\0\n\r\u0085\u2028\u2029"d.canFind(reader_.peek(1));
2011-08-16 12:53:13 +00:00
}
/**
* Check if the next token is KEY(flow context): '?'
2014-07-22 00:12:18 +00:00
*
2011-08-16 12:53:13 +00:00
* or KEY(block context): '?' (' '|'\n')
*/
2014-07-24 01:50:39 +00:00
bool checkKey() @safe pure nothrow @nogc
2011-08-16 12:53:13 +00:00
{
2014-07-22 00:12:18 +00:00
return reader_.peek() == '?' &&
(flowLevel_ > 0 ||
" \t\0\n\r\u0085\u2028\u2029"d.canFind(reader_.peek(1)));
2011-08-16 12:53:13 +00:00
}
/**
* Check if the next token is VALUE(flow context): ':'
2014-07-22 00:12:18 +00:00
*
2011-08-16 12:53:13 +00:00
* or VALUE(block context): ':' (' '|'\n')
*/
2014-07-24 01:50:39 +00:00
bool checkValue() @safe pure nothrow @nogc
2011-08-16 12:53:13 +00:00
{
2014-07-22 00:12:18 +00:00
return reader_.peek() == ':' &&
(flowLevel_ > 0 ||
" \t\0\n\r\u0085\u2028\u2029"d.canFind(reader_.peek(1)));
2011-08-16 12:53:13 +00:00
}
/**
* Check if the next token is a plain scalar.
*
* A plain scalar may start with any non-space character except:
* '-', '?', ':', ',', '[', ']', '{', '}',
* '#', '&', '*', '!', '|', '>', '\'', '\"',
* '%', '@', '`'.
2014-07-22 00:12:18 +00:00
*
2011-08-16 12:53:13 +00:00
* It may also start with
* '-', '?', ':'
* if it is followed by a non-space character.
2014-07-22 00:12:18 +00:00
*
2011-08-16 12:53:13 +00:00
* Note that we limit the last rule to the block context (except the
* '-' character) because we want the flow context to be space
* independent.
*/
2014-07-24 01:50:39 +00:00
bool checkPlain() @safe pure nothrow @nogc
2011-08-16 12:53:13 +00:00
{
const c = reader_.peek();
return !("-?:,[]{}#&*!|>\'\"%@` \t\0\n\r\u0085\u2028\u2029"d.canFind(c)) ||
(!" \t\0\n\r\u0085\u2028\u2029"d.canFind(reader_.peek(1)) &&
(c == '-' || (flowLevel_ == 0 && "?:"d.canFind(c))));
2011-08-16 12:53:13 +00:00
}
/// Move to the next non-space character.
void findNextNonSpace() @safe pure nothrow @nogc
2011-08-16 12:53:13 +00:00
{
2014-07-23 00:46:36 +00:00
while(reader_.peek() == ' ') { reader_.forward(); }
2011-08-16 12:53:13 +00:00
}
/// Scan a string of alphanumeric or "-_" characters.
dchar[] scanAlphaNumeric(string name)(const Mark startMark) @safe pure
2011-08-16 12:53:13 +00:00
{
uint length = 0;
dchar c = reader_.peek();
while(isAlphaNum(c) || "-_"d.canFind(c))
2011-08-16 12:53:13 +00:00
{
++length;
c = reader_.peek(length);
}
2014-07-22 00:12:18 +00:00
enforce(length > 0,
new Error("While scanning " ~ name, startMark,
2014-07-22 00:12:18 +00:00
"expected alphanumeric, - or _, but found " ~ to!string(c),
reader_.mark));
2011-08-16 12:53:13 +00:00
return reader_.get(length);
}
/// Scan all characters until next line break.
dchar[] scanToNextBreak() @safe pure nothrow @nogc
2011-08-16 12:53:13 +00:00
{
uint length = 0;
2014-07-23 00:46:36 +00:00
while(!"\0\n\r\u0085\u2028\u2029"d.canFind(reader_.peek(length)))
{
++length;
}
2011-08-16 12:53:13 +00:00
return reader_.get(length);
}
/**
* Move to next token in the file/stream.
*
* We ignore spaces, line breaks and comments.
* If we find a line break in the block context, we set
* allowSimpleKey` on.
*
* We do not yet support BOM inside the stream as the
* specification requires. Any such mark will be considered as a part
* of the document.
*/
2014-07-24 01:50:39 +00:00
void scanToNextToken() @safe pure nothrow @nogc
2011-08-16 12:53:13 +00:00
{
//TODO(PyYAML): We need to make tab handling rules more sane. A good rule is:
// Tabs cannot precede tokens
// BLOCK-SEQUENCE-START, BLOCK-MAPPING-START, BLOCK-END,
// KEY(block), VALUE(block), BLOCK-ENTRY
//So the checking code is
// if <TAB>:
// allowSimpleKey_ = false
//We also need to add the check for `allowSimpleKey_ == true` to
//`unwindIndent` before issuing BLOCK-END.
//Scanners for block, flow, and plain scalars need to be modified.
for(;;)
{
findNextNonSpace();
if(reader_.peek() == '#'){scanToNextBreak();}
2014-07-22 00:12:18 +00:00
if(scanLineBreak() != '\0')
2011-08-16 12:53:13 +00:00
{
if(flowLevel_ == 0){allowSimpleKey_ = true;}
}
else{break;}
}
}
///Scan directive token.
2014-07-24 01:50:39 +00:00
Token scanDirective() @safe pure
2011-08-16 12:53:13 +00:00
{
Mark startMark = reader_.mark;
//Skip the '%'.
reader_.forward();
auto name = scanDirectiveName(startMark);
auto value = name == "YAML" ? scanYAMLDirectiveValue(startMark):
name == "TAG" ? scanTagDirectiveValue(startMark) : "";
2011-08-16 12:53:13 +00:00
Mark endMark = reader_.mark;
if(!["YAML"d, "TAG"d].canFind(name)){scanToNextBreak();}
scanDirectiveIgnoredLine(startMark);
//Storing directive name and value in a single string, separated by zero.
2014-07-23 16:19:35 +00:00
return directiveToken(startMark, endMark, utf32To8(name ~ '\0' ~ value));
2011-08-16 12:53:13 +00:00
}
///Scan name of a directive token.
2014-07-24 01:50:39 +00:00
dchar[] scanDirectiveName(const Mark startMark) @safe pure
2011-08-16 12:53:13 +00:00
{
//Scan directive name.
auto name = scanAlphaNumeric!"a directive"(startMark);
2011-08-16 12:53:13 +00:00
2014-07-22 00:12:18 +00:00
enforce(" \0\n\r\u0085\u2028\u2029"d.canFind(reader_.peek()),
new Error("While scanning a directive", startMark,
2014-07-22 00:12:18 +00:00
"expected alphanumeric, - or _, but found "
~ to!string(reader_.peek()), reader_.mark));
2011-08-16 12:53:13 +00:00
return name;
}
///Scan value of a YAML directive token. Returns major, minor version separated by '.'.
2014-07-24 01:50:39 +00:00
dchar[] scanYAMLDirectiveValue(const Mark startMark) @safe pure
2011-08-16 12:53:13 +00:00
{
findNextNonSpace();
dchar[] result = scanYAMLDirectiveNumber(startMark);
2011-08-16 12:53:13 +00:00
enforce(reader_.peek() == '.',
2014-07-22 00:12:18 +00:00
new Error("While scanning a directive", startMark,
"expected a digit or '.', but found: "
~ to!string(reader_.peek()), reader_.mark));
2011-08-16 12:53:13 +00:00
//Skip the '.'.
reader_.forward();
result ~= '.' ~ scanYAMLDirectiveNumber(startMark);
2014-07-22 00:12:18 +00:00
enforce(" \0\n\r\u0085\u2028\u2029"d.canFind(reader_.peek()),
new Error("While scanning a directive", startMark,
2014-07-22 00:12:18 +00:00
"expected a digit or '.', but found: "
~ to!string(reader_.peek()), reader_.mark));
2011-08-16 12:53:13 +00:00
return result;
}
/// Scan a number from a YAML directive.
dchar[] scanYAMLDirectiveNumber(const Mark startMark) @safe pure
2011-08-16 12:53:13 +00:00
{
enforce(isDigit(reader_.peek()),
2014-07-22 00:12:18 +00:00
new Error("While scanning a directive", startMark,
"expected a digit, but found: " ~
2014-07-23 00:46:36 +00:00
reader_.peek().to!string, reader_.mark));
2011-08-16 12:53:13 +00:00
2014-07-23 00:46:36 +00:00
// Already found the first digit in the enforce(), so set length to 1.
2011-08-16 12:53:13 +00:00
uint length = 1;
2014-07-23 00:46:36 +00:00
while(isDigit(reader_.peek(length))) { ++length; }
2011-08-16 12:53:13 +00:00
return reader_.get(length);
}
///Scan value of a tag directive.
2014-07-24 01:50:39 +00:00
dchar[] scanTagDirectiveValue(const Mark startMark) @safe pure
2011-08-16 12:53:13 +00:00
{
findNextNonSpace();
const handle = scanTagDirectiveHandle(startMark);
2011-08-16 12:53:13 +00:00
findNextNonSpace();
return handle ~ '\0' ~ scanTagDirectivePrefix(startMark);
}
///Scan handle of a tag directive.
2014-07-24 01:50:39 +00:00
dchar[] scanTagDirectiveHandle(const Mark startMark) @safe pure
2011-08-16 12:53:13 +00:00
{
auto value = scanTagHandle("directive", startMark);
2011-08-16 12:53:13 +00:00
enforce(reader_.peek() == ' ',
2014-07-22 00:12:18 +00:00
new Error("While scanning a directive handle", startMark,
"expected ' ', but found: " ~ to!string(reader_.peek()),
reader_.mark));
2011-08-16 12:53:13 +00:00
return value;
}
///Scan prefix of a tag directive.
2014-07-24 01:50:39 +00:00
dchar[] scanTagDirectivePrefix(const Mark startMark) @safe pure
2011-08-16 12:53:13 +00:00
{
auto value = scanTagURI("directive", startMark);
enforce(" \0\n\r\u0085\u2028\u2029"d.canFind(reader_.peek()),
new Error("While scanning a directive prefix", startMark,
"expected ' ', but found" ~ to!string(reader_.peek()),
reader_.mark));
2011-08-16 12:53:13 +00:00
return value;
}
2014-07-22 00:12:18 +00:00
///Scan (and ignore) ignored line after a directive.
2014-07-24 01:50:39 +00:00
void scanDirectiveIgnoredLine(const Mark startMark) @safe pure
2011-08-16 12:53:13 +00:00
{
findNextNonSpace();
if(reader_.peek() == '#'){scanToNextBreak();}
enforce("\0\n\r\u0085\u2028\u2029"d.canFind(reader_.peek()),
new Error("While scanning a directive", startMark,
2014-07-22 00:12:18 +00:00
"expected comment or a line break, but found"
~ to!string(reader_.peek()), reader_.mark));
2011-08-16 12:53:13 +00:00
scanLineBreak();
}
/**
* Scan an alias or an anchor.
*
* The specification does not restrict characters for anchors and
* aliases. This may lead to problems, for instance, the document:
* [ *alias, value ]
* can be interpteted in two ways, as
* [ "value" ]
* and
* [ *alias , "value" ]
* Therefore we restrict aliases to ASCII alphanumeric characters.
*/
2014-07-24 01:50:39 +00:00
Token scanAnchor(TokenID id) @safe pure
2011-08-16 12:53:13 +00:00
{
const startMark = reader_.mark;
const dchar i = reader_.get();
2011-08-16 12:53:13 +00:00
dchar[] value = i == '*' ? scanAlphaNumeric!("an alias")(startMark)
2014-07-22 00:12:18 +00:00
: scanAlphaNumeric!("an anchor")(startMark);
2011-08-16 12:53:13 +00:00
2014-07-22 00:12:18 +00:00
enforce((" \t\0\n\r\u0085\u2028\u2029"d.canFind(reader_.peek()) ||
2011-08-16 12:53:13 +00:00
("?:,]}%@").canFind(reader_.peek())),
2014-07-22 00:12:18 +00:00
new Error("While scanning an " ~ (i == '*') ? "alias" : "anchor",
2011-08-16 12:53:13 +00:00
startMark, "expected alphanumeric, - or _, but found "~
to!string(reader_.peek()), reader_.mark));
if(id == TokenID.Alias)
{
2014-07-23 16:19:35 +00:00
return aliasToken(startMark, reader_.mark, value.utf32To8);
2011-08-16 12:53:13 +00:00
}
else if(id == TokenID.Anchor)
{
2014-07-23 16:19:35 +00:00
return anchorToken(startMark, reader_.mark, value.utf32To8);
2011-08-16 12:53:13 +00:00
}
assert(false, "This code should never be reached");
}
///Scan a tag token.
2014-07-24 01:50:39 +00:00
Token scanTag() @safe pure
2011-08-16 12:53:13 +00:00
{
const startMark = reader_.mark;
dchar c = reader_.peek(1);
dchar[] handle;
dchar[] suffix;
2011-08-16 12:53:13 +00:00
if(c == '<')
{
reader_.forward(2);
suffix = scanTagURI("tag", startMark);
enforce(reader_.peek() == '>',
new Error("While scanning a tag", startMark,
2014-07-23 01:10:25 +00:00
"expected '>' but found" ~ reader_.peek().to!string,
reader_.mark));
2011-08-16 12:53:13 +00:00
reader_.forward();
}
else if(" \t\0\n\r\u0085\u2028\u2029"d.canFind(c))
2011-08-16 12:53:13 +00:00
{
suffix = "!"d.dup;
2011-08-16 12:53:13 +00:00
reader_.forward();
}
else
{
uint length = 1;
bool useHandle = false;
while(!" \0\n\r\u0085\u2028\u2029"d.canFind(c))
2011-08-16 12:53:13 +00:00
{
if(c == '!')
{
useHandle = true;
break;
}
++length;
c = reader_.peek(length);
}
2014-07-23 01:10:25 +00:00
if(useHandle) { handle = scanTagHandle("tag", startMark); }
2011-08-16 12:53:13 +00:00
else
{
handle = "!"d.dup;
2011-08-16 12:53:13 +00:00
reader_.forward();
}
suffix = scanTagURI("tag", startMark);
}
enforce(" \0\n\r\u0085\u2028\u2029"d.canFind(reader_.peek()),
new Error("While scanning a tag", startMark,
2014-07-23 01:10:25 +00:00
"expected ' ' but found" ~ reader_.peek().to!string,
reader_.mark));
2014-07-23 16:19:35 +00:00
return tagToken(startMark, reader_.mark, utf32To8(handle ~ '\0' ~ suffix));
2011-08-16 12:53:13 +00:00
}
///Scan a block scalar token with specified style.
2014-07-24 01:50:39 +00:00
Token scanBlockScalar(const ScalarStyle style) @safe pure
2011-08-16 12:53:13 +00:00
{
const startMark = reader_.mark;
//Scan the header.
reader_.forward();
const indicators = scanBlockScalarIndicators(startMark);
const chomping = indicators[0];
const increment = indicators[1];
scanBlockScalarIgnoredLine(startMark);
//Determine the indentation level and go to the first non-empty line.
Mark endMark;
dchar[] breaks;
uint indent = max(1, indent_ + 1);
2011-08-16 12:53:13 +00:00
if(increment == int.min)
{
auto indentation = scanBlockScalarIndentation();
breaks = indentation[0];
endMark = indentation[2];
indent = max(indent, indentation[1]);
}
else
{
indent += increment - 1;
auto scalarBreaks = scanBlockScalarBreaks(indent);
breaks = scalarBreaks[0];
endMark = scalarBreaks[1];
}
dchar[] lineBreak = ""d.dup;
2011-08-16 12:53:13 +00:00
//Using appender_, so clear it when we're done.
scope(exit){appender_.clear();}
2011-08-16 12:53:13 +00:00
//Scan the inner part of the block scalar.
while(reader_.column == indent && reader_.peek() != '\0')
{
appender_.put(breaks);
const bool leadingNonSpace = !" \t"d.canFind(reader_.peek());
appender_.put(scanToNextBreak());
lineBreak = [scanLineBreak()];
2011-08-16 12:53:13 +00:00
auto scalarBreaks = scanBlockScalarBreaks(indent);
breaks = scalarBreaks[0];
endMark = scalarBreaks[1];
if(reader_.column == indent && reader_.peek() != '\0')
{
//Unfortunately, folding rules are ambiguous.
2014-07-22 00:12:18 +00:00
2011-08-16 12:53:13 +00:00
//This is the folding according to the specification:
if(style == ScalarStyle.Folded && lineBreak == "\n" &&
leadingNonSpace && !" \t"d.canFind(reader_.peek()))
2011-08-16 12:53:13 +00:00
{
if(breaks.length == 0){appender_.put(' ');}
2011-08-16 12:53:13 +00:00
}
else{appender_.put(lineBreak);}
2011-08-16 12:53:13 +00:00
////this is Clark Evans's interpretation (also in the spec
////examples):
//
//if(style == ScalarStyle.Folded && lineBreak == "\n"d)
//{
// if(breaks.length == 0)
// {
// if(!" \t"d.canFind(reader_.peek())){appender_.put(' ');}
2011-08-16 12:53:13 +00:00
// else{chunks ~= lineBreak;}
// }
//}
//else{appender_.put(lineBreak);}
2011-08-16 12:53:13 +00:00
}
else{break;}
}
if(chomping != Chomping.Strip){appender_.put(lineBreak);}
if(chomping == Chomping.Keep){appender_.put(breaks);}
2011-08-16 12:53:13 +00:00
return scalarToken(startMark, endMark, utf32To8(appender_.data), style);
2011-08-16 12:53:13 +00:00
}
///Scan chomping and indentation indicators of a scalar token.
2014-07-24 01:50:39 +00:00
Tuple!(Chomping, int) scanBlockScalarIndicators(const Mark startMark)
@safe pure
2011-08-16 12:53:13 +00:00
{
auto chomping = Chomping.Clip;
int increment = int.min;
dchar c = reader_.peek();
///Get chomping indicator, if detected. Return false otherwise.
bool getChomping()
{
if(!"+-"d.canFind(c)){return false;}
2011-08-16 12:53:13 +00:00
chomping = c == '+' ? Chomping.Keep : Chomping.Strip;
reader_.forward();
c = reader_.peek();
return true;
}
///Get increment indicator, if detected. Return false otherwise.
bool getIncrement()
{
if(!isDigit(c)){return false;}
increment = to!int(""d ~ c);
2014-07-22 00:12:18 +00:00
enforce(increment != 0,
new Error("While scanning a block scalar", startMark,
2014-07-22 00:12:18 +00:00
"expected indentation indicator in range 1-9, but found 0",
reader_.mark));
2011-08-16 12:53:13 +00:00
reader_.forward();
c = reader_.peek();
return true;
}
///Indicators can be in any order.
if(getChomping()) {getIncrement();}
else if(getIncrement()){getChomping();}
enforce(" \0\n\r\u0085\u2028\u2029"d.canFind(c),
new Error("While scanning a block scalar", startMark,
2014-07-22 00:12:18 +00:00
"expected chomping or indentation indicator, but found "
~ to!string(c), reader_.mark));
2011-08-16 12:53:13 +00:00
return tuple(chomping, increment);
}
///Scan (and ignore) ignored line in a block scalar.
2014-07-24 01:50:39 +00:00
void scanBlockScalarIgnoredLine(const Mark startMark) @safe pure
2011-08-16 12:53:13 +00:00
{
findNextNonSpace();
2013-04-23 23:32:16 +00:00
if(reader_.peek()== '#'){scanToNextBreak();}
2011-08-16 12:53:13 +00:00
enforce("\0\n\r\u0085\u2028\u2029"d.canFind(reader_.peek()),
new Error("While scanning a block scalar", startMark,
"expected a comment or a line break, but found "
~ to!string(reader_.peek()), reader_.mark));
2011-08-16 12:53:13 +00:00
scanLineBreak();
}
///Scan indentation in a block scalar, returning line breaks, max indent and end mark.
2014-07-24 01:50:39 +00:00
Tuple!(dchar[], uint, Mark) scanBlockScalarIndentation() @safe pure nothrow
2011-08-16 12:53:13 +00:00
{
dchar[] chunks;
uint maxIndent;
Mark endMark = reader_.mark;
while(" \n\r\u0085\u2028\u2029"d.canFind(reader_.peek()))
2011-08-16 12:53:13 +00:00
{
if(reader_.peek() != ' ')
{
chunks ~= scanLineBreak();
endMark = reader_.mark;
continue;
}
reader_.forward();
maxIndent = max(reader_.column, maxIndent);
}
return tuple(chunks, maxIndent, endMark);
}
///Scan line breaks at lower or specified indentation in a block scalar.
2014-07-24 01:50:39 +00:00
Tuple!(dchar[], Mark) scanBlockScalarBreaks(const uint indent)
@safe pure nothrow
2011-08-16 12:53:13 +00:00
{
dchar[] chunks;
Mark endMark = reader_.mark;
for(;;)
{
while(reader_.column < indent && reader_.peek() == ' '){reader_.forward();}
if(!"\n\r\u0085\u2028\u2029"d.canFind(reader_.peek())){break;}
2011-08-16 12:53:13 +00:00
chunks ~= scanLineBreak();
endMark = reader_.mark;
}
return tuple(chunks, endMark);
}
2014-07-23 01:09:48 +00:00
/// Scan a qouted flow scalar token with specified quotes.
Token scanFlowScalar(const ScalarStyle quotes) @trusted pure
2011-08-16 12:53:13 +00:00
{
const startMark = reader_.mark;
2014-07-24 01:50:39 +00:00
const quote = reader_.get();
2011-08-16 12:53:13 +00:00
reader_.sliceBuilder.begin();
//XXX remove once nothrow
scope(failure) { reader_.sliceBuilder.finish(); }
scope(exit) { if(error_) {reader_.sliceBuilder.finish();}}
scanFlowScalarNonSpacesToSlice(quotes, startMark);
2011-08-16 12:53:13 +00:00
while(reader_.peek() != quote)
{
scanFlowScalarSpacesToSlice(startMark);
scanFlowScalarNonSpacesToSlice(quotes, startMark);
2011-08-16 12:53:13 +00:00
}
reader_.forward();
auto slice = reader_.sliceBuilder.finish();
return scalarToken(startMark, reader_.mark, slice.utf32To8, quotes);
2011-08-16 12:53:13 +00:00
}
/// Scan nonspace characters in a flow scalar.
///
/// Assumes that the caller is building a slice in Reader, and puts the scanned
/// characters into that slice.
void scanFlowScalarNonSpacesToSlice(const ScalarStyle quotes, const Mark startMark)
@system pure
{
for(;;) with(ScalarStyle)
2011-08-16 12:53:13 +00:00
{
dchar c = reader_.peek();
uint length = 0;
mixin FastCharSearch!" \t\0\n\r\u0085\u2028\u2029\'\"\\"d search;
// This is an optimized way of writing:
// while(!search.canFind(reader_.peek(length))){++length;}
outer: for(;;)
2011-08-16 12:53:13 +00:00
{
const slice = reader_.slice(length, length + 32);
// XXX will be thrown by parent
2014-07-22 00:12:18 +00:00
enforce(slice.length > 0,
new Error("While reading a flow scalar", startMark,
"reached end of file", reader_.mark));
foreach(ch; slice)
{
if(search.canFind(ch)) { break outer; }
++length;
}
2011-08-16 12:53:13 +00:00
}
reader_.sliceBuilder.write(reader_.get(length));
2011-08-16 12:53:13 +00:00
c = reader_.peek();
if(quotes == SingleQuoted && c == '\'' && reader_.peek(1) == '\'')
2011-08-16 12:53:13 +00:00
{
reader_.forward(2);
reader_.sliceBuilder.write('\'');
2011-08-16 12:53:13 +00:00
}
else if((quotes == DoubleQuoted && c == '\'') ||
(quotes == SingleQuoted && "\"\\"d.canFind(c)))
2011-08-16 12:53:13 +00:00
{
reader_.forward();
reader_.sliceBuilder.write(c);
2011-08-16 12:53:13 +00:00
}
else if(quotes == DoubleQuoted && c == '\\')
2011-08-16 12:53:13 +00:00
{
reader_.forward();
c = reader_.peek();
if((c in dyaml.escapes.fromEscapes) !is null)
2011-08-16 12:53:13 +00:00
{
reader_.forward();
// This works because fromEscapes is dchar[dchar] - we use at
// most the space freed by the forward() call above.
reader_.sliceBuilder.write(dyaml.escapes.fromEscapes[c]);
2011-08-16 12:53:13 +00:00
}
else if((c in dyaml.escapes.escapeHexCodes) !is null)
2011-08-16 12:53:13 +00:00
{
length = dyaml.escapes.escapeHexCodes[c];
2011-08-16 12:53:13 +00:00
reader_.forward();
foreach(i; 0 .. length)
{
enforce(isHexDigit(reader_.peek(i)),
new Error(
2014-07-22 00:12:18 +00:00
"While scanning a double qouted scalar", startMark,
"expected escape sequence of " ~ length.to!string ~
2014-07-22 00:12:18 +00:00
" hexadecimal numbers, but found " ~
reader_.peek(i).to!string, reader_.mark));
2011-08-16 12:53:13 +00:00
}
dchar[] hex = reader_.get(length);
reader_.sliceBuilder.write(cast(dchar)parse!int(hex, 16));
2011-08-16 12:53:13 +00:00
}
else if("\n\r\u0085\u2028\u2029"d.canFind(c))
2011-08-16 12:53:13 +00:00
{
scanLineBreak();
scanFlowScalarBreaksToSlice(startMark);
throwIfError();
2011-08-16 12:53:13 +00:00
}
else
{
2014-07-22 00:12:18 +00:00
throw new Error("While scanning a double quoted scalar", startMark,
"found unknown escape character: " ~ c.to!string,
reader_.mark);
2011-08-16 12:53:13 +00:00
}
}
else { return; }
2011-08-16 12:53:13 +00:00
}
}
2014-07-23 00:17:19 +00:00
/// Scan space characters in a flow scalar.
///
/// Assumes that the caller is building a slice in Reader, and puts the scanned
/// spaces into that slice.
void scanFlowScalarSpacesToSlice(const Mark startMark) @system pure
2011-08-16 12:53:13 +00:00
{
2014-07-23 00:17:19 +00:00
// Increase length as long as we see whitespace.
size_t length = 0;
2014-07-23 00:17:19 +00:00
while(" \t"d.canFind(reader_.peek(length))) { ++length; }
auto whitespaces = reader_.prefix(length + 1);
2011-08-16 12:53:13 +00:00
const c = whitespaces[$ - 1];
2014-07-22 00:12:18 +00:00
enforce(c != '\0', new Error("While scanning a quoted scalar", startMark,
2014-07-23 00:17:36 +00:00
"found unexpected end of buffer", reader_.mark));
2011-08-16 12:53:13 +00:00
// Spaces not followed by a line break.
if(!"\n\r\u0085\u2028\u2029"d.canFind(c))
{
reader_.forward(length);
reader_.sliceBuilder.write(whitespaces[0 .. $ - 1]);
return;
}
// There's a line break after the spaces.
reader_.forward(length);
const lineBreak = scanLineBreak();
if(lineBreak != '\n') { reader_.sliceBuilder.write(lineBreak); }
// If we have extra line breaks after the first, scan them into the
// slice.
const bool extraBreaks = scanFlowScalarBreaksToSlice(startMark);
throwIfError();
// No extra breaks, one normal line break. Replace it with a space.
if(lineBreak == '\n' && !extraBreaks) { reader_.sliceBuilder.write(' '); }
2011-08-16 12:53:13 +00:00
}
2014-07-23 00:17:19 +00:00
/// Scan line breaks in a flow scalar.
///
/// Assumes that the caller is building a slice in Reader, and puts the scanned
/// line breaks into that slice.
///
/// In case of an error, error_ is set. Check this before using the result.
bool scanFlowScalarBreaksToSlice(const Mark startMark)
@system pure nothrow @nogc
2011-08-16 12:53:13 +00:00
{
// True if at least one line break was found.
bool anyBreaks;
2011-08-16 12:53:13 +00:00
for(;;)
{
2014-07-23 00:17:19 +00:00
// Instead of checking indentation, we check for document separators.
2011-08-16 12:53:13 +00:00
const prefix = reader_.prefix(3);
2014-07-22 00:12:18 +00:00
if((prefix == "---"d || prefix == "..."d) &&
" \t\0\n\r\u0085\u2028\u2029"d.canFind(reader_.peek(3)))
2011-08-16 12:53:13 +00:00
{
setError("While scanning a quoted scalar", startMark,
"found unexpected document separator", reader_.mark);
return false;
2011-08-16 12:53:13 +00:00
}
// Skip any whitespaces.
2014-07-23 00:17:19 +00:00
while(" \t"d.canFind(reader_.peek())) { reader_.forward(); }
2011-08-16 12:53:13 +00:00
// Encountered a non-whitespace non-linebreak character, so we're done.
if(!"\n\r\u0085\u2028\u2029"d.canFind(reader_.peek())) { break; }
const lineBreak = scanLineBreak();
anyBreaks = true;
reader_.sliceBuilder.write(lineBreak);
2011-08-16 12:53:13 +00:00
}
return anyBreaks;
2011-08-16 12:53:13 +00:00
}
/// Scan plain scalar token (no block, no quotes).
2014-07-24 16:44:20 +00:00
///
/// In case of an error, error_ is set. Check this before using the result.
2014-07-24 01:50:39 +00:00
Token scanPlain() @trusted pure nothrow
2011-08-16 12:53:13 +00:00
{
2014-07-23 00:46:36 +00:00
// We keep track of the allowSimpleKey_ flag here.
// Indentation rules are loosed for the flow context
2011-08-16 12:53:13 +00:00
const startMark = reader_.mark;
Mark endMark = startMark;
const indent = indent_ + 1;
2014-07-23 00:46:36 +00:00
// We allow zero indentation for scalars, but then we need to check for
// document separators at the beginning of the line.
// if(indent == 0) { indent = 1; }
mixin FastCharSearch!" \t\0\n\r\u0085\u2028\u2029"d search;
reader_.sliceBuilder.begin();
2011-08-16 12:53:13 +00:00
alias Transaction = SliceBuilder.Transaction;
Transaction spacesTransaction;
// Stop at a comment.
while(reader_.peek() != '#')
{
// Scan the entire plain scalar.
2011-08-16 12:53:13 +00:00
uint length = 0;
dchar c;
for(;;)
{
c = reader_.peek(length);
2014-07-22 00:12:18 +00:00
const bool done = search.canFind(c) || (flowLevel_ == 0 && c == ':' &&
search.canFind(reader_.peek(length + 1))) ||
(flowLevel_ > 0 && ",:?[]{}"d.canFind(c));
2014-07-23 00:46:36 +00:00
if(done) { break; }
2011-08-16 12:53:13 +00:00
++length;
}
2014-07-23 00:46:36 +00:00
// It's not clear what we should do with ':' in the flow context.
2011-08-16 12:53:13 +00:00
if(flowLevel_ > 0 && c == ':' &&
!search.canFind(reader_.peek(length + 1)) &&
!",[]{}"d.canFind(reader_.peek(length + 1)))
2011-08-16 12:53:13 +00:00
{
// This is an error; throw the slice away.
spacesTransaction.commit();
reader_.sliceBuilder.finish();
2011-08-16 12:53:13 +00:00
reader_.forward(length);
2014-07-24 16:44:07 +00:00
setError("While scanning a plain scalar", startMark,
"found unexpected ':' . Please check "
"http://pyyaml.org/wiki/YAMLColonInFlowContext "
"for details.", reader_.mark);
return Token.init;
2011-08-16 12:53:13 +00:00
}
2014-07-23 00:46:36 +00:00
if(length == 0) { break; }
2011-08-16 12:53:13 +00:00
allowSimpleKey_ = false;
reader_.sliceBuilder.write(reader_.get(length));
2011-08-16 12:53:13 +00:00
endMark = reader_.mark;
spacesTransaction.commit();
spacesTransaction = Transaction(reader_.sliceBuilder);
const bool anySpaces = scanPlainSpacesToSlice(startMark);
if(!anySpaces || (flowLevel_ == 0 && reader_.column < indent))
2011-08-16 12:53:13 +00:00
{
break;
}
}
spacesTransaction.__dtor();
dstring slice = reader_.sliceBuilder.finish();
return scalarToken(startMark, endMark, slice.utf32To8, ScalarStyle.Plain);
2011-08-16 12:53:13 +00:00
}
2014-07-23 00:17:19 +00:00
/// Scan spaces in a plain scalar.
///
/// Assumes that the caller is building a slice in Reader, and puts the spaces
/// into that slice.
bool scanPlainSpacesToSlice(const Mark startMark) @system pure nothrow @nogc
2011-08-16 12:53:13 +00:00
{
2014-07-23 00:17:19 +00:00
// The specification is really confusing about tabs in plain scalars.
// We just forbid them completely. Do not use tabs in YAML!
2011-08-16 12:53:13 +00:00
// Get as many plain spaces as there are.
size_t length = 0;
2014-07-23 00:46:36 +00:00
while(reader_.peek(length) == ' ') { ++length; }
dchar[] whitespaces = reader_.get(length);
2011-08-16 12:53:13 +00:00
dchar c = reader_.peek();
// No newline after the spaces (if any)
if(!"\n\r\u0085\u2028\u2029"d.canFind(c))
2011-08-16 12:53:13 +00:00
{
// We have spaces, but no newline.
if(whitespaces.length > 0)
2011-08-16 12:53:13 +00:00
{
reader_.sliceBuilder.write(whitespaces);
return true;
2011-08-16 12:53:13 +00:00
}
// No spaces or newline.
return false;
}
// Newline after the spaces (if any)
bool anySpaces = false;
const lineBreak = scanLineBreak();
allowSimpleKey_ = true;
static bool end(Reader reader_) @safe pure nothrow @nogc
{
return ("---"d == reader_.prefix(3) || "..."d == reader_.prefix(3))
&& " \t\0\n\r\u0085\u2028\u2029"d.canFind(reader_.peek(3));
}
2011-08-16 12:53:13 +00:00
if(end(reader_)) { return false; }
2011-08-16 12:53:13 +00:00
bool extraBreaks = false;
alias Transaction = SliceBuilder.Transaction;
auto transaction = Transaction(reader_.sliceBuilder);
if(lineBreak != '\n') { reader_.sliceBuilder.write(lineBreak); }
while(" \n\r\u0085\u2028\u2029"d.canFind(reader_.peek()))
{
if(reader_.peek() == ' ') { reader_.forward(); }
else
2011-08-16 12:53:13 +00:00
{
const lBreak = scanLineBreak();
extraBreaks = true;
reader_.sliceBuilder.write(lBreak);
if(end(reader_))
2011-08-16 12:53:13 +00:00
{
return false;
2011-08-16 12:53:13 +00:00
}
}
}
transaction.commit();
2011-08-16 12:53:13 +00:00
// No line breaks, only a space.
if(lineBreak == '\n' && !extraBreaks) { reader_.sliceBuilder.write(' '); }
// We've written some spaces into the slice if:
// (lineBreak != '\n' || extraBreaks || lineBreak == '\n' && !extraBreaks).
// That simplifies to (lineBreak != '\n' || lineBreak == '\n') which
// simplifies to (true)
return true;
2011-08-16 12:53:13 +00:00
}
/// Scan handle of a tag token.
dchar[] scanTagHandle(const string name, const Mark startMark) @safe pure
2011-08-16 12:53:13 +00:00
{
dchar c = reader_.peek();
2014-07-22 00:12:18 +00:00
enforce(c == '!',
new Error("While scanning a " ~ name, startMark,
2014-07-23 00:46:36 +00:00
"expected a '!', but found: " ~ c.to!string, reader_.mark));
2011-08-16 12:53:13 +00:00
uint length = 1;
c = reader_.peek(length);
if(c != ' ')
{
while(isAlphaNum(c) || "-_"d.canFind(c))
2011-08-16 12:53:13 +00:00
{
++length;
c = reader_.peek(length);
}
if(c != '!')
{
reader_.forward(length);
2014-07-22 00:12:18 +00:00
throw new Error("While scanning a " ~ name, startMark,
2014-07-23 00:46:36 +00:00
"expected a '!', but found: " ~ c.to!string,
reader_.mark);
2011-08-16 12:53:13 +00:00
}
++length;
}
return reader_.get(length);
}
/// Scan URI in a tag token.
2014-07-24 01:50:39 +00:00
dchar[] scanTagURI(const string name, const Mark startMark) @trusted pure
2011-08-16 12:53:13 +00:00
{
2014-07-23 00:46:36 +00:00
// Note: we do not check if URI is well-formed.
// Using appender_, so clear it when we're done.
scope(exit) { appender_.clear(); }
2011-08-16 12:53:13 +00:00
uint length = 0;
dchar c = reader_.peek();
while(isAlphaNum(c) || "-;/?:@&=+$,_.!~*\'()[]%"d.canFind(c))
2011-08-16 12:53:13 +00:00
{
if(c == '%')
{
appender_.put(reader_.get(length));
2011-08-16 12:53:13 +00:00
length = 0;
appender_.put(scanURIEscapes(name, startMark));
2011-08-16 12:53:13 +00:00
}
2014-07-23 00:46:36 +00:00
else { ++length; }
2011-08-16 12:53:13 +00:00
c = reader_.peek(length);
}
if(length > 0)
{
appender_.put(reader_.get(length));
2011-08-16 12:53:13 +00:00
length = 0;
}
enforce(appender_.data.length > 0,
2014-07-22 00:12:18 +00:00
new Error("While parsing a " ~ name, startMark,
2014-07-23 00:46:36 +00:00
"expected URI, but found: " ~ c.to!string, reader_.mark));
2011-08-16 12:53:13 +00:00
return appender_.data;
2011-08-16 12:53:13 +00:00
}
/// Scan URI escape sequences.
dchar[] scanURIEscapes(const string name, const Mark startMark) @system pure
2011-08-16 12:53:13 +00:00
{
ubyte[] bytes;
Mark mark = reader_.mark;
while(reader_.peek() == '%')
{
reader_.forward();
ubyte b = 0;
uint mult = 16;
2014-07-23 00:46:36 +00:00
// Converting 2 hexadecimal digits to a byte.
2011-08-16 12:53:13 +00:00
foreach(k; 0 .. 2)
{
const dchar c = reader_.peek(k);
enforce(isHexDigit(c),
2014-07-22 00:12:18 +00:00
new Error("While scanning a " ~ name, startMark,
"expected URI escape sequence of "
2014-07-22 00:12:18 +00:00
"2 hexadecimal numbers, but found: " ~
2014-07-23 00:46:36 +00:00
c.to!string, reader_.mark));
2011-08-16 12:53:13 +00:00
uint digit;
2014-07-23 00:46:36 +00:00
if(c - '0' < 10) { digit = c - '0'; }
else if(c - 'A' < 6) { digit = c - 'A'; }
else if(c - 'a' < 6) { digit = c - 'a'; }
else { assert(false); }
2011-08-16 12:53:13 +00:00
b += mult * digit;
mult /= 16;
}
bytes ~= b;
reader_.forward(2);
}
try { return to!(dchar[])(cast(string)bytes); }
2011-08-16 12:53:13 +00:00
catch(ConvException e)
{
throw new Error("While scanning a " ~ name, startMark, e.msg, mark);
2011-08-16 12:53:13 +00:00
}
catch(UTFException e)
2011-08-16 12:53:13 +00:00
{
throw new Error("While scanning a " ~ name, startMark, e.msg, mark);
2011-08-16 12:53:13 +00:00
}
}
2014-07-23 00:17:19 +00:00
/// Scan a line break, if any.
///
/// Transforms:
/// '\r\n' : '\n'
/// '\r' : '\n'
/// '\n' : '\n'
/// '\u0085' : '\n'
/// '\u2028' : '\u2028'
/// '\u2029 : '\u2029'
/// no break : '\0'
dchar scanLineBreak() @safe pure nothrow @nogc
2011-08-16 12:53:13 +00:00
{
const c = reader_.peek();
if(c == '\n' || c == '\r' || c == '\u0085')
2011-08-16 12:53:13 +00:00
{
2014-07-23 00:17:19 +00:00
if(reader_.prefix(2) == "\r\n"d) { reader_.forward(2); }
else { reader_.forward(); }
2011-08-16 12:53:13 +00:00
return '\n';
}
if(c == '\u2028' || c == '\u2029')
2011-08-16 12:53:13 +00:00
{
reader_.forward();
return c;
}
return '\0';
}
}
private:
/// A nothrow function that converts a dchar[] to a string.
string utf32To8(C)(C[] str) @safe pure nothrow
if(is(Unqual!C == dchar))
{
try { return str.to!string; }
catch(ConvException e) { assert(false, "Unexpected invalid UTF-32 string"); }
catch(Exception e) { assert(false, "Unexpected exception during UTF-8 encoding"); }
}