2013-08-08 23:30:35 +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 "options.h"
|
|
|
|
#include "sexpr_funcs.h"
|
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
|
|
|
|
bool options::empty() const {
|
|
|
|
return is_nil(m_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool options::size() const {
|
|
|
|
return length(m_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool options::contains(name const & n) const {
|
|
|
|
return ::lean::contains(m_value, [&](sexpr const & p) { return to_name(head(p)) == n; });
|
|
|
|
}
|
|
|
|
|
|
|
|
bool options::contains(char const * n) const {
|
|
|
|
return ::lean::contains(m_value, [&](sexpr const & p) { return to_name(head(p)) == n; });
|
|
|
|
}
|
|
|
|
|
|
|
|
sexpr const & options::get_sexpr(name const & n, sexpr const & default_value) const {
|
|
|
|
sexpr const * r = find(m_value, [&](sexpr const & p) { return to_name(head(p)) == n; });
|
2013-08-09 01:35:49 +00:00
|
|
|
return r == nullptr ? default_value : tail(*r);
|
2013-08-08 23:30:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int options::get_int(name const & n, int default_value) const {
|
|
|
|
sexpr const & r = get_sexpr(n);
|
|
|
|
return !is_nil(r) && is_int(r) ? to_int(r) : default_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool options::get_bool(name const & n, bool default_value) const {
|
|
|
|
sexpr const & r = get_sexpr(n);
|
|
|
|
return !is_nil(r) && is_bool(r) ? to_bool(r) != 0 : default_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
double options::get_double(name const & n, double default_value) const {
|
|
|
|
sexpr const & r = get_sexpr(n);
|
|
|
|
return !is_nil(r) && is_double(r) ? to_double(r) : default_value;
|
|
|
|
}
|
|
|
|
|
2013-08-09 01:35:49 +00:00
|
|
|
char const * options::get_string(name const & n, char const * default_value) const {
|
|
|
|
sexpr const & r = get_sexpr(n);
|
|
|
|
return !is_nil(r) && is_string(r) ? to_string(r).c_str() : default_value;
|
|
|
|
}
|
|
|
|
|
2013-08-08 23:30:35 +00:00
|
|
|
sexpr const & options::get_sexpr(char const * n, sexpr const & default_value) const {
|
|
|
|
sexpr const * r = find(m_value, [&](sexpr const & p) { return to_name(head(p)) == n; });
|
|
|
|
return r == nullptr ? default_value : *r;
|
|
|
|
}
|
|
|
|
|
|
|
|
int options::get_int(char const * n, int default_value) const {
|
|
|
|
sexpr const & r = get_sexpr(n);
|
|
|
|
return !is_nil(r) && is_int(r) ? to_int(r) : default_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool options::get_bool(char const * n, bool default_value) const {
|
|
|
|
sexpr const & r = get_sexpr(n);
|
|
|
|
return !is_nil(r) && is_bool(r) ? to_bool(r) != 0 : default_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
double options::get_double(char const * n, double default_value) const {
|
|
|
|
sexpr const & r = get_sexpr(n);
|
|
|
|
return !is_nil(r) && is_double(r) ? to_double(r) : default_value;
|
|
|
|
}
|
|
|
|
|
2013-08-09 01:35:49 +00:00
|
|
|
char const * options::get_string(char const * n, char const * default_value) const {
|
|
|
|
sexpr const & r = get_sexpr(n);
|
|
|
|
return !is_nil(r) && is_string(r) ? to_string(r).c_str() : default_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char const * g_left_angle_bracket = "\u27E8";
|
|
|
|
static char const * g_right_angle_bracket = "\u27E9";
|
|
|
|
static char const * g_arrow = "\u21a6";
|
2013-08-08 23:30:35 +00:00
|
|
|
|
|
|
|
options options::update(name const & n, sexpr const & v) const {
|
|
|
|
return options(cons(cons(sexpr(n), v), m_value));
|
|
|
|
}
|
|
|
|
|
|
|
|
format pp(options const & o) {
|
2013-08-09 01:35:49 +00:00
|
|
|
char const * sep = get_name_separator(o);
|
|
|
|
format r;
|
|
|
|
bool first = true;
|
|
|
|
for_each(o.m_value, [&](sexpr const & p) {
|
|
|
|
if (first) { first = false; } else { r += comma(); r += line(); }
|
|
|
|
name const & n = to_name(head(p));
|
|
|
|
unsigned sz = n.size(sep);
|
|
|
|
r += group(nest(sz+3, format{pp(head(p), o), space(), format(g_arrow), space(), pp(tail(p), o)}));
|
|
|
|
});
|
|
|
|
return group(nest(1, format{format(g_left_angle_bracket), r, format(g_right_angle_bracket)}));
|
2013-08-08 23:30:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::ostream & operator<<(std::ostream & out, options const & o) {
|
2013-08-09 01:35:49 +00:00
|
|
|
out << g_left_angle_bracket;
|
2013-08-08 23:30:35 +00:00
|
|
|
bool first = true;
|
2013-08-09 01:35:49 +00:00
|
|
|
for_each(o.m_value, [&](sexpr const & p) {
|
2013-08-08 23:30:35 +00:00
|
|
|
if (first) first = false; else out << ", ";
|
2013-08-09 01:35:49 +00:00
|
|
|
out << head(p) << " " << g_arrow << " " << tail(p);
|
2013-08-08 23:30:35 +00:00
|
|
|
});
|
2013-08-09 01:35:49 +00:00
|
|
|
out << g_right_angle_bracket;
|
2013-08-08 23:30:35 +00:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
}
|