/** * @file * @author 2012-2014 Stefan Radomski (stefan.radomski@cs.tu-darmstadt.de) * @copyright Simplified BSD * * @cond * This program is free software: you can redistribute it and/or modify * it under the terms of the FreeBSD license as published by the FreeBSD * project. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * You should have received a copy of the FreeBSD license along with this * program. If not, see . * @endcond */ #ifndef DATA_H_09E4D8E5 #define DATA_H_09E4D8E5 #include #include #include #include "uscxml/Common.h" #include "uscxml/util/Convenience.h" #include "uscxml/messages/Blob.h" #include namespace uscxml { static int _dataIndentation = 1; class USCXML_API Data { public: enum Type { VERBATIM, INTERPRETED, }; Data() : node(NULL), type(INTERPRETED) {} Data(const char* data, size_t size, const std::string& mimeType, bool adopt = false); // convenience constructors Data(bool atom) : node(NULL), type(VERBATIM) { if (atom) { this->atom = "true"; } else { this->atom = "false"; } } Data(xercesc::DOMNode* node) : node(node), type(VERBATIM) {} // template Data(T value, Type type = INTERPRETED) : atom(toStr(value)), type(type) {} // we will have to drop this constructor as it interferes with operator Data() and requires C++11 template Data(T value, typename std::enable_if::value>::type* = nullptr) : node(NULL), atom(toStr(value)), type(VERBATIM) {} template Data(T value, Type type, typename std::enable_if::value>::type* = nullptr) : node(NULL), atom(toStr(value)), type(type) {} ~Data() {} bool empty() const { bool hasContent = (atom.length() > 0 || !compound.empty() || !array.empty() || binary || node); return !hasContent; } bool operator<(const Data& other) const { if (other.atom != atom) return other.atom < atom; if (other.array != array) return other.array < array; if (other.compound != compound) return other.compound < compound; if (other.node != node) return other.node < node; if (other.binary != binary) return other.binary < binary; if (other.type != type) return other.type < type; return false; } void merge(const Data& other); bool hasKey(const std::string& key) const { return (!compound.empty() && compound.find(key) != compound.end()); } Data& operator[](const std::string& key) { return operator[](key.c_str()); } const Data& operator[](const std::string& key) const { return operator[](key.c_str()); } Data& operator[](const char* key) { return compound[key]; } const Data& operator[](const char* key) const { return compound.at(key); } Data& operator[](const size_t index) { while(array.size() < index) { array.push_back(Data("", Data::VERBATIM)); } std::list::iterator arrayIter = array.begin(); for (size_t i = 0; i < index; i++, arrayIter++) {} return *arrayIter; } const Data at(const std::string& key) const { return at(key.c_str()); } const Data at(const char* key) const { if (hasKey(key)) return compound.at(key); Data data; return data; } const Data item(const size_t index) const { if (array.size() > index) { std::list::const_iterator arrayIter = array.begin(); for (size_t i = 0; i < index; i++, arrayIter++) {} return *arrayIter; } Data data; return data; } void put(std::string key, const Data& data) { compound[key] = data; } void put(size_t index, const Data& data) { this[index] = data; } bool operator==(const Data &other) const { return (*this < other || other < *this); } bool operator!=(const Data &other) const { return !(*this == other); } operator std::string() const { return atom; } operator std::map() { return compound; } operator std::list() { return array; } static Data fromJSON(const std::string& jsonString); static std::string toJSON(const Data& data); std::string asJSON() const; std::map getCompound() { return compound; } void setCompound(const std::map& compound) { this->compound = compound; } std::list getArray() { return array; } void setArray(const std::list& array) { this->array = array; } std::string getAtom() const { return atom; } void setAtom(const std::string& atom) { this->atom = atom; } Blob getBinary() { return this->binary; } void setBinary(const Blob& binary) { this->binary = binary; } Type getType() { return type; } void setType(const Type type) { this->type = type; } #ifdef SWIGIMPORTED protected: #endif xercesc::DOMNode* node; std::shared_ptr adoptedDoc; std::map compound; std::list array; std::string atom; Blob binary; Type type; protected: friend USCXML_API std::ostream& operator<< (std::ostream& os, const Data& data); }; USCXML_API std::ostream& operator<< (std::ostream& os, const Data& data); } #endif /* end of include guard: DATA_H_09E4D8E5 */