forked from openscad/openscad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparameterset.cpp
139 lines (125 loc) · 3.97 KB
/
parameterset.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#include "parameterset.h"
#include "comment.h"
#include "modcontext.h"
#include "expression.h"
#include "printutils.h"
#include <boost/property_tree/json_parser.hpp>
#include "boost-utils.h"
std::string ParameterSet::parameterSetsKey("parameterSets");
std::string ParameterSet::fileFormatVersionKey("fileFormatVersion");
std::string ParameterSet::fileFormatVersionValue("1");
void ParameterSet::clear()
{
root.clear();
}
bool ParameterSet::isEmpty() const
{
const boost::optional<const pt::ptree &> sets{root.get_child_optional(ParameterSet::parameterSetsKey)};
const bool hasEntries = sets.is_initialized() && !sets.get().empty();
return !hasEntries;
}
boost::optional<pt::ptree &> ParameterSet::parameterSets()
{
return root.get_child_optional(ParameterSet::parameterSetsKey);
}
std::vector<std::string> ParameterSet::getParameterNames()
{
std::vector<std::string> names;
boost::optional<pt::ptree &> sets = parameterSets();
if (sets.is_initialized()) {
for (const auto &v : sets.get()) {
names.push_back(v.first);
}
}
return names;
}
bool ParameterSet::setNameExists(const std::string &setName){
boost::optional<pt::ptree &> sets = parameterSets();
if (sets.is_initialized()) {
for (const auto &v : sets.get()) {
if(v.first == setName) return true;
}
}
return false;
}
boost::optional<pt::ptree &> ParameterSet::getParameterSet(const std::string &setName)
{
boost::optional<pt::ptree &> sets = parameterSets();
if (!sets.is_initialized()) {
return sets;
}
pt::ptree::assoc_iterator set = sets.get().find(pt::ptree::key_type(setName));
if(set!=sets.get().not_found()) {
return set->second;
}
return sets;
}
void ParameterSet::addParameterSet(const std::string setName, const pt::ptree & set)
{
boost::optional<pt::ptree &> sets = parameterSets();
if (sets.is_initialized()) {
sets.get().erase(pt::ptree::key_type(setName));
sets.get().push_back(pt::ptree::value_type(setName,set));
}
else {
pt::ptree child;
child.push_back(pt::ptree::value_type(setName,set));
root.push_back(pt::ptree::value_type(ParameterSet::parameterSetsKey,child));
}
}
/*!
Returns true if the file was successfully read
*/
bool ParameterSet::readParameterSet(const std::string &filename)
{
try {
pt::read_json(filename, this->root);
return true;
}
catch (const pt::json_parser_error &e) {
LOG(message_group::Error,Location::NONE,"","Cannot open Parameter Set '%1$s': %2$s",filename,e.what());
}
return false;
}
void ParameterSet::writeParameterSet(const std::string &filename)
{
// Always force default version for now
root.put<std::string>(fileFormatVersionKey, fileFormatVersionValue);
try {
pt::write_json(filename, this->root);
}
catch (const pt::json_parser_error &e) {
LOG(message_group::Error,Location::NONE,"","Cannot write Parameter Set '%1$s': %2$s",filename,e.what());
}
}
void ParameterSet::applyParameterSet(FileModule *fileModule, const std::string &setName)
{
if (fileModule == nullptr || this->root.empty()) return;
try {
ContextHandle<Context> ctx{Context::create<Context>()};
boost::optional<pt::ptree &> set = getParameterSet(setName);
for (auto &assignment : fileModule->scope.assignments) {
for (auto &v : set.get()) {
if (v.first == assignment->getName()) {
const Value defaultValue = assignment->getExpr()->evaluate(ctx.ctx);
if (defaultValue.type() == Value::Type::STRING) {
assignment->setExpr(make_shared<Literal>(v.second.data()));
}
else if (defaultValue.type() == Value::Type::BOOL) {
assignment->setExpr(make_shared<Literal>(Value(v.second.get_value<bool>())));
} else {
shared_ptr<Expression> params = CommentParser::parser(v.second.data().c_str());
if (!params) continue;
ContextHandle<Context> ctx{Context::create<Context>()};
if (defaultValue.type() == params->evaluate(ctx.ctx).type()) {
assignment->setExpr(params);
}
}
}
}
}
}
catch (std::exception const& e) {
LOG(message_group::Error,Location::NONE,"","Cannot apply Parameter Set '%1$s'",e.what());
}
}