2013-08-18 01:13:55 +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
|
|
|
|
*/
|
|
|
|
#include <unordered_map>
|
|
|
|
#include "scoped_map.h"
|
|
|
|
#include "exception.h"
|
2013-08-18 17:50:14 +00:00
|
|
|
#include "normalize.h"
|
|
|
|
#include "type_check.h"
|
2013-08-18 19:21:11 +00:00
|
|
|
#include "free_vars.h"
|
2013-08-18 01:13:55 +00:00
|
|
|
#include "builtin.h"
|
|
|
|
#include "arith.h"
|
2013-08-18 22:03:58 +00:00
|
|
|
#include "printer.h"
|
2013-08-21 19:42:55 +00:00
|
|
|
#include "state.h"
|
2013-08-21 23:43:59 +00:00
|
|
|
#include "option_declarations.h"
|
2013-08-24 16:56:07 +00:00
|
|
|
#include "expr_maps.h"
|
2013-08-24 18:55:17 +00:00
|
|
|
#include "sstream.h"
|
2013-08-21 16:04:49 +00:00
|
|
|
#include "lean_frontend.h"
|
2013-08-21 21:13:23 +00:00
|
|
|
#include "lean_parser.h"
|
2013-08-21 16:04:49 +00:00
|
|
|
#include "lean_scanner.h"
|
|
|
|
#include "lean_notation.h"
|
|
|
|
#include "lean_pp.h"
|
2013-08-22 02:08:34 +00:00
|
|
|
#ifdef LEAN_USE_READLINE
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <readline/readline.h>
|
|
|
|
#include <readline/history.h>
|
|
|
|
#endif
|
2013-08-18 01:13:55 +00:00
|
|
|
|
|
|
|
namespace lean {
|
2013-08-19 16:35:19 +00:00
|
|
|
// ==========================================
|
|
|
|
// Builtin commands
|
2013-08-18 01:13:55 +00:00
|
|
|
static name g_definition_kwd("Definition");
|
|
|
|
static name g_variable_kwd("Variable");
|
|
|
|
static name g_theorem_kwd("Theorem");
|
|
|
|
static name g_axiom_kwd("Axiom");
|
|
|
|
static name g_universe_kwd("Universe");
|
|
|
|
static name g_eval_kwd("Eval");
|
|
|
|
static name g_show_kwd("Show");
|
2013-08-18 17:50:14 +00:00
|
|
|
static name g_check_kwd("Check");
|
2013-08-18 01:13:55 +00:00
|
|
|
static name g_infix_kwd("Infix");
|
|
|
|
static name g_infixl_kwd("Infixl");
|
|
|
|
static name g_infixr_kwd("Infixr");
|
|
|
|
static name g_prefix_kwd("Prefix");
|
|
|
|
static name g_postfix_kwd("Postfix");
|
|
|
|
static name g_mixfixl_kwd("Mixfixl");
|
|
|
|
static name g_mixfixr_kwd("Mixfixr");
|
|
|
|
static name g_mixfixc_kwd("Mixfixc");
|
2013-08-20 15:34:37 +00:00
|
|
|
static name g_echo_kwd("Echo");
|
2013-08-21 19:42:55 +00:00
|
|
|
static name g_set_kwd("Set");
|
|
|
|
static name g_options_kwd("Options");
|
|
|
|
static name g_env_kwd("Environment");
|
2013-08-21 21:13:23 +00:00
|
|
|
static name g_import_kwd("Import");
|
2013-08-21 23:43:59 +00:00
|
|
|
static name g_help_kwd("Help");
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Table/List with all builtin command keywords */
|
|
|
|
static list<name> g_command_keywords = {g_definition_kwd, g_variable_kwd, g_theorem_kwd, g_axiom_kwd, g_universe_kwd, g_eval_kwd,
|
2013-08-21 19:42:55 +00:00
|
|
|
g_show_kwd, g_check_kwd, g_infix_kwd, g_infixl_kwd, g_infixr_kwd, g_prefix_kwd,
|
|
|
|
g_postfix_kwd, g_mixfixl_kwd, g_mixfixr_kwd, g_mixfixc_kwd, g_echo_kwd,
|
2013-08-21 23:43:59 +00:00
|
|
|
g_set_kwd, g_env_kwd, g_options_kwd, g_import_kwd, g_help_kwd};
|
2013-08-19 16:35:19 +00:00
|
|
|
// ==========================================
|
2013-08-18 01:13:55 +00:00
|
|
|
|
2013-08-19 01:25:34 +00:00
|
|
|
// ==========================================
|
|
|
|
// Support for parsing levels
|
|
|
|
static name g_max_name("max");
|
2013-08-19 01:43:31 +00:00
|
|
|
static name g_cup_name("\u2294");
|
2013-08-19 01:25:34 +00:00
|
|
|
static name g_plus_name("+");
|
|
|
|
static unsigned g_level_plus_prec = 10;
|
|
|
|
static unsigned g_level_cup_prec = 5;
|
|
|
|
// ==========================================
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
// ==========================================
|
|
|
|
// Auxiliary constant used to mark applications of overloaded operators.
|
2013-08-18 01:13:55 +00:00
|
|
|
static name g_overload_name(name(name(name(0u), "parser"), "overload"));
|
|
|
|
static expr g_overload = mk_constant(g_overload_name);
|
2013-08-19 16:35:19 +00:00
|
|
|
// ==========================================
|
2013-08-18 01:13:55 +00:00
|
|
|
|
2013-08-19 23:14:19 +00:00
|
|
|
// A name that can't be created by the user.
|
|
|
|
// It is used as placeholder for parsing A -> B expressions which
|
|
|
|
// are syntax sugar for (Pi (_ : A), B)
|
|
|
|
static name g_unused(name(0u), "parser");
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/**
|
|
|
|
\brief Functional object for parsing
|
2013-08-18 01:13:55 +00:00
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
\remark It is an instance of a Pratt parser
|
|
|
|
(http://en.wikipedia.org/wiki/Pratt_parser) described in the paper
|
|
|
|
"Top down operator precedence". This algorithm is super simple,
|
|
|
|
and it is easy to support user-defined infix/prefix/postfix/mixfix
|
|
|
|
operators.
|
|
|
|
*/
|
|
|
|
class parser_fn {
|
2013-08-18 01:13:55 +00:00
|
|
|
typedef scoped_map<name, unsigned, name_hash, name_eq> local_decls;
|
|
|
|
typedef std::unordered_map<name, expr, name_hash, name_eq> builtins;
|
2013-08-24 16:56:07 +00:00
|
|
|
typedef std::pair<unsigned, unsigned> pos_info;
|
|
|
|
typedef expr_map<pos_info> expr_pos_info;
|
2013-08-18 01:13:55 +00:00
|
|
|
frontend m_frontend;
|
|
|
|
scanner m_scanner;
|
|
|
|
scanner::token m_curr;
|
|
|
|
bool m_use_exceptions;
|
2013-08-22 01:24:26 +00:00
|
|
|
bool m_interactive;
|
2013-08-18 01:13:55 +00:00
|
|
|
bool m_found_errors;
|
|
|
|
local_decls m_local_decls;
|
2013-08-18 22:23:01 +00:00
|
|
|
unsigned m_num_local_decls;
|
2013-08-18 01:13:55 +00:00
|
|
|
builtins m_builtins;
|
2013-08-24 16:56:07 +00:00
|
|
|
expr_pos_info m_expr_pos_info;
|
|
|
|
pos_info m_last_cmd_pos;
|
2013-08-18 01:13:55 +00:00
|
|
|
|
|
|
|
/** \brief Exception used to track parsing erros, it does not leak outside of this class. */
|
|
|
|
struct parser_error : public exception {
|
2013-08-24 18:30:54 +00:00
|
|
|
pos_info m_pos;
|
|
|
|
parser_error(char const * msg, pos_info const & p):exception(msg), m_pos(p) {}
|
2013-08-24 18:55:17 +00:00
|
|
|
parser_error(sstream const & msg, pos_info const & p):exception(msg), m_pos(p) {}
|
2013-08-18 01:13:55 +00:00
|
|
|
};
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/**
|
|
|
|
\brief Auxiliar struct for creating/destroying a new scope for
|
|
|
|
local declarations.
|
|
|
|
*/
|
2013-08-18 22:23:01 +00:00
|
|
|
struct mk_scope {
|
|
|
|
parser_fn & m_fn;
|
|
|
|
local_decls::mk_scope m_scope;
|
|
|
|
unsigned m_old_num_local_decls;
|
|
|
|
mk_scope(parser_fn & fn):m_fn(fn), m_scope(fn.m_local_decls), m_old_num_local_decls(fn.m_num_local_decls) {}
|
|
|
|
~mk_scope() { m_fn.m_num_local_decls = m_old_num_local_decls; }
|
|
|
|
};
|
|
|
|
|
2013-08-24 16:56:07 +00:00
|
|
|
/** \brief Return the current position information */
|
|
|
|
pos_info pos() const { return mk_pair(m_scanner.get_line(), m_scanner.get_pos()); }
|
|
|
|
|
|
|
|
/** \brief Return the position associated with \c e. If there is none, then return \c default_pos. */
|
|
|
|
pos_info pos_of(expr const & e, pos_info default_pos) {
|
|
|
|
auto it = m_expr_pos_info.find(e);
|
|
|
|
if (it == m_expr_pos_info.end())
|
|
|
|
return default_pos;
|
|
|
|
else
|
|
|
|
return it->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Associate position \c p with \c e and return \c e */
|
|
|
|
expr save(expr const & e, pos_info p) { m_expr_pos_info[e] = p; return e; }
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Read the next token. */
|
2013-08-18 01:13:55 +00:00
|
|
|
void scan() { m_curr = m_scanner.scan(); }
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Return the current token */
|
2013-08-18 01:13:55 +00:00
|
|
|
scanner::token curr() const { return m_curr; }
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Read the next token if the current one is not End-of-file. */
|
2013-08-18 01:13:55 +00:00
|
|
|
void next() { if (m_curr != scanner::token::Eof) scan(); }
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Keep consume tokens until we find a Command or End-of-file. */
|
2013-08-18 01:13:55 +00:00
|
|
|
void sync() {
|
|
|
|
while (curr() != scanner::token::CommandId && curr() != scanner::token::Eof)
|
|
|
|
next();
|
|
|
|
}
|
2013-08-19 16:35:19 +00:00
|
|
|
|
|
|
|
/** \brief Return the name associated with the current token. */
|
2013-08-18 01:13:55 +00:00
|
|
|
name const & curr_name() const { return m_scanner.get_name_val(); }
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Return the numeral associated with the current token. */
|
2013-08-18 17:50:14 +00:00
|
|
|
mpq const & curr_num() const { return m_scanner.get_num_val(); }
|
2013-08-20 15:34:37 +00:00
|
|
|
/** \brief Return the string associated with the current token. */
|
|
|
|
std::string const & curr_string() const { return m_scanner.get_str_val(); }
|
2013-08-18 01:13:55 +00:00
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/**
|
|
|
|
\brief Check if the current token is \c t, and move to the
|
|
|
|
next one. If the current token is not \c t, it throws a parser error.
|
|
|
|
*/
|
2013-08-18 01:13:55 +00:00
|
|
|
void check_next(scanner::token t, char const * msg) {
|
|
|
|
if (curr() == t)
|
|
|
|
next();
|
|
|
|
else
|
2013-08-24 18:30:54 +00:00
|
|
|
throw parser_error(msg, pos());
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Return true iff the current toke is an identifier */
|
2013-08-18 01:13:55 +00:00
|
|
|
bool curr_is_identifier() const { return curr() == scanner::token::Id; }
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Return true iff the current toke is an integer */
|
2013-08-19 01:25:34 +00:00
|
|
|
bool curr_is_int() const { return curr() == scanner::token::IntVal; }
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Return true iff the current toke is a '(' */
|
2013-08-18 19:21:11 +00:00
|
|
|
bool curr_is_lparen() const { return curr() == scanner::token::LeftParen; }
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Return true iff the current toke is a ':' */
|
2013-08-18 19:48:02 +00:00
|
|
|
bool curr_is_colon() const { return curr() == scanner::token::Colon; }
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Return true iff the current toke is a ',' */
|
2013-08-18 22:03:58 +00:00
|
|
|
bool curr_is_comma() const { return curr() == scanner::token::Comma; }
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Return true iff the current toke is an 'in' token */
|
2013-08-18 22:03:58 +00:00
|
|
|
bool curr_is_in() const { return curr() == scanner::token::In; }
|
2013-08-18 01:13:55 +00:00
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Throws a parser error if the current token is not an identifier. */
|
2013-08-24 18:30:54 +00:00
|
|
|
void check_identifier(char const * msg) { if (!curr_is_identifier()) throw parser_error(msg, pos()); }
|
2013-08-19 16:35:19 +00:00
|
|
|
/**
|
|
|
|
\brief Throws a parser error if the current token is not an
|
|
|
|
identifier. If it is, move to the next token.
|
|
|
|
*/
|
2013-08-18 01:13:55 +00:00
|
|
|
name check_identifier_next(char const * msg) { check_identifier(msg); name r = curr_name(); next(); return r; }
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Throws a parser error if the current token is not ':'. If it is, move to the next token. */
|
2013-08-18 01:13:55 +00:00
|
|
|
void check_colon_next(char const * msg) { check_next(scanner::token::Colon, msg); }
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Throws a parser error if the current token is not ','. If it is, move to the next token. */
|
2013-08-18 19:21:11 +00:00
|
|
|
void check_comma_next(char const * msg) { check_next(scanner::token::Comma, msg); }
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Throws a parser error if the current token is not '('. If it is, move to the next token. */
|
2013-08-18 19:21:11 +00:00
|
|
|
void check_lparen_next(char const * msg) { check_next(scanner::token::LeftParen, msg); }
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Throws a parser error if the current token is not ')'. If it is, move to the next token. */
|
2013-08-18 01:13:55 +00:00
|
|
|
void check_rparen_next(char const * msg) { check_next(scanner::token::RightParen, msg); }
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Throws a parser error if the current token is not ':='. If it is, move to the next token. */
|
2013-08-18 19:48:02 +00:00
|
|
|
void check_assign_next(char const * msg) { check_next(scanner::token::Assign, msg); }
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Throws a parser error if the current token is not an identifier named \c op. */
|
2013-08-24 18:30:54 +00:00
|
|
|
void check_name(name const & op, char const * msg) { if(!curr_is_identifier() || curr_name() != op) throw parser_error(msg, pos()); }
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Throws a parser error if the current token is not an identifier named \c op. If it is, move to the next token. */
|
2013-08-18 17:50:14 +00:00
|
|
|
void check_name_next(name const & op, char const * msg) { check_name(op, msg); next(); }
|
2013-08-20 15:34:37 +00:00
|
|
|
/**
|
|
|
|
\brief Throws a parser error if the current token is not a
|
|
|
|
string. If it is, move to the next token.
|
|
|
|
*/
|
2013-08-24 18:30:54 +00:00
|
|
|
std::string check_string_next(char const * msg) {
|
|
|
|
if (curr() != scanner::token::StringVal)
|
|
|
|
throw parser_error(msg, pos());
|
|
|
|
std::string r = curr_string();
|
|
|
|
next();
|
|
|
|
return r;
|
|
|
|
}
|
2013-08-18 01:13:55 +00:00
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Initialize \c m_builtins table with Lean builtin symbols that do not have notation associated with them. */
|
2013-08-18 01:13:55 +00:00
|
|
|
void init_builtins() {
|
|
|
|
m_builtins["Bool"] = Bool;
|
|
|
|
m_builtins["true"] = True;
|
|
|
|
m_builtins["false"] = False;
|
|
|
|
m_builtins["\u22A4"] = True;
|
|
|
|
m_builtins["\u22A5"] = False;
|
|
|
|
m_builtins["Int"] = Int;
|
|
|
|
}
|
|
|
|
|
2013-08-21 19:42:55 +00:00
|
|
|
unsigned parse_unsigned(char const * msg) {
|
|
|
|
lean_assert(curr_is_int());
|
|
|
|
mpz pval = curr_num().get_numerator();
|
|
|
|
if (!pval.is_unsigned_int()) {
|
2013-08-24 18:30:54 +00:00
|
|
|
throw parser_error(msg, pos());
|
2013-08-21 19:42:55 +00:00
|
|
|
} else {
|
|
|
|
unsigned r = pval.get_unsigned_int();
|
|
|
|
next();
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
double parse_double() {
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
|
2013-08-18 01:13:55 +00:00
|
|
|
[[ noreturn ]] void not_implemented_yet() {
|
2013-08-18 22:51:27 +00:00
|
|
|
// TODO
|
2013-08-24 18:30:54 +00:00
|
|
|
throw parser_error("not implemented yet", pos());
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/**
|
|
|
|
@name Parse Universe levels
|
|
|
|
*/
|
|
|
|
/*@{*/
|
2013-08-19 01:25:34 +00:00
|
|
|
level parse_level_max() {
|
2013-08-24 18:30:54 +00:00
|
|
|
auto p = pos();
|
2013-08-19 01:25:34 +00:00
|
|
|
next();
|
|
|
|
buffer<level> lvls;
|
|
|
|
while (curr_is_identifier() || curr_is_int()) {
|
|
|
|
lvls.push_back(parse_level());
|
|
|
|
}
|
|
|
|
if (lvls.size() < 2)
|
2013-08-24 18:30:54 +00:00
|
|
|
throw parser_error("invalid level expression, max must have at least two arguments", p);
|
2013-08-19 01:25:34 +00:00
|
|
|
level r = lvls[0];
|
|
|
|
for (unsigned i = 1; i < lvls.size(); i++)
|
|
|
|
r = max(r, lvls[i]);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
level parse_level_nud_id() {
|
|
|
|
name id = curr_name();
|
|
|
|
if (id == g_max_name) {
|
|
|
|
return parse_level_max();
|
|
|
|
} else {
|
|
|
|
next();
|
|
|
|
return m_frontend.get_uvar(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
level parse_level_nud_int() {
|
2013-08-24 18:30:54 +00:00
|
|
|
auto p = pos();
|
2013-08-19 01:25:34 +00:00
|
|
|
mpz val = curr_num().get_numerator();
|
|
|
|
next();
|
|
|
|
if (!val.is_unsigned_int())
|
2013-08-24 18:30:54 +00:00
|
|
|
throw parser_error("invalid level expression, value does not fit in a machine integer", p);
|
2013-08-19 01:25:34 +00:00
|
|
|
return level() + val.get_unsigned_int();
|
|
|
|
}
|
|
|
|
|
|
|
|
level parse_level_nud() {
|
|
|
|
switch (curr()) {
|
|
|
|
case scanner::token::Id: return parse_level_nud_id();
|
|
|
|
case scanner::token::IntVal: return parse_level_nud_int();
|
|
|
|
default:
|
2013-08-24 18:30:54 +00:00
|
|
|
throw parser_error("invalid level expression", pos());
|
2013-08-19 01:25:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
level parse_level_led_plus(level const & left) {
|
2013-08-24 18:30:54 +00:00
|
|
|
auto p = pos();
|
2013-08-19 01:25:34 +00:00
|
|
|
next();
|
|
|
|
level right = parse_level(g_level_plus_prec);
|
|
|
|
if (!is_lift(right) || !lift_of(right).is_bottom())
|
2013-08-24 18:30:54 +00:00
|
|
|
throw parser_error("invalid level expression, right hand side of '+' (aka universe lift operator) must be a numeral", p);
|
2013-08-19 01:25:34 +00:00
|
|
|
return left + lift_offset(right);
|
|
|
|
}
|
|
|
|
|
|
|
|
level parse_level_led_cup(level const & left) {
|
|
|
|
next();
|
|
|
|
level right = parse_level(g_level_cup_prec);
|
|
|
|
return max(left, right);
|
|
|
|
}
|
|
|
|
|
|
|
|
level parse_level_led(level const & left) {
|
|
|
|
switch (curr()) {
|
|
|
|
case scanner::token::Id:
|
|
|
|
if (curr_name() == g_plus_name) return parse_level_led_plus(left);
|
|
|
|
else if (curr_name() == g_cup_name) return parse_level_led_cup(left);
|
|
|
|
default:
|
2013-08-24 18:30:54 +00:00
|
|
|
throw parser_error("invalid level expression", pos());
|
2013-08-19 01:25:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned curr_level_lbp() {
|
|
|
|
switch (curr()) {
|
|
|
|
case scanner::token::Id: {
|
|
|
|
name const & id = curr_name();
|
|
|
|
if (id == g_plus_name) return g_level_plus_prec;
|
|
|
|
else if (id == g_cup_name) return g_level_cup_prec;
|
|
|
|
else return 0;
|
|
|
|
}
|
|
|
|
default: return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse a universe level */
|
2013-08-19 01:25:34 +00:00
|
|
|
level parse_level(unsigned rbp = 0) {
|
|
|
|
level left = parse_level_nud();
|
|
|
|
while (rbp < curr_level_lbp()) {
|
|
|
|
left = parse_level_led(left);
|
|
|
|
}
|
|
|
|
return left;
|
|
|
|
}
|
2013-08-19 16:35:19 +00:00
|
|
|
/*@}*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
@name Parse Expressions
|
|
|
|
*/
|
|
|
|
/*@{*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Return the function associated with the given operator.
|
|
|
|
If the operator has been overloaded, it returns an expression
|
|
|
|
of the form (overload f_k ... (overload f_2 f_1) ...)
|
|
|
|
where f_i's are different options.
|
|
|
|
After we finish parsing, the procedure #elaborate will
|
|
|
|
resolve/decide which f_i should be used.
|
|
|
|
*/
|
2013-08-18 01:13:55 +00:00
|
|
|
expr mk_fun(operator_info const & op) {
|
2013-08-20 00:25:15 +00:00
|
|
|
list<expr> const & fs = op.get_exprs();
|
2013-08-18 01:13:55 +00:00
|
|
|
lean_assert(!is_nil(fs));
|
|
|
|
auto it = fs.begin();
|
2013-08-20 00:25:15 +00:00
|
|
|
expr r = *it;
|
2013-08-18 01:13:55 +00:00
|
|
|
++it;
|
|
|
|
for (; it != fs.end(); ++it)
|
2013-08-20 00:25:15 +00:00
|
|
|
r = mk_app(g_overload, *it, r);
|
2013-08-18 01:13:55 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse a user defined prefix operator. */
|
2013-08-18 01:13:55 +00:00
|
|
|
expr parse_prefix(operator_info const & op) {
|
2013-08-24 16:56:07 +00:00
|
|
|
auto p = pos();
|
|
|
|
expr f = save(mk_fun(op), p);
|
2013-08-18 01:13:55 +00:00
|
|
|
expr arg = parse_expr(op.get_precedence());
|
2013-08-24 16:56:07 +00:00
|
|
|
return save(mk_app(f, arg), p);
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse a user defined postfix operator. */
|
2013-08-18 01:13:55 +00:00
|
|
|
expr parse_postfix(expr const & left, operator_info const & op) {
|
2013-08-24 16:56:07 +00:00
|
|
|
auto p = pos();
|
|
|
|
expr f = save(mk_fun(op), p);
|
|
|
|
return save(mk_app(f, left), p);
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse a user defined infix operator. */
|
2013-08-18 01:13:55 +00:00
|
|
|
expr parse_infix(expr const & left, operator_info const & op) {
|
2013-08-24 16:56:07 +00:00
|
|
|
auto p = pos();
|
|
|
|
expr f = save(mk_fun(op), p);
|
2013-08-18 01:13:55 +00:00
|
|
|
expr right = parse_expr(op.get_precedence()+1);
|
2013-08-24 16:56:07 +00:00
|
|
|
return save(mk_app(f, left, right), p);
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse a user defined infix-left operator. */
|
2013-08-18 01:13:55 +00:00
|
|
|
expr parse_infixl(expr const & left, operator_info const & op) {
|
2013-08-24 16:56:07 +00:00
|
|
|
auto p = pos();
|
|
|
|
expr f = save(mk_fun(op), p);
|
2013-08-18 01:13:55 +00:00
|
|
|
expr right = parse_expr(op.get_precedence());
|
2013-08-24 16:56:07 +00:00
|
|
|
return save(mk_app(f, left, right), p);
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse a user defined infix-right operator. */
|
2013-08-18 01:13:55 +00:00
|
|
|
expr parse_infixr(expr const & left, operator_info const & op) {
|
2013-08-24 16:56:07 +00:00
|
|
|
auto p = pos();
|
|
|
|
expr f = save(mk_fun(op), p);
|
2013-08-18 01:13:55 +00:00
|
|
|
expr right = parse_expr(op.get_precedence()-1);
|
2013-08-24 16:56:07 +00:00
|
|
|
return save(mk_app(f, left, right), p);
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/**
|
|
|
|
\brief Throws an error if the current token is not an identifier named \c op_part.
|
|
|
|
If it is, move to the next toke. The error message assumes
|
|
|
|
this method has been used when parsing mixfix operators.
|
|
|
|
*/
|
2013-08-18 17:50:14 +00:00
|
|
|
void check_op_part(name const & op_part) {
|
2013-08-19 16:35:19 +00:00
|
|
|
check_name_next(op_part, "invalid mixfix operator application, identifier expected");
|
2013-08-18 17:50:14 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Auxiliary function for #parse_mixfixl and #parse_mixfixr */
|
2013-08-18 17:50:14 +00:00
|
|
|
void parse_mixfix_args(list<name> const & ops, unsigned prec, buffer<expr> & args) {
|
|
|
|
auto it = ops.begin();
|
|
|
|
++it;
|
|
|
|
while (it != ops.end()) {
|
|
|
|
check_op_part(*it);
|
|
|
|
args.push_back(parse_expr(prec));
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse user defined mixfixl operator. It has the form: ID _ ... ID _ */
|
2013-08-18 01:13:55 +00:00
|
|
|
expr parse_mixfixl(operator_info const & op) {
|
2013-08-24 16:56:07 +00:00
|
|
|
auto p = pos();
|
|
|
|
expr f = save(mk_fun(op), p);
|
2013-08-18 17:50:14 +00:00
|
|
|
buffer<expr> args;
|
2013-08-24 16:56:07 +00:00
|
|
|
args.push_back(f);
|
2013-08-18 17:50:14 +00:00
|
|
|
args.push_back(parse_expr(op.get_precedence()));
|
|
|
|
parse_mixfix_args(op.get_op_name_parts(), op.get_precedence(), args);
|
2013-08-24 16:56:07 +00:00
|
|
|
return save(mk_app(args.size(), args.data()), p);
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse user defined mixfixr operator. It has the form: _ ID ... _ ID */
|
2013-08-18 01:13:55 +00:00
|
|
|
expr parse_mixfixr(expr const & left, operator_info const & op) {
|
2013-08-24 16:56:07 +00:00
|
|
|
auto p = pos();
|
|
|
|
expr f = save(mk_fun(op), p);
|
2013-08-18 17:50:14 +00:00
|
|
|
buffer<expr> args;
|
2013-08-24 16:56:07 +00:00
|
|
|
args.push_back(f);
|
2013-08-18 17:50:14 +00:00
|
|
|
args.push_back(left);
|
|
|
|
parse_mixfix_args(op.get_op_name_parts(), op.get_precedence(), args);
|
2013-08-24 16:56:07 +00:00
|
|
|
return save(mk_app(args.size(), args.data()), p);
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse user defined mixfixc operator. It has the form: ID _ ID ... _ ID */
|
2013-08-18 01:13:55 +00:00
|
|
|
expr parse_mixfixc(operator_info const & op) {
|
2013-08-24 16:56:07 +00:00
|
|
|
auto p = pos();
|
|
|
|
expr f = save(mk_fun(op), p);
|
2013-08-18 17:50:14 +00:00
|
|
|
buffer<expr> args;
|
2013-08-24 16:56:07 +00:00
|
|
|
args.push_back(f);
|
2013-08-18 17:50:14 +00:00
|
|
|
args.push_back(parse_expr(op.get_precedence()));
|
|
|
|
list<name> const & ops = op.get_op_name_parts();
|
|
|
|
auto it = ops.begin();
|
|
|
|
++it;
|
|
|
|
while (true) {
|
|
|
|
check_op_part(*it);
|
|
|
|
++it;
|
|
|
|
if (it == ops.end())
|
2013-08-24 16:56:07 +00:00
|
|
|
return save(mk_app(args.size(), args.data()), p);
|
2013-08-18 17:50:14 +00:00
|
|
|
args.push_back(parse_expr(op.get_precedence()));
|
|
|
|
}
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/**
|
|
|
|
\brief Try to find an object (Definition or Postulate) named \c
|
|
|
|
id in the frontend/environment. If there isn't one, then tries
|
|
|
|
to check if \c id is a builtin symbol. If it is not throws an error.
|
|
|
|
*/
|
2013-08-24 18:30:54 +00:00
|
|
|
expr get_name_ref(name const & id, pos_info const & p) {
|
2013-08-18 01:13:55 +00:00
|
|
|
object const & obj = m_frontend.find_object(id);
|
|
|
|
if (obj) {
|
|
|
|
object_kind k = obj.kind();
|
|
|
|
if (k == object_kind::Definition || k == object_kind::Postulate)
|
|
|
|
return mk_constant(obj.get_name());
|
|
|
|
else
|
2013-08-24 18:55:17 +00:00
|
|
|
throw parser_error(sstream() << "invalid object reference, object '" << id << "' is not an expression.", p);
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
auto it = m_builtins.find(id);
|
|
|
|
if (it != m_builtins.end()) {
|
|
|
|
return it->second;
|
|
|
|
} else {
|
2013-08-24 18:55:17 +00:00
|
|
|
throw parser_error(sstream() << "unknown identifier '" << id << "'", p);
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/**
|
|
|
|
\brief Parse an identifier that has a "null denotation" (See
|
|
|
|
paper: "Top down operator precedence"). A nud identifier is a
|
|
|
|
token that appears at the beginning of a language construct.
|
|
|
|
In Lean, local declarations (i.e., local functions), user
|
|
|
|
defined prefix, mixfixl and mixfixc operators, and global
|
|
|
|
functions can begin a language construct.
|
|
|
|
*/
|
2013-08-18 01:13:55 +00:00
|
|
|
expr parse_nud_id() {
|
2013-08-24 16:56:07 +00:00
|
|
|
auto p = pos();
|
2013-08-18 01:13:55 +00:00
|
|
|
name id = curr_name();
|
|
|
|
next();
|
|
|
|
auto it = m_local_decls.find(id);
|
|
|
|
if (it != m_local_decls.end()) {
|
2013-08-24 16:56:07 +00:00
|
|
|
return save(mk_var(m_num_local_decls - it->second - 1), p);
|
2013-08-18 01:13:55 +00:00
|
|
|
} else {
|
|
|
|
operator_info op = m_frontend.find_nud(id);
|
|
|
|
if (op) {
|
|
|
|
switch (op.get_fixity()) {
|
|
|
|
case fixity::Prefix: return parse_prefix(op);
|
|
|
|
case fixity::Mixfixl: return parse_mixfixl(op);
|
|
|
|
case fixity::Mixfixc: return parse_mixfixc(op);
|
|
|
|
default: lean_unreachable(); return expr();
|
|
|
|
}
|
|
|
|
} else {
|
2013-08-24 18:30:54 +00:00
|
|
|
return save(get_name_ref(id, p), p);
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/**
|
|
|
|
\brief Parse an identifier that has a "left denotation" (See
|
|
|
|
paper: "Top down operator precedence"). A left identifier is a
|
|
|
|
token that appears inside of a construct (to left of the rest
|
|
|
|
of the construct). In Lean, local declarations (i.e., function
|
|
|
|
application arguments), user defined infix, infixl, infixr,
|
|
|
|
mixfixr and global values (as function application arguments)
|
|
|
|
can appear inside of a construct.
|
|
|
|
*/
|
2013-08-18 01:13:55 +00:00
|
|
|
expr parse_led_id(expr const & left) {
|
2013-08-24 16:56:07 +00:00
|
|
|
auto p = pos();
|
|
|
|
auto p2 = pos_of(left, p);
|
2013-08-18 01:13:55 +00:00
|
|
|
name id = curr_name();
|
|
|
|
next();
|
|
|
|
auto it = m_local_decls.find(id);
|
|
|
|
if (it != m_local_decls.end()) {
|
2013-08-24 16:56:07 +00:00
|
|
|
return save(mk_app(left, save(mk_var(m_num_local_decls - it->second - 1), p)), p2);
|
2013-08-18 01:13:55 +00:00
|
|
|
} else {
|
|
|
|
operator_info op = m_frontend.find_led(id);
|
|
|
|
if (op) {
|
|
|
|
switch (op.get_fixity()) {
|
|
|
|
case fixity::Infix: return parse_infix(left, op);
|
|
|
|
case fixity::Infixl: return parse_infixl(left, op);
|
|
|
|
case fixity::Infixr: return parse_infixr(left, op);
|
|
|
|
case fixity::Mixfixr: return parse_mixfixr(left, op);
|
|
|
|
default: lean_unreachable(); return expr();
|
|
|
|
}
|
|
|
|
} else {
|
2013-08-24 18:30:54 +00:00
|
|
|
return save(mk_app(left, save(get_name_ref(id, p), p)), p2);
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse <tt>expr '=' expr</tt>. */
|
2013-08-18 17:50:14 +00:00
|
|
|
expr parse_eq(expr const & left) {
|
2013-08-24 16:56:07 +00:00
|
|
|
auto p = pos();
|
2013-08-18 17:50:14 +00:00
|
|
|
next();
|
|
|
|
expr right = parse_expr(g_eq_precedence);
|
2013-08-24 16:56:07 +00:00
|
|
|
return save(mk_eq(left, right), p);
|
2013-08-18 17:50:14 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse <tt>expr '->' expr</tt>. */
|
2013-08-18 22:44:39 +00:00
|
|
|
expr parse_arrow(expr const & left) {
|
2013-08-24 16:56:07 +00:00
|
|
|
auto p = pos();
|
2013-08-18 22:44:39 +00:00
|
|
|
next();
|
2013-08-19 23:14:19 +00:00
|
|
|
mk_scope scope(*this);
|
|
|
|
register_binding(g_unused);
|
2013-08-19 16:35:19 +00:00
|
|
|
// The -1 is a trick to get right associativity in Pratt's parsers
|
2013-08-18 22:44:39 +00:00
|
|
|
expr right = parse_expr(g_arrow_precedence-1);
|
2013-08-24 16:56:07 +00:00
|
|
|
return save(mk_arrow(left, right), p);
|
2013-08-18 22:44:39 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse <tt>'(' expr ')'</tt>. */
|
2013-08-18 01:13:55 +00:00
|
|
|
expr parse_lparen() {
|
2013-08-24 16:56:07 +00:00
|
|
|
auto p = pos();
|
2013-08-18 01:13:55 +00:00
|
|
|
next();
|
2013-08-24 16:56:07 +00:00
|
|
|
expr r = save(parse_expr(), p);
|
2013-08-18 01:13:55 +00:00
|
|
|
check_rparen_next("invalid expression, ')' expected");
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/**
|
|
|
|
\brief Parse a sequence of identifiers <tt>ID*</tt>. Store the
|
|
|
|
result in \c result.
|
|
|
|
*/
|
2013-08-24 16:56:07 +00:00
|
|
|
void parse_names(buffer<std::pair<pos_info, name>> & result) {
|
2013-08-18 19:21:11 +00:00
|
|
|
while (curr_is_identifier()) {
|
2013-08-24 16:56:07 +00:00
|
|
|
result.push_back(mk_pair(pos(), curr_name()));
|
2013-08-18 19:21:11 +00:00
|
|
|
next();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Register the name \c n as a local declaration. */
|
2013-08-18 19:21:11 +00:00
|
|
|
void register_binding(name const & n) {
|
2013-08-18 22:23:01 +00:00
|
|
|
unsigned lvl = m_num_local_decls;
|
|
|
|
m_local_decls.insert(n, lvl);
|
|
|
|
m_num_local_decls++;
|
|
|
|
lean_assert(m_local_decls.find(n)->second == lvl);
|
2013-08-18 19:21:11 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/**
|
|
|
|
\brief Parse <tt>ID ... ID ':' expr</tt>, where the expression
|
|
|
|
represents the type of the identifiers.
|
|
|
|
*/
|
2013-08-24 16:56:07 +00:00
|
|
|
void parse_simple_bindings(buffer<std::tuple<pos_info, name, expr>> & result) {
|
|
|
|
buffer<std::pair<pos_info, name>> names;
|
2013-08-18 19:21:11 +00:00
|
|
|
parse_names(names);
|
|
|
|
check_colon_next("invalid binder, ':' expected");
|
|
|
|
unsigned sz = result.size();
|
|
|
|
result.resize(sz + names.size());
|
|
|
|
expr type = parse_expr();
|
2013-08-24 16:56:07 +00:00
|
|
|
for (std::pair<pos_info, name> const & n : names) register_binding(n.second);
|
2013-08-18 19:21:11 +00:00
|
|
|
unsigned i = names.size();
|
|
|
|
while (i > 0) {
|
|
|
|
--i;
|
2013-08-24 16:56:07 +00:00
|
|
|
result[sz + i] = std::make_tuple(names[i].first, names[i].second, lift_free_vars(type, i));
|
2013-08-18 19:21:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/**
|
|
|
|
\brief Parse a sequence of <tt>'(' ID ... ID ':' expr ')'</tt>.
|
|
|
|
|
|
|
|
This is used when parsing lambda, Pi, forall/exists expressions and definitions.
|
|
|
|
*/
|
2013-08-24 16:56:07 +00:00
|
|
|
void parse_bindings(buffer<std::tuple<pos_info, name, expr>> & result) {
|
2013-08-18 19:21:11 +00:00
|
|
|
if (curr_is_identifier()) {
|
|
|
|
parse_simple_bindings(result);
|
|
|
|
} else {
|
|
|
|
// (ID ... ID : type) ... (ID ... ID : type)
|
|
|
|
check_lparen_next("invalid binder, '(' or identifier expected");
|
|
|
|
parse_simple_bindings(result);
|
|
|
|
check_rparen_next("invalid binder, ')' expected");
|
|
|
|
while (curr_is_lparen()) {
|
|
|
|
next();
|
|
|
|
parse_simple_bindings(result);
|
|
|
|
check_rparen_next("invalid binder, ')' expected");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/**
|
|
|
|
\brief Create a lambda/Pi abstraction, using the giving binders
|
|
|
|
and body.
|
|
|
|
*/
|
2013-08-24 16:56:07 +00:00
|
|
|
expr mk_abstraction(bool is_lambda, buffer<std::tuple<pos_info, name, expr>> const & bindings, expr const & body) {
|
2013-08-18 19:48:02 +00:00
|
|
|
expr result = body;
|
2013-08-18 19:21:11 +00:00
|
|
|
unsigned i = bindings.size();
|
|
|
|
while (i > 0) {
|
|
|
|
--i;
|
2013-08-24 16:56:07 +00:00
|
|
|
pos_info p = std::get<0>(bindings[i]);
|
2013-08-18 19:21:11 +00:00
|
|
|
if (is_lambda)
|
2013-08-24 16:56:07 +00:00
|
|
|
result = save(mk_lambda(std::get<1>(bindings[i]), std::get<2>(bindings[i]), result), p);
|
2013-08-18 19:21:11 +00:00
|
|
|
else
|
2013-08-24 16:56:07 +00:00
|
|
|
result = save(mk_pi(std::get<1>(bindings[i]), std::get<2>(bindings[i]), result), p);
|
2013-08-18 19:21:11 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse lambda/Pi abstraction. */
|
2013-08-18 19:48:02 +00:00
|
|
|
expr parse_abstraction(bool is_lambda) {
|
|
|
|
next();
|
2013-08-18 22:23:01 +00:00
|
|
|
mk_scope scope(*this);
|
2013-08-24 16:56:07 +00:00
|
|
|
buffer<std::tuple<pos_info, name, expr>> bindings;
|
2013-08-18 19:48:02 +00:00
|
|
|
parse_bindings(bindings);
|
|
|
|
check_comma_next("invalid abstraction, ',' expected");
|
|
|
|
expr result = parse_expr();
|
|
|
|
return mk_abstraction(is_lambda, bindings, result);
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse lambda abstraction. */
|
2013-08-18 01:13:55 +00:00
|
|
|
expr parse_lambda() {
|
2013-08-18 19:21:11 +00:00
|
|
|
return parse_abstraction(true);
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse Pi abstraction. */
|
2013-08-18 01:13:55 +00:00
|
|
|
expr parse_pi() {
|
2013-08-18 19:21:11 +00:00
|
|
|
return parse_abstraction(false);
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 22:08:52 +00:00
|
|
|
/** \brief Parse forall/exists */
|
|
|
|
expr parse_quantifier(bool is_forall) {
|
|
|
|
next();
|
|
|
|
mk_scope scope(*this);
|
2013-08-24 16:56:07 +00:00
|
|
|
buffer<std::tuple<pos_info, name, expr>> bindings;
|
2013-08-19 22:08:52 +00:00
|
|
|
parse_bindings(bindings);
|
|
|
|
check_comma_next("invalid quantifier, ',' expected");
|
|
|
|
expr result = parse_expr();
|
|
|
|
unsigned i = bindings.size();
|
|
|
|
while (i > 0) {
|
|
|
|
--i;
|
2013-08-24 16:56:07 +00:00
|
|
|
pos_info p = std::get<0>(bindings[i]);
|
|
|
|
expr lambda = save(mk_lambda(std::get<1>(bindings[i]), std::get<2>(bindings[i]), result), p);
|
2013-08-19 22:08:52 +00:00
|
|
|
if (is_forall)
|
2013-08-24 16:56:07 +00:00
|
|
|
result = save(mk_forall(std::get<2>(bindings[i]), lambda), p);
|
2013-08-19 22:08:52 +00:00
|
|
|
else
|
2013-08-24 16:56:07 +00:00
|
|
|
result = save(mk_exists(std::get<2>(bindings[i]), lambda), p);
|
2013-08-19 22:08:52 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Parse <tt>'forall' bindings ',' expr</tt>. */
|
|
|
|
expr parse_forall() {
|
|
|
|
return parse_quantifier(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Parse <tt>'exists' bindings ',' expr</tt>. */
|
|
|
|
expr parse_exists() {
|
|
|
|
return parse_quantifier(false);
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse Let expression. */
|
2013-08-18 22:03:58 +00:00
|
|
|
expr parse_let() {
|
|
|
|
next();
|
2013-08-18 22:23:01 +00:00
|
|
|
mk_scope scope(*this);
|
2013-08-24 16:56:07 +00:00
|
|
|
buffer<std::tuple<pos_info, name, expr>> bindings;
|
2013-08-18 22:03:58 +00:00
|
|
|
while (true) {
|
2013-08-24 16:56:07 +00:00
|
|
|
auto p = pos();
|
2013-08-18 22:03:58 +00:00
|
|
|
name id = check_identifier_next("invalid let expression, identifier expected");
|
|
|
|
check_assign_next("invalid let expression, ':=' expected");
|
|
|
|
expr val = parse_expr();
|
|
|
|
register_binding(id);
|
2013-08-24 16:56:07 +00:00
|
|
|
bindings.push_back(std::make_tuple(p, id, val));
|
2013-08-18 22:03:58 +00:00
|
|
|
if (curr_is_in()) {
|
|
|
|
next();
|
|
|
|
expr r = parse_expr();
|
|
|
|
unsigned i = bindings.size();
|
|
|
|
while (i > 0) {
|
|
|
|
--i;
|
2013-08-24 16:56:07 +00:00
|
|
|
auto p = std::get<0>(bindings[i]);
|
|
|
|
r = save(mk_let(std::get<1>(bindings[i]), std::get<2>(bindings[i]), r), p);
|
2013-08-18 22:03:58 +00:00
|
|
|
}
|
|
|
|
return r;
|
|
|
|
} else {
|
|
|
|
check_comma_next("invalid let expression, ',' or 'in' expected");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse an integer value. */
|
2013-08-18 01:13:55 +00:00
|
|
|
expr parse_int() {
|
2013-08-24 16:56:07 +00:00
|
|
|
auto p = pos();
|
|
|
|
expr r = save(mk_int_value(m_scanner.get_num_val().get_numerator()), p);
|
2013-08-18 01:13:55 +00:00
|
|
|
next();
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
expr parse_decimal() {
|
|
|
|
not_implemented_yet();
|
|
|
|
}
|
|
|
|
|
|
|
|
expr parse_string() {
|
|
|
|
not_implemented_yet();
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse <tt>'Type'</tt> and <tt>'Type' level</tt> expressions. */
|
2013-08-18 01:13:55 +00:00
|
|
|
expr parse_type() {
|
2013-08-24 16:56:07 +00:00
|
|
|
auto p = pos();
|
2013-08-18 01:13:55 +00:00
|
|
|
next();
|
2013-08-19 01:25:34 +00:00
|
|
|
if (curr_is_identifier() || curr_is_int()) {
|
2013-08-24 16:56:07 +00:00
|
|
|
return save(mk_type(parse_level()), p);
|
2013-08-19 01:25:34 +00:00
|
|
|
} else {
|
|
|
|
return Type();
|
|
|
|
}
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/**
|
|
|
|
\brief Auxiliary method used when processing the beginning of an expression.
|
|
|
|
*/
|
2013-08-18 01:13:55 +00:00
|
|
|
expr parse_nud() {
|
|
|
|
switch (curr()) {
|
|
|
|
case scanner::token::Id: return parse_nud_id();
|
|
|
|
case scanner::token::LeftParen: return parse_lparen();
|
|
|
|
case scanner::token::Lambda: return parse_lambda();
|
|
|
|
case scanner::token::Pi: return parse_pi();
|
2013-08-19 22:08:52 +00:00
|
|
|
case scanner::token::Forall: return parse_forall();
|
|
|
|
case scanner::token::Exists: return parse_exists();
|
2013-08-18 22:03:58 +00:00
|
|
|
case scanner::token::Let: return parse_let();
|
2013-08-18 01:13:55 +00:00
|
|
|
case scanner::token::IntVal: return parse_int();
|
|
|
|
case scanner::token::DecimalVal: return parse_decimal();
|
|
|
|
case scanner::token::StringVal: return parse_string();
|
|
|
|
case scanner::token::Type: return parse_type();
|
|
|
|
default:
|
2013-08-24 18:30:54 +00:00
|
|
|
throw parser_error("invalid expression, unexpected token", pos());
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/**
|
|
|
|
\brief Auxiliary method used when processing the 'inside' of an expression.
|
|
|
|
*/
|
2013-08-18 01:13:55 +00:00
|
|
|
expr parse_led(expr const & left) {
|
|
|
|
switch (curr()) {
|
|
|
|
case scanner::token::Id: return parse_led_id(left);
|
2013-08-18 17:50:14 +00:00
|
|
|
case scanner::token::Eq: return parse_eq(left);
|
2013-08-18 22:44:39 +00:00
|
|
|
case scanner::token::Arrow: return parse_arrow(left);
|
2013-08-18 01:13:55 +00:00
|
|
|
case scanner::token::LeftParen: return mk_app(left, parse_lparen());
|
|
|
|
case scanner::token::IntVal: return mk_app(left, parse_int());
|
|
|
|
case scanner::token::DecimalVal: return mk_app(left, parse_decimal());
|
|
|
|
case scanner::token::StringVal: return mk_app(left, parse_string());
|
|
|
|
case scanner::token::Type: return mk_app(left, parse_type());
|
|
|
|
default: return left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Return the binding power of the current token (when parsing expression). */
|
2013-08-18 01:13:55 +00:00
|
|
|
unsigned curr_lbp() {
|
|
|
|
switch (curr()) {
|
|
|
|
case scanner::token::Id: {
|
|
|
|
name const & id = curr_name();
|
|
|
|
auto it = m_local_decls.find(id);
|
|
|
|
if (it != m_local_decls.end()) {
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
operator_info op = m_frontend.find_led(id);
|
|
|
|
if (op)
|
|
|
|
return op.get_precedence();
|
|
|
|
else
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2013-08-18 17:50:14 +00:00
|
|
|
case scanner::token::Eq : return g_eq_precedence;
|
2013-08-18 22:44:39 +00:00
|
|
|
case scanner::token::Arrow : return g_arrow_precedence;
|
2013-08-18 01:13:55 +00:00
|
|
|
case scanner::token::LeftParen: case scanner::token::IntVal: case scanner::token::DecimalVal:
|
|
|
|
case scanner::token::StringVal: case scanner::token::Type:
|
|
|
|
return 1;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse an expression */
|
2013-08-18 01:13:55 +00:00
|
|
|
expr parse_expr(unsigned rbp = 0) {
|
|
|
|
expr left = parse_nud();
|
|
|
|
while (rbp < curr_lbp()) {
|
|
|
|
left = parse_led(left);
|
|
|
|
}
|
|
|
|
return left;
|
|
|
|
}
|
2013-08-19 16:35:19 +00:00
|
|
|
/*@}*/
|
2013-08-18 01:13:55 +00:00
|
|
|
|
|
|
|
expr elaborate(expr const & e) {
|
|
|
|
// TODO
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/**
|
|
|
|
@name Parse Commands
|
|
|
|
*/
|
|
|
|
/*@{*/
|
|
|
|
/** \brief Auxiliary method used for parsing definitions and theorems. */
|
2013-08-18 19:48:02 +00:00
|
|
|
void parse_def_core(bool is_definition) {
|
2013-08-18 01:13:55 +00:00
|
|
|
next();
|
2013-08-18 19:48:02 +00:00
|
|
|
expr type, val;
|
2013-08-18 01:13:55 +00:00
|
|
|
name id = check_identifier_next("invalid definition, identifier expected");
|
2013-08-18 19:48:02 +00:00
|
|
|
if (curr_is_colon()) {
|
|
|
|
next();
|
|
|
|
type = elaborate(parse_expr());
|
|
|
|
check_assign_next("invalid definition, ':=' expected");
|
|
|
|
val = elaborate(parse_expr());
|
|
|
|
} else {
|
2013-08-18 22:23:01 +00:00
|
|
|
mk_scope scope(*this);
|
2013-08-24 16:56:07 +00:00
|
|
|
buffer<std::tuple<pos_info, name, expr>> bindings;
|
2013-08-18 19:48:02 +00:00
|
|
|
parse_bindings(bindings);
|
|
|
|
check_colon_next("invalid definition, ':' expected");
|
|
|
|
expr type_body = parse_expr();
|
|
|
|
check_assign_next("invalid definition, ':=' expected");
|
|
|
|
expr val_body = parse_expr();
|
|
|
|
type = elaborate(mk_abstraction(false, bindings, type_body));
|
|
|
|
val = elaborate(mk_abstraction(true, bindings, val_body));
|
|
|
|
}
|
2013-08-21 23:43:59 +00:00
|
|
|
if (is_definition) {
|
2013-08-18 19:48:02 +00:00
|
|
|
m_frontend.add_definition(id, type, val);
|
2013-08-21 23:43:59 +00:00
|
|
|
regular(m_frontend) << " Defined: " << id << endl;
|
|
|
|
} else {
|
2013-08-18 19:48:02 +00:00
|
|
|
m_frontend.add_theorem(id, type, val);
|
2013-08-21 23:43:59 +00:00
|
|
|
regular(m_frontend) << " Proved: " << id << endl;
|
|
|
|
}
|
2013-08-18 19:48:02 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/**
|
|
|
|
\brief Parse a Definition. It has one of the following two forms:
|
|
|
|
|
|
|
|
1) 'Definition' ID ':' expr ':=' expr
|
|
|
|
|
|
|
|
2) 'Definition' ID bindings ':' expr ':=' expr
|
|
|
|
*/
|
2013-08-18 19:48:02 +00:00
|
|
|
void parse_definition() {
|
|
|
|
parse_def_core(true);
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/**
|
|
|
|
\brief Parse a Theorem. It has one of the following two forms:
|
|
|
|
|
|
|
|
1) 'Theorem' ID ':' expr ':=' expr
|
|
|
|
|
|
|
|
2) 'Theorem' ID bindings ':' expr ':=' expr
|
|
|
|
*/
|
2013-08-18 19:48:02 +00:00
|
|
|
void parse_theorem() {
|
|
|
|
parse_def_core(false);
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse 'Variable' ID ':' expr */
|
2013-08-18 01:13:55 +00:00
|
|
|
void parse_variable() {
|
|
|
|
next();
|
|
|
|
name id = check_identifier_next("invalid variable declaration, identifier expected");
|
|
|
|
check_colon_next("invalid variable declaration, ':' expected");
|
|
|
|
expr type = elaborate(parse_expr());
|
|
|
|
m_frontend.add_var(id, type);
|
2013-08-21 23:43:59 +00:00
|
|
|
regular(m_frontend) << " Assumed: " << id << endl;
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse 'Axiom' ID ':' expr */
|
2013-08-18 01:13:55 +00:00
|
|
|
void parse_axiom() {
|
|
|
|
next();
|
|
|
|
name id = check_identifier_next("invalid axiom, identifier expected");
|
|
|
|
check_colon_next("invalid axiom, ':' expected");
|
|
|
|
expr type = elaborate(parse_expr());
|
|
|
|
m_frontend.add_axiom(id, type);
|
2013-08-21 23:43:59 +00:00
|
|
|
regular(m_frontend) << " Assumed: " << id << endl;
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse 'Eval' expr */
|
2013-08-18 01:13:55 +00:00
|
|
|
void parse_eval() {
|
2013-08-18 17:50:14 +00:00
|
|
|
next();
|
|
|
|
expr v = elaborate(parse_expr());
|
|
|
|
expr r = normalize(v, m_frontend);
|
2013-08-21 19:42:55 +00:00
|
|
|
regular(m_frontend) << r << endl;
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-21 19:42:55 +00:00
|
|
|
/** \brief Parse
|
|
|
|
'Show' expr
|
|
|
|
'Show' Environment [num]
|
|
|
|
'Show' Options
|
|
|
|
*/
|
2013-08-18 01:13:55 +00:00
|
|
|
void parse_show() {
|
2013-08-18 17:50:14 +00:00
|
|
|
next();
|
2013-08-21 19:42:55 +00:00
|
|
|
if (curr() == scanner::token::CommandId) {
|
|
|
|
name opt_id = curr_name();
|
|
|
|
next();
|
|
|
|
if (opt_id == g_env_kwd) {
|
|
|
|
if (curr_is_int()) {
|
|
|
|
unsigned i = parse_unsigned("invalid argument, value does not fit in a machine integer");
|
2013-08-22 01:24:26 +00:00
|
|
|
auto end = m_frontend.end_objects();
|
2013-08-21 19:42:55 +00:00
|
|
|
auto beg = m_frontend.begin_objects();
|
2013-08-22 01:24:26 +00:00
|
|
|
auto it = end;
|
2013-08-21 19:42:55 +00:00
|
|
|
while (it != beg && i != 0) {
|
|
|
|
--i;
|
|
|
|
--it;
|
2013-08-22 01:24:26 +00:00
|
|
|
}
|
|
|
|
for (; it != end; ++it) {
|
2013-08-21 19:42:55 +00:00
|
|
|
regular(m_frontend) << *it << endl;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
regular(m_frontend) << m_frontend << endl;
|
|
|
|
}
|
|
|
|
} else if (opt_id == g_options_kwd) {
|
|
|
|
regular(m_frontend) << m_frontend.get_state().get_options() << endl;
|
|
|
|
} else {
|
2013-08-24 18:30:54 +00:00
|
|
|
throw parser_error("invalid Show command, expression, 'Options' or 'Environment' expected", m_last_cmd_pos);
|
2013-08-21 19:42:55 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
expr v = elaborate(parse_expr());
|
|
|
|
regular(m_frontend) << v << endl;
|
|
|
|
}
|
2013-08-18 17:50:14 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse 'Check' expr */
|
2013-08-18 17:50:14 +00:00
|
|
|
void parse_check() {
|
|
|
|
next();
|
|
|
|
expr v = elaborate(parse_expr());
|
|
|
|
expr t = infer_type(v, m_frontend);
|
2013-08-21 19:42:55 +00:00
|
|
|
regular(m_frontend) << t << endl;
|
2013-08-18 17:50:14 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Return the (optional) precedence of a user-defined operator. */
|
|
|
|
unsigned parse_precedence() {
|
2013-08-21 19:42:55 +00:00
|
|
|
if (curr_is_int()) {
|
|
|
|
return parse_unsigned("invalid operator definition, precedence does not fit in a machine integer");
|
2013-08-18 17:50:14 +00:00
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Throw an error if the current token is not an identifier. If it is, move to next token. */
|
2013-08-18 17:50:14 +00:00
|
|
|
name parse_op_id() {
|
|
|
|
return check_identifier_next("invalid operator definition, identifier expected");
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/**
|
|
|
|
\brief Parse prefix/postfix/infix/infixl/infixr user operator
|
|
|
|
definitions. These definitions have the form:
|
|
|
|
|
2013-08-20 00:25:15 +00:00
|
|
|
- fixity [Num] ID ':' expr
|
2013-08-19 16:35:19 +00:00
|
|
|
*/
|
2013-08-18 01:13:55 +00:00
|
|
|
void parse_op(fixity fx) {
|
2013-08-18 17:50:14 +00:00
|
|
|
next();
|
2013-08-19 16:35:19 +00:00
|
|
|
unsigned prec = parse_precedence();
|
2013-08-18 17:50:14 +00:00
|
|
|
name op_id = parse_op_id();
|
2013-08-20 00:25:15 +00:00
|
|
|
check_colon_next("invalid operator definition, ':' expected");
|
|
|
|
expr d = parse_expr();
|
2013-08-18 17:50:14 +00:00
|
|
|
switch (fx) {
|
2013-08-20 00:25:15 +00:00
|
|
|
case fixity::Prefix: m_frontend.add_prefix(op_id, prec, d); break;
|
|
|
|
case fixity::Postfix: m_frontend.add_postfix(op_id, prec, d); break;
|
|
|
|
case fixity::Infix: m_frontend.add_infix(op_id, prec, d); break;
|
|
|
|
case fixity::Infixl: m_frontend.add_infixl(op_id, prec, d); break;
|
|
|
|
case fixity::Infixr: m_frontend.add_infixr(op_id, prec, d); break;
|
2013-08-18 17:50:14 +00:00
|
|
|
default: lean_unreachable(); break;
|
|
|
|
}
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/**
|
|
|
|
\brief Parse mixfix/mixfixl/mixfixr user operator definition.
|
|
|
|
These definitions have the form:
|
|
|
|
|
2013-08-20 00:25:15 +00:00
|
|
|
- fixity [NUM] ID ID+ ':' ID
|
2013-08-19 16:35:19 +00:00
|
|
|
*/
|
2013-08-18 01:13:55 +00:00
|
|
|
void parse_mixfix_op(fixity fx) {
|
2013-08-18 17:50:14 +00:00
|
|
|
next();
|
2013-08-19 16:35:19 +00:00
|
|
|
unsigned prec = parse_precedence();
|
2013-08-18 17:50:14 +00:00
|
|
|
buffer<name> parts;
|
|
|
|
parts.push_back(parse_op_id());
|
|
|
|
parts.push_back(parse_op_id());
|
2013-08-20 00:25:15 +00:00
|
|
|
while (!curr_is_colon()) {
|
|
|
|
parts.push_back(parse_op_id());
|
2013-08-18 17:50:14 +00:00
|
|
|
}
|
2013-08-20 00:25:15 +00:00
|
|
|
lean_assert(curr_is_colon());
|
|
|
|
next();
|
|
|
|
expr d = parse_expr();
|
2013-08-18 17:50:14 +00:00
|
|
|
switch (fx) {
|
2013-08-20 00:25:15 +00:00
|
|
|
case fixity::Mixfixl: m_frontend.add_mixfixl(parts.size(), parts.data(), prec, d); break;
|
|
|
|
case fixity::Mixfixr: m_frontend.add_mixfixr(parts.size(), parts.data(), prec, d); break;
|
|
|
|
case fixity::Mixfixc: m_frontend.add_mixfixc(parts.size(), parts.data(), prec, d); break;
|
2013-08-18 17:50:14 +00:00
|
|
|
default: lean_unreachable(); break;
|
|
|
|
}
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-20 15:34:37 +00:00
|
|
|
void parse_echo() {
|
|
|
|
next();
|
|
|
|
std::string msg = check_string_next("invalid echo command, string expected");
|
2013-08-21 19:42:55 +00:00
|
|
|
regular(m_frontend) << msg << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void parse_set() {
|
|
|
|
next();
|
2013-08-24 18:30:54 +00:00
|
|
|
auto id_pos = pos();
|
2013-08-21 19:42:55 +00:00
|
|
|
name id = check_identifier_next("invalid set options, identifier (i.e., option name) expected");
|
2013-08-21 23:43:59 +00:00
|
|
|
auto decl_it = get_option_declarations().find(id);
|
|
|
|
if (decl_it == get_option_declarations().end())
|
2013-08-24 18:55:17 +00:00
|
|
|
throw parser_error(sstream() << "unknown option '" << id << "', type 'Help Options.' for list of available options", id_pos);
|
2013-08-21 23:43:59 +00:00
|
|
|
option_kind k = decl_it->second.kind();
|
2013-08-21 19:42:55 +00:00
|
|
|
switch (curr()) {
|
|
|
|
case scanner::token::Id:
|
2013-08-21 23:43:59 +00:00
|
|
|
if (k != BoolOption)
|
2013-08-24 18:55:17 +00:00
|
|
|
throw parser_error(sstream() << "invalid option value, given option is not Boolean", pos());
|
2013-08-21 19:42:55 +00:00
|
|
|
if (curr_name() == "true")
|
|
|
|
m_frontend.set_option(id, true);
|
|
|
|
else if (curr_name() == "false")
|
|
|
|
m_frontend.set_option(id, false);
|
|
|
|
else
|
2013-08-24 18:30:54 +00:00
|
|
|
throw parser_error("invalid Boolean option value, 'true' or 'false' expected", pos());
|
2013-08-21 19:42:55 +00:00
|
|
|
break;
|
|
|
|
case scanner::token::StringVal:
|
2013-08-21 23:43:59 +00:00
|
|
|
if (k != StringOption)
|
2013-08-24 18:30:54 +00:00
|
|
|
throw parser_error("invalid option value, given option is not a string", pos());
|
2013-08-21 19:42:55 +00:00
|
|
|
m_frontend.set_option(id, curr_string());
|
|
|
|
break;
|
|
|
|
case scanner::token::IntVal:
|
2013-08-21 23:43:59 +00:00
|
|
|
if (k != IntOption && k != UnsignedOption)
|
2013-08-24 18:30:54 +00:00
|
|
|
throw parser_error("invalid option value, given option is not an integer", pos());
|
2013-08-21 19:42:55 +00:00
|
|
|
m_frontend.set_option(id, parse_unsigned("invalid option value, value does not fit in a machine integer"));
|
|
|
|
break;
|
|
|
|
case scanner::token::DecimalVal:
|
2013-08-21 23:43:59 +00:00
|
|
|
if (k != DoubleOption)
|
2013-08-24 18:30:54 +00:00
|
|
|
throw parser_error("invalid option value, given option is not floating point value", pos());
|
2013-08-21 19:42:55 +00:00
|
|
|
m_frontend.set_option(id, parse_double());
|
|
|
|
break;
|
|
|
|
default:
|
2013-08-24 18:30:54 +00:00
|
|
|
throw parser_error("invalid option value, 'true', 'false', string, integer or decimal value expected", pos());
|
2013-08-21 19:42:55 +00:00
|
|
|
}
|
2013-08-21 23:43:59 +00:00
|
|
|
regular(m_frontend) << " Set option: " << id << endl;
|
2013-08-21 19:42:55 +00:00
|
|
|
next();
|
2013-08-20 15:34:37 +00:00
|
|
|
}
|
|
|
|
|
2013-08-21 21:13:23 +00:00
|
|
|
void parse_import() {
|
|
|
|
next();
|
|
|
|
std::string fname = check_string_next("invalid import command, string (i.e., file name) expected");
|
|
|
|
std::ifstream in(fname);
|
|
|
|
if (!in.is_open())
|
2013-08-24 18:55:17 +00:00
|
|
|
throw parser_error(sstream() << "invalid import command, failed to open file '" << fname << "'", m_last_cmd_pos);
|
2013-08-22 01:24:26 +00:00
|
|
|
::lean::parse_commands(m_frontend, in, m_use_exceptions, false);
|
2013-08-21 21:13:23 +00:00
|
|
|
}
|
|
|
|
|
2013-08-21 23:43:59 +00:00
|
|
|
void parse_help() {
|
|
|
|
next();
|
|
|
|
if (curr() == scanner::token::CommandId) {
|
|
|
|
name opt_id = curr_name();
|
|
|
|
next();
|
|
|
|
if (opt_id == g_options_kwd) {
|
|
|
|
regular(m_frontend) << "Available options:" << endl;
|
|
|
|
for (auto p : get_option_declarations()) {
|
|
|
|
auto opt = p.second;
|
|
|
|
regular(m_frontend) << " " << opt.get_name() << " (" << opt.kind() << ") " << opt.get_description() << " (default: " << opt.get_default_value() << ")" << endl;
|
|
|
|
}
|
|
|
|
} else {
|
2013-08-24 18:30:54 +00:00
|
|
|
throw parser_error("invalid help command", m_last_cmd_pos);
|
2013-08-21 23:43:59 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
regular(m_frontend) << "Available commands:" << endl
|
|
|
|
<< " Axiom [id] : [type] assert/postulate a new axiom" << endl
|
|
|
|
<< " Check [expr] type check the given expression" << endl
|
|
|
|
<< " Definition [id] : [type] := [expr] define a new element" << endl
|
|
|
|
<< " Theorem [id] : [type] := [expr] define a new theorem" << endl
|
|
|
|
<< " Echo [string] display the given string" << endl
|
|
|
|
<< " Eval [expr] evaluate the given expression" << endl
|
|
|
|
<< " Help display this message" << endl
|
|
|
|
<< " Help Options display available options" << endl
|
|
|
|
<< " Help Notation describe commands for defining infix,mixfix,postfix operators" << endl
|
|
|
|
<< " Import [string] load the given file" << endl
|
|
|
|
<< " Set [id] [value] set option [id] with value [value]" << endl
|
|
|
|
<< " Show [expr] pretty print the given expression" << endl
|
|
|
|
<< " Show Options show current the set of assigned options" << endl
|
|
|
|
<< " Show Environment show objects in the environment, if [Num] provided, then show only the last [Num] objects" << endl
|
|
|
|
<< " Show Environment [num] show the last num objects in the environment" << endl
|
|
|
|
<< " Variable [id] : [type] declare/postulate an element of the given type" << endl
|
|
|
|
<< " Universe [id] [level] declare a new universe variable that is >= the given level" << endl
|
|
|
|
<< "Type Ctrl-D to exit" << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse a Lean command. */
|
2013-08-18 01:13:55 +00:00
|
|
|
void parse_command() {
|
2013-08-24 16:56:07 +00:00
|
|
|
m_expr_pos_info.clear();
|
|
|
|
m_last_cmd_pos = pos();
|
2013-08-18 01:13:55 +00:00
|
|
|
name const & cmd_id = curr_name();
|
|
|
|
if (cmd_id == g_definition_kwd) parse_definition();
|
|
|
|
else if (cmd_id == g_variable_kwd) parse_variable();
|
|
|
|
else if (cmd_id == g_theorem_kwd) parse_theorem();
|
|
|
|
else if (cmd_id == g_axiom_kwd) parse_axiom();
|
|
|
|
else if (cmd_id == g_eval_kwd) parse_eval();
|
|
|
|
else if (cmd_id == g_show_kwd) parse_show();
|
2013-08-18 17:50:14 +00:00
|
|
|
else if (cmd_id == g_check_kwd) parse_check();
|
2013-08-18 01:13:55 +00:00
|
|
|
else if (cmd_id == g_infix_kwd) parse_op(fixity::Infix);
|
|
|
|
else if (cmd_id == g_infixl_kwd) parse_op(fixity::Infixl);
|
|
|
|
else if (cmd_id == g_infixr_kwd) parse_op(fixity::Infixr);
|
|
|
|
else if (cmd_id == g_prefix_kwd) parse_op(fixity::Prefix);
|
|
|
|
else if (cmd_id == g_postfix_kwd) parse_op(fixity::Postfix);
|
|
|
|
else if (cmd_id == g_mixfixl_kwd) parse_mixfix_op(fixity::Mixfixl);
|
|
|
|
else if (cmd_id == g_mixfixr_kwd) parse_mixfix_op(fixity::Mixfixr);
|
|
|
|
else if (cmd_id == g_mixfixc_kwd) parse_mixfix_op(fixity::Mixfixc);
|
2013-08-20 15:34:37 +00:00
|
|
|
else if (cmd_id == g_echo_kwd) parse_echo();
|
2013-08-21 19:42:55 +00:00
|
|
|
else if (cmd_id == g_set_kwd) parse_set();
|
2013-08-21 21:13:23 +00:00
|
|
|
else if (cmd_id == g_import_kwd) parse_import();
|
2013-08-21 23:43:59 +00:00
|
|
|
else if (cmd_id == g_help_kwd) parse_help();
|
2013-08-24 18:55:17 +00:00
|
|
|
else { next(); throw parser_error(sstream() << "invalid command '" << cmd_id << "'", m_last_cmd_pos); }
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
2013-08-19 16:35:19 +00:00
|
|
|
/*@}*/
|
2013-08-18 01:13:55 +00:00
|
|
|
|
|
|
|
void error(char const * msg, unsigned line, unsigned pos) {
|
2013-08-21 19:42:55 +00:00
|
|
|
regular(m_frontend) << "Error (line: " << line << ", pos: " << pos << ") " << msg << endl;
|
2013-08-24 18:30:54 +00:00
|
|
|
sync();
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void error(char const * msg) {
|
|
|
|
error(msg, m_scanner.get_line(), m_scanner.get_pos());
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
public:
|
2013-08-22 01:24:26 +00:00
|
|
|
parser_fn(frontend & fe, std::istream & in, bool use_exceptions, bool interactive):
|
2013-08-19 16:35:19 +00:00
|
|
|
m_frontend(fe),
|
|
|
|
m_scanner(in),
|
2013-08-22 01:24:26 +00:00
|
|
|
m_use_exceptions(use_exceptions),
|
|
|
|
m_interactive(interactive) {
|
2013-08-19 16:35:19 +00:00
|
|
|
m_found_errors = false;
|
|
|
|
m_num_local_decls = 0;
|
|
|
|
m_scanner.set_command_keywords(g_command_keywords);
|
|
|
|
init_builtins();
|
|
|
|
scan();
|
|
|
|
}
|
|
|
|
|
2013-08-22 01:24:26 +00:00
|
|
|
static void show_prompt(bool interactive, frontend const & fe) {
|
|
|
|
if (interactive) {
|
|
|
|
regular(fe) << "# ";
|
|
|
|
regular(fe).flush();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void show_prompt() {
|
|
|
|
show_prompt(m_interactive, m_frontend);
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse a sequence of commands. This method also perform error management. */
|
2013-08-18 01:13:55 +00:00
|
|
|
bool parse_commands() {
|
|
|
|
while (true) {
|
|
|
|
try {
|
|
|
|
switch (curr()) {
|
|
|
|
case scanner::token::CommandId: parse_command(); break;
|
2013-08-22 01:24:26 +00:00
|
|
|
case scanner::token::Period: show_prompt(); next(); break;
|
2013-08-18 01:13:55 +00:00
|
|
|
case scanner::token::Eof: return !m_found_errors;
|
|
|
|
default:
|
2013-08-24 18:30:54 +00:00
|
|
|
throw parser_error("Command expected", pos());
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
} catch (parser_error & ex) {
|
|
|
|
m_found_errors = true;
|
|
|
|
if (m_use_exceptions) {
|
2013-08-24 18:30:54 +00:00
|
|
|
throw parser_exception(ex.what(), ex.m_pos.first, ex.m_pos.second);
|
2013-08-18 01:13:55 +00:00
|
|
|
} else {
|
2013-08-24 18:30:54 +00:00
|
|
|
error(ex.what(), ex.m_pos.first, ex.m_pos.second);
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
} catch (exception & ex) {
|
|
|
|
m_found_errors = true;
|
|
|
|
if (m_use_exceptions) {
|
|
|
|
throw;
|
|
|
|
} else {
|
|
|
|
error(ex.what());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-18 01:35:50 +00:00
|
|
|
|
2013-08-19 16:35:19 +00:00
|
|
|
/** \brief Parse an expression. */
|
2013-08-18 01:35:50 +00:00
|
|
|
expr parse_expr_main() {
|
|
|
|
try {
|
2013-08-18 17:50:14 +00:00
|
|
|
return elaborate(parse_expr());
|
2013-08-18 01:35:50 +00:00
|
|
|
} catch (parser_error & ex) {
|
2013-08-24 18:30:54 +00:00
|
|
|
throw parser_exception(ex.what(), ex.m_pos.first, ex.m_pos.second);
|
2013-08-18 01:35:50 +00:00
|
|
|
}
|
|
|
|
}
|
2013-08-18 01:13:55 +00:00
|
|
|
};
|
2013-08-22 01:24:26 +00:00
|
|
|
bool parse_commands(frontend & fe, std::istream & in, bool use_exceptions, bool interactive) {
|
|
|
|
parser_fn::show_prompt(interactive, fe);
|
|
|
|
return parser_fn(fe, in, use_exceptions, interactive).parse_commands();
|
2013-08-18 01:35:50 +00:00
|
|
|
}
|
2013-08-22 02:08:34 +00:00
|
|
|
bool parse_commands_from_stdin(frontend & fe) {
|
|
|
|
#ifdef LEAN_USE_READLINE
|
|
|
|
bool errors = false;
|
|
|
|
char * input;
|
|
|
|
while (true) {
|
|
|
|
input = readline("# ");
|
|
|
|
if (!input)
|
|
|
|
return errors;
|
2013-08-22 02:43:47 +00:00
|
|
|
add_history(input);
|
2013-08-22 02:08:34 +00:00
|
|
|
std::istringstream strm(input);
|
2013-08-22 02:43:47 +00:00
|
|
|
if (!parse_commands(fe, strm, false, false))
|
2013-08-22 02:08:34 +00:00
|
|
|
errors = true;
|
|
|
|
free(input);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
return parse_commands(fe, std::cin, false, true) ? 0 : 1;
|
|
|
|
#endif
|
|
|
|
}
|
2013-08-18 01:35:50 +00:00
|
|
|
expr parse_expr(frontend const & fe, std::istream & in) {
|
2013-08-22 01:24:26 +00:00
|
|
|
return parser_fn(const_cast<frontend&>(fe), in, true, false).parse_expr_main();
|
2013-08-18 01:13:55 +00:00
|
|
|
}
|
|
|
|
}
|