2014-07-04 21:25:44 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#include <string>
|
|
|
|
#include "util/sstream.h"
|
|
|
|
#include "library/scoped_ext.h"
|
|
|
|
#include "library/kernel_serializer.h"
|
|
|
|
#include "frontends/lean/parser.h"
|
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
struct class_entry {
|
|
|
|
name m_class;
|
|
|
|
name m_instance;
|
|
|
|
class_entry() {}
|
2014-07-07 23:09:30 +00:00
|
|
|
class_entry(name const & c, name const & i):m_class(c), m_instance(i) {}
|
2014-07-04 21:25:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct class_state {
|
|
|
|
typedef rb_map<name, list<name>, name_quick_cmp> class_instances;
|
|
|
|
class_instances m_instances;
|
|
|
|
void add_instance(name const & c, name const & i) {
|
|
|
|
auto it = m_instances.find(c);
|
2014-07-07 16:31:42 +00:00
|
|
|
if (!it)
|
2014-08-03 20:50:48 +00:00
|
|
|
m_instances.insert(c, to_list(i));
|
2014-07-07 16:31:42 +00:00
|
|
|
else
|
|
|
|
m_instances.insert(c, cons(i, filter(*it, [&](name const & i1) { return i1 != i; })));
|
2014-07-04 21:25:44 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct class_config {
|
|
|
|
typedef class_state state;
|
|
|
|
typedef class_entry entry;
|
|
|
|
static void add_entry(environment const &, io_state const &, state & s, entry const & e) {
|
2014-07-07 23:09:30 +00:00
|
|
|
s.add_instance(e.m_class, e.m_instance);
|
2014-07-04 21:25:44 +00:00
|
|
|
}
|
|
|
|
static name const & get_class_name() {
|
|
|
|
static name g_class_name("class");
|
|
|
|
return g_class_name;
|
|
|
|
}
|
|
|
|
static std::string const & get_serialization_key() {
|
|
|
|
static std::string g_key("class");
|
|
|
|
return g_key;
|
|
|
|
}
|
|
|
|
static void write_entry(serializer & s, entry const & e) {
|
2014-07-07 23:09:30 +00:00
|
|
|
s << e.m_class << e.m_instance;
|
2014-07-04 21:25:44 +00:00
|
|
|
}
|
|
|
|
static entry read_entry(deserializer & d) {
|
|
|
|
entry e;
|
2014-07-07 23:09:30 +00:00
|
|
|
d >> e.m_class >> e.m_instance;
|
2014-07-04 21:25:44 +00:00
|
|
|
return e;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template class scoped_ext<class_config>;
|
|
|
|
typedef scoped_ext<class_config> class_ext;
|
|
|
|
|
2014-07-08 21:28:33 +00:00
|
|
|
name get_class_name(environment const & env, expr const & e) {
|
|
|
|
if (!is_constant(e))
|
|
|
|
throw exception("class expected, expression is not a constant");
|
|
|
|
name const & c_name = const_name(e);
|
|
|
|
declaration c_d = env.get(c_name);
|
|
|
|
if (c_d.is_definition() && !c_d.is_opaque())
|
|
|
|
throw exception(sstream() << "invalid class, '" << c_name << "' is a transparent definition");
|
|
|
|
return c_name;
|
|
|
|
}
|
|
|
|
|
2014-07-04 21:25:44 +00:00
|
|
|
environment add_instance(environment const & env, name const & n) {
|
|
|
|
declaration d = env.get(n);
|
|
|
|
expr type = d.get_type();
|
|
|
|
while (is_pi(type))
|
|
|
|
type = binding_body(type);
|
2014-07-08 21:28:33 +00:00
|
|
|
name c = get_class_name(env, get_app_fn(type));
|
2014-07-04 21:25:44 +00:00
|
|
|
return class_ext::add_entry(env, get_dummy_ios(), class_entry(c, n));
|
|
|
|
}
|
|
|
|
|
2014-07-05 01:49:05 +00:00
|
|
|
bool is_class(environment const & env, name const & c) {
|
|
|
|
class_state const & s = class_ext::get_state(env);
|
|
|
|
return s.m_instances.contains(c);
|
|
|
|
}
|
|
|
|
|
2014-07-04 21:25:44 +00:00
|
|
|
list<name> get_class_instances(environment const & env, name const & c) {
|
|
|
|
class_state const & s = class_ext::get_state(env);
|
2014-08-03 20:50:48 +00:00
|
|
|
return ptr_to_list(s.m_instances.find(c));
|
2014-07-04 21:25:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
environment add_instance_cmd(parser & p) {
|
2014-07-07 21:41:14 +00:00
|
|
|
bool found = false;
|
|
|
|
environment env = p.env();
|
|
|
|
while (p.curr_is_identifier()) {
|
|
|
|
found = true;
|
2014-07-15 00:19:47 +00:00
|
|
|
name c = p.check_constant_next("invalid 'class instance' declaration, constant expected");
|
|
|
|
env = add_instance(env, c);
|
2014-07-07 21:41:14 +00:00
|
|
|
}
|
|
|
|
if (!found)
|
|
|
|
throw parser_error("invalid 'class instance' declaration, at least one identifier expected", p.pos());
|
|
|
|
return env;
|
2014-07-04 21:25:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void register_class_cmds(cmd_table & r) {
|
|
|
|
add_cmd(r, cmd_info("instance", "add a new instance", add_instance_cmd));
|
|
|
|
}
|
|
|
|
}
|