mbxmlutils  1.3.0
Multi-Body XML Utils
eval.h
1#ifndef _MBXMLUTILS_EVAL_H_
2#define _MBXMLUTILS_EVAL_H_
3
4#include <fmatvec/atom.h>
5#include <boost/filesystem.hpp>
6#include <xercesc/util/XercesDefs.hpp>
7#include <mbxmlutilshelper/dom.h>
8#include <mbxmlutilshelper/thislinelocation.h>
9#include <unordered_map>
10#include <stack>
11
12#define MBXMLUTILS_EVAL_CONCAT1(X, Y) X##Y
13#define MBXMLUTILS_EVAL_CONCAT(X, Y) MBXMLUTILS_EVAL_CONCAT1(X, Y)
14#define MBXMLUTILS_EVAL_APPENDLINE(X) MBXMLUTILS_EVAL_CONCAT(X, __LINE__)
15
17#define MBXMLUTILS_EVAL_REGISTER(T) \
18 namespace { \
19 struct Reg { \
20 Reg() { Eval::registerEvaluator<T>(); } \
21 } MBXMLUTILS_EVAL_APPENDLINE(regDummy); \
22 }
23
24namespace XERCES_CPP_NAMESPACE {
25 class DOMElement;
26 class DOMAttr;
27 class DOMDocument;
28}
29
30namespace MBXMLUtils {
31
32bool tryDouble2Int(double d, int &i);
33
35class CodeString : public std::string {
36 public:
37 CodeString(const std::string &str) : std::string(str) {}
38};
39
40// Store the current directory in the ctor an restore in the dtor
42 public:
44 dir=boost::filesystem::current_path();
45 }
47 boost::filesystem::current_path(dir);
48 }
49 private:
50 boost::filesystem::path dir;
51};
52
53class Eval;
54
57 public:
59 NewParamLevel(std::shared_ptr<Eval> oe_, bool newLevel_=true);
62
63 NewParamLevel(const NewParamLevel& other) = delete; // copy constructor
64 NewParamLevel(NewParamLevel&& other) = delete; // move constructor
65 NewParamLevel& operator=(const NewParamLevel& other) = delete; // copy assignment
66 NewParamLevel& operator=(NewParamLevel&& other) = delete; // move assignment
67 protected:
68 static void* operator new(std::size_t); // no heap allocation allowed
69 static void* operator new[](std::size_t); // no heap allocation allowed
70
71 std::shared_ptr<Eval> oe;
72 bool newLevel;
73};
74
76class Eval : public std::enable_shared_from_this<Eval>, virtual public fmatvec::Atom {
77 public:
78 friend class NewParamLevel;
79
82 enum ValueType {
83 ScalarType,
84 VectorType,
85 MatrixType,
86 StringType,
87 FunctionType
88 };
89
91 using Value = std::shared_ptr<void>;
92
93 static boost::filesystem::path installPath;
94
95 protected:
97 Eval(std::vector<boost::filesystem::path> *dependencies_);
98 public:
100 ~Eval() override;
101
102 Eval(const Eval& other) = delete; // copy constructor
103 Eval(Eval&& other) = delete; // move constructor
104 Eval& operator=(const Eval& other) = delete; // copy assignment
105 Eval& operator=(Eval&& other) = delete; // move assignment
106
108 static std::shared_ptr<Eval> createEvaluator(const std::string &evalName, std::vector<boost::filesystem::path> *dependencies_=nullptr);
109
110 // Register a new evaluator.
111 template<class E>
112 static void registerEvaluator() {
113 getEvaluators()[E::getNameStatic()]=&newEvaluator<E>;
114 }
115
117 virtual std::string getName() const=0;
118
120 void addParam(const std::string &paramName, const Value& value);
124 void addParamSet(const xercesc::DOMElement *e);
125
128 virtual void addImport(const std::string &code, const xercesc::DOMElement *e, const std::string &action="")=0;
129
132 Value eval(const xercesc::DOMElement *e);
133
137 Value eval(const xercesc::DOMAttr *a);
138
141 Value eval(const std::string &str, const xercesc::DOMElement *e=nullptr, bool skipRet=false);
142
210 template<typename T>
211 T cast(const Value &value) const;
212
214 virtual std::string getStringRepresentation(const Value &x) const;
215
222 virtual bool valueIsOfType(const Value &value, ValueType type) const=0;
223
227 Value stringToValue(const std::string &str, const xercesc::DOMElement *e=nullptr, bool fullEval=true, bool skipRet=false) const;
228
234 template<class T>
235 Value create(const T& v) const;
236
238 virtual std::map<boost::filesystem::path, std::pair<boost::filesystem::path, bool> >& requiredFiles() const=0;
239
243 virtual void convertIndex(Value &v, bool evalTo1Based)=0;
244
246 static void setValue(xercesc::DOMElement *e, const Value &v);
247
261 virtual Value callFunction(const std::string &name, const std::vector<Value>& args) const=0;
262
263 size_t getStackSize() { assert(paramStack.size()==importStack.size()); return paramStack.size(); }
264
265 protected:
267 virtual Value createFunctionIndep(int dim) const = 0;
269 virtual Value createFunctionDep(const std::vector<Value>& v) const=0;
271 virtual Value createFunctionDep(const std::vector<std::vector<Value> >& v) const=0;
273 virtual Value createFunction(const std::vector<Value> &indeps, const Value &dep) const = 0;
274
276 void pushContext();
277
279 void popContext();
280
281 std::vector<boost::filesystem::path> *dependencies;
282
283 // map of the current parameters
284 std::unordered_map<std::string, Value> currentParam;
285 // stack of parameters
286 std::stack<std::unordered_map<std::string, Value> > paramStack;
287
288 // current imports
289 std::unordered_map<std::string, Value> currentImport;
290 // stack of imports
291 std::stack<std::unordered_map<std::string, Value> > importStack;
292
294 virtual Value fullStringToValue(const std::string &str, const xercesc::DOMElement *e, bool skipRet=false) const=0;
295
297 std::string partialStringToString(const std::string &str, const xercesc::DOMElement *e) const;
298
299 template<class E>
300 static std::shared_ptr<Eval> newEvaluator(std::vector<boost::filesystem::path>* dependencies_) {
301 return std::shared_ptr<E>(new E(dependencies_));
302 }
303
304 void addStaticDependencies(const xercesc::DOMElement *e) const;
305
306 static void printEvaluatorMsg(const std::ostringstream &str, MsgType msgType);
307
308 private:
309 // virtual spezialization of cast(const Value &value)
310 virtual double cast_double (const Value &value) const=0;
311 virtual std::vector<double> cast_vector_double (const Value &value) const=0;
312 virtual std::vector<std::vector<double> > cast_vector_vector_double(const Value &value) const=0;
313 virtual std::string cast_string (const Value &value) const=0;
314 // spezialization of cast(const Value &value)
315 CodeString cast_CodeString (const Value &value) const;
316 int cast_int (const Value &value) const;
317
318 // virtual spezialization of create(...)
319 virtual Value create_double (const double& v) const=0;
320 virtual Value create_vector_double (const std::vector<double>& v) const=0;
321 virtual Value create_vector_vector_double (const std::vector<std::vector<double> >& v) const=0;
322 virtual Value create_string (const std::string& v) const=0;
323
324 virtual std::string serializeFunction(const Value &x) const = 0;
325
326 Value handleUnit(const xercesc::DOMElement *e, const Value &ret);
327
328 static std::map<std::string, std::string> units;
329
330 static std::map<std::string, std::function<std::shared_ptr<Eval>(std::vector<boost::filesystem::path>*)> >& getEvaluators();
331
332};
333
334// specializations
335template<> std::string Eval::cast<std::string>(const Value &value) const;
336template<> CodeString Eval::cast<CodeString>(const Value &value) const;
337template<> double Eval::cast<double>(const Value &value) const;
338template<> int Eval::cast<int>(const Value &value) const;
339template<> std::vector<double> Eval::cast<std::vector<double> >(const Value &value) const;
340template<> std::vector<std::vector<double> > Eval::cast<std::vector<std::vector<double> > >(const Value &value) const;
341
342// spezializations for create
343template<> Eval::Value Eval::create<double> (const double& v) const;
344template<> Eval::Value Eval::create<std::vector<double> > (const std::vector<double>& v) const;
345template<> Eval::Value Eval::create<std::vector<std::vector<double> > > (const std::vector<std::vector<double> >& v) const;
346template<> Eval::Value Eval::create<std::string> (const std::string& v) const;
347
348} // end namespace MBXMLUtils
349
350#endif
A dummy object representing a value as string in the syntax of the Eval.
Definition: eval.h:35
Definition: eval.h:76
virtual std::string getName() const =0
Get the type of this evaluator.
ValueType
Definition: eval.h:82
void addParam(const std::string &paramName, const Value &value)
Add a value to the current parameters.
Definition: eval.cc:219
std::shared_ptr< void > Value
Typedef for a shared value.
Definition: eval.h:91
static std::shared_ptr< Eval > createEvaluator(const std::string &evalName, std::vector< boost::filesystem::path > *dependencies_=nullptr)
Create a evaluator.
Definition: eval.cc:116
virtual Value callFunction(const std::string &name, const std::vector< Value > &args) const =0
~Eval() override
Destructor.
T cast(const Value &value) const
void popContext()
Overwrite the current context with the top level context from the internal stack.
Definition: eval.cc:192
virtual Value createFunctionIndep(int dim) const =0
create a function independent variable. If dim == 0 a scalar is created else a vector.
virtual void convertIndex(Value &v, bool evalTo1Based)=0
virtual Value createFunctionDep(const std::vector< std::vector< Value > > &v) const =0
create a matrix function dependent
virtual std::map< boost::filesystem::path, std::pair< boost::filesystem::path, bool > > & requiredFiles() const =0
return a list of all required files of the evaluator (excluding dependent files of libraries)
virtual std::string getStringRepresentation(const Value &x) const
Returns a evaluator specific string representation of x. This is only useful for display to the user.
Definition: eval.cc:706
static void setValue(xercesc::DOMElement *e, const Value &v)
Set value on DOMElement (is used by Eval::cast)
Definition: eval.cc:719
Value eval(const xercesc::DOMElement *e)
Value stringToValue(const std::string &str, const xercesc::DOMElement *e=nullptr, bool fullEval=true, bool skipRet=false) const
Definition: eval.cc:650
virtual void addImport(const std::string &code, const xercesc::DOMElement *e, const std::string &action="")=0
Value create(const T &v) const
virtual Value fullStringToValue(const std::string &str, const xercesc::DOMElement *e, bool skipRet=false) const =0
evaluate the string str using the current parameters and return the result.
void pushContext()
Push the current context to a internal stack.
Definition: eval.cc:187
void addParamSet(const xercesc::DOMElement *e)
Definition: eval.cc:223
virtual bool valueIsOfType(const Value &value, ValueType type) const =0
Value eval(const std::string &str, const xercesc::DOMElement *e=nullptr, bool skipRet=false)
virtual Value createFunctionDep(const std::vector< Value > &v) const =0
create a vector function dependent
virtual Value createFunction(const std::vector< Value > &indeps, const Value &dep) const =0
create a Function with n independents and a dependent function (scalar, vector or matrix)
std::string partialStringToString(const std::string &str, const xercesc::DOMElement *e) const
evaluate str partially and return result as an std::string
Definition: eval.cc:602
Eval(std::vector< boost::filesystem::path > *dependencies_)
Constructor.
Create a new parameter level for a evaluator which is automatically resetted if the scope of this obj...
Definition: eval.h:56
~NewParamLevel()
Reset to the previous parameter level.
Definition: eval.cc:91
NewParamLevel(std::shared_ptr< Eval > oe_, bool newLevel_=true)
Create a new parameter level in the evaluator oe_.
Definition: eval.h:41