2013-08-16 19:51:12 +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
|
2013-09-13 10:35:29 +00:00
|
|
|
#include <vector>
|
2013-09-13 03:04:10 +00:00
|
|
|
#include "util/exception.h"
|
2013-10-01 01:38:47 +00:00
|
|
|
#include "util/sexpr/options.h"
|
2013-09-13 03:04:10 +00:00
|
|
|
#include "kernel/context.h"
|
|
|
|
#include "kernel/environment.h"
|
2013-10-01 01:38:47 +00:00
|
|
|
#include "kernel/formatter.h"
|
2013-08-16 19:51:12 +00:00
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
class environment;
|
|
|
|
/** \brief Base class for all kernel exceptions. */
|
|
|
|
class kernel_exception : public exception {
|
|
|
|
protected:
|
|
|
|
environment m_env;
|
|
|
|
public:
|
|
|
|
kernel_exception(environment const & env):m_env(env) {}
|
|
|
|
kernel_exception(environment const & env, char const * msg):exception(msg), m_env(env) {}
|
|
|
|
virtual ~kernel_exception() noexcept {}
|
|
|
|
environment const & get_environment() const { return m_env; }
|
2013-08-24 20:16:43 +00:00
|
|
|
/**
|
2013-12-08 07:21:07 +00:00
|
|
|
\brief Return a reference (if available) to the main expression associated with this exception.
|
|
|
|
This information is used to provide better error messages.
|
2013-08-24 20:16:43 +00:00
|
|
|
*/
|
2013-12-08 07:21:07 +00:00
|
|
|
virtual optional<expr> get_main_expr() const { return optional<expr>(); }
|
2013-10-01 01:38:47 +00:00
|
|
|
virtual format pp(formatter const & fmt, options const & opts) const;
|
2013-11-27 20:19:54 +00:00
|
|
|
virtual exception * clone() const { return new kernel_exception(m_env, m_msg.c_str()); }
|
|
|
|
virtual void rethrow() const { throw *this; }
|
2013-08-16 19:51:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/** \brief Base class for unknown universe or object exceptions. */
|
|
|
|
class unknown_name_exception : public kernel_exception {
|
2013-11-27 20:19:54 +00:00
|
|
|
protected:
|
2013-08-16 19:51:12 +00:00
|
|
|
name m_name;
|
|
|
|
public:
|
|
|
|
unknown_name_exception(environment const & env, name const & n):kernel_exception(env), m_name(n) {}
|
|
|
|
virtual ~unknown_name_exception() {}
|
|
|
|
name const & get_name() const { return m_name; }
|
2013-10-01 01:38:47 +00:00
|
|
|
virtual format pp(formatter const & fmt, options const & opts) const;
|
2013-11-27 20:19:54 +00:00
|
|
|
virtual exception * clone() const { return new unknown_name_exception(m_env, m_name); }
|
|
|
|
virtual void rethrow() const { throw *this; }
|
2013-08-16 19:51:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/** \brief Exception used to report that a universe variable is not known in a given environment. */
|
|
|
|
class unknown_universe_variable_exception : public unknown_name_exception {
|
|
|
|
public:
|
|
|
|
unknown_universe_variable_exception(environment const & env, name const & n):unknown_name_exception(env, n) {}
|
|
|
|
virtual char const * what() const noexcept { return "unknown universe variable"; }
|
2013-11-27 20:19:54 +00:00
|
|
|
virtual exception * clone() const { return new unknown_universe_variable_exception(m_env, m_name); }
|
|
|
|
virtual void rethrow() const { throw *this; }
|
2013-08-16 19:51:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/** \brief Exception used to report that an object is not known in a given environment. */
|
|
|
|
class unknown_object_exception : public unknown_name_exception {
|
|
|
|
public:
|
|
|
|
unknown_object_exception(environment const & env, name const & n):unknown_name_exception(env, n) {}
|
|
|
|
virtual char const * what() const noexcept { return "unknown object"; }
|
2013-11-27 20:19:54 +00:00
|
|
|
virtual exception * clone() const { return new unknown_object_exception(m_env, m_name); }
|
|
|
|
virtual void rethrow() const { throw *this; }
|
2013-08-16 19:51:12 +00:00
|
|
|
};
|
|
|
|
|
2013-08-16 22:09:26 +00:00
|
|
|
/** \brief Base class for already declared object. */
|
2013-08-16 19:51:12 +00:00
|
|
|
class already_declared_exception : public kernel_exception {
|
2013-11-27 20:19:54 +00:00
|
|
|
protected:
|
2013-08-16 19:51:12 +00:00
|
|
|
name m_name;
|
|
|
|
public:
|
|
|
|
already_declared_exception(environment const & env, name const & n):kernel_exception(env), m_name(n) {}
|
|
|
|
virtual ~already_declared_exception() noexcept {}
|
|
|
|
name const & get_name() const { return m_name; }
|
|
|
|
virtual char const * what() const noexcept { return "invalid object declaration, environment already has an object the given name"; }
|
2013-10-01 01:38:47 +00:00
|
|
|
virtual format pp(formatter const & fmt, options const & opts) const;
|
2013-11-27 20:19:54 +00:00
|
|
|
virtual exception * clone() const { return new already_declared_exception(m_env, m_name); }
|
|
|
|
virtual void rethrow() const { throw *this; }
|
2013-08-16 19:51:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Exception used to report that a update has been tried on a
|
|
|
|
read-only environment.
|
|
|
|
|
|
|
|
An environment is read-only if it has "children environments".
|
|
|
|
*/
|
|
|
|
class read_only_environment_exception : public kernel_exception {
|
|
|
|
public:
|
|
|
|
read_only_environment_exception(environment const & env):kernel_exception(env) {}
|
|
|
|
virtual char const * what() const noexcept { return "environment cannot be updated because it has children environments"; }
|
2013-11-27 20:19:54 +00:00
|
|
|
virtual exception * clone() const { return new read_only_environment_exception(m_env); }
|
|
|
|
virtual void rethrow() const { throw *this; }
|
2013-08-16 19:51:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/** \brief Base class for type checking related exceptions. */
|
|
|
|
class type_checker_exception : public kernel_exception {
|
|
|
|
public:
|
|
|
|
type_checker_exception(environment const & env):kernel_exception(env) {}
|
2013-11-27 20:19:54 +00:00
|
|
|
virtual exception * clone() const { return new type_checker_exception(m_env); }
|
|
|
|
virtual void rethrow() const { throw *this; }
|
2013-08-16 19:51:12 +00:00
|
|
|
};
|
|
|
|
|
2013-11-10 17:23:05 +00:00
|
|
|
/** \brief Exception for objects that do not have types associated with them */
|
|
|
|
class has_no_type_exception : public type_checker_exception {
|
|
|
|
expr m_const;
|
|
|
|
public:
|
|
|
|
has_no_type_exception(environment const & env, expr const & c):type_checker_exception(env), m_const(c) {}
|
|
|
|
virtual ~has_no_type_exception() {}
|
2013-12-08 07:21:07 +00:00
|
|
|
virtual optional<expr> get_main_expr() const { return some(m_const); }
|
2013-11-10 17:23:05 +00:00
|
|
|
virtual char const * what() const noexcept { return "object does not have a type associated with it"; }
|
|
|
|
virtual format pp(formatter const & fmt, options const & opts) const;
|
2013-11-27 20:19:54 +00:00
|
|
|
virtual exception * clone() const { return new has_no_type_exception(m_env, m_const); }
|
|
|
|
virtual void rethrow() const { throw *this; }
|
2013-11-10 17:23:05 +00:00
|
|
|
};
|
|
|
|
|
2013-08-16 19:51:12 +00:00
|
|
|
/**
|
|
|
|
\brief Exception used to report an application argument type
|
|
|
|
mismatch.
|
|
|
|
|
|
|
|
Explanation:
|
|
|
|
In the environment get_environment() and local context
|
|
|
|
get_context(), the argument get_arg_pos() of the application
|
|
|
|
get_application() has type get_given_type(), but it is expected to
|
|
|
|
have type get_expected_type().
|
|
|
|
*/
|
|
|
|
class app_type_mismatch_exception : public type_checker_exception {
|
2013-09-03 01:28:12 +00:00
|
|
|
context m_context;
|
|
|
|
expr m_app;
|
|
|
|
std::vector<expr> m_arg_types;
|
2013-08-16 19:51:12 +00:00
|
|
|
public:
|
2013-09-03 01:28:12 +00:00
|
|
|
app_type_mismatch_exception(environment const & env, context const & ctx, expr const & app, unsigned num, expr const * arg_types):
|
|
|
|
type_checker_exception(env), m_context(ctx), m_app(app), m_arg_types(arg_types, arg_types+num) {}
|
2013-08-16 19:51:12 +00:00
|
|
|
virtual ~app_type_mismatch_exception() {}
|
|
|
|
context const & get_context() const { return m_context; }
|
|
|
|
expr const & get_application() const { return m_app; }
|
2013-12-08 07:21:07 +00:00
|
|
|
virtual optional<expr> get_main_expr() const { return some(get_application()); }
|
2013-09-03 01:28:12 +00:00
|
|
|
std::vector<expr> const & get_arg_types() const { return m_arg_types; }
|
2013-08-16 19:51:12 +00:00
|
|
|
virtual char const * what() const noexcept { return "application argument type mismatch"; }
|
2013-10-01 01:38:47 +00:00
|
|
|
virtual format pp(formatter const & fmt, options const & opts) const;
|
2013-11-27 20:19:54 +00:00
|
|
|
virtual exception * clone() const { return new app_type_mismatch_exception(m_env, m_context, m_app, m_arg_types.size(), m_arg_types.data()); }
|
|
|
|
virtual void rethrow() const { throw *this; }
|
2013-08-16 19:51:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Exception used to report than an expression that is not a
|
|
|
|
function is being used as a function.
|
|
|
|
|
|
|
|
Explanation:
|
|
|
|
In the environment get_environment() and local context
|
|
|
|
get_context(), the expression get_expr() is expected to be a function.
|
|
|
|
*/
|
|
|
|
class function_expected_exception : public type_checker_exception {
|
|
|
|
context m_context;
|
|
|
|
expr m_expr;
|
|
|
|
public:
|
|
|
|
function_expected_exception(environment const & env, context const & ctx, expr const & e):
|
|
|
|
type_checker_exception(env), m_context(ctx), m_expr(e) {}
|
|
|
|
virtual ~function_expected_exception() {}
|
|
|
|
context const & get_context() const { return m_context; }
|
|
|
|
expr const & get_expr() const { return m_expr; }
|
2013-12-08 07:21:07 +00:00
|
|
|
virtual optional<expr> get_main_expr() const { return some(get_expr()); }
|
2013-08-16 19:51:12 +00:00
|
|
|
virtual char const * what() const noexcept { return "function expected"; }
|
2013-10-01 01:38:47 +00:00
|
|
|
virtual format pp(formatter const & fmt, options const & opts) const;
|
2013-11-27 20:19:54 +00:00
|
|
|
virtual exception * clone() const { return new function_expected_exception(m_env, m_context, m_expr); }
|
|
|
|
virtual void rethrow() const { throw *this; }
|
2013-08-16 19:51:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Exception used to report than an expression that is not a
|
|
|
|
type is being used where a type is expected.
|
|
|
|
|
|
|
|
Explanation:
|
|
|
|
In the environment get_environment() and local context
|
|
|
|
get_context(), the expression get_expr() is expected to be a type.
|
|
|
|
*/
|
|
|
|
class type_expected_exception : public type_checker_exception {
|
|
|
|
context m_context;
|
|
|
|
expr m_expr;
|
|
|
|
public:
|
|
|
|
type_expected_exception(environment const & env, context const & ctx, expr const & e):
|
|
|
|
type_checker_exception(env), m_context(ctx), m_expr(e) {}
|
|
|
|
virtual ~type_expected_exception() {}
|
|
|
|
context const & get_context() const { return m_context; }
|
|
|
|
expr const & get_expr() const { return m_expr; }
|
2013-12-08 07:21:07 +00:00
|
|
|
virtual optional<expr> get_main_expr() const { return some(get_expr()); }
|
2013-08-16 19:51:12 +00:00
|
|
|
virtual char const * what() const noexcept { return "type expected"; }
|
2013-10-01 01:38:47 +00:00
|
|
|
virtual format pp(formatter const & fmt, options const & opts) const;
|
2013-11-27 20:19:54 +00:00
|
|
|
virtual exception * clone() const { return new type_expected_exception(m_env, m_context, m_expr); }
|
|
|
|
virtual void rethrow() const { throw *this; }
|
2013-08-16 19:51:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Exception used to report a definition type mismatch.
|
|
|
|
|
|
|
|
Explanation:
|
|
|
|
In the environment get_environment(), the declaration with name
|
|
|
|
get_name(), type get_type() and value get_value() is incorrect
|
|
|
|
because the value has type get_value_type() and it not matches
|
|
|
|
the given type get_type().
|
2013-09-06 17:06:26 +00:00
|
|
|
|
|
|
|
This exception is also used to sign declaration mismatches in
|
|
|
|
let declarations.
|
2013-08-16 19:51:12 +00:00
|
|
|
*/
|
|
|
|
class def_type_mismatch_exception : public type_checker_exception {
|
2013-09-06 17:06:26 +00:00
|
|
|
context m_context;
|
|
|
|
name m_name;
|
|
|
|
expr m_type;
|
|
|
|
expr m_value;
|
|
|
|
expr m_value_type;
|
2013-08-16 19:51:12 +00:00
|
|
|
public:
|
2013-09-06 17:06:26 +00:00
|
|
|
def_type_mismatch_exception(environment const & env, context const & ctx, name const & n, expr const & type, expr const & val, expr const & val_type):
|
|
|
|
type_checker_exception(env), m_context(ctx), m_name(n), m_type(type), m_value(val), m_value_type(val_type) {}
|
2013-08-16 19:51:12 +00:00
|
|
|
def_type_mismatch_exception(environment const & env, name const & n, expr const & type, expr const & val, expr const & val_type):
|
|
|
|
type_checker_exception(env), m_name(n), m_type(type), m_value(val), m_value_type(val_type) {}
|
|
|
|
virtual ~def_type_mismatch_exception() {}
|
|
|
|
name const & get_name() const { return m_name; }
|
2013-09-06 17:06:26 +00:00
|
|
|
context const & get_context() const { return m_context; }
|
2013-08-16 19:51:12 +00:00
|
|
|
expr const & get_type() const { return m_type; }
|
|
|
|
expr const & get_value() const { return m_value; }
|
|
|
|
expr const & get_value_type() const { return m_value_type; }
|
2013-12-08 07:21:07 +00:00
|
|
|
virtual optional<expr> get_main_expr() const { return some(m_value); }
|
2013-08-16 19:51:12 +00:00
|
|
|
virtual char const * what() const noexcept { return "definition type mismatch"; }
|
2013-10-01 01:38:47 +00:00
|
|
|
virtual format pp(formatter const & fmt, options const & opts) const;
|
2013-11-27 20:19:54 +00:00
|
|
|
virtual exception * clone() const { return new def_type_mismatch_exception(m_env, m_context, m_name, m_type, m_value, m_value_type); }
|
|
|
|
virtual void rethrow() const { throw *this; }
|
2013-08-16 19:51:12 +00:00
|
|
|
};
|
2013-09-04 15:30:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Invalid builtin value declaration.
|
|
|
|
*/
|
|
|
|
class invalid_builtin_value_declaration : public kernel_exception {
|
|
|
|
expr m_expr;
|
|
|
|
public:
|
|
|
|
invalid_builtin_value_declaration(environment const & env, expr const & e):kernel_exception(env), m_expr(e) {}
|
|
|
|
virtual ~invalid_builtin_value_declaration() {}
|
|
|
|
virtual char const * what() const noexcept { return "invalid builtin value declaration, expression is not a builtin value"; }
|
2013-12-08 07:21:07 +00:00
|
|
|
virtual optional<expr> get_main_expr() const { return some(m_expr); }
|
2013-11-27 20:19:54 +00:00
|
|
|
virtual exception * clone() const { return new invalid_builtin_value_declaration(m_env, m_expr); }
|
|
|
|
virtual void rethrow() const { throw *this; }
|
2013-09-04 15:30:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Exception used to report that a builtin value is not
|
|
|
|
declared in the environment.
|
|
|
|
*/
|
|
|
|
class invalid_builtin_value_reference : public kernel_exception {
|
|
|
|
expr m_expr;
|
|
|
|
public:
|
|
|
|
invalid_builtin_value_reference(environment const & env, expr const & e):kernel_exception(env), m_expr(e) {}
|
|
|
|
virtual ~invalid_builtin_value_reference() {}
|
|
|
|
virtual char const * what() const noexcept { return "invalid builtin value reference, this kind of builtin value was not declared in the environment"; }
|
2013-12-08 07:21:07 +00:00
|
|
|
virtual optional<expr> get_main_expr() const { return some(m_expr); }
|
2013-11-27 20:19:54 +00:00
|
|
|
virtual exception * clone() const { return new invalid_builtin_value_reference(m_env, m_expr); }
|
|
|
|
virtual void rethrow() const { throw *this; }
|
2013-10-25 02:56:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Unexpected metavariable occurrence
|
|
|
|
*/
|
|
|
|
class unexpected_metavar_occurrence : public kernel_exception {
|
|
|
|
expr m_expr;
|
|
|
|
public:
|
|
|
|
unexpected_metavar_occurrence(environment const & env, expr const & e):kernel_exception(env), m_expr(e) {}
|
|
|
|
virtual ~unexpected_metavar_occurrence() {}
|
|
|
|
virtual char const * what() const noexcept { return "unexpected metavariable occurrence"; }
|
2013-12-08 07:21:07 +00:00
|
|
|
virtual optional<expr> get_main_expr() const { return some(m_expr); }
|
2013-11-27 20:19:54 +00:00
|
|
|
virtual exception * clone() const { return new unexpected_metavar_occurrence(m_env, m_expr); }
|
|
|
|
virtual void rethrow() const { throw *this; }
|
2013-09-04 15:30:04 +00:00
|
|
|
};
|
2013-08-16 19:51:12 +00:00
|
|
|
}
|