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
243 template<class T>
244 std::string createSourceCode(const T& v) const;
245
247 virtual std::map<boost::filesystem::path, std::pair<boost::filesystem::path, bool> >& requiredFiles() const=0;
248
252 virtual void convertIndex(Value &v, bool evalTo1Based)=0;
253
255 static void setValue(xercesc::DOMElement *e, const Value &v);
256
270 virtual Value callFunction(const std::string &name, const std::vector<Value>& args) const=0;
271
272 size_t getStackSize() { assert(paramStack.size()==importStack.size()); return paramStack.size(); }
273
274 protected:
276 virtual Value createFunctionIndep(int dim) const = 0;
278 virtual Value createFunctionDep(const std::vector<Value>& v) const=0;
280 virtual Value createFunctionDep(const std::vector<std::vector<Value> >& v) const=0;
282 virtual Value createFunction(const std::vector<Value> &indeps, const Value &dep) const = 0;
283
285 void pushContext();
286
288 void popContext();
289
290 std::vector<boost::filesystem::path> *dependencies;
291
292 // map of the current parameters
293 std::unordered_map<std::string, Value> currentParam;
294 // stack of parameters
295 std::stack<std::unordered_map<std::string, Value> > paramStack;
296
297 // current imports
298 std::unordered_map<std::string, Value> currentImport;
299 // stack of imports
300 std::stack<std::unordered_map<std::string, Value> > importStack;
301
303 virtual Value fullStringToValue(const std::string &str, const xercesc::DOMElement *e, bool skipRet=false) const=0;
304
306 std::string partialStringToString(const std::string &str, const xercesc::DOMElement *e) const;
307
308 template<class E>
309 static std::shared_ptr<Eval> newEvaluator(std::vector<boost::filesystem::path>* dependencies_) {
310 return std::shared_ptr<E>(new E(dependencies_));
311 }
312
313 void addStaticDependencies(const xercesc::DOMElement *e) const;
314
315 static void printEvaluatorMsg(const std::ostringstream &str, MsgType msgType);
316
317 private:
318 // virtual spezialization of cast(const Value &value)
319 virtual double cast_double (const Value &value) const=0;
320 virtual std::vector<double> cast_vector_double (const Value &value) const=0;
321 virtual std::vector<std::vector<double> > cast_vector_vector_double(const Value &value) const=0;
322 virtual std::string cast_string (const Value &value) const=0;
323 // spezialization of cast(const Value &value)
324 CodeString cast_CodeString (const Value &value) const;
325 int cast_int (const Value &value) const;
326
327 // virtual spezialization of create(...)
328 virtual Value create_double (const double& v) const=0;
329 virtual Value create_vector_double (const std::vector<double>& v) const=0;
330 virtual Value create_vector_vector_double (const std::vector<std::vector<double> >& v) const=0;
331 virtual Value create_string (const std::string& v) const=0;
332
333 // virtual spezialization of createSourceCode(...)
334 virtual std::string createSourceCode_double (const double& v) const=0;
335 virtual std::string createSourceCode_vector_double (const std::vector<double>& v) const=0;
336 virtual std::string createSourceCode_vector_vector_double (const std::vector<std::vector<double> >& v) const=0;
337 virtual std::string createSourceCode_string (const std::string& v) const=0;
338
339 virtual std::string serializeFunction(const Value &x) const = 0;
340
341 Value handleUnit(const xercesc::DOMElement *e, const Value &ret);
342
343 static std::map<std::string, std::string> units;
344
345 static std::map<std::string, std::function<std::shared_ptr<Eval>(std::vector<boost::filesystem::path>*)> >& getEvaluators();
346
347};
348
349// specializations
350template<> std::string Eval::cast<std::string>(const Value &value) const;
351template<> CodeString Eval::cast<CodeString>(const Value &value) const;
352template<> double Eval::cast<double>(const Value &value) const;
353template<> int Eval::cast<int>(const Value &value) const;
354template<> std::vector<double> Eval::cast<std::vector<double> >(const Value &value) const;
355template<> std::vector<std::vector<double> > Eval::cast<std::vector<std::vector<double> > >(const Value &value) const;
356
357// spezializations for create
358template<> Eval::Value Eval::create<double> (const double& v) const;
359template<> Eval::Value Eval::create<std::vector<double> > (const std::vector<double>& v) const;
360template<> Eval::Value Eval::create<std::vector<std::vector<double> > > (const std::vector<std::vector<double> >& v) const;
361template<> Eval::Value Eval::create<std::string> (const std::string& v) const;
362
363// spezializations for createSourceCode
364template<> std::string Eval::createSourceCode<double> (const double& v) const;
365template<> std::string Eval::createSourceCode<std::vector<double> > (const std::vector<double>& v) const;
366template<> std::string Eval::createSourceCode<std::vector<std::vector<double> > > (const std::vector<std::vector<double> >& v) const;
367template<> std::string Eval::createSourceCode<std::string> (const std::string& v) const;
368
369} // end namespace MBXMLUtils
370
371#endif
A dummy object representing a value as string in the syntax of the Eval (xmlflat).
Definition: eval.h:35
Definition: eval.h:76
std::string createSourceCode(const T &v) const
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:229
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:182
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:709
static void setValue(xercesc::DOMElement *e, const Value &v)
Set value on DOMElement (is used by Eval::cast)
Definition: eval.cc:722
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:653
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:177
void addParamSet(const xercesc::DOMElement *e)
Definition: eval.cc:233
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:605
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