summaryrefslogtreecommitdiff
path: root/zenxml
diff options
context:
space:
mode:
Diffstat (limited to 'zenxml')
-rw-r--r--zenxml/bind.h41
-rw-r--r--zenxml/cvrt_struc.h9
-rw-r--r--zenxml/cvrt_text.h29
-rw-r--r--zenxml/dom.h27
-rw-r--r--zenxml/error.h4
-rw-r--r--zenxml/io.h13
-rw-r--r--zenxml/parser.h129
-rw-r--r--zenxml/summary.dox174
-rw-r--r--zenxml/unit_test.cpp2
-rw-r--r--zenxml/xml.h4
10 files changed, 222 insertions, 210 deletions
diff --git a/zenxml/bind.h b/zenxml/bind.h
index b679af40..abeff452 100644
--- a/zenxml/bind.h
+++ b/zenxml/bind.h
@@ -1,5 +1,5 @@
// **************************************************************************
-// * This file is part of the zenXML project. It is distributed under the *
+// * This file is part of the zen::Xml project. It is distributed under the *
// * Boost Software License: http://www.boost.org/LICENSE_1_0.txt *
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
@@ -25,15 +25,15 @@ Convenience function that does nothing more than calling loadStream() and parse(
\tparam String Arbitrary string-like type: e.g. std::string, wchar_t*, char[], wchar_t, wxString, MyStringClass, ...
\param filename Input file name
-\param doc The XML document to load
+\returns The loaded XML document
\throw XmlFileError
\throw XmlParsingError
*/
template <class String> inline
-void load(const String& filename, XmlDoc& doc) //throw XmlFileError, XmlParsingError
+XmlDoc load(const String& filename) //throw XmlFileError, XmlParsingError
{
std::string stream = loadStream(filename); //throw XmlFileError
- parse(stream, doc); //throw XmlParsingError
+ return parse(stream); //throw XmlParsingError
}
@@ -69,9 +69,9 @@ public:
zen::XmlDoc doc;
zen::XmlOut out(doc);
- out["elem1"](value1); //
- out["elem2"](value2); //write data of variables "value1", "value2", "value3" into XML elements
- out["elem3"](value3); //
+ out["elem1"]( 1); //
+ out["elem2"]( 2); //write data into XML elements
+ out["elem3"](-3); //
save(doc, "out.xml"); //throw XmlFileError
\endcode
@@ -80,12 +80,12 @@ public:
<?xml version="1.0" encoding="UTF-8"?>
<Root>
<elem1>1</elem1>
- <elem2>2.000000</elem2>
+ <elem2>2</elem2>
<elem3>-3</elem3>
</Root>
\endverbatim
*/
- XmlOut(XmlDoc& doc) : ref_(&doc.root()) {}
+ XmlOut(XmlDoc& doc) : ref_(&doc.root()) {}
///Construct an output proxy for a single XML element
/**
\sa XmlOut(XmlDoc& doc)
@@ -121,9 +121,9 @@ public:
zen::XmlDoc doc;
zen::XmlOut out(doc);
- out["elem"].attribute("attr1", value1); //
- out["elem"].attribute("attr2", value2); //write data of variables "value1", "value2", "value3" into XML attributes
- out["elem"].attribute("attr3", value3); //
+ out["elem"].attribute("attr1", 1); //
+ out["elem"].attribute("attr2", 2); //write data into XML attributes
+ out["elem"].attribute("attr3", -3); //
save(doc, "out.xml"); //throw XmlFileError
\endcode
@@ -131,12 +131,12 @@ public:
\verbatim
<?xml version="1.0" encoding="UTF-8"?>
<Root>
- <elem attr1="1" attr2="2.000000" attr3="-3"/>
+ <elem attr1="1" attr2="2" attr3="-3"/>
</Root>
\endverbatim
\tparam String Arbitrary string-like type: e.g. std::string, wchar_t*, char[], wchar_t, wxString, MyStringClass, ...
- \tparam T User type that is converted into an XML attribute value.
+ \tparam T String-convertible user data type: e.g. any string-like type, all built-in arithmetic numbers
\sa XmlElement::setAttribute()
*/
template <class String, class T>
@@ -164,7 +164,7 @@ public:
... //load document
zen::XmlIn in(doc);
in["elem1"](value1); //
- in["elem2"](value2); //write data of XML elements into variables "value1", "value2", "value3"
+ in["elem2"](value2); //read data from XML elements into variables "value1", "value2", "value3"
in["elem3"](value3); //
\endcode
*/
@@ -182,7 +182,7 @@ public:
///Retrieve a handle to an XML child element for reading
/**
- It is \b not an error if the child element does not exist, but a subsequent conversion to user data will fail.
+ It is \b not an error if the child element does not exist, but only later if a conversion to user data is attempted.
\tparam String Arbitrary string-like type: e.g. std::string, wchar_t*, char[], wchar_t, wxString, MyStringClass, ...
\param name The name of the child element
*/
@@ -256,12 +256,13 @@ public:
... //load document
zen::XmlIn in(doc);
in["elem"].attribute("attr1", value1); //
- in["elem"].attribute("attr2", value2); //write data of XML attributes into variables "value1", "value2", "value3"
+ in["elem"].attribute("attr2", value2); //read data from XML attributes into variables "value1", "value2", "value3"
in["elem"].attribute("attr3", value3); //
\endcode
\tparam String Arbitrary string-like type: e.g. std::string, wchar_t*, char[], wchar_t, wxString, MyStringClass, ...
- \tparam T User type that is converted into an XML attribute value.
+ \tparam T String-convertible user data type: e.g. any string-like type, all built-in arithmetic numbers
+ \returns "true" if the attribute was found and the conversion to the output value was successful.
\sa XmlElement::getAttribute()
*/
template <class String, class T>
@@ -284,7 +285,7 @@ public:
///Return a pointer to the underlying Xml element, may be nullptr
const XmlElement* get() const { return refIndex < refList.size() ? refList[refIndex] : nullptr; }
- ///Test whether underlying XML element exists
+ ///Test whether the underlying XML element exists
/**
\code
XmlIn in(doc);
@@ -304,7 +305,7 @@ public:
XmlIn inItem = in["item1"];
int value = 0;
- inItem(value); //assume this conversion failed
+ inItem(value); //let's assume this conversion failed
assert(in.errorsOccured() == inItem.errorsOccured());
assert(in.getErrorsAs<std::string>() == inItem.getErrorsAs<std::string>());
diff --git a/zenxml/cvrt_struc.h b/zenxml/cvrt_struc.h
index b5340ec9..690edacb 100644
--- a/zenxml/cvrt_struc.h
+++ b/zenxml/cvrt_struc.h
@@ -1,5 +1,5 @@
// **************************************************************************
-// * This file is part of the zenXML project. It is distributed under the *
+// * This file is part of the zen::Xml project. It is distributed under the *
// * Boost Software License: http://www.boost.org/LICENSE_1_0.txt *
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
@@ -47,13 +47,6 @@ template <class T> void writeStruc(const T& value, XmlElement& output);
-
-
-
-
-
-
-
//------------------------------ implementation -------------------------------------
namespace impl_2384343
{
diff --git a/zenxml/cvrt_text.h b/zenxml/cvrt_text.h
index a70c0813..80664317 100644
--- a/zenxml/cvrt_text.h
+++ b/zenxml/cvrt_text.h
@@ -1,5 +1,5 @@
// **************************************************************************
-// * This file is part of the zenXML project. It is distributed under the *
+// * This file is part of the zen::Xml project. It is distributed under the *
// * Boost Software License: http://www.boost.org/LICENSE_1_0.txt *
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
@@ -75,15 +75,15 @@ template <class T> void writeText(const T& value, std::string& output);
/* Different classes of data types:
----------------------------
-| structured | readStruc/writeStruc - e.g. string-convertible types, STL containers, std::pair, structured user types
-| ---------------------- |
-| | string-convertible | | readText/writeText - e.g. string-like types, all built-in arithmetic numbers, bool
-| | --------------- | |
-| | | string-like | | | utfCvrtTo - e.g. std::string, wchar_t*, char[], wchar_t, wxString, MyStringClass, ...
-| | --------------- | |
-| ---------------------- |
----------------------------
+-----------------------------
+| structured | readStruc/writeStruc - e.g. string-convertible types, STL containers, std::pair, structured user types
+| ------------------------- |
+| | to-string-convertible | | readText/writeText - e.g. string-like types, all built-in arithmetic numbers, bool
+| | --------------- | |
+| | | string-like | | | utfCvrtTo - e.g. std::string, wchar_t*, char[], wchar_t, wxString, MyStringClass, ...
+| | --------------- | |
+| ------------------------- |
+-----------------------------
*/
@@ -100,13 +100,6 @@ template <class T> void writeText(const T& value, std::string& output);
-
-
-
-
-
-
-
//------------------------------ implementation -------------------------------------
//Conversion from arbitrary types to text (for use with XML elements and attributes)
@@ -196,7 +189,7 @@ struct ConvertText<T, TEXT_TYPE_OTHER>
//###########################################################################################################################################
assert_static(sizeof(T) == -1);
/*
- ATTENTION: The data type T is yet unknown to the zenXML framework!
+ ATTENTION: The data type T is yet unknown to the zen::Xml framework!
Please provide a specialization for T of the following two functions in order to handle conversions to XML elements and attributes
diff --git a/zenxml/dom.h b/zenxml/dom.h
index fbbd6fb0..a2ed78f7 100644
--- a/zenxml/dom.h
+++ b/zenxml/dom.h
@@ -1,5 +1,5 @@
// **************************************************************************
-// * This file is part of the zenXML project. It is distributed under the *
+// * This file is part of the zen::Xml project. It is distributed under the *
// * Boost Software License: http://www.boost.org/LICENSE_1_0.txt *
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
@@ -31,7 +31,7 @@ public:
///Retrieve the name of this XML element.
/**
\tparam String Arbitrary string class: e.g. std::string, std::wstring, wxString, MyStringClass, ...
- \returns Name of the XML element
+ \returns Name of the XML element.
*/
template <class String>
String getNameAs() const { return utfCvrtTo<String>(name_); }
@@ -79,7 +79,7 @@ public:
std::string attrValue;
writeText(value, attrValue);
attributes[utfCvrtTo<std::string>(name)] = attrValue;
- } //create or update
+ }
///Remove the attribute with the given name.
/**
@@ -98,7 +98,6 @@ public:
{
std::string utf8Name = utfCvrtTo<std::string>(name);
auto newElement = std::make_shared<XmlElement>(utf8Name, this, PrivateConstruction());
- //std::shared_ptr<XmlElement> newElement(new XmlElement(utf8Name, this));
childElements.push_back(newElement);
childElementsSorted.insert(std::make_pair(utf8Name, newElement));
return *newElement;
@@ -108,7 +107,7 @@ public:
/**
\tparam String Arbitrary string-like type: e.g. std::string, wchar_t*, char[], wchar_t, wxString, MyStringClass, ...
\param name The name of the child element to be retrieved.
- \return A pointer to the child element or nullptr if none was found
+ \return A pointer to the child element or nullptr if none was found.
*/
template <class String>
const XmlElement* getChild(const String& name) const
@@ -159,7 +158,7 @@ public:
[](const XmlElement& child) { ... });
\endcode
\param name The name of the child elements to be retrieved.
- \return A pair of STL begin/end iterators to access all child elements sequentially.
+ \return A pair of STL begin/end iterators to access the child elements sequentially.
*/
template <class String>
std::pair<ChildIterConst2, ChildIterConst2> getChildren(const String& name) const { return childElementsSorted.equal_range(utfCvrtTo<std::string>(name)); }
@@ -253,10 +252,13 @@ public:
///Default constructor setting up an empty XML document with a standard declaration: <?xml version="1.0" encoding="UTF-8" ?>
XmlDoc() : version_("1.0"), encoding_("UTF-8"), rootElement("Root", nullptr, XmlElement::PrivateConstruction()) {}
+ XmlDoc(XmlDoc&& tmp) : rootElement("Root", nullptr, XmlElement::PrivateConstruction()) { swap(tmp); }
+ XmlDoc& operator=(XmlDoc&& tmp) { swap(tmp); return *this; }
+
//Setup an empty XML document
/**
\tparam String Arbitrary string-like type: e.g. std::string, wchar_t*, char[], wchar_t, wxString, MyStringClass, ...
- \param rootName The name of the XML document's root element
+ \param rootName The name of the XML document's root element.
*/
template <class String>
XmlDoc(String rootName) : version_("1.0"), encoding_("UTF-8"), rootElement(rootName, nullptr, XmlElement::PrivateConstruction()) {}
@@ -308,8 +310,17 @@ public:
template <class String>
void setStandalone(const String& standalone) { standalone_ = utfCvrtTo<std::string>(standalone); }
+ //Transactionally swap two elements. -> disabled documentation extraction
+ void swap(XmlDoc& other)
+ {
+ version_ .swap(other.version_);
+ encoding_ .swap(other.encoding_);
+ standalone_.swap(other.standalone_);
+ rootElement.swap(other.rootElement);
+ }
+
private:
- XmlDoc(const XmlDoc&); //not implemented, thanks to XmlElement::parent_
+ XmlDoc(const XmlDoc&); //not implemented, thanks to XmlElement::parent_
XmlDoc& operator=(const XmlDoc&); //
std::string version_;
diff --git a/zenxml/error.h b/zenxml/error.h
index a90dd35a..bea04520 100644
--- a/zenxml/error.h
+++ b/zenxml/error.h
@@ -1,5 +1,5 @@
// **************************************************************************
-// * This file is part of the zenXML project. It is distributed under the *
+// * This file is part of the zen::Xml project. It is distributed under the *
// * Boost Software License: http://www.boost.org/LICENSE_1_0.txt *
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
@@ -9,7 +9,7 @@
namespace zen
{
-///Exception base class for zenXML
+///Exception base class for zen::Xml
struct XmlError
{
virtual ~XmlError() {}
diff --git a/zenxml/io.h b/zenxml/io.h
index 4286ae6c..596d7acf 100644
--- a/zenxml/io.h
+++ b/zenxml/io.h
@@ -1,5 +1,5 @@
// **************************************************************************
-// * This file is part of the zenXML project. It is distributed under the *
+// * This file is part of the zen::Xml project. It is distributed under the *
// * Boost Software License: http://www.boost.org/LICENSE_1_0.txt *
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
@@ -20,10 +20,11 @@ namespace zen
\brief Save and load byte streams from files
*/
-#if !defined(ZEN_PLATFORM_WINDOWS) && !defined(ZEN_PLATFORM_OTHER)
-#error Please specify your platform: #define ZEN_PLATFORM_WINDOWS or ZEN_PLATFORM_OTHER
+#if !defined(ZEN_WIN) && !defined(ZEN_LINUX) && !defined(ZEN_MAC)
+#error Please specify your platform: #define ZEN_WIN, ZEN_LINUX or ZEN_MAC
#endif
+
///Exception thrown due to failed file I/O
struct XmlFileError : public XmlError
{
@@ -35,7 +36,7 @@ struct XmlFileError : public XmlError
};
-#ifdef ZEN_PLATFORM_WINDOWS
+#ifdef ZEN_WIN
namespace implemenation //sad but true
{
template <class String> inline
@@ -64,7 +65,7 @@ FILE* fopen(const String& filename, const wchar_t* mode)
template <class String>
void saveStream(const std::string& stream, const String& filename) //throw XmlFileError
{
-#ifdef ZEN_PLATFORM_WINDOWS
+#ifdef ZEN_WIN
FILE* handle = implemenation::fopen(utfCvrtTo<std::wstring>(filename).c_str(), L"wb");
#else
FILE* handle = ::fopen(utfCvrtTo<std::string>(filename).c_str(), "w");
@@ -92,7 +93,7 @@ void saveStream(const std::string& stream, const String& filename) //throw XmlFi
template <class String>
std::string loadStream(const String& filename) //throw XmlFileError
{
-#ifdef ZEN_PLATFORM_WINDOWS
+#ifdef ZEN_WIN
FILE* handle = implemenation::fopen(utfCvrtTo<std::wstring>(filename).c_str(), L"rb");
#else
FILE* handle = ::fopen(utfCvrtTo<std::string>(filename).c_str(), "r");
diff --git a/zenxml/parser.h b/zenxml/parser.h
index be777a40..51779852 100644
--- a/zenxml/parser.h
+++ b/zenxml/parser.h
@@ -1,5 +1,5 @@
// **************************************************************************
-// * This file is part of the zenXML project. It is distributed under the *
+// * This file is part of the zen::Xml project. It is distributed under the *
// * Boost Software License: http://www.boost.org/LICENSE_1_0.txt *
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
@@ -35,9 +35,9 @@ std::string serialize(const XmlDoc& doc,
struct XmlParsingError : public XmlError
{
XmlParsingError(size_t rowNo, size_t colNo) : row(rowNo), col(colNo) {}
- ///Input file row where the parsing error occured
+ ///Input file row where the parsing error occured (zero-based)
size_t row; //beginning with 0
- ///Input file column where the parsing error occured
+ ///Input file column where the parsing error occured (zero-based)
size_t col; //
};
@@ -45,20 +45,10 @@ struct XmlParsingError : public XmlError
///Load XML document from a byte stream
/**
\param stream Input byte stream
-\param doc Output XML document
+\returns Output XML document
\throw XmlParsingError
*/
-void parse(const std::string& stream, XmlDoc& doc); //throw XmlParsingError
-
-
-
-
-
-
-
-
-
-
+XmlDoc parse(const std::string& stream); //throw XmlParsingError
@@ -169,6 +159,20 @@ std::string normalizeAttribValue(const std::string& str)
}
+template <class CharIterator, size_t N> inline
+bool checkEntity(CharIterator& first, CharIterator last, const char (&placeholder)[N])
+{
+ assert(placeholder[N - 1] == 0);
+ const ptrdiff_t strLen = N - 1; //don't count null-terminator
+ if (last - first >= strLen && std::equal(first, first + strLen, placeholder))
+ {
+ first += strLen - 1;
+ return true;
+ }
+ return false;
+}
+
+
namespace
{
std::string denormalize(const std::string& str)
@@ -180,42 +184,26 @@ std::string denormalize(const std::string& str)
if (c == '&')
{
- auto checkEntity = [&](const char* placeholder, char realVal) -> bool
+ if (checkEntity(it, str.end(), "&amp;"))
+ output += '&';
+ else if (checkEntity(it, str.end(), "&lt;"))
+ output += '<';
+ else if (checkEntity(it, str.end(), "&gt;"))
+ output += '>';
+ else if (checkEntity(it, str.end(), "&apos;"))
+ output += '\'';
+ else if (checkEntity(it, str.end(), "&quot;"))
+ output += '\"';
+ else if (str.end() - it >= 6 &&
+ it[1] == '#' &&
+ it[2] == 'x' &&
+ it[5] == ';')
{
- size_t strLen = strLength(placeholder);
-
- if (str.end() - it >= static_cast<int>(strLen) && std::equal(it, it + strLen, placeholder))
- {
- output += realVal;
- it += strLen - 1;
- return true;
- }
- return false;
- };
-
- if (checkEntity("&amp;", '&'))
- continue;
- if (checkEntity("&lt;", '<'))
- continue;
- if (checkEntity("&gt;", '>'))
- continue;
- if (checkEntity("&apos;", '\''))
- continue;
- if (checkEntity("&quot;", '\"'))
- continue;
-
- if (str.end() - it >= 6 &&
- it[1] == '#' &&
- it[2] == 'x' &&
- it[5] == ';')
- {
- output += unhexify(it[3], it[4]);
+ output += unhexify(it[3], it[4]); //unhexify beats "::sscanf(&it[3], "%02X", &tmp)" by a factor of 3000 for ~250000 calls!!!
it += 5;
- continue;
- //unhexify beats "::sscanf(&it[3], "%02X", &tmp)" by a factor of 3000 for ~250000 calls!!!
}
-
- output += c; //unexpected char!
+ else
+ output += c; //unexpected char!
}
else if (c == '\r') //map all end-of-line characters to \n http://www.w3.org/TR/xml/#sec-line-ends
{
@@ -245,7 +233,7 @@ void serialize(const XmlElement& element, std::string& stream,
auto attr = element.getAttributes();
for (auto it = attr.first; it != attr.second; ++it)
- stream += ' ' + normalizeName(it->first) + "=\"" + normalizeAttribValue(it->second) + "\"";
+ stream += ' ' + normalizeName(it->first) + "=\"" + normalizeAttribValue(it->second) + '\"';
//no support for mixed-mode content
auto iterPair = element.getChildren();
@@ -278,15 +266,15 @@ std::string serialize(const XmlDoc& doc,
{
std::string version = doc.getVersionAs<std::string>();
if (!version.empty())
- version = " version=\"" + normalizeAttribValue(version) + "\"";
+ version = " version=\"" + normalizeAttribValue(version) + '\"';
std::string encoding = doc.getEncodingAs<std::string>();
if (!encoding.empty())
- encoding = " encoding=\"" + normalizeAttribValue(encoding) + "\"";
+ encoding = " encoding=\"" + normalizeAttribValue(encoding) + '\"';
std::string standalone = doc.getStandaloneAs<std::string>();
if (!standalone.empty())
- standalone = " standalone=\"" + normalizeAttribValue(standalone) + "\"";
+ standalone = " standalone=\"" + normalizeAttribValue(standalone) + '\"';
std::string output = "<?xml" + version + encoding + standalone + "?>" + lineBreak;
serialize(doc.root(), output, lineBreak, indent, 0);
@@ -352,7 +340,11 @@ struct Token
class Scanner
{
public:
- Scanner(const std::string& stream) : stream_(stream), pos(stream_.begin())
+ Scanner(const std::string& stream) :
+ xmlCommentBegin("<!--"),
+ xmlCommentEnd ("-->"),
+ stream_(stream),
+ pos(stream_.begin())
{
if (zen::startsWith(stream_, BYTE_ORDER_MARK_UTF8))
pos += strLength(BYTE_ORDER_MARK_UTF8);
@@ -376,8 +368,19 @@ public:
if (pos == stream_.end())
return Token::TK_END;
+ //skip XML comments
+ if (startsWith(xmlCommentBegin))
+ {
+ auto it = std::search(pos + xmlCommentBegin.size(), stream_.end(), xmlCommentEnd.begin(), xmlCommentEnd.end());
+ if (it != stream_.end())
+ {
+ pos = it + xmlCommentEnd.size();
+ return nextToken();
+ }
+ }
+
for (auto it = tokens.begin(); it != tokens.end(); ++it)
- if (startsWith(pos, it->first))
+ if (startsWith(it->first))
{
pos += it->first.size();
return it->second;
@@ -455,16 +458,19 @@ private:
Scanner(const Scanner&);
Scanner& operator=(const Scanner&);
- bool startsWith(std::string::const_iterator it, const std::string& prefix) const
+ bool startsWith(const std::string& prefix) const
{
- if (stream_.end() - it < static_cast<ptrdiff_t>(prefix.size()))
+ if (stream_.end() - pos < static_cast<ptrdiff_t>(prefix.size()))
return false;
- return std::equal(prefix.begin(), prefix.end(), it);
+ return std::equal(prefix.begin(), prefix.end(), pos);
}
typedef std::vector<std::pair<std::string, Token::Type> > TokenList;
TokenList tokens;
+ const std::string xmlCommentBegin;
+ const std::string xmlCommentEnd;
+
const std::string stream_;
std::string::const_iterator pos;
};
@@ -477,8 +483,10 @@ public:
scn(stream),
tk(scn.nextToken()) {}
- void parse(XmlDoc& doc) //throw XmlParsingError
+ XmlDoc parse() //throw XmlParsingError
{
+ XmlDoc doc;
+
//declaration (optional)
if (token().type == Token::TK_DECL_BEGIN)
{
@@ -515,6 +523,7 @@ public:
doc.root().swap(*iterPair.first);
expectToken(Token::TK_END);
+ return doc;
};
private:
@@ -600,9 +609,9 @@ private:
}
inline
-void parse(const std::string& stream, XmlDoc& doc) //throw XmlParsingError
+XmlDoc parse(const std::string& stream) //throw XmlParsingError
{
- implementation::XmlParser(stream).parse(doc); //throw XmlParsingError
+ return implementation::XmlParser(stream).parse(); //throw XmlParsingError
}
}
diff --git a/zenxml/summary.dox b/zenxml/summary.dox
index 73a09bcd..abe0537d 100644
--- a/zenxml/summary.dox
+++ b/zenxml/summary.dox
@@ -1,5 +1,5 @@
// **************************************************************************
-// * This file is part of the zenXML project. It is distributed under the *
+// * This file is part of the zen::Xml project. It is distributed under the *
// * Boost Software License: http://www.boost.org/LICENSE_1_0.txt *
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
@@ -22,31 +22,34 @@
\section sec_Rationale Rationale
-zenXML is an XML library that enables serialization of structured user data in a convenient way.
-Using compile-time information gathered by techniques of template metaprogramming it minimizes the manual overhead required and frees the user from applying fundamental type conversions
-by himself. Basic data types such as \b all built-in arithmetic numbers, \b all kinds of string classes and "string-like" types, \b all types defined as STL containers are processed automatically.
-Thereby a large number of recurring problems is finally solved by the library:
+zen::Xml is an XML library serializing structured user data in a convenient way.
+Using compile-time information gathered by techniques of template metaprogramming it minimizes the manual overhead required and frees the user from implementing fundamental type conversions
+by himself. Basic data types such as
+- \b all built-in arithmetic numbers,
+- \b all kinds of string classes and "string-like" types,
+- \b all types defined as STL containers
+
+are handled automatically. Thereby a large number of recurring problems is solved by the library:
- generic number to string conversions
-- generic char to wchar_t conversions for custom string classes in a platform independent manner
-- serialization of STL container types
+- generic char to wchar_t conversions (UTF) for custom string classes in a platform independent manner
+- serialization of arbitrary STL container types
- simple integration: header-only, no extra dependencies, fully portable
-- support (but not enforce) wide characters everywhere: for file names, XML element names, attribute names, values, ...
-- integrate XML library with focus on elegance, minimal code size, flexibility and performance
-- nonintrusive API: allow for internationalization, fine-granular error handling, and custom file I/O
-- it's a toolkit, not a framework: different layers of software architecture offer, but do not enforce, specific programming models
+- support arbitrary string classes everywhere: for file names, XML element names, attribute names, values, ...
+- XML library built on C++11 with focus on elegance, minimal code size, flexibility and performance
+- easily extensible API: allow for internationalization, fine-granular error handling, and custom file I/O
The design follows the philosophy of the Loki library: \n
http://loki-lib.sourceforge.net/index.php?n=Main.Philosophy
\section sec_Quick_Start Quick Start
-1. Download zenXML: http://sourceforge.net/projects/zenxml
+1. Download zen::Xml: http://sourceforge.net/projects/zenxml
-2. Setup a preprocessor macro for your project to identify the platform (this is required for C-stream file IO only)
+2. Setup one of the following preprocessor macros for your project to identify the platform (this is only required if you use C-stream-based file IO)
\code
- ZEN_PLATFORM_WINDOWS
- or
- ZEN_PLATFORM_OTHER
+ ZEN_WIN
+ ZEN_LINUX
+ ZEN_MAC
\endcode
3. For optimal performance define this global macro in release build: (following convention of the <tt>assert</tt> macro)
@@ -70,7 +73,7 @@ int c = -1;
\code
zen::XmlDoc doc; //empty XML document
-zen::XmlOut out(doc); //fill the document via a data output proxy
+zen::XmlOut out(doc); //the simplest way to fill the document is to use a data output proxy
out["elem1"](a); //
out["elem2"](b); //map data types to XML elements
out["elem3"](c); //
@@ -102,23 +105,23 @@ try
}
catch (const zen::XmlError& e) { /* handle error */ }
-zen::XmlIn in(doc); //read document into user data via an input proxy
+zen::XmlIn in(doc); //the simplest way to read the document is to use a data input proxy
in["elem1"](a); //
in["elem2"](b); //map XML elements into user data
in["elem3"](c); //
-//check for mapping errors, i.e. missing elements or conversion errors: these MAY be considered warnings only
+//check for mapping errors, i.e. missing elements or conversion errors: you may consider these as warnings only
if (in.errorsOccured())
{
std::vector<std::wstring> failedElements = in.getErrorsAs<std::wstring>();
- /* show mapping errors */
+ /* generate error message showing the XML element names that failed to convert */
}
\endcode
\section sec_Supported_Platforms Supported Platforms
-zenXML is written in a platform independent manner and runs on any rudimentary C++11 compliant compiler.
+zen::Xml is written in a platform independent manner and runs on any rudimentary C++11 compliant compiler.
It has been tested successfully under:
- Windows:
@@ -126,12 +129,16 @@ It has been tested successfully under:
-# Visual C++ 2010 - 64 bit
-# MinGW: GCC 4.5.2 - 32 bit
-- Linux (Ubuntu):
+- Linux:
-# GCC 4.5.2 - 32 bit
-# GCC 4.5.2 - 64 bit
+- Mac OS X:
+ -# Clang 3.2 - 64 bit
+
<b>Note:</b> In order to enable C++11 features in GCC it is required to specify either of the following compiler options:
\verbatim
+-std=c++11
-std=c++0x
-std=gnu++0x
\endverbatim
@@ -139,7 +146,7 @@ It has been tested successfully under:
\section sec_Flexible_Programming_Model Flexible Programming Model
-Depending on what granularity of control is required in a particular application, zenXML allows the user to choose between full control or simplicity.
+Depending on what granularity of control is required in a particular application, zen::Xml allows the user to choose between full control or simplicity.
\n\n
The library is structured into the following parts, each of which can be used in isolation:
\n\n
@@ -161,29 +168,26 @@ The library is structured into the following parts, each of which can be used in
- Save an XML document to memory
\code
zen::XmlDoc doc;
- ...
+ ... //fill it
std::string stream = serialize(doc); //throw ()
+/* you now have a binary XML stream */
-/* have fun with stream */
-
-//default behavior - already available via zen::save()
saveStream(stream, "file.xml"); //throw XmlFileError
+//if all you need is to store XmlDoc in a file direcly you can use zen::save() instead
\endcode
- Load XML document from memory
\code
-/* get XML byte stream */
-//e.g. from a file - already available via zen::load()
+//get XML byte stream:
std::string stream = loadStream("file.xml"); //throw XmlFileError
zen::XmlDoc doc;
-//parse byte stream into an XML document
+//parse byte stream into an XML document:
parse(stream, doc); //throw XmlParsingError
-
-/* process XML document */
+//if all you need is to load an XmlDoc from a file you can use zen::load() directly
\endcode
-- Fine-granular error checking
+- Fine-granular error checking with the data input proxy
\code
zen::XmlIn in(doc);
//map XML elements into user data
@@ -194,20 +198,21 @@ if (!in["elem2"](b))
if (!in["elem3"](c))
throw MyCustomException();
-//if (in.errorsOccured()) ... <- not required anymore since each conversion was already checked
+//if (in.errorsOccured()) ... <- not required here: contains the same conversion errors checked manually before
\endcode
-- Document Object Model centered programming model
+- Access the Document Object Model directly (without input/output proxy)
\n\n
The full power of type conversions which is available via the input/output proxy classes zen::XmlIn and zen::XmlOut is also available for the document object model!
\code
using namespace zen;
+
XmlDoc doc;
XmlElement& child = doc.root().addChild("elem1");
child.setValue(1234);
-zen::save(doc, "file.xml"); //throw XmlFileError
+save(doc, "file.xml"); //throw XmlFileError
\endcode
\n
\code
@@ -221,17 +226,17 @@ if (child)
{
int value = -1;
if (!child->getValue(value))
- /* handle error */
+ ... //handle conversion error
}
else
- ...
+ ... //XML element not found
\endcode
\section sec_Structured_XML_element_access Structured XML element access
\code
-//write value into one deeply nested XML element - note the different types used seamlessly: char[], wchar_t[], char, wchar_t, int
+//write a value into one deeply nested XML element - note the different types used seamlessly: char[], wchar_t[], char, wchar_t, int
zen::XmlOut out(doc);
out["elemento1"][L"элемент2"][L"要素3"][L"στοιχείο4"]["elem5"][L"元素6"][L'元']['z'](-1234);
\endcode
@@ -284,16 +289,16 @@ The resulting XML:
\section sec_Automatic_conversion_built_in Automatic conversion for built-in arithmetic types
All built-in arithmetic types and <tt>bool</tt> are detected at compile time and a proper conversion is applied.
-Common conversions for integer-like types such as <tt>long</tt>, <tt>long long</tt>, <tt>__int64</tt> or <tt>size_t</tt> as well as floating point types are optimized for maximum performance.
+Common conversions for integer-like types such as <tt>int</tt>, <tt>long</tt>, <tt>long long</tt>, ect. as well as floating point types are optimized for maximum performance.
\code
zen::XmlOut out(doc);
-out["int"] (-1234);
-out["double"] (1.23);
-out["float"] (4.56f);
-out["usignlong"](1234UL);
-out["bool"] (false);
+out["int"] (-1234);
+out["double"](1.23);
+out["float"] (4.56f);
+out["ulong"] (1234UL);
+out["bool"] (false);
\endcode
The resulting XML:
@@ -301,9 +306,9 @@ The resulting XML:
<?xml version="1.0" encoding="UTF-8"?>
<Root>
<int>-1234</int>
- <double>1.230000</double>
- <float>4.560000</float>
- <usignlong>1234</usignlong>
+ <double>1.23</double>
+ <float>4.56</float>
+ <ulong>1234</ulong>
<bool>false</bool>
</Root>
\endverbatim
@@ -311,14 +316,14 @@ The resulting XML:
\section sec_Automatic_conversion_string Automatic conversion for string-like types
-The document object model of zenXML internally stores all names and values as a std::string. Consequently everything that is not a std::string but is "string-like" is converted automatically
-into a std::string representation. By default zenXML accepts all character arrays like <tt>char[]</tt>, <tt>wchar_t[]</tt>, <tt>char*</tt>, <tt>wchar_t*</tt>, single characters like
-<tt>char</tt>, <tt>wchar_t</tt>, standard string classes like <tt>std::string</tt>, <tt>std::wstring</tt> and user defined string classes.
+The document object model of zen::Xml internally stores all names and values as a std::string. Consequently everything that is not a std::string but is "string-like" is UTF-converted
+into a std::string representation. By default zen::Xml accepts all character arrays like <tt>char[]</tt>, <tt>wchar_t[]</tt>, <tt>char*</tt>, <tt>wchar_t*</tt>, single characters like
+<tt>char</tt>, <tt>wchar_t</tt>, standard string classes like <tt>std::string</tt>, <tt>std::wstring</tt> and user-defined string classes.
If the input string is based on <tt>char</tt>, it will simply be copied and thereby preserves any local encodings. If the input string is based on <tt>wchar_t</tt> it will
be converted to an UTF-8 encoded <tt>std::string</tt>. The correct <tt>wchar_t</tt> encoding of the system will be detected at compile time, for example UTF-16 on Windows,
-UTF-32 on certain Linux variants.
+UTF-32 on most Linux distributions.
-<b>Note:</b> User defined string classes are implicitly supported if they fulfill the following string concept by defining:
+<b>Note:</b> User-defined string classes are automatically supported if they fulfill the following <b>string concept</b> by defining:
-# A typedef named <tt>value_type</tt> for the underlying character type: must be \p char or \p wchar_t
-# A member function <tt>c_str()</tt> returning something that can be converted into a <tt>const value_type*</tt>
-# A member function <tt>length()</tt> returning the number of characters returned by <tt>c_str()</tt>
@@ -359,7 +364,7 @@ The resulting XML:
\section sec_Automatic_conversion_STL Automatic conversion for STL container types
-- User defined STL compatible types are implicitly supported if they fulfill the following container concept by defining:
+- User-defined STL compatible types are automatically supported if they fulfill the following <b>container concept</b> by defining:
-# A typedef named <tt>value_type</tt> for the underlying element type of the container
-# A typedef named <tt>iterator</tt> for a non-const iterator into the container
-# A typedef named <tt>const_iterator</tt> for a const iterator into the container
@@ -367,9 +372,10 @@ The resulting XML:
-# A member function <tt>begin()</tt> returning an iterator pointing to the first element in the container
-# A member function <tt>end()</tt> returning an iterator pointing just after the last element in the container
-# A member function <tt>insert()</tt> with the signature <tt>iterator insert(iterator position, const value_type& x)</tt>
+ -# A member function <tt>clear()</tt> removing all elements from the container
- In order to support combinations of user types and STL containers such as <tt>std::vector<MyType></tt> or <tt>std::vector<std::list<MyType>></tt> it is sufficient to
-integrate <tt>MyType</tt> into zenXML. \n
+only integrate <tt>MyType</tt> into zen::Xml. \n
See \ref sec_Support_user_defined
\code
@@ -403,8 +409,8 @@ The resulting XML:
<?xml version="1.0" encoding="UTF-8"?>
<Root>
<deque>
- <Item>1.234000</Item>
- <Item>5.678000</Item>
+ <Item>1.234</Item>
+ <Item>5.678</Item>
</deque>
<list>
<Item>1</Item>
@@ -412,26 +418,26 @@ The resulting XML:
</list>
<map>
<Item>
- <one>1.100000</one>
+ <one>1.1</one>
<two>a</two>
</Item>
<Item>
- <one>2.200000</one>
+ <one>2.2</one>
<two>b</two>
</Item>
</map>
<multimap>
<Item>
<one>3</one>
- <two>99.000000</two>
+ <two>99</two>
</Item>
<Item>
<one>3</one>
- <two>100.000000</two>
+ <two>100</two>
</Item>
<Item>
<one>4</one>
- <two>101.000000</two>
+ <two>101</two>
</Item>
</multimap>
<set>
@@ -467,9 +473,9 @@ The resulting XML:
\endverbatim
-\section sec_Support_user_defined Support for user defined types
+\section sec_Support_user_defined Support for user-defined types
-User types can be integrated into zenXML by providing specializations of zen::readText() and zen::writeText() or zen::readStruc() and zen::writeStruc().
+User types can be integrated into zen::Xml by providing specializations of zen::readText() and zen::writeText() or zen::readStruc() and zen::writeStruc().
The first pair should be used for all non-structured types that can be represented as a simple text string. This specialization is then used to convert the type to XML elements
and XML attributes. The second pair should be specialized for structured types that require an XML representation as a hierarchy of elements. This specialization is used when converting
the type to XML elements only.
@@ -523,13 +529,13 @@ namespace zen
template <> inline
void writeText(const EnumType& value, std::string& output)
{
- output = zen::toString<std::string>(value); //treat enum as an integer
+ output = zen::numberTo<std::string>(static_cast<int>(value)); //treat enum like an integer
}
template <> inline
bool readText(const std::string& input, EnumType& value)
{
- value = static_cast<EnumType>(zen::toNumber<int>(input)); //treat enum as an integer
+ value = static_cast<EnumType>(zen::stringTo<int>(input)); //treat enum like an integer
return true;
}
}
@@ -565,14 +571,13 @@ bool readStruc(const XmlElement& input, Config& value)
int main()
{
- Config cfg;
- cfg.a = 2;
- ...
+ Config cfg = { 2, L"Abc 3" };
+
std::vector<Config> cfgList;
cfgList.push_back(cfg);
zen::XmlDoc doc;
- zen::XmlOut out(doc);
+ zen::XmlOut out(doc); //write to Xml via output proxy
out["config"](cfgList);
save(doc, "file.xml"); //throw XmlFileError
}
@@ -595,7 +600,7 @@ The resulting XML:
\section sec_Structured_user_types Structured user types
Although it is possible to enable conversion of structured user types by specializing zen::readStruc() and zen::writeStruc() (see \ref sec_Support_user_defined),
-this approach has one drawback: If a mapping error occurs when converting an XML element to structured user data, like one child-element is missing,
+this approach has one drawback: If a mapping error occurs when converting an XML element to structured user data, for example a child-element is missing,
the input proxy class zen::XmlIn is only able to detect that the whole conversion failed. It cannot say which child-elements in particular failed to convert.
\n\n
Therefore it may be appropriate to convert structured types by calling subroutines in order to enable fine-granular logging:
@@ -603,13 +608,12 @@ Therefore it may be appropriate to convert structured types by calling subroutin
\code
void readConfig(const zen::XmlIn& in, Config& cfg)
{
- in["number" ](value.a); //failed conversion will now be logged for each single item by XmlIn
- in["address"](value.b); //instead of once for the complete Config type!
+ in["number" ](value.a); //failed conversions will now be logged for each single item by XmlIn
+ in["address"](value.b); //instead of only once for the complete Config type!
}
-\endcode
-\n
-\code
-void readConfig(const wxString& filename, Config& cfg)
+
+
+void loadConfig(const wxString& filename, Config& cfg)
{
zen::XmlDoc doc; //empty XML document
@@ -634,8 +638,8 @@ void readConfig(const wxString& filename, Config& cfg)
\section sec_Type_Safety Type Safety
-zenXML heavily utilizes methods of compile-time introspection in order to free the user from managing basic type conversions by himself.
-Thereby it is important to find the right balance between automatic conversions and type safety so that program correctness is not compromized.
+zen::Xml heavily uses methods of compile-time introspection in order to free the user from managing basic type conversions by himself.
+Thereby it is important to find the right balance between automatic conversions and type safety so that program correctness is not compromised.
In the context of XML processing three fundamental type categories can be recognized:
- <b>string-like types</b>: <tt>std::string, wchar_t*, char[], wchar_t, wxString, MyStringClass, ...</tt>
@@ -663,15 +667,15 @@ out[1234](someValue); //compiler error: an integer is NOT "string-like"!
\endcode
\n
\code
-int valInt = 0;
-std::vector<int> valVec;
+int i = 0;
+std::vector<int> v;
zen::XmlOut out(doc);
-out["elem1"](valInt); //fine: both valInt and valVec can be converted to an XML element
-out["elem2"](valVec); //
+out["elem1"](i); //fine: both i and v can be converted to an XML element
+out["elem2"](v); //
-out["elem"].attribute("attr1", valInt); //fine: an integer can be converted to an XML attribute
-out["elem"].attribute("attr2", valVec); //compiler error: a std::vector<int> is NOT "to-string-convertible"!
+out["elem"].attribute("attr1", i); //fine: an integer can be converted to an XML attribute
+out["elem"].attribute("attr2", v); //compiler error: a std::vector<int> is NOT "to-string-convertible"!
\endcode
\author \b Zenju
diff --git a/zenxml/unit_test.cpp b/zenxml/unit_test.cpp
index a671c9ee..8f49de6f 100644
--- a/zenxml/unit_test.cpp
+++ b/zenxml/unit_test.cpp
@@ -1,5 +1,5 @@
// **************************************************************************
-// * This file is part of the zenXML project. It is distributed under the *
+// * This file is part of the zen::Xml project. It is distributed under the *
// * Boost Software License: http://www.boost.org/LICENSE_1_0.txt *
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
diff --git a/zenxml/xml.h b/zenxml/xml.h
index 0fd954ae..3a01b1a1 100644
--- a/zenxml/xml.h
+++ b/zenxml/xml.h
@@ -1,5 +1,5 @@
// **************************************************************************
-// * This file is part of the zenXML project. It is distributed under the *
+// * This file is part of the zen::Xml project. It is distributed under the *
// * Boost Software License: http://www.boost.org/LICENSE_1_0.txt *
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
@@ -9,7 +9,7 @@
#include "bind.h"
-/// The zenXML namespace
+/// The zen::Xml namespace
namespace zen {}
#endif //ZEN_XML_HEADER_349578228034572457454554 \ No newline at end of file
bgstack15