2013-08-03 17:58:05 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2013 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <iostream>
|
|
|
|
#include <vector>
|
2013-08-13 10:40:51 +00:00
|
|
|
#include "mpq.h"
|
|
|
|
#include "name.h"
|
2013-08-03 17:58:05 +00:00
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
/**
|
2013-08-13 10:40:51 +00:00
|
|
|
\brief Lean scanner.
|
2013-08-03 17:58:05 +00:00
|
|
|
*/
|
|
|
|
class scanner {
|
2013-08-13 10:40:51 +00:00
|
|
|
public:
|
|
|
|
enum class token {
|
|
|
|
LeftParen, RightParen, LeftCurlyBracket, RightCurlyBracket, Colon, Comma, Period, Lambda, Pi, Arrow,
|
2013-08-13 10:52:08 +00:00
|
|
|
Id, CommandId, Int, Decimal, Eq, Assign, Type, Eof
|
2013-08-13 10:40:51 +00:00
|
|
|
};
|
2013-08-03 17:58:05 +00:00
|
|
|
protected:
|
|
|
|
int m_spos; // position in the current line of the stream
|
|
|
|
char m_curr; // current char;
|
|
|
|
|
|
|
|
int m_line; // line
|
|
|
|
int m_pos; // start position of the token
|
2013-08-13 10:40:51 +00:00
|
|
|
std::istream & m_stream;
|
2013-08-03 17:58:05 +00:00
|
|
|
|
2013-08-13 10:40:51 +00:00
|
|
|
mpq m_num_val;
|
|
|
|
name m_name_val;
|
|
|
|
std::string m_buffer;
|
2013-08-03 17:58:05 +00:00
|
|
|
|
|
|
|
char curr() const { return m_curr; }
|
|
|
|
void new_line() { m_line++; m_spos = 0; }
|
|
|
|
void next();
|
2013-08-13 10:40:51 +00:00
|
|
|
bool check_next(char c);
|
|
|
|
void read_comment();
|
|
|
|
token read_a_symbol();
|
|
|
|
token read_b_symbol();
|
|
|
|
token read_c_symbol();
|
|
|
|
token read_number();
|
|
|
|
bool is_command(name const & n) const;
|
2013-08-03 17:58:05 +00:00
|
|
|
|
|
|
|
public:
|
2013-08-13 10:40:51 +00:00
|
|
|
scanner(std::istream& stream);
|
2013-08-03 17:58:05 +00:00
|
|
|
~scanner();
|
|
|
|
|
|
|
|
int get_line() const { return m_line; }
|
|
|
|
int get_pos() const { return m_pos; }
|
2013-08-13 10:40:51 +00:00
|
|
|
token scan();
|
2013-08-03 17:58:05 +00:00
|
|
|
|
2013-08-13 10:40:51 +00:00
|
|
|
name const & get_name_val() const { return m_name_val; }
|
|
|
|
mpq const & get_num_val() const { return m_num_val; }
|
2013-08-03 17:58:05 +00:00
|
|
|
};
|
2013-08-13 10:40:51 +00:00
|
|
|
std::ostream & operator<<(std::ostream & out, scanner::token const & t);
|
2013-08-03 17:58:05 +00:00
|
|
|
}
|