#include "Config.hpp" #include // for setenv() #include #include #include #include #include // std::runtime_error #include #include #include #include #include #if defined(_WIN32) && !defined(setenv) && defined(_putenv_s) #define setenv(k, v, o) _putenv_s(k, v) #endif namespace Slic3r { bool operator== (const ConfigOption &a, const ConfigOption &b) { return a.serialize().compare(b.serialize()) == 0; } bool operator!= (const ConfigOption &a, const ConfigOption &b) { return !(a == b); } ConfigOptionDef::ConfigOptionDef(const ConfigOptionDef &other) : type(other.type), default_value(NULL), gui_type(other.gui_type), gui_flags(other.gui_flags), label(other.label), full_label(other.full_label), category(other.category), tooltip(other.tooltip), sidetext(other.sidetext), cli(other.cli), ratio_over(other.ratio_over), multiline(other.multiline), full_width(other.full_width), readonly(other.readonly), height(other.height), width(other.width), min(other.min), max(other.max) { if (other.default_value != NULL) this->default_value = other.default_value->clone(); } ConfigOptionDef::~ConfigOptionDef() { if (this->default_value != NULL) delete this->default_value; } ConfigOptionDef* ConfigDef::add(const t_config_option_key &opt_key, ConfigOptionType type) { ConfigOptionDef* opt = &this->options[opt_key]; opt->type = type; return opt; } const ConfigOptionDef* ConfigDef::get(const t_config_option_key &opt_key) const { if (this->options.count(opt_key) == 0) return NULL; return &const_cast(this)->options[opt_key]; } void ConfigDef::merge(const ConfigDef &other) { this->options.insert(other.options.begin(), other.options.end()); } bool ConfigBase::has(const t_config_option_key &opt_key) { return (this->option(opt_key, false) != NULL); } void ConfigBase::apply(const ConfigBase &other, bool ignore_nonexistent) { // get list of option keys to apply t_config_option_keys opt_keys = other.keys(); // loop through options and apply them for (t_config_option_keys::const_iterator it = opt_keys.begin(); it != opt_keys.end(); ++it) { ConfigOption* my_opt = this->option(*it, true); 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 bool res = my_opt->deserialize( other.option(*it)->serialize() ); if (!res) { std::string error = "Unexpected failure when deserializing serialized value for " + *it; CONFESS(error.c_str()); } } } 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; t_config_option_keys my_keys = this->keys(); 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; } std::string ConfigBase::serialize(const t_config_option_key &opt_key) const { const ConfigOption* opt = this->option(opt_key); assert(opt != NULL); return opt->serialize(); } bool ConfigBase::set_deserialize(const t_config_option_key &opt_key, std::string str, bool append) { const ConfigOptionDef* optdef = this->def->get(opt_key); if (optdef == NULL) throw UnknownOptionException(); if (!optdef->shortcut.empty()) { for (std::vector::const_iterator it = optdef->shortcut.begin(); it != optdef->shortcut.end(); ++it) { if (!this->set_deserialize(*it, str)) return false; } return true; } ConfigOption* opt = this->option(opt_key, true); assert(opt != NULL); return opt->deserialize(str, append); } double ConfigBase::get_abs_value(const t_config_option_key &opt_key) { ConfigOption* opt = this->option(opt_key, false); if (ConfigOptionFloatOrPercent* optv = dynamic_cast(opt)) { // get option definition const ConfigOptionDef* def = this->def->get(opt_key); assert(def != NULL); // 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(opt)) { return optv->value; } else { throw "Not a valid option type for get_abs_value()"; } } double ConfigBase::get_abs_value(const t_config_option_key &opt_key, double ratio_over) { // get stored option value ConfigOptionFloatOrPercent* opt = dynamic_cast(this->option(opt_key)); assert(opt != NULL); // compute absolute value return opt->get_abs_value(ratio_over); } void ConfigBase::setenv_() { #ifdef 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); } #endif } const ConfigOption* ConfigBase::option(const t_config_option_key &opt_key) const { return const_cast(this)->option(opt_key, false); } ConfigOption* ConfigBase::option(const t_config_option_key &opt_key, bool create) { return this->optptr(opt_key, create); } void ConfigBase::load(const std::string &file) { namespace pt = boost::property_tree; pt::ptree tree; pt::read_ini(file, tree); BOOST_FOREACH(const pt::ptree::value_type &v, tree) { try { this->set_deserialize(v.first.c_str(), v.second.get_value().c_str()); } catch (UnknownOptionException &e) { // ignore } } } void ConfigBase::save(const std::string &file) const { using namespace std; ofstream c; c.open(file.c_str(), ios::out | ios::trunc); { time_t now; time(&now); char buf[sizeof "0000-00-00 00:00:00"]; strftime(buf, sizeof buf, "%F %T", gmtime(&now)); c << "# generated by Slic3r " << SLIC3R_VERSION << " on " << buf << endl; } t_config_option_keys my_keys = this->keys(); for (t_config_option_keys::const_iterator opt_key = my_keys.begin(); opt_key != my_keys.end(); ++opt_key) c << *opt_key << " = " << this->serialize(*opt_key) << endl; c.close(); } DynamicConfig& DynamicConfig::operator= (DynamicConfig other) { this->swap(other); return *this; } void DynamicConfig::swap(DynamicConfig &other) { std::swap(this->options, other.options); } 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; } } DynamicConfig::DynamicConfig (const DynamicConfig& other) { this->def = other.def; this->apply(other, false); } ConfigOption* DynamicConfig::optptr(const t_config_option_key &opt_key, bool create) { if (this->options.count(opt_key) == 0) { if (create) { const ConfigOptionDef* optdef = this->def->get(opt_key); if (optdef == NULL) return NULL; ConfigOption* opt; if (optdef->default_value != NULL) { opt = optdef->default_value->clone(); } else if (optdef->type == coFloat) { opt = new ConfigOptionFloat (); } else if (optdef->type == coFloats) { opt = new ConfigOptionFloats (); } else if (optdef->type == coInt) { opt = new ConfigOptionInt (); } else if (optdef->type == coInts) { opt = new ConfigOptionInts (); } else if (optdef->type == coString) { opt = new ConfigOptionString (); } else if (optdef->type == coStrings) { opt = new ConfigOptionStrings (); } else if (optdef->type == coPercent) { opt = new ConfigOptionPercent (); } else if (optdef->type == coFloatOrPercent) { opt = new ConfigOptionFloatOrPercent (); } else if (optdef->type == coPoint) { opt = new ConfigOptionPoint (); } else if (optdef->type == coPoints) { opt = new ConfigOptionPoints (); } else if (optdef->type == coBool) { opt = new ConfigOptionBool (); } else if (optdef->type == coBools) { opt = new ConfigOptionBools (); } else if (optdef->type == coEnum) { ConfigOptionEnumGeneric* optv = new ConfigOptionEnumGeneric (); optv->keys_map = &optdef->enum_keys_map; opt = static_cast(optv); } else { throw "Unknown option type"; } this->options[opt_key] = opt; return opt; } else { return NULL; } } return this->options[opt_key]; } template T* DynamicConfig::opt(const t_config_option_key &opt_key, bool create) { return dynamic_cast(this->option(opt_key, create)); } template ConfigOptionInt* DynamicConfig::opt(const t_config_option_key &opt_key, bool create); template ConfigOptionBool* DynamicConfig::opt(const t_config_option_key &opt_key, bool create); template ConfigOptionBools* DynamicConfig::opt(const t_config_option_key &opt_key, bool create); template ConfigOptionPercent* DynamicConfig::opt(const t_config_option_key &opt_key, bool create); t_config_option_keys DynamicConfig::keys() const { t_config_option_keys keys; for (t_options_map::const_iterator it = this->options.begin(); it != this->options.end(); ++it) keys.push_back(it->first); return keys; } void DynamicConfig::erase(const t_config_option_key &opt_key) { this->options.erase(opt_key); } void DynamicConfig::read_cli(const int argc, const char** argv, t_config_option_keys* extra) { bool parse_options = true; for (int i = 1; i < argc; ++i) { std::string token = argv[i]; if (token == "--") { // stop parsing tokens as options parse_options = false; } else if (parse_options && boost::starts_with(token, "--")) { boost::algorithm::erase_head(token, 2); // TODO: handle --key=value // look for the option def t_config_option_key opt_key; const ConfigOptionDef* optdef; for (t_optiondef_map::const_iterator oit = this->def->options.begin(); oit != this->def->options.end(); ++oit) { optdef = &oit->second; if (optdef->cli == token || optdef->cli == token + '!' || boost::starts_with(optdef->cli, token + "=")) { opt_key = oit->first; break; } } if (opt_key.empty()) { printf("Warning: unknown option --%s\n", token.c_str()); continue; } if (ConfigOptionBool* opt = this->opt(opt_key, true)) { opt->value = !boost::starts_with(token, "no-"); } else if (ConfigOptionBools* opt = this->opt(opt_key, true)) { opt->values.push_back(!boost::starts_with(token, "no-")); } else { // we expect one more token carrying the value if (i == (argc-1)) { printf("No value supplied for --%s\n", token.c_str()); exit(1); } this->set_deserialize(opt_key, argv[++i], true); } } else { extra->push_back(token); } } } void StaticConfig::set_defaults() { // use defaults from definition if (this->def == NULL) return; t_config_option_keys keys = this->keys(); for (t_config_option_keys::const_iterator it = keys.begin(); it != keys.end(); ++it) { const ConfigOptionDef* def = this->def->get(*it); if (def->default_value != NULL) this->option(*it)->set(*def->default_value); } } t_config_option_keys StaticConfig::keys() const { t_config_option_keys keys; for (t_optiondef_map::const_iterator it = this->def->options.begin(); it != this->def->options.end(); ++it) { const ConfigOption* opt = this->option(it->first); if (opt != NULL) keys.push_back(it->first); } return keys; } }