2013-12-07 15:14:30 +00:00
|
|
|
#include "Config.hpp"
|
2015-07-01 16:18:25 +00:00
|
|
|
#include <stdlib.h> // for setenv()
|
2013-12-07 15:14:30 +00:00
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
2013-12-21 20:06:45 +00:00
|
|
|
bool
|
|
|
|
ConfigBase::has(const t_config_option_key opt_key) {
|
|
|
|
return (this->option(opt_key, false) != NULL);
|
|
|
|
}
|
|
|
|
|
2013-12-20 15:37:28 +00:00
|
|
|
void
|
2014-03-22 19:12:54 +00:00
|
|
|
ConfigBase::apply(const ConfigBase &other, bool ignore_nonexistent) {
|
2013-12-20 15:37:28 +00:00
|
|
|
// get list of option keys to apply
|
2015-07-01 16:18:25 +00:00
|
|
|
t_config_option_keys opt_keys = other.keys();
|
2013-12-20 15:37:28 +00:00
|
|
|
|
|
|
|
// loop through options and apply them
|
|
|
|
for (t_config_option_keys::const_iterator it = opt_keys.begin(); it != opt_keys.end(); ++it) {
|
2013-12-21 20:06:45 +00:00
|
|
|
ConfigOption* my_opt = this->option(*it, true);
|
2013-12-21 15:32:11 +00:00
|
|
|
if (my_opt == NULL) {
|
|
|
|
if (ignore_nonexistent == false) throw "Attempt to apply non-existent option";
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// not the most efficient way, but easier than casting pointers to subclasses
|
2014-03-24 13:16:37 +00:00
|
|
|
bool res = my_opt->deserialize( other.option(*it)->serialize() );
|
|
|
|
if (!res) CONFESS("Unexpected failure when deserializing serialized value");
|
2013-12-20 15:37:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-09 11:25:59 +00:00
|
|
|
bool
|
|
|
|
ConfigBase::equals(ConfigBase &other) {
|
|
|
|
return this->diff(other).empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
// this will *ignore* options not present in both configs
|
|
|
|
t_config_option_keys
|
|
|
|
ConfigBase::diff(ConfigBase &other) {
|
|
|
|
t_config_option_keys diff;
|
|
|
|
|
2015-07-01 16:18:25 +00:00
|
|
|
t_config_option_keys my_keys = this->keys();
|
2014-11-09 11:25:59 +00:00
|
|
|
for (t_config_option_keys::const_iterator opt_key = my_keys.begin(); opt_key != my_keys.end(); ++opt_key) {
|
|
|
|
if (other.has(*opt_key) && other.serialize(*opt_key) != this->serialize(*opt_key)) {
|
|
|
|
diff.push_back(*opt_key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return diff;
|
|
|
|
}
|
|
|
|
|
2013-12-20 19:54:11 +00:00
|
|
|
std::string
|
|
|
|
ConfigBase::serialize(const t_config_option_key opt_key) {
|
|
|
|
ConfigOption* opt = this->option(opt_key);
|
|
|
|
assert(opt != NULL);
|
|
|
|
return opt->serialize();
|
|
|
|
}
|
|
|
|
|
2014-03-24 00:07:30 +00:00
|
|
|
bool
|
2013-12-20 19:54:11 +00:00
|
|
|
ConfigBase::set_deserialize(const t_config_option_key opt_key, std::string str) {
|
2014-01-01 16:29:15 +00:00
|
|
|
if (this->def->count(opt_key) == 0) throw "Calling set_deserialize() on unknown option";
|
|
|
|
ConfigOptionDef* optdef = &(*this->def)[opt_key];
|
|
|
|
if (!optdef->shortcut.empty()) {
|
2014-03-24 00:07:30 +00:00
|
|
|
for (std::vector<t_config_option_key>::iterator it = optdef->shortcut.begin(); it != optdef->shortcut.end(); ++it) {
|
|
|
|
if (!this->set_deserialize(*it, str)) return false;
|
|
|
|
}
|
|
|
|
return true;
|
2014-01-01 16:29:15 +00:00
|
|
|
}
|
|
|
|
|
2013-12-23 23:30:51 +00:00
|
|
|
ConfigOption* opt = this->option(opt_key, true);
|
2013-12-20 19:54:11 +00:00
|
|
|
assert(opt != NULL);
|
2014-03-24 00:07:30 +00:00
|
|
|
return opt->deserialize(str);
|
2013-12-20 19:54:11 +00:00
|
|
|
}
|
|
|
|
|
2013-12-22 00:38:10 +00:00
|
|
|
double
|
2013-12-20 19:54:11 +00:00
|
|
|
ConfigBase::get_abs_value(const t_config_option_key opt_key) {
|
2014-01-05 12:16:13 +00:00
|
|
|
ConfigOption* opt = this->option(opt_key, false);
|
|
|
|
if (ConfigOptionFloatOrPercent* optv = dynamic_cast<ConfigOptionFloatOrPercent*>(opt)) {
|
|
|
|
// get option definition
|
|
|
|
assert(this->def->count(opt_key) != 0);
|
|
|
|
ConfigOptionDef* def = &(*this->def)[opt_key];
|
|
|
|
|
|
|
|
// compute absolute value over the absolute value of the base option
|
|
|
|
return optv->get_abs_value(this->get_abs_value(def->ratio_over));
|
|
|
|
} else if (ConfigOptionFloat* optv = dynamic_cast<ConfigOptionFloat*>(opt)) {
|
|
|
|
return optv->value;
|
2013-12-20 19:54:11 +00:00
|
|
|
} else {
|
2014-01-05 12:16:13 +00:00
|
|
|
throw "Not a valid option type for get_abs_value()";
|
2013-12-20 19:54:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-01 16:29:15 +00:00
|
|
|
double
|
|
|
|
ConfigBase::get_abs_value(const t_config_option_key opt_key, double ratio_over) {
|
|
|
|
// get stored option value
|
|
|
|
ConfigOptionFloatOrPercent* opt = dynamic_cast<ConfigOptionFloatOrPercent*>(this->option(opt_key));
|
|
|
|
assert(opt != NULL);
|
|
|
|
|
|
|
|
// compute absolute value
|
2014-01-05 12:16:13 +00:00
|
|
|
return opt->get_abs_value(ratio_over);
|
2014-01-01 16:29:15 +00:00
|
|
|
}
|
|
|
|
|
2015-07-01 16:18:25 +00:00
|
|
|
void
|
|
|
|
ConfigBase::setenv_()
|
|
|
|
{
|
|
|
|
t_config_option_keys opt_keys = this->keys();
|
|
|
|
for (t_config_option_keys::const_iterator it = opt_keys.begin(); it != opt_keys.end(); ++it) {
|
|
|
|
// prepend the SLIC3R_ prefix
|
|
|
|
std::ostringstream ss;
|
|
|
|
ss << "SLIC3R_";
|
|
|
|
ss << *it;
|
|
|
|
std::string envname = ss.str();
|
|
|
|
|
|
|
|
// capitalize environment variable name
|
|
|
|
for (size_t i = 0; i < envname.size(); ++i)
|
|
|
|
envname[i] = (envname[i] <= 'z' && envname[i] >= 'a') ? envname[i]-('a'-'A') : envname[i];
|
|
|
|
|
|
|
|
setenv(envname.c_str(), this->serialize(*it).c_str(), 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-20 15:37:28 +00:00
|
|
|
#ifdef SLIC3RXS
|
2013-12-21 20:06:45 +00:00
|
|
|
SV*
|
|
|
|
ConfigBase::as_hash() {
|
|
|
|
HV* hv = newHV();
|
|
|
|
|
2015-07-01 16:18:25 +00:00
|
|
|
t_config_option_keys opt_keys = this->keys();
|
2013-12-21 20:06:45 +00:00
|
|
|
for (t_config_option_keys::const_iterator it = opt_keys.begin(); it != opt_keys.end(); ++it)
|
|
|
|
(void)hv_store( hv, it->c_str(), it->length(), this->get(*it), 0 );
|
|
|
|
|
|
|
|
return newRV_noinc((SV*)hv);
|
|
|
|
}
|
|
|
|
|
2013-12-20 15:37:28 +00:00
|
|
|
SV*
|
|
|
|
ConfigBase::get(t_config_option_key opt_key) {
|
|
|
|
ConfigOption* opt = this->option(opt_key);
|
|
|
|
if (opt == NULL) return &PL_sv_undef;
|
2013-12-20 19:54:11 +00:00
|
|
|
if (ConfigOptionFloat* optv = dynamic_cast<ConfigOptionFloat*>(opt)) {
|
|
|
|
return newSVnv(optv->value);
|
2014-03-22 15:23:33 +00:00
|
|
|
} else if (ConfigOptionPercent* optv = dynamic_cast<ConfigOptionPercent*>(opt)) {
|
|
|
|
return newSVnv(optv->value);
|
2013-12-21 13:27:58 +00:00
|
|
|
} else if (ConfigOptionFloats* optv = dynamic_cast<ConfigOptionFloats*>(opt)) {
|
|
|
|
AV* av = newAV();
|
|
|
|
av_fill(av, optv->values.size()-1);
|
2013-12-22 00:38:10 +00:00
|
|
|
for (std::vector<double>::iterator it = optv->values.begin(); it != optv->values.end(); ++it)
|
2013-12-21 13:27:58 +00:00
|
|
|
av_store(av, it - optv->values.begin(), newSVnv(*it));
|
|
|
|
return newRV_noinc((SV*)av);
|
2013-12-20 19:54:11 +00:00
|
|
|
} else if (ConfigOptionInt* optv = dynamic_cast<ConfigOptionInt*>(opt)) {
|
|
|
|
return newSViv(optv->value);
|
2013-12-21 13:27:58 +00:00
|
|
|
} else if (ConfigOptionInts* optv = dynamic_cast<ConfigOptionInts*>(opt)) {
|
|
|
|
AV* av = newAV();
|
|
|
|
av_fill(av, optv->values.size()-1);
|
|
|
|
for (std::vector<int>::iterator it = optv->values.begin(); it != optv->values.end(); ++it)
|
|
|
|
av_store(av, it - optv->values.begin(), newSViv(*it));
|
|
|
|
return newRV_noinc((SV*)av);
|
2013-12-20 19:54:11 +00:00
|
|
|
} else if (ConfigOptionString* optv = dynamic_cast<ConfigOptionString*>(opt)) {
|
|
|
|
// we don't serialize() because that would escape newlines
|
2014-02-14 08:35:38 +00:00
|
|
|
return newSVpvn_utf8(optv->value.c_str(), optv->value.length(), true);
|
2013-12-21 23:39:03 +00:00
|
|
|
} else if (ConfigOptionStrings* optv = dynamic_cast<ConfigOptionStrings*>(opt)) {
|
|
|
|
AV* av = newAV();
|
|
|
|
av_fill(av, optv->values.size()-1);
|
|
|
|
for (std::vector<std::string>::iterator it = optv->values.begin(); it != optv->values.end(); ++it)
|
2014-02-14 08:35:38 +00:00
|
|
|
av_store(av, it - optv->values.begin(), newSVpvn_utf8(it->c_str(), it->length(), true));
|
2013-12-21 23:39:03 +00:00
|
|
|
return newRV_noinc((SV*)av);
|
2013-12-20 19:54:11 +00:00
|
|
|
} else if (ConfigOptionPoint* optv = dynamic_cast<ConfigOptionPoint*>(opt)) {
|
2014-10-25 08:42:07 +00:00
|
|
|
return perl_to_SV_clone_ref(optv->point);
|
2013-12-21 13:27:58 +00:00
|
|
|
} else if (ConfigOptionPoints* optv = dynamic_cast<ConfigOptionPoints*>(opt)) {
|
|
|
|
AV* av = newAV();
|
2014-01-04 23:36:33 +00:00
|
|
|
av_fill(av, optv->values.size()-1);
|
|
|
|
for (Pointfs::iterator it = optv->values.begin(); it != optv->values.end(); ++it)
|
2014-10-25 08:42:07 +00:00
|
|
|
av_store(av, it - optv->values.begin(), perl_to_SV_clone_ref(*it));
|
2013-12-21 13:27:58 +00:00
|
|
|
return newRV_noinc((SV*)av);
|
2013-12-20 20:32:18 +00:00
|
|
|
} else if (ConfigOptionBool* optv = dynamic_cast<ConfigOptionBool*>(opt)) {
|
|
|
|
return newSViv(optv->value ? 1 : 0);
|
2013-12-21 13:27:58 +00:00
|
|
|
} else if (ConfigOptionBools* optv = dynamic_cast<ConfigOptionBools*>(opt)) {
|
|
|
|
AV* av = newAV();
|
|
|
|
av_fill(av, optv->values.size()-1);
|
|
|
|
for (std::vector<bool>::iterator it = optv->values.begin(); it != optv->values.end(); ++it)
|
|
|
|
av_store(av, it - optv->values.begin(), newSViv(*it ? 1 : 0));
|
|
|
|
return newRV_noinc((SV*)av);
|
2013-12-20 19:54:11 +00:00
|
|
|
} else {
|
|
|
|
std::string serialized = opt->serialize();
|
2014-02-14 08:35:38 +00:00
|
|
|
return newSVpvn_utf8(serialized.c_str(), serialized.length(), true);
|
2013-12-20 19:54:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-04 23:36:33 +00:00
|
|
|
SV*
|
|
|
|
ConfigBase::get_at(t_config_option_key opt_key, size_t i) {
|
|
|
|
ConfigOption* opt = this->option(opt_key);
|
|
|
|
if (opt == NULL) return &PL_sv_undef;
|
|
|
|
|
|
|
|
if (ConfigOptionFloats* optv = dynamic_cast<ConfigOptionFloats*>(opt)) {
|
|
|
|
return newSVnv(optv->get_at(i));
|
|
|
|
} else if (ConfigOptionInts* optv = dynamic_cast<ConfigOptionInts*>(opt)) {
|
|
|
|
return newSViv(optv->get_at(i));
|
|
|
|
} else if (ConfigOptionStrings* optv = dynamic_cast<ConfigOptionStrings*>(opt)) {
|
|
|
|
// we don't serialize() because that would escape newlines
|
|
|
|
std::string val = optv->get_at(i);
|
2014-02-14 08:35:38 +00:00
|
|
|
return newSVpvn_utf8(val.c_str(), val.length(), true);
|
2014-01-04 23:36:33 +00:00
|
|
|
} else if (ConfigOptionPoints* optv = dynamic_cast<ConfigOptionPoints*>(opt)) {
|
2014-10-25 08:42:07 +00:00
|
|
|
return perl_to_SV_clone_ref(optv->get_at(i));
|
2014-01-04 23:36:33 +00:00
|
|
|
} else if (ConfigOptionBools* optv = dynamic_cast<ConfigOptionBools*>(opt)) {
|
|
|
|
return newSViv(optv->get_at(i) ? 1 : 0);
|
|
|
|
} else {
|
|
|
|
return &PL_sv_undef;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-24 00:07:30 +00:00
|
|
|
bool
|
2013-12-20 19:54:11 +00:00
|
|
|
ConfigBase::set(t_config_option_key opt_key, SV* value) {
|
|
|
|
ConfigOption* opt = this->option(opt_key, true);
|
2013-12-21 23:39:03 +00:00
|
|
|
if (opt == NULL) CONFESS("Trying to set non-existing option");
|
2013-12-20 19:54:11 +00:00
|
|
|
|
|
|
|
if (ConfigOptionFloat* optv = dynamic_cast<ConfigOptionFloat*>(opt)) {
|
2014-03-24 00:07:30 +00:00
|
|
|
if (!looks_like_number(value)) return false;
|
2013-12-20 19:54:11 +00:00
|
|
|
optv->value = SvNV(value);
|
2013-12-21 13:27:58 +00:00
|
|
|
} else if (ConfigOptionFloats* optv = dynamic_cast<ConfigOptionFloats*>(opt)) {
|
2014-03-24 00:07:30 +00:00
|
|
|
std::vector<double> values;
|
2013-12-21 13:27:58 +00:00
|
|
|
AV* av = (AV*)SvRV(value);
|
|
|
|
const size_t len = av_len(av)+1;
|
|
|
|
for (size_t i = 0; i < len; i++) {
|
|
|
|
SV** elem = av_fetch(av, i, 0);
|
2014-04-19 14:38:28 +00:00
|
|
|
if (elem == NULL || !looks_like_number(*elem)) return false;
|
2014-03-24 00:07:30 +00:00
|
|
|
values.push_back(SvNV(*elem));
|
2013-12-21 13:27:58 +00:00
|
|
|
}
|
2014-03-24 00:07:30 +00:00
|
|
|
optv->values = values;
|
2013-12-20 19:54:11 +00:00
|
|
|
} else if (ConfigOptionInt* optv = dynamic_cast<ConfigOptionInt*>(opt)) {
|
2014-03-24 00:07:30 +00:00
|
|
|
if (!looks_like_number(value)) return false;
|
2013-12-20 19:54:11 +00:00
|
|
|
optv->value = SvIV(value);
|
2013-12-21 13:27:58 +00:00
|
|
|
} else if (ConfigOptionInts* optv = dynamic_cast<ConfigOptionInts*>(opt)) {
|
2014-03-24 00:07:30 +00:00
|
|
|
std::vector<int> values;
|
2013-12-21 13:27:58 +00:00
|
|
|
AV* av = (AV*)SvRV(value);
|
|
|
|
const size_t len = av_len(av)+1;
|
|
|
|
for (size_t i = 0; i < len; i++) {
|
|
|
|
SV** elem = av_fetch(av, i, 0);
|
2014-04-19 14:38:28 +00:00
|
|
|
if (elem == NULL || !looks_like_number(*elem)) return false;
|
2014-03-24 00:07:30 +00:00
|
|
|
values.push_back(SvIV(*elem));
|
2013-12-21 13:27:58 +00:00
|
|
|
}
|
2014-03-24 00:07:30 +00:00
|
|
|
optv->values = values;
|
2013-12-20 19:54:11 +00:00
|
|
|
} else if (ConfigOptionString* optv = dynamic_cast<ConfigOptionString*>(opt)) {
|
|
|
|
optv->value = std::string(SvPV_nolen(value), SvCUR(value));
|
2013-12-21 23:39:03 +00:00
|
|
|
} else if (ConfigOptionStrings* optv = dynamic_cast<ConfigOptionStrings*>(opt)) {
|
|
|
|
optv->values.clear();
|
|
|
|
AV* av = (AV*)SvRV(value);
|
|
|
|
const size_t len = av_len(av)+1;
|
|
|
|
for (size_t i = 0; i < len; i++) {
|
|
|
|
SV** elem = av_fetch(av, i, 0);
|
2014-04-19 14:38:28 +00:00
|
|
|
if (elem == NULL) return false;
|
2013-12-21 23:39:03 +00:00
|
|
|
optv->values.push_back(std::string(SvPV_nolen(*elem), SvCUR(*elem)));
|
|
|
|
}
|
2013-12-20 19:54:11 +00:00
|
|
|
} else if (ConfigOptionPoint* optv = dynamic_cast<ConfigOptionPoint*>(opt)) {
|
2014-11-04 20:07:18 +00:00
|
|
|
return optv->point.from_SV_check(value);
|
2013-12-21 13:27:58 +00:00
|
|
|
} else if (ConfigOptionPoints* optv = dynamic_cast<ConfigOptionPoints*>(opt)) {
|
2014-03-24 00:07:30 +00:00
|
|
|
std::vector<Pointf> values;
|
2013-12-21 13:27:58 +00:00
|
|
|
AV* av = (AV*)SvRV(value);
|
|
|
|
const size_t len = av_len(av)+1;
|
|
|
|
for (size_t i = 0; i < len; i++) {
|
|
|
|
SV** elem = av_fetch(av, i, 0);
|
|
|
|
Pointf point;
|
2014-11-04 20:07:18 +00:00
|
|
|
if (elem == NULL || !point.from_SV_check(*elem)) return false;
|
2014-03-24 00:07:30 +00:00
|
|
|
values.push_back(point);
|
2013-12-21 13:27:58 +00:00
|
|
|
}
|
2014-03-24 00:07:30 +00:00
|
|
|
optv->values = values;
|
2013-12-20 20:32:18 +00:00
|
|
|
} else if (ConfigOptionBool* optv = dynamic_cast<ConfigOptionBool*>(opt)) {
|
|
|
|
optv->value = SvTRUE(value);
|
2013-12-21 13:27:58 +00:00
|
|
|
} else if (ConfigOptionBools* optv = dynamic_cast<ConfigOptionBools*>(opt)) {
|
|
|
|
optv->values.clear();
|
|
|
|
AV* av = (AV*)SvRV(value);
|
|
|
|
const size_t len = av_len(av)+1;
|
|
|
|
for (size_t i = 0; i < len; i++) {
|
|
|
|
SV** elem = av_fetch(av, i, 0);
|
2014-04-19 14:38:28 +00:00
|
|
|
if (elem == NULL) return false;
|
2013-12-21 13:27:58 +00:00
|
|
|
optv->values.push_back(SvTRUE(*elem));
|
|
|
|
}
|
2013-12-20 15:37:28 +00:00
|
|
|
} else {
|
2014-03-24 00:07:30 +00:00
|
|
|
if (!opt->deserialize( std::string(SvPV_nolen(value)) )) return false;
|
2013-12-20 15:37:28 +00:00
|
|
|
}
|
2014-03-24 00:07:30 +00:00
|
|
|
return true;
|
2013-12-20 15:37:28 +00:00
|
|
|
}
|
2014-04-19 17:14:41 +00:00
|
|
|
|
|
|
|
/* This method is implemented as a workaround for this typemap bug:
|
|
|
|
https://rt.cpan.org/Public/Bug/Display.html?id=94110 */
|
|
|
|
bool
|
|
|
|
ConfigBase::set_deserialize(const t_config_option_key opt_key, SV* str) {
|
|
|
|
size_t len;
|
|
|
|
const char * c = SvPV(str, len);
|
|
|
|
std::string value(c, len);
|
|
|
|
|
|
|
|
return this->set_deserialize(opt_key, value);
|
|
|
|
}
|
2014-11-09 11:25:59 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
ConfigBase::set_ifndef(t_config_option_key opt_key, SV* value, bool deserialize)
|
|
|
|
{
|
|
|
|
if (!this->has(opt_key)) {
|
|
|
|
if (deserialize) {
|
|
|
|
this->set_deserialize(opt_key, value);
|
|
|
|
} else {
|
|
|
|
this->set(opt_key, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-12-20 15:37:28 +00:00
|
|
|
#endif
|
|
|
|
|
2014-05-08 11:33:43 +00:00
|
|
|
DynamicConfig& DynamicConfig::operator= (DynamicConfig other)
|
|
|
|
{
|
|
|
|
this->swap(other);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DynamicConfig::swap(DynamicConfig &other)
|
|
|
|
{
|
|
|
|
std::swap(this->options, other.options);
|
|
|
|
}
|
|
|
|
|
2013-12-20 19:54:11 +00:00
|
|
|
DynamicConfig::~DynamicConfig () {
|
|
|
|
for (t_options_map::iterator it = this->options.begin(); it != this->options.end(); ++it) {
|
|
|
|
ConfigOption* opt = it->second;
|
|
|
|
if (opt != NULL) delete opt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-22 19:12:54 +00:00
|
|
|
DynamicConfig::DynamicConfig (const DynamicConfig& other) {
|
|
|
|
this->def = other.def;
|
|
|
|
this->apply(other, false);
|
|
|
|
}
|
|
|
|
|
2013-12-20 15:37:28 +00:00
|
|
|
ConfigOption*
|
2013-12-20 19:54:11 +00:00
|
|
|
DynamicConfig::option(const t_config_option_key opt_key, bool create) {
|
2013-12-21 15:15:41 +00:00
|
|
|
if (this->options.count(opt_key) == 0) {
|
2013-12-20 19:54:11 +00:00
|
|
|
if (create) {
|
2013-12-21 15:15:41 +00:00
|
|
|
ConfigOptionDef* optdef = &(*this->def)[opt_key];
|
2013-12-20 19:54:11 +00:00
|
|
|
ConfigOption* opt;
|
2013-12-21 15:15:41 +00:00
|
|
|
if (optdef->type == coFloat) {
|
2013-12-20 19:54:11 +00:00
|
|
|
opt = new ConfigOptionFloat ();
|
2013-12-21 15:15:41 +00:00
|
|
|
} else if (optdef->type == coFloats) {
|
2013-12-21 13:27:58 +00:00
|
|
|
opt = new ConfigOptionFloats ();
|
2013-12-21 15:15:41 +00:00
|
|
|
} else if (optdef->type == coInt) {
|
2013-12-20 19:54:11 +00:00
|
|
|
opt = new ConfigOptionInt ();
|
2013-12-21 15:15:41 +00:00
|
|
|
} else if (optdef->type == coInts) {
|
2013-12-21 13:27:58 +00:00
|
|
|
opt = new ConfigOptionInts ();
|
2013-12-21 15:15:41 +00:00
|
|
|
} else if (optdef->type == coString) {
|
2013-12-20 19:54:11 +00:00
|
|
|
opt = new ConfigOptionString ();
|
2013-12-21 23:39:03 +00:00
|
|
|
} else if (optdef->type == coStrings) {
|
|
|
|
opt = new ConfigOptionStrings ();
|
2014-03-22 15:23:33 +00:00
|
|
|
} else if (optdef->type == coPercent) {
|
|
|
|
opt = new ConfigOptionPercent ();
|
2013-12-21 15:15:41 +00:00
|
|
|
} else if (optdef->type == coFloatOrPercent) {
|
2013-12-20 19:54:11 +00:00
|
|
|
opt = new ConfigOptionFloatOrPercent ();
|
2013-12-21 15:15:41 +00:00
|
|
|
} else if (optdef->type == coPoint) {
|
2013-12-20 19:54:11 +00:00
|
|
|
opt = new ConfigOptionPoint ();
|
2013-12-21 15:15:41 +00:00
|
|
|
} else if (optdef->type == coPoints) {
|
2013-12-21 13:27:58 +00:00
|
|
|
opt = new ConfigOptionPoints ();
|
2013-12-21 15:15:41 +00:00
|
|
|
} else if (optdef->type == coBool) {
|
2013-12-20 20:32:18 +00:00
|
|
|
opt = new ConfigOptionBool ();
|
2013-12-21 15:15:41 +00:00
|
|
|
} else if (optdef->type == coBools) {
|
2013-12-21 13:27:58 +00:00
|
|
|
opt = new ConfigOptionBools ();
|
2013-12-21 15:15:41 +00:00
|
|
|
} else if (optdef->type == coEnum) {
|
|
|
|
ConfigOptionEnumGeneric* optv = new ConfigOptionEnumGeneric ();
|
|
|
|
optv->keys_map = &optdef->enum_keys_map;
|
|
|
|
opt = static_cast<ConfigOption*>(optv);
|
2013-12-20 19:54:11 +00:00
|
|
|
} else {
|
|
|
|
throw "Unknown option type";
|
|
|
|
}
|
|
|
|
this->options[opt_key] = opt;
|
|
|
|
return opt;
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2013-12-21 15:15:41 +00:00
|
|
|
return this->options[opt_key];
|
2013-12-20 15:37:28 +00:00
|
|
|
}
|
|
|
|
|
2014-05-26 21:51:58 +00:00
|
|
|
template<class T>
|
|
|
|
T*
|
|
|
|
DynamicConfig::opt(const t_config_option_key opt_key, bool create) {
|
|
|
|
return dynamic_cast<T*>(this->option(opt_key, create));
|
|
|
|
}
|
|
|
|
template ConfigOptionInt* DynamicConfig::opt<ConfigOptionInt>(const t_config_option_key opt_key, bool create);
|
|
|
|
template ConfigOptionBool* DynamicConfig::opt<ConfigOptionBool>(const t_config_option_key opt_key, bool create);
|
|
|
|
template ConfigOptionBools* DynamicConfig::opt<ConfigOptionBools>(const t_config_option_key opt_key, bool create);
|
2014-11-22 22:10:18 +00:00
|
|
|
template ConfigOptionPercent* DynamicConfig::opt<ConfigOptionPercent>(const t_config_option_key opt_key, bool create);
|
2014-05-26 21:51:58 +00:00
|
|
|
|
2014-03-22 19:12:54 +00:00
|
|
|
const ConfigOption*
|
|
|
|
DynamicConfig::option(const t_config_option_key opt_key) const {
|
|
|
|
return const_cast<DynamicConfig*>(this)->option(opt_key, false);
|
|
|
|
}
|
|
|
|
|
2015-07-01 16:18:25 +00:00
|
|
|
t_config_option_keys
|
|
|
|
DynamicConfig::keys() const {
|
|
|
|
t_config_option_keys keys;
|
2013-12-20 15:37:28 +00:00
|
|
|
for (t_options_map::const_iterator it = this->options.begin(); it != this->options.end(); ++it)
|
2015-07-01 16:18:25 +00:00
|
|
|
keys.push_back(it->first);
|
|
|
|
return keys;
|
2013-12-20 15:37:28 +00:00
|
|
|
}
|
|
|
|
|
2014-01-22 20:14:47 +00:00
|
|
|
void
|
|
|
|
DynamicConfig::erase(const t_config_option_key opt_key) {
|
|
|
|
this->options.erase(opt_key);
|
|
|
|
}
|
|
|
|
|
2015-07-01 16:18:25 +00:00
|
|
|
t_config_option_keys
|
|
|
|
StaticConfig::keys() const {
|
|
|
|
t_config_option_keys keys;
|
2013-12-21 15:15:41 +00:00
|
|
|
for (t_optiondef_map::const_iterator it = this->def->begin(); it != this->def->end(); ++it) {
|
2014-03-22 19:12:54 +00:00
|
|
|
const ConfigOption* opt = this->option(it->first);
|
2015-07-01 16:18:25 +00:00
|
|
|
if (opt != NULL) keys.push_back(it->first);
|
2013-12-20 15:37:28 +00:00
|
|
|
}
|
2015-07-01 16:18:25 +00:00
|
|
|
return keys;
|
2013-12-20 15:37:28 +00:00
|
|
|
}
|
2013-12-07 15:14:30 +00:00
|
|
|
|
2014-03-22 19:12:54 +00:00
|
|
|
const ConfigOption*
|
|
|
|
StaticConfig::option(const t_config_option_key opt_key) const
|
|
|
|
{
|
|
|
|
return const_cast<StaticConfig*>(this)->option(opt_key, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef SLIC3RXS
|
2014-03-24 00:07:30 +00:00
|
|
|
bool
|
2014-03-22 19:12:54 +00:00
|
|
|
StaticConfig::set(t_config_option_key opt_key, SV* value) {
|
|
|
|
ConfigOptionDef* optdef = &(*this->def)[opt_key];
|
|
|
|
if (!optdef->shortcut.empty()) {
|
2014-03-24 00:07:30 +00:00
|
|
|
for (std::vector<t_config_option_key>::iterator it = optdef->shortcut.begin(); it != optdef->shortcut.end(); ++it) {
|
|
|
|
if (!this->set(*it, value)) return false;
|
|
|
|
}
|
|
|
|
return true;
|
2014-03-22 19:12:54 +00:00
|
|
|
}
|
|
|
|
|
2014-03-24 00:07:30 +00:00
|
|
|
return static_cast<ConfigBase*>(this)->set(opt_key, value);
|
2014-03-22 19:12:54 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-12-07 15:14:30 +00:00
|
|
|
}
|