49 lines
882 B
C++
49 lines
882 B
C++
#pragma once
|
|
|
|
#ifndef PARSER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
|
|
#define PARSER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
|
|
|
|
|
|
#include <ios>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
#include "node.h"
|
|
#include "parserstate.h"
|
|
|
|
namespace YAML
|
|
{
|
|
class Scanner;
|
|
struct Token;
|
|
|
|
class Parser
|
|
{
|
|
public:
|
|
Parser(std::istream& in);
|
|
~Parser();
|
|
|
|
operator bool() const;
|
|
|
|
void Load(std::istream& in);
|
|
void GetNextDocument(Node& document);
|
|
void PrintTokens(std::ostream& out);
|
|
|
|
private:
|
|
void ParseDirectives();
|
|
void HandleDirective(Token *pToken);
|
|
void HandleYamlDirective(Token *pToken);
|
|
void HandleTagDirective(Token *pToken);
|
|
|
|
private:
|
|
// can't copy this
|
|
Parser(const Parser&) {}
|
|
Parser& operator = (const Parser&) { return *this; }
|
|
|
|
private:
|
|
Scanner *m_pScanner;
|
|
ParserState m_state;
|
|
};
|
|
}
|
|
|
|
#endif // PARSER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
|