dyaml/dyaml/loader.d

321 lines
8.9 KiB
D
Raw Normal View History

2011-08-16 12:53:13 +00:00
// Copyright Ferdinand Majerech 2011.
// 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)
/**
* Class used to load YAML documents.
2011-08-16 12:53:13 +00:00
*/
module dyaml.loader;
import std.exception;
import std.stream;
import dyaml.composer;
import dyaml.constructor;
import dyaml.event;
import dyaml.exception;
import dyaml.node;
2011-08-16 12:53:13 +00:00
import dyaml.parser;
import dyaml.reader;
import dyaml.resolver;
2011-08-16 12:53:13 +00:00
import dyaml.scanner;
import dyaml.token;
/**
* Loads YAML documents from files or streams.
2011-08-16 12:53:13 +00:00
*
* User specified Constructor and/or Resolver can be used to support new
* tags / data types.
2011-08-16 12:53:13 +00:00
*
* Examples:
2011-08-16 12:53:13 +00:00
*
* Load single YAML document from a file:
* --------------------
* auto rootNode = Loader("file.yaml").load();
* ...
* --------------------
2011-08-16 12:53:13 +00:00
*
* Load all YAML documents from a file:
* --------------------
* auto nodes = Loader("file.yaml").loadAll();
* ...
* --------------------
2011-08-16 12:53:13 +00:00
*
* Iterate over YAML documents in a file, lazily loading them:
* --------------------
* auto loader = Loader("file.yaml");
*
* foreach(ref node; loader)
* {
* ...
* }
* --------------------
*
* Load YAML from memory:
2011-08-16 12:53:13 +00:00
* --------------------
* import std.stream;
* import std.stdio;
*
* string yaml_input = "red: '#ff0000'\n"
* "green: '#00ff00'\n"
* "blue: '#0000ff'";
*
* auto colors = Loader(new MemoryStream(cast(char[])yaml_input)).load();
2011-08-16 12:53:13 +00:00
*
* foreach(string color, string value; colors)
* {
* writeln(color, " is ", value, " in HTML/CSS");
* }
* --------------------
*
* Use a custom constructor/resolver to support custom data types and/or implicit tags:
* --------------------
* auto constructor = new Constructor();
* auto resolver = new Resolver();
2011-08-16 12:53:13 +00:00
*
* //Add constructor functions / resolver expressions here...
2011-08-16 12:53:13 +00:00
*
* auto loader = Loader("file.yaml");
* loader.constructor = constructor;
* loader.resolver = resolver;
* auto rootNode = loader.load(node);
* --------------------
2011-08-16 12:53:13 +00:00
*/
struct Loader
{
private:
///Reads character data from a stream.
Reader reader_;
///Processes character data to YAML tokens.
Scanner scanner_;
///Processes tokens to YAML events.
Parser parser_;
///Resolves tags (data types).
Resolver resolver_;
///Constructs YAML data types.
Constructor constructor_;
///Name of the input file or stream, used in error messages.
string name_ = "<unknown>";
///Are we done loading?
bool done_ = false;
2011-08-16 12:53:13 +00:00
public:
@disable this();
@disable int opCmp(ref Loader);
@disable bool opEquals(ref Loader);
2011-08-16 12:53:13 +00:00
/**
* Construct a Loader to load YAML from a file.
*
* Params: filename = Name of the file to load from.
*
* Throws: YAMLException if the file could not be opened or read.
2011-08-16 12:53:13 +00:00
*/
this(string filename)
2011-08-16 12:53:13 +00:00
{
name_ = filename;
try{this(new File(filename));}
2011-08-16 12:53:13 +00:00
catch(StreamException e)
{
throw new YAMLException("Unable to open file " ~ filename ~
" for YAML loading: " ~ e.msg);
2011-08-16 12:53:13 +00:00
}
}
/**
* Construct a Loader to load YAML from a _stream.
2011-08-16 12:53:13 +00:00
*
* Params: stream = Stream to read from. Must be readable and seekable.
2011-08-16 12:53:13 +00:00
*
* Throws: YAMLException if stream could not be read.
2011-08-16 12:53:13 +00:00
*/
this(Stream stream)
2011-08-16 12:53:13 +00:00
{
try
{
reader_ = new Reader(stream);
2011-08-16 12:53:13 +00:00
scanner_ = new Scanner(reader_);
parser_ = new Parser(scanner_);
2012-03-23 18:57:57 +00:00
resolver_ = new Resolver();
constructor_ = new Constructor();
2011-08-16 12:53:13 +00:00
}
catch(YAMLException e)
{
throw new YAMLException("Unable to open stream " ~ name_ ~
" for YAML loading: " ~ e.msg);
2011-08-16 12:53:13 +00:00
}
}
///Destroy the Loader.
~this()
{
clear(reader_);
clear(scanner_);
clear(parser_);
}
///Set stream _name. Used in debugging messages.
@property void name(string name)
{
name_ = name;
}
///Specify custom Resolver to use.
@property void resolver(Resolver resolver)
{
resolver_ = resolver;
}
///Specify custom Constructor to use.
@property void constructor(Constructor constructor)
{
constructor_ = constructor;
}
2011-08-16 12:53:13 +00:00
/**
* Load single YAML document.
*
* If none or more than one YAML document is found, this throws a YAMLException.
*
* This can only be called once; this is enforced by contract.
2011-08-16 12:53:13 +00:00
*
* Returns: Root node of the document.
*
* Throws: YAMLException if there wasn't exactly one document
* or on a YAML parsing error.
*/
Node load()
in
{
assert(!done_, "Loader: Trying to load YAML twice");
}
body
2011-08-16 12:53:13 +00:00
{
try
{
scope(exit){done_ = true;}
auto composer = new Composer(parser_, resolver_, constructor_);
enforce(composer.checkNode(), new YAMLException("No YAML document to load"));
return composer.getSingleNode();
2011-08-16 12:53:13 +00:00
}
catch(YAMLException e)
{
throw new YAMLException("Unable to load YAML from stream " ~
name_ ~ " : " ~ e.msg);
2011-08-16 12:53:13 +00:00
}
}
/**
* Load all YAML documents.
*
* This is just a shortcut that iterates over all documents and returns
* them all at once. Calling loadAll after iterating over the node or
* vice versa will not return any documents, as they have all been parsed
* already.
*
* This can only be called once; this is enforced by contract.
*
* Returns: Array of root nodes of all documents in the file/stream.
*
* Throws: YAMLException on a parsing error.
*/
Node[] loadAll()
{
Node[] nodes;
foreach(ref node; this){nodes ~= node;}
return nodes;
}
2011-08-16 12:53:13 +00:00
/**
* Foreach over YAML documents.
*
* Parses documents lazily, when they are needed.
2011-08-16 12:53:13 +00:00
*
* Foreach over a Loader can only be used once; this is enforced by contract.
*
2011-08-16 12:53:13 +00:00
* Throws: YAMLException on a parsing error.
*/
int opApply(int delegate(ref Node) dg)
in
{
assert(!done_, "Loader: Trying to load YAML twice");
}
body
2011-08-16 12:53:13 +00:00
{
scope(exit){done_ = true;}
2011-08-16 12:53:13 +00:00
try
{
auto composer = new Composer(parser_, resolver_, constructor_);
2011-08-16 12:53:13 +00:00
int result = 0;
while(composer.checkNode())
2011-08-16 12:53:13 +00:00
{
auto node = composer.getNode();
2011-08-16 12:53:13 +00:00
result = dg(node);
if(result){break;}
}
return result;
}
catch(YAMLException e)
{
throw new YAMLException("Unable to load YAML from stream " ~
name_ ~ " : " ~ e.msg);
2011-08-16 12:53:13 +00:00
}
}
package:
//Scan and return all tokens. Used for debugging.
Token[] scan()
{
try
{
Token[] result;
while(scanner_.checkToken()){result ~= scanner_.getToken();}
return result;
}
catch(YAMLException e)
{
throw new YAMLException("Unable to scan YAML from stream " ~
name_ ~ " : " ~ e.msg);
2011-08-16 12:53:13 +00:00
}
}
//Parse and return all events. Used for debugging.
immutable(Event)[] parse()
2011-08-16 12:53:13 +00:00
{
try
{
immutable(Event)[] result;
2011-08-16 12:53:13 +00:00
while(parser_.checkEvent()){result ~= parser_.getEvent();}
return result;
}
catch(YAMLException e)
{
throw new YAMLException("Unable to parse YAML from stream " ~
name_ ~ " : " ~ e.msg);
2011-08-16 12:53:13 +00:00
}
}
}
unittest
{
import std.stream;
import std.stdio;
string yaml_input = "red: '#ff0000'\n"
"green: '#00ff00'\n"
"blue: '#0000ff'";
auto colors = Loader(new MemoryStream(cast(char[])yaml_input)).load();
foreach(string color, string value; colors)
{
writeln(color, " is ", value, " in HTML/CSS");
}
}