From e6d92a1fb21232ab09886431d39ccb8a95c7c68d Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 11 Dec 2014 13:57:42 +0200 Subject: Initial lexer implementation for buildfiles --- build/lexer | 98 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 build/lexer (limited to 'build/lexer') diff --git a/build/lexer b/build/lexer new file mode 100644 index 0000000..987efab --- /dev/null +++ b/build/lexer @@ -0,0 +1,98 @@ +// file : build/lexer -*- C++ -*- +// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC +// license : MIT; see accompanying LICENSE file + +#ifndef BUILD_LEXER +#define BUILD_LEXER + +#include +#include +#include // uint64_t +#include + +#include + +namespace build +{ + // The handler must assume the diagnostics has already been issued. + // + struct lexer_error: std::exception {}; + + class lexer + { + public: + lexer (std::istream& is, const std::string& name) + : is_ (is), name_ (name) {} + + token + next (); + + // Character interface. + // + private: + class xchar + { + public: + typedef std::char_traits traits_type; + typedef traits_type::int_type int_type; + typedef traits_type::char_type char_type; + + xchar (int_type v, std::uint64_t l, std::uint64_t c) + : v_ (v), l_ (l), c_ (c) {} + + operator char_type () const {return static_cast (v_);} + + int_type + value () const {return v_;} + + std::uint64_t line () const {return l_;} + std::uint64_t column () const {return c_;} + + private: + int_type v_; + std::uint64_t l_; + std::uint64_t c_; + }; + + xchar + peek (); + + xchar + get (); + + void + unget (const xchar&); + + // Tests. + // + bool + is_eos (const xchar& c) const + { + return c.value () == xchar::traits_type::eof (); + } + + private: + xchar + escape (); + + void + skip_spaces (); + + token + name (xchar); + + private: + std::istream& is_; + std::string name_; + + std::uint64_t l_ {1}; + std::uint64_t c_ {1}; + + bool eos_ {false}; + + bool unget_ {false}; + xchar buf_ {0, 0, 0}; + }; +} + +#endif // BUILD_LEXER -- cgit v1.1