| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400 |
- /*
- Copyright (C) 2011 by Ivan Safrin
-
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
-
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- THE SOFTWARE.
- */
- #pragma once
- #include "PolyGlobals.h"
- #include "PolyString.h"
- #include "OSBasics.h"
- class TiXmlElement;
- namespace Polycode {
- /**
- * Single entry in an Object. Object entries can be accessed as dictionaries or arrays.
- */
- class _PolyExport ObjectEntry : public PolyBase {
- public:
-
- /**
- * Default constructor
- */
- ObjectEntry();
- ~ObjectEntry();
-
- /**
- * Type of entry. Possible values are (FLOAT_ENTRY, INT_ENTRY, BOOL_ENTRY, ARRAY_ENTRY, STRING_ENTRY, CONTAINER_ENTRY).
- */
- int type;
-
- /**
- * Lookup key for this object entry.
- */
- String name;
- /**
- * Number value of this object entry.
- */
- Number NumberVal;
-
- /**
- * Integer value of this object entry.
- */
- int intVal;
-
- /**
- * String value of this object entry.
- */
- String stringVal;
-
- /**
- * Boolean value of this object entry.
- */
- bool boolVal;
-
- /**
- * Length of this object entry if its type is ARRAY_ENTRY.
- */
- int length;
- /**
- * Tries to write the Number value of this[key] to out.
- * @param out A pointer to the value to write the number value to.
- * @return true if this[key] is a number, false otherwise.
- */
- bool readNumber(String key, Number *out) {
- ObjectEntry *child = this->operator[](key);
- if(!child) {
- return false;
- }
- if(child->type == FLOAT_ENTRY) {
- *out = child->NumberVal;
- return true;
- } else if(child->type == INT_ENTRY) {
- *out = (Number) child->intVal;
- return true;
- }
- return false;
- }
- /**
- * Tries to write the int value of this[key] to out.
- * @param out A pointer to the value to write the int value to.
- * @return true if this[key] is an integer, false otherwise.
- */
- bool readInt(String key, int *out) {
- ObjectEntry *child = this->operator[](key);
- if(!child) {
- return false;
- }
- if(child->type == INT_ENTRY) {
- *out = child->intVal;
- return true;
- }
- return false;
- }
- /**
- * Tries to write the int value of this[key] to out.
- * @param out A pointer to the value to write the int value to.
- * @return true if this[key] is an integer, false otherwise.
- */
- bool readInt(String key, unsigned *out) {
- return readInt(key, (int*) out);
- }
- /**
- * Tries to write the String value of this[key] to out.
- * @param out A pointer to the value to write the String value to.
- * @return true if this[key] is a String, false otherwise.
- */
- bool readString(String key, String *out) {
- ObjectEntry *child = this->operator[](key);
- if(!child) {
- return false;
- }
- if(child->type == STRING_ENTRY) {
- *out = child->stringVal;
- return true;
- }
- return false;
- }
- /**
- * Tries to write the boolean value of this[key] to out.
- * @param out A pointer to the value to write the boolean value to.
- * @return true if this[key] is a bool, false otherwise.
- */
- bool readBool(String key, bool *out) {
- ObjectEntry *child = this->operator[](key);
- if(!child) {
- return false;
- }
- if(child->type == BOOL_ENTRY) {
- *out = child->boolVal;
- return true;
- }
- return false;
- }
-
- /**
- * Adds an empty child entry.
- * @param name Lookup key for the object entry.
- * @return The added object entry.
- */
- ObjectEntry *addChild(const String& name) {
- ObjectEntry *entry = new ObjectEntry();
- entry->type = ObjectEntry::CONTAINER_ENTRY;
- entry->name = name;
- children.push_back(entry);
- length = (int)children.size();
- return entry;
- }
-
- /**
- * Adds an empty child entry with a number value.
- * @param name Lookup key for the object entry.
- * @param val Number to set as value in the object entry.
- * @return The added object entry.
- */
- ObjectEntry *addChild(const String& name, Number val) {
- ObjectEntry *entry = new ObjectEntry();
- entry->type = ObjectEntry::FLOAT_ENTRY;
- entry->NumberVal = val;
- entry->name = name;
- children.push_back(entry);
- length = (int)children.size();
- return entry;
- }
- /**
- * Adds an empty child entry with an integer value.
- * @param name Lookup key for the object entry.
- * @param val Integer to set as value in the object entry.
- * @return The added object entry.
- */
- ObjectEntry *addChild(const String& name, int val) {
- ObjectEntry *entry = new ObjectEntry();
- entry->type = ObjectEntry::INT_ENTRY;
- entry->intVal = val;
- entry->name = name;
- children.push_back(entry);
- length = (int)children.size();
- return entry;
- }
-
- /**
- * Adds an empty child entry with a string value.
- * @param name Lookup key for the object entry.
- * @param val String to set as value in the object entry.
- * @return The added object entry.
- */
- ObjectEntry *addChild(const String& name, const String& val) {
- ObjectEntry *entry = new ObjectEntry();
- entry->type = ObjectEntry::STRING_ENTRY;
- entry->stringVal = val;
- entry->name = name;
- children.push_back(entry);
- length = (int)children.size();
- return entry;
- }
-
- /**
- * Adds an empty child entry with a string value.
- * @param name Lookup key for the object entry.
- * @param val String to set as value in the object entry.
- * @return The added object entry.
- */
- ObjectEntry *addChild(const String& name, const char *val) {
- ObjectEntry *entry = new ObjectEntry();
- entry->type = ObjectEntry::STRING_ENTRY;
- entry->stringVal = val;
- entry->name = name;
- children.push_back(entry);
- length = (int)children.size();
- return entry;
- }
-
- /**
- * Adds an empty child entry with a boolean value.
- * @param name Lookup key for the object entry.
- * @param val Boolean to set as value in the object entry.
- * @return The added object entry.
- */
- ObjectEntry *addChild(const String& name, bool val) {
- ObjectEntry *entry = new ObjectEntry();
- entry->type = ObjectEntry::BOOL_ENTRY;
- entry->boolVal = val;
- entry->name = name;
- children.push_back(entry);
- length = (int)children.size();
- return entry;
- }
-
- ObjectEntry *addChild(ObjectEntry *entry) {
- children.push_back(entry);
- length = (int)children.size();
- return entry;
- }
-
- String getTypedName() const;
- void setTypedName(const String &str);
-
- void Clear();
-
- static const int UNKNOWN_ENTRY = -1;
- static const int FLOAT_ENTRY = 0;
- static const int INT_ENTRY = 1;
- static const int BOOL_ENTRY = 2;
- static const int ARRAY_ENTRY = 3;
- static const int STRING_ENTRY = 4;
- static const int CONTAINER_ENTRY = 5;
- /**
- * Accesses an object entry as an array by an integer lookup.
- * @param index Lookup index to return value for.
- * @return Object entry corresponding to the lookup index or NULL if one doesn't exist.
- */
- inline ObjectEntry *operator [] ( int index) { return children[index];}
-
- /**
- * Accesses an object entry by a string lookup and returns the corresponding object entry.
- * @param key Lookup key to return value for.
- * @return Object entry corresponding to the string value or NULL if one doesn't exist.
- */
- inline ObjectEntry *operator [] ( const String& key) { for(int i=0; i < children.size(); i++) { if(children[i]->name == key) { return children[i]; } } return NULL; }
-
- std::vector<ObjectEntry*> children;
- };
-
- /**
- * Basic dictionary data object. Objects can store organized data and save and load it from disk. An object contains a hierarchy of ObjectEntry classes which hold the actual data.
- */
-
- class _PolyExport Object : public PolyBase {
- public:
- /**
- * Default constructor
- */
- Object();
- virtual ~Object();
-
- /**
- * Loads data from XML file into the object.
- * @param fileName Path to the XML file to load.
- * @return Returns true is succesful, false if otherwise.
- */
- bool loadFromXML(const String& fileName);
- /**
- * Loads data from XML string into the object.
- * @param xmlString XML data in a string.
- * @return Returns true is succesful, false if otherwise.
- */
- bool loadFromXMLString(const String &xmlString);
-
- /**
- * Saves the object to an XML file.
- * @param fileName Path to the XML file to save to.
- */
- void saveToXML(const String& fileName);
- /**
- * Saves the object to an optimized binary file
- * @param fileName Path to the file to save to.
- */
- void saveToBinary(const String& fileName);
- /**
- * Loads data from a binary file into the object.
- * @param fileName Path to the binary file to load.
- * @return Returns true is succesful, false if otherwise.
- */
- bool loadFromBinary(const String& fileName);
-
- void createFromXMLElement(TiXmlElement *element, ObjectEntry *entry);
- TiXmlElement *createElementFromObjectEntry(ObjectEntry *entry);
-
- /**
- * Root object entry.
- */
- ObjectEntry root;
-
- };
- class _PolyExport BinaryObjectReader : public PolyBase {
- public:
- BinaryObjectReader(const String& fileName, Object *object);
- ~BinaryObjectReader();
-
- bool success;
- protected:
-
- bool parseEntryFromFile(ObjectEntry *entry);
- String getKeyByIndex(unsigned int index);
-
- bool readFile();
-
- OSFILE *inFile;
- std::vector<String> keys;
- Object *object;
- };
-
- class _PolyExport BinaryObjectWriter : public PolyBase {
- public:
- BinaryObjectWriter(Object *object);
- ~BinaryObjectWriter();
-
- void parseKeysFromObjectEntry(ObjectEntry *entry);
- void writeEntryToFile(ObjectEntry *entry);
-
- unsigned int addKey(const String &key);
- unsigned int getKeyIndex(const String &key);
-
- bool writeToFile(const String& fileName);
-
- protected:
- OSFILE *outFile;
- int numEntriesWritten;
- std::vector<String> keys;
- Object *object;
- };
-
- }
|