Merge pull request #812 from mgsergio/update-pugi-xml
update pugixml to version 1.7
6
3party/pugixml/README.md
Normal file → Executable file
|
@ -1,4 +1,4 @@
|
|||
pugixml [](https://travis-ci.org/zeux/pugixml)
|
||||
pugixml [](https://travis-ci.org/zeux/pugixml) [](https://ci.appveyor.com/project/zeux/pugixml) [](http://codecov.io/github/zeux/pugixml?branch=master)
|
||||
=======
|
||||
|
||||
pugixml is a C++ XML processing library, which consists of a DOM-like interface with rich traversal/modification
|
||||
|
@ -12,8 +12,8 @@ pugixml is used by a lot of projects, both open-source and proprietary, for perf
|
|||
|
||||
Documentation for the current release of pugixml is available on-line as two separate documents:
|
||||
|
||||
* [Quick-start guide](http://cdn.rawgit.com/zeux/pugixml/v1.5/docs/quickstart.html), that aims to provide enough information to start using the library;
|
||||
* [Complete reference manual](http://cdn.rawgit.com/zeux/pugixml/v1.5/docs/manual.html), that describes all features of the library in detail.
|
||||
* [Quick-start guide](http://pugixml.org/docs/quickstart.html), that aims to provide enough information to start using the library;
|
||||
* [Complete reference manual](http://pugixml.org/docs/manual.html), that describes all features of the library in detail.
|
||||
|
||||
You’re advised to start with the quick-start guide; however, many important library features are either not described in it at all or only mentioned briefly; if you require more information you should read the complete manual.
|
||||
|
||||
|
|
0
3party/pugixml/contrib/foreach.hpp
Normal file → Executable file
0
3party/pugixml/docs/config.adoc
Normal file → Executable file
0
3party/pugixml/docs/images/dom_tree.png
Normal file → Executable file
Before Width: | Height: | Size: 8 KiB After Width: | Height: | Size: 8 KiB |
0
3party/pugixml/docs/images/vs2005_link1.png
Normal file → Executable file
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
0
3party/pugixml/docs/images/vs2005_link2.png
Normal file → Executable file
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
0
3party/pugixml/docs/images/vs2005_pch1.png
Normal file → Executable file
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
0
3party/pugixml/docs/images/vs2005_pch2.png
Normal file → Executable file
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
0
3party/pugixml/docs/images/vs2005_pch3.png
Normal file → Executable file
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
0
3party/pugixml/docs/images/vs2005_pch4.png
Normal file → Executable file
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
0
3party/pugixml/docs/images/vs2010_link1.png
Normal file → Executable file
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
0
3party/pugixml/docs/images/vs2010_link2.png
Normal file → Executable file
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
206
3party/pugixml/docs/manual.adoc
Normal file → Executable file
|
@ -38,7 +38,7 @@ Thanks to *Neville Franks* for contributions to pugxml parser.
|
|||
|
||||
Thanks to *Artyom Palvelev* for suggesting a lazy gap contraction approach.
|
||||
|
||||
Thanks to *Vyacheslav Egorov* for documentation proofreading.
|
||||
Thanks to *Vyacheslav Egorov* for documentation proofreading and fuzz testing.
|
||||
|
||||
[[overview.license]]
|
||||
=== License
|
||||
|
@ -71,7 +71,7 @@ OTHER DEALINGS IN THE SOFTWARE.
|
|||
....
|
||||
|
||||
This means that you can freely use pugixml in your applications, both open-source and proprietary. If you use pugixml in a product, it is sufficient to add an acknowledgment like this to the product distribution:
|
||||
|
||||
|
||||
....
|
||||
This software is based on pugixml library (http://pugixml.org).
|
||||
pugixml is Copyright (C) 2006-2015 Arseny Kapoulkine.
|
||||
|
@ -126,13 +126,25 @@ You can access the Git repository via Subversion using https://github.com/zeux/p
|
|||
svn checkout https://github.com/zeux/pugixml/tags/v{version} pugixml
|
||||
----
|
||||
|
||||
[[install.getting.packages]]
|
||||
==== Packages
|
||||
|
||||
pugixml is available as a package via various package managers. Note that most packages are maintained separately from the main repository so they do not necessarily contain the latest version.
|
||||
|
||||
Here's an incomplete list of pugixml packages in various systems:
|
||||
|
||||
* Linux (http://packages.ubuntu.com/search?keywords=pugixml[Ubuntu], https://tracker.debian.org/pkg/pugixml[Debian], https://apps.fedoraproject.org/packages/pugixml[Fedora], https://aur.archlinux.org/packages/pugixml/[Arch Linux], other http://pkgs.org/search/pugixml[distributions])
|
||||
* http://fbsdmon.org/ports/textproc/pugixml[FreeBSD]
|
||||
* OSX, via http://brewformulas.org/Pugixml[Homebrew]
|
||||
* Windows, via https://www.nuget.org/packages/pugixml/[NuGet]
|
||||
|
||||
[[install.building]]
|
||||
=== Building pugixml
|
||||
|
||||
pugixml is distributed in source form without any pre-built binaries; you have to build them yourself.
|
||||
|
||||
|
||||
The complete pugixml source consists of three files - one source file, `pugixml.cpp`, and two header files, `pugixml.hpp` and `pugiconfig.hpp`. `pugixml.hpp` is the primary header which you need to include in order to use pugixml classes/functions; `pugiconfig.hpp` is a supplementary configuration file (see <<install.building.config>>). The rest of this guide assumes that `pugixml.hpp` is either in the current directory or in one of include directories of your projects, so that `#include "pugixml.hpp"` can find the header; however you can also use relative path (i.e. `#include "../libs/pugixml/src/pugixml.hpp"`) or include directory-relative path (i.e. `#include <xml/thirdparty/pugixml/src/pugixml.hpp>`).
|
||||
|
||||
|
||||
[[install.building.embed]]
|
||||
==== Building pugixml as a part of another static library/executable
|
||||
|
||||
|
@ -153,11 +165,11 @@ The correct way to resolve this is to disable precompiled headers for `pugixml.c
|
|||
| image::vs2005_pch3.png[link="images/vs2005_pch3.png"]
|
||||
| image::vs2005_pch4.png[link="images/vs2005_pch4.png"]
|
||||
|===
|
||||
|
||||
|
||||
[[install.building.static]]
|
||||
==== Building pugixml as a standalone static library
|
||||
|
||||
It's possible to compile pugixml as a standalone static library. This process depends on the method of building your application; pugixml distribution comes with project files for several popular IDEs/build systems. There are project files for Apple XCode, Code::Blocks, Codelite, Microsoft Visual Studio 2005, 2008, 2010+, and configuration scripts for CMake and premake4. You're welcome to submit project files/build scripts for other software; see <<overview.feedback>>.
|
||||
|
||||
It's possible to compile pugixml as a standalone static library. This process depends on the method of building your application; pugixml distribution comes with project files for several popular IDEs/build systems. There are project files for Apple XCode, Code::Blocks, Codelite, Microsoft Visual Studio 2005, 2008, 2010+, and configuration scripts for CMake and premake4. You're welcome to submit project files/build scripts for other software; see <<overview.feedback>>.
|
||||
|
||||
There are two projects for each version of Microsoft Visual Studio: one for dynamically linked CRT, which has a name like `pugixml_vs2008.vcproj`, and another one for statically linked CRT, which has a name like `pugixml_vs2008_static.vcproj`. You should select the version that matches the CRT used in your application; the default option for new projects created by Microsoft Visual Studio is dynamically linked CRT, so unless you changed the defaults, you should use the version with dynamic CRT (i.e. `pugixml_vs2008.vcproj` for Microsoft Visual Studio 2008).
|
||||
|
||||
|
@ -175,7 +187,7 @@ In addition to adding pugixml project to your workspace, you'll have to make sur
|
|||
|
||||
[[install.building.shared]]
|
||||
==== Building pugixml as a standalone shared library
|
||||
|
||||
|
||||
It's possible to compile pugixml as a standalone shared library. The process is usually similar to the static library approach; however, no preconfigured projects/scripts are included into pugixml distribution, so you'll have to do it yourself. Generally, if you're using GCC-based toolchain, the process does not differ from building any other library as DLL (adding -shared to compilation flags should suffice); if you're using MSVC-based toolchain, you'll have to explicitly mark exported symbols with a declspec attribute. You can do it by defining <<PUGIXML_API,PUGIXML_API>> macro, i.e. via `pugiconfig.hpp`:
|
||||
|
||||
[source]
|
||||
|
@ -216,6 +228,8 @@ pugixml uses several defines to control the compilation process. There are two w
|
|||
|
||||
[[PUGIXML_WCHAR_MODE]]`PUGIXML_WCHAR_MODE` define toggles between UTF-8 style interface (the in-memory text encoding is assumed to be UTF-8, most functions use `char` as character type) and UTF-16/32 style interface (the in-memory text encoding is assumed to be UTF-16/32, depending on `wchar_t` size, most functions use `wchar_t` as character type). See <<dom.unicode>> for more details.
|
||||
|
||||
[[PUGIXML_COMPACT]]`PUGIXML_COMPACT` define activates a different internal representation of document storage that is much more memory efficient for documents with a lot of markup (i.e. nodes and attributes), but is slightly slower to parse and access. For details see <<dom.memory.compact>>.
|
||||
|
||||
[[PUGIXML_NO_XPATH]]`PUGIXML_NO_XPATH` define disables XPath. Both XPath interfaces and XPath implementation are excluded from compilation. This option is provided in case you do not need XPath functionality and need to save code space.
|
||||
|
||||
[[PUGIXML_NO_STL]]`PUGIXML_NO_STL` define disables use of STL in pugixml. The functions that operate on STL types are no longer present (i.e. load/save via iostream) if this macro is defined. This option is provided in case your target platform does not have a standard-compliant STL implementation.
|
||||
|
@ -229,29 +243,19 @@ NOTE: In that example `PUGIXML_API` is inconsistent between several source files
|
|||
[[PUGIXML_MEMORY_PAGE_SIZE]]`PUGIXML_MEMORY_PAGE_SIZE`, [[PUGIXML_MEMORY_OUTPUT_STACK]]`PUGIXML_MEMORY_OUTPUT_STACK` and [[PUGIXML_MEMORY_XPATH_PAGE_SIZE]]`PUGIXML_MEMORY_XPATH_PAGE_SIZE` can be used to customize certain important sizes to optimize memory usage for the application-specific patterns. For details see <<dom.memory.tuning>>.
|
||||
|
||||
[[PUGIXML_HAS_LONG_LONG]]`PUGIXML_HAS_LONG_LONG` define enables support for `long long` type in pugixml. This define is automatically enabled if your platform is known to have `long long` support (i.e. has C{plus}{plus}11 support or uses a reasonably modern version of a known compiler); if pugixml does not recognize that your platform supports `long long` but in fact it does, you can enable the define manually.
|
||||
|
||||
|
||||
[[install.portability]]
|
||||
=== Portability
|
||||
|
||||
pugixml is written in standard-compliant C{plus}{plus} with some compiler-specific workarounds where appropriate. pugixml is compatible with the C{plus}{plus}11 standard, but does not require C{plus}{plus}11 support. Each version is tested with a unit test suite (with code coverage about 99%) on the following platforms:
|
||||
pugixml is written in standard-compliant C{plus}{plus} with some compiler-specific workarounds where appropriate. pugixml is compatible with the C{plus}{plus}11 standard, but does not require C{plus}{plus}11 support. Each version is tested with a unit test suite with code coverage exceeding 99%.
|
||||
|
||||
* Microsoft Windows:
|
||||
** Borland C{plus}{plus} Compiler 5.82
|
||||
** Digital Mars C{plus}{plus} Compiler 8.51
|
||||
** Intel C{plus}{plus} Compiler 8.0, 9.0 x86/x64, 10.0 x86/x64, 11.0 x86/x64
|
||||
** Metrowerks CodeWarrior 8.0
|
||||
** Microsoft Visual C{plus}{plus} 6.0, 7.0 (2002), 7.1 (2003), 8.0 (2005) x86/x64, 9.0 (2008) x86/x64, 10.0 (2010) x86/x64, 11.0 (2011) x86/x64/ARM, 12.0 (2013) x86/x64/ARM and some CLR versions
|
||||
** MinGW (GCC) 3.4, 4.4, 4.5, 4.6 x64
|
||||
pugixml runs on a variety of desktop platforms (including Microsoft Windows, Linux, FreeBSD, Apple MacOSX and Sun Solaris), game consoles (inclusing Microsoft Xbox 360, Microsoft Xbox One, Nintendo Wii, Sony Playstation Portable and Sony Playstation 3) and mobile platforms (including Android, iOS, BlackBerry, Samsung bada and Microsoft Windows CE).
|
||||
|
||||
* Linux (GCC 4.4.3 x86/x64, GCC 4.8.1 x64, Clang 3.2 x64)
|
||||
* FreeBSD (GCC 4.2.1 x86/x64)
|
||||
* Apple MacOSX (GCC 4.0.1 x86/x64/PowerPC, Clang 3.5 x64)
|
||||
* Sun Solaris (sunCC x86/x64)
|
||||
* Microsoft Xbox 360
|
||||
* Nintendo Wii (Metrowerks CodeWarrior 4.1)
|
||||
* Sony Playstation Portable (GCC 3.4.2)
|
||||
* Sony Playstation 3 (GCC 4.1.1, SNC 310.1)
|
||||
* Various portable platforms (Android NDK, BlackBerry NDK, Samsung bada, Windows CE)
|
||||
pugixml supports various architectures, such as x86/x86-64, PowerPC, ARM, MIPS and SPARC. In general it should run on any architecture since it does not use architecture-specific code and does not rely on features such as unaligned memory access.
|
||||
|
||||
pugixml can be compiled using any C++ compiler; it was tested with all versions of Microsoft Visual C{plus}{plus} from 6.0 up to 2015, GCC from 3.4 up to 5.2, Clang from 3.2 up to 3.7, as well as a variety of other compilers (e.g. Borland C{plus}{plus}, Digital Mars C{plus}{plus}, Intel C{plus}{plus}, Metrowerks CodeWarrior and PathScale). The code is written to avoid compilation warnings even on reasonably high warning levels.
|
||||
|
||||
Note that some platforms may have very bare-bones support of C++; in some cases you'll have to use `PUGIXML_NO_STL` and/or `PUGIXML_NO_EXCEPTIONS` to compile without issues. This mostly applies to old game consoles and embedded systems.
|
||||
|
||||
[[dom]]
|
||||
== Document object model
|
||||
|
@ -287,7 +291,7 @@ Here `"node"` element has three children, two of which are PCDATA nodes with val
|
|||
* Character data nodes ([[node_cdata]]`node_cdata`) represent text in XML that is quoted in a special way. CDATA nodes do not differ from PCDATA nodes except in XML representation - the above text example looks like this with CDATA:
|
||||
+
|
||||
----
|
||||
<node> <![CDATA[[text1]]> <child/> <![CDATA[[text2]]> </node>
|
||||
<node> <![CDATA[text1]]> <child/> <![CDATA[text2]]> </node>
|
||||
----
|
||||
+
|
||||
CDATA nodes make it easy to include non-escaped `<`, `&` and `>` characters in plain text. CDATA value can not contain the character sequence `]]>`, since it is used to determine the end of node contents.
|
||||
|
@ -379,7 +383,7 @@ Both `xml_node` and `xml_attribute` have the default constructor which initializ
|
|||
`xml_node` and `xml_attribute` try to behave like pointers, that is, they can be compared with other objects of the same type, making it possible to use them as keys in associative containers. All handles to the same underlying object are equal, and any two handles to different underlying objects are not equal. Null handles only compare as equal to themselves. The result of relational comparison can not be reliably determined from the order of nodes in file or in any other way. Do not use relational comparison operators except for search optimization (i.e. associative container keys).
|
||||
|
||||
[[xml_attribute::hash_value]][[xml_node::hash_value]]
|
||||
If you want to use `xml_node` or `xml_attribute` objects as keys in hash-based associative containers, you can use the `hash_value` member functions. They return the hash values that are guaranteed to be the same for all handles to the same underlying object. The hash value for null handles is 0.
|
||||
If you want to use `xml_node` or `xml_attribute` objects as keys in hash-based associative containers, you can use the `hash_value` member functions. They return the hash values that are guaranteed to be the same for all handles to the same underlying object. The hash value for null handles is 0. Note that hash value does not depend on the content of the node, only on the location of the underlying structure in memory - this means that loading the same document twice will likely produce different hash values, and copying the node will not preserve the hash.
|
||||
|
||||
[[xml_attribute::unspecified_bool_type]][[xml_node::unspecified_bool_type]][[xml_attribute::empty]][[xml_node::empty]]
|
||||
Finally handles can be implicitly cast to boolean-like objects, so that you can test if the node/attribute is empty with the following code: `if (node) { ... }` or `if (!node) { ... } else { ... }`. Alternatively you can check if a given `xml_node`/`xml_attribute` handle is null by calling the following methods:
|
||||
|
@ -418,7 +422,7 @@ bool xml_node::set_name(const wchar_t* value);
|
|||
[[char_t]][[string_t]]
|
||||
There is a special type, `pugi::char_t`, that is defined as the character type and depends on the library configuration; it will be also used in the documentation hereafter. There is also a type `pugi::string_t`, which is defined as the STL string of the character type; it corresponds to `std::string` in char mode and to `std::wstring` in wchar_t mode.
|
||||
|
||||
In addition to the interface, the internal implementation changes to store XML data as `pugi::char_t`; this means that these two modes have different memory usage characteristics. The conversion to `pugi::char_t` upon document loading and from `pugi::char_t` upon document saving happen automatically, which also carries minor performance penalty. The general advice however is to select the character mode based on usage scenario, i.e. if UTF-8 is inconvenient to process and most of your XML data is non-ASCII, wchar_t mode is probably a better choice.
|
||||
In addition to the interface, the internal implementation changes to store XML data as `pugi::char_t`; this means that these two modes have different memory usage characteristics - generally UTF-8 mode is more memory and performance efficient, especially if `sizeof(wchar_t)` is 4. The conversion to `pugi::char_t` upon document loading and from `pugi::char_t` upon document saving happen automatically, which also carries minor performance penalty. The general advice however is to select the character mode based on usage scenario, i.e. if UTF-8 is inconvenient to process and most of your XML data is non-ASCII, wchar_t mode is probably a better choice.
|
||||
|
||||
[[as_utf8]][[as_wide]]
|
||||
There are cases when you'll have to convert string data between UTF-8 and wchar_t encodings; the following helper functions are provided for such purposes:
|
||||
|
@ -447,7 +451,7 @@ you'll have to use
|
|||
|
||||
`xml_node node = doc.child(L"bookstore").find_child_by_attribute(L"book", L"id", L"12345");`
|
||||
====
|
||||
|
||||
|
||||
[[dom.thread]]
|
||||
=== Thread-safety guarantees
|
||||
|
||||
|
@ -497,7 +501,7 @@ allocation_function get_memory_allocation_function();
|
|||
deallocation_function get_memory_deallocation_function();
|
||||
----
|
||||
|
||||
Allocation function is called with the size (in bytes) as an argument and should return a pointer to a memory block with alignment that is suitable for storage of primitive types (usually a maximum of `void*` and `double` types alignment is sufficient) and size that is greater than or equal to the requested one. If the allocation fails, the function has to return null pointer (throwing an exception from allocation function results in undefined behavior).
|
||||
Allocation function is called with the size (in bytes) as an argument and should return a pointer to a memory block with alignment that is suitable for storage of primitive types (usually a maximum of `void*` and `double` types alignment is sufficient) and size that is greater than or equal to the requested one. If the allocation fails, the function has to either return null pointer or to throw an exception.
|
||||
|
||||
Deallocation function is called with the pointer that was returned by some call to allocation function; it is never called with a null pointer. If memory management functions are not thread-safe, library thread safety is not guaranteed.
|
||||
|
||||
|
@ -505,11 +509,11 @@ This is a simple example of custom memory management (link:samples/custom_memory
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/custom_memory_management.cpp[tags=decl]
|
||||
include::samples/custom_memory_management.cpp[tags=decl]
|
||||
----
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/custom_memory_management.cpp[tags=call]
|
||||
include::samples/custom_memory_management.cpp[tags=call]
|
||||
----
|
||||
|
||||
When setting new memory management functions, care must be taken to make sure that there are no live pugixml objects. Otherwise when the objects are destroyed, the new deallocation function will be called with the memory obtained by the old allocation function, resulting in undefined behavior.
|
||||
|
@ -536,6 +540,17 @@ When the document is loaded from file/buffer, unless an inplace loading function
|
|||
|
||||
All additional memory, such as memory for document structure (node/attribute objects) and memory for node/attribute names/values is allocated in pages on the order of 32 Kb; actual objects are allocated inside the pages using a memory management scheme optimized for fast allocation/deallocation of many small objects. Because of the scheme specifics, the pages are only destroyed if all objects inside them are destroyed; also, generally destroying an object does not mean that subsequent object creation will reuse the same memory. This means that it is possible to devise a usage scheme which will lead to higher memory usage than expected; one example is adding a lot of nodes, and them removing all even numbered ones; not a single page is reclaimed in the process. However this is an example specifically crafted to produce unsatisfying behavior; in all practical usage scenarios the memory consumption is less than that of a general-purpose allocator because allocation meta-data is very small in size.
|
||||
|
||||
[[dom.memory.compact]]
|
||||
==== Compact mode
|
||||
|
||||
By default nodes and attributes are optimized for efficiency of access. This can cause them to take a significant amount of memory - for documents with a lot of nodes and not a lot of contents (short attribute values/node text), and depending on the pointer size, the document structure can take noticeably more memory than the document itself (e.g. on a 64-bit platform in UTF-8 mode a markup-heavy document with the file size of 2.1 Mb can use 2.1 Mb for document buffer and 8.3 Mb for document structure).
|
||||
|
||||
If you are processing big documents or your platform is memory constrained and you're willing to sacrifice a bit of performance for memory, you can compile pugixml with `PUGIXML_COMPACT` define which will activate compact mode. Compact mode uses a different representation of the document structure that assumes locality of reference between nodes and attributes to optimize memory usage. As a result you get significantly smaller node/attribute objects; usually most objects in most documents don't require additional storage, but in the worst case - if assumptions about locality of reference don't hold - additional memory will be allocated to store the extra data required.
|
||||
|
||||
The compact storage supports all existing operations - including tree modification - with the same amortized complexity (that is, all basic document manipulations are still O(1) on average). The operations are slightly slower; you can usually expect 10-50% slowdown in terms of processing time unless your processing was memory-bound.
|
||||
|
||||
On 32-bit architectures document structure in compact mode is typically reduced by around 2.5x; on 64-bit architectures the ratio is around 5x. Thus for big markup-heavy documents compact mode can make the difference between the processing of a multi-gigabyte document running completely from RAM vs requiring swapping to disk. Even if the document fits into memory, compact storage can use CPU caches more efficiently by taking less space and causing less cache/TLB misses.
|
||||
|
||||
[[loading]]
|
||||
== Loading document
|
||||
|
||||
|
@ -554,7 +569,7 @@ The most common source of XML data is files; pugixml provides dedicated function
|
|||
xml_parse_result xml_document::load_file(const char* path, unsigned int options = parse_default, xml_encoding encoding = encoding_auto);
|
||||
xml_parse_result xml_document::load_file(const wchar_t* path, unsigned int options = parse_default, xml_encoding encoding = encoding_auto);
|
||||
----
|
||||
|
||||
|
||||
These functions accept the file path as its first argument, and also two optional arguments, which specify parsing options (see <<loading.options>>) and input data encoding (see <<loading.encoding>>). The path has the target operating system format, so it can be a relative or absolute one, it should have the delimiters of the target system, it should have the exact case if the target file system is case-sensitive, etc.
|
||||
|
||||
File path is passed to the system file opening function as is in case of the first function (which accepts `const char* path`); the second function either uses a special file opening function if it is provided by the runtime library or converts the path to UTF-8 and uses the system file opening function.
|
||||
|
@ -565,7 +580,7 @@ This is an example of loading XML document from file (link:samples/load_file.cpp
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/load_file.cpp[tags=code]
|
||||
include::samples/load_file.cpp[tags=code]
|
||||
----
|
||||
|
||||
[[loading.memory]]
|
||||
|
@ -601,25 +616,25 @@ This is an example of loading XML document from memory using different functions
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/load_memory.cpp[tags=decl]
|
||||
include::samples/load_memory.cpp[tags=decl]
|
||||
----
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/load_memory.cpp[tags=load_buffer]
|
||||
include::samples/load_memory.cpp[tags=load_buffer]
|
||||
----
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/load_memory.cpp[tags=load_buffer_inplace_begin]
|
||||
include::samples/load_memory.cpp[tags=load_buffer_inplace_begin]
|
||||
|
||||
include::samples/load_memory.cpp[tags=load_buffer_inplace_end]
|
||||
include::samples/load_memory.cpp[tags=load_buffer_inplace_end]
|
||||
----
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/load_memory.cpp[tags=load_buffer_inplace_own]
|
||||
include::samples/load_memory.cpp[tags=load_buffer_inplace_own]
|
||||
----
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/load_memory.cpp[tags=load_string]
|
||||
include::samples/load_memory.cpp[tags=load_string]
|
||||
----
|
||||
|
||||
[[loading.stream]]
|
||||
|
@ -642,7 +657,7 @@ This is a simple example of loading XML document from file using streams (link:s
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/load_stream.cpp[tags=code]
|
||||
include::samples/load_stream.cpp[tags=code]
|
||||
----
|
||||
|
||||
[[loading.errors]]
|
||||
|
@ -703,7 +718,7 @@ This is an example of handling loading errors (link:samples/load_error_handling.
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/load_error_handling.cpp[tags=code]
|
||||
include::samples/load_error_handling.cpp[tags=code]
|
||||
----
|
||||
|
||||
[[loading.options]]
|
||||
|
@ -759,7 +774,7 @@ This is an example of using different parsing options (link:samples/load_options
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/load_options.cpp[tags=code]
|
||||
include::samples/load_options.cpp[tags=code]
|
||||
----
|
||||
|
||||
[[loading.encoding]]
|
||||
|
@ -820,7 +835,7 @@ pugixml features an extensive interface for getting various types of data from t
|
|||
|
||||
[[xml_node::parent]][[xml_node::first_child]][[xml_node::last_child]][[xml_node::next_sibling]][[xml_node::previous_sibling]][[xml_node::first_attribute]][[xml_node::last_attribute]][[xml_attribute::next_attribute]][[xml_attribute::previous_attribute]]
|
||||
The internal representation of the document is a tree, where each node has a list of child nodes (the order of children corresponds to their order in the XML representation), and additionally element nodes have a list of attributes, which is also ordered. Several functions are provided in order to let you get from one node in the tree to the other. These functions roughly correspond to the internal representation, and thus are usually building blocks for other methods of traversing (i.e. XPath traversals are based on these functions).
|
||||
|
||||
|
||||
[source]
|
||||
----
|
||||
xml_node xml_node::parent() const;
|
||||
|
@ -845,7 +860,7 @@ With these functions, you can iterate through all child nodes and display all at
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/traverse_base.cpp[tags=basic]
|
||||
include::samples/traverse_base.cpp[tags=basic]
|
||||
----
|
||||
|
||||
[[access.nodedata]]
|
||||
|
@ -904,7 +919,7 @@ It returns `def` argument if the attribute handle is null. If you do not specify
|
|||
|
||||
[[xml_attribute::as_int]][[xml_attribute::as_uint]][[xml_attribute::as_double]][[xml_attribute::as_float]][[xml_attribute::as_bool]][[xml_attribute::as_llong]][[xml_attribute::as_ullong]]
|
||||
In many cases attribute values have types that are not strings - i.e. an attribute may always contain values that should be treated as integers, despite the fact that they are represented as strings in XML. pugixml provides several accessors that convert attribute value to some other type:
|
||||
|
||||
|
||||
[source]
|
||||
----
|
||||
int xml_attribute::as_int(int def = 0) const;
|
||||
|
@ -931,7 +946,7 @@ This is an example of using these functions, along with node data retrieval ones
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/traverse_base.cpp[tags=data]
|
||||
include::samples/traverse_base.cpp[tags=data]
|
||||
----
|
||||
|
||||
[[access.contents]]
|
||||
|
@ -974,7 +989,7 @@ This is an example of using these functions (link:samples/traverse_base.cpp[]):
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/traverse_base.cpp[tags=contents]
|
||||
include::samples/traverse_base.cpp[tags=contents]
|
||||
----
|
||||
|
||||
[[access.rangefor]]
|
||||
|
@ -996,7 +1011,7 @@ This is an example of using these functions (link:samples/traverse_rangefor.cpp[
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/traverse_rangefor.cpp[tags=code]
|
||||
include::samples/traverse_rangefor.cpp[tags=code]
|
||||
----
|
||||
|
||||
[[access.iterators]]
|
||||
|
@ -1029,7 +1044,7 @@ Here is an example of using iterators for document traversal (link:samples/trave
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/traverse_iter.cpp[tags=code]
|
||||
include::samples/traverse_iter.cpp[tags=code]
|
||||
----
|
||||
|
||||
CAUTION: Node and attribute iterators are somewhere in the middle between const and non-const iterators. While dereference operation yields a non-constant reference to the object, so that you can use it for tree modification operations, modifying this reference using assignment - i.e. passing iterators to a function like `std::sort` - will not give expected results, as assignment modifies local handle that's stored in the iterator.
|
||||
|
@ -1071,11 +1086,11 @@ This is an example of traversing tree hierarchy with xml_tree_walker (link:sampl
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/traverse_walker.cpp[tags=impl]
|
||||
include::samples/traverse_walker.cpp[tags=impl]
|
||||
----
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/traverse_walker.cpp[tags=traverse]
|
||||
include::samples/traverse_walker.cpp[tags=traverse]
|
||||
----
|
||||
|
||||
[[access.predicate]]
|
||||
|
@ -1103,11 +1118,11 @@ This is an example of using predicate-based functions (link:samples/traverse_pre
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/traverse_predicate.cpp[tags=decl]
|
||||
include::samples/traverse_predicate.cpp[tags=decl]
|
||||
----
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/traverse_predicate.cpp[tags=find]
|
||||
include::samples/traverse_predicate.cpp[tags=find]
|
||||
----
|
||||
|
||||
[[access.text]]
|
||||
|
@ -1118,7 +1133,7 @@ It is common to store data as text contents of some node - i.e. `<node><descript
|
|||
|
||||
[[xml_node::text]]
|
||||
You can get the text object from a node by using `text()` method:
|
||||
|
||||
|
||||
[source]
|
||||
----
|
||||
xml_text xml_node::text() const;
|
||||
|
@ -1175,7 +1190,7 @@ This is an example of using `xml_text` object (link:samples/text.cpp[]):
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/text.cpp[tags=access]
|
||||
include::samples/text.cpp[tags=access]
|
||||
----
|
||||
|
||||
[[access.misc]]
|
||||
|
@ -1202,7 +1217,7 @@ xml_node xml_node::first_element_by_path(const char_t* path, char_t delimiter =
|
|||
|
||||
Node paths consist of node names, separated with a delimiter (which is `/` by default); also paths can contain self (`.`) and parent (`..`) pseudo-names, so that this is a valid path: `"../../foo/./bar"`. `path` returns the path to the node from the document root, `first_element_by_path` looks for a node represented by a given path; a path can be an absolute one (absolute paths start with the delimiter), in which case the rest of the path is treated as document root relative, and relative to the given node. For example, in the following document: `<a><b><c/></b></a>`, node `<c/>` has path `"a/b/c"`; calling `first_element_by_path` for document with path `"a/b"` results in node `<b/>`; calling `first_element_by_path` for node `<a/>` with path `"../a/./b/../."` results in node `<a/>`; calling `first_element_by_path` with path `"/a"` results in node `<a/>` for any node.
|
||||
|
||||
In case path component is ambiguous (if there are two nodes with given name), the first one is selected; paths are not guaranteed to uniquely identify nodes in a document. If any component of a path is not found, the result of `first_element_by_path` is null node; also `first_element_by_path` returns null node for null nodes, in which case the path does not matter. `path` returns an empty string for null nodes.
|
||||
In case path component is ambiguous (if there are two nodes with given name), the first one is selected; paths are not guaranteed to uniquely identify nodes in a document. If any component of a path is not found, the result of `first_element_by_path` is null node; also `first_element_by_path` returns null node for null nodes, in which case the path does not matter. `path` returns an empty string for null nodes.
|
||||
|
||||
NOTE: `path` function returns the result as STL string, and thus is not available if <<PUGIXML_NO_STL,PUGIXML_NO_STL>> is defined.
|
||||
|
||||
|
@ -1243,7 +1258,7 @@ This is an example of setting node name and value (link:samples/modify_base.cpp[
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/modify_base.cpp[tags=node]
|
||||
include::samples/modify_base.cpp[tags=node]
|
||||
----
|
||||
|
||||
[[modify.attrdata]]
|
||||
|
@ -1272,7 +1287,7 @@ bool xml_attribute::set_value(bool rhs);
|
|||
bool xml_attribute::set_value(long long rhs);
|
||||
bool xml_attribute::set_value(unsigned long long rhs);
|
||||
----
|
||||
|
||||
|
||||
The above functions convert the argument to string and then call the base `set_value` function. Integers are converted to a decimal form, floating-point numbers are converted to either decimal or scientific form, depending on the number magnitude, boolean values are converted to either `"true"` or `"false"`.
|
||||
|
||||
CAUTION: Number conversion functions depend on current C locale as set with `setlocale`, so may generate unexpected results if the locale is different from `"C"`.
|
||||
|
@ -1301,7 +1316,7 @@ This is an example of setting attribute name and value (link:samples/modify_base
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/modify_base.cpp[tags=attr]
|
||||
include::samples/modify_base.cpp[tags=attr]
|
||||
----
|
||||
|
||||
[[modify.add]]
|
||||
|
@ -1350,7 +1365,7 @@ This is an example of adding new attributes/nodes to the document (link:samples/
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/modify_add.cpp[tags=code]
|
||||
include::samples/modify_add.cpp[tags=code]
|
||||
----
|
||||
|
||||
[[modify.remove]]
|
||||
|
@ -1387,7 +1402,7 @@ This is an example of removing attributes/nodes from the document (link:samples/
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/modify_remove.cpp[tags=code]
|
||||
include::samples/modify_remove.cpp[tags=code]
|
||||
----
|
||||
|
||||
[[modify.text]]
|
||||
|
@ -1418,7 +1433,7 @@ bool xml_text::set(bool rhs);
|
|||
bool xml_text::set(long long rhs);
|
||||
bool xml_text::set(unsigned long long rhs);
|
||||
----
|
||||
|
||||
|
||||
The above functions convert the argument to string and then call the base `set` function. These functions have the same semantics as similar `xml_attribute` functions. You can <<xml_attribute::set_value,refer to documentation for the attribute functions>> for details.
|
||||
|
||||
[[xml_text::assign]]
|
||||
|
@ -1443,7 +1458,7 @@ This is an example of using `xml_text` object to modify text contents (link:samp
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/text.cpp[tags=modify]
|
||||
include::samples/text.cpp[tags=modify]
|
||||
----
|
||||
|
||||
[[modify.clone]]
|
||||
|
@ -1479,7 +1494,7 @@ This is an example with one possible implementation of include tags in XML (link
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/include.cpp[tags=code]
|
||||
include::samples/include.cpp[tags=code]
|
||||
----
|
||||
|
||||
[[modify.move]]
|
||||
|
@ -1582,7 +1597,7 @@ This is a simple example of saving XML document to file (link:samples/save_file.
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/save_file.cpp[tags=code]
|
||||
include::samples/save_file.cpp[tags=code]
|
||||
----
|
||||
|
||||
[[saving.stream]]
|
||||
|
@ -1606,7 +1621,7 @@ This is a simple example of saving XML document to standard output (link:samples
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/save_stream.cpp[tags=code]
|
||||
include::samples/save_stream.cpp[tags=code]
|
||||
----
|
||||
|
||||
[[saving.writer]]
|
||||
|
@ -1634,7 +1649,7 @@ This is a simple example of custom writer for saving document data to STL string
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/save_custom_writer.cpp[tags=code]
|
||||
include::samples/save_custom_writer.cpp[tags=code]
|
||||
----
|
||||
|
||||
[[saving.subtree]]
|
||||
|
@ -1656,7 +1671,7 @@ Saving a subtree differs from saving the whole document: the process behaves as
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/save_subtree.cpp[tags=code]
|
||||
include::samples/save_subtree.cpp[tags=code]
|
||||
----
|
||||
|
||||
[[saving.options]]
|
||||
|
@ -1668,7 +1683,9 @@ NOTE: You should use the usual bitwise arithmetics to manipulate the bitmask: to
|
|||
|
||||
These flags control the resulting tree contents:
|
||||
|
||||
* [[format_indent]]`format_indent` determines if all nodes should be indented with the indentation string (this is an additional parameter for all saving functions, and is `"\t"` by default). If this flag is on, before every node the indentation string is output several times, where the amount of indentation depends on the node's depth relative to the output subtree. This flag has no effect if <<format_raw,format_raw>> is enabled. This flag is *on* by default.
|
||||
* [[format_indent]]`format_indent` determines if all nodes should be indented with the indentation string (this is an additional parameter for all saving functions, and is `"\t"` by default). If this flag is on, the indentation string is printed several times before every node, where the amount of indentation depends on the node's depth relative to the output subtree. This flag has no effect if <<format_raw,format_raw>> is enabled. This flag is *on* by default.
|
||||
|
||||
* [[format_indent_attributes]]`format_indent_attributes` determines if all attributes should be printed on a new line, indented with the indentation string according to the attribute's depth. This flag implies <<format_indent,format_indent>>. This flag has no effect if <<format_raw,format_raw>> is enabled. This flag is *off* by default.
|
||||
|
||||
* [[format_raw]]`format_raw` switches between formatted and raw output. If this flag is on, the nodes are not indented in any way, and also no newlines that are not part of document text are printed. Raw mode can be used for serialization where the result is not intended to be read by humans; also it can be useful if the document was parsed with <<parse_ws_pcdata,parse_ws_pcdata>> flag, to preserve the original document formatting as much as possible. This flag is *off* by default.
|
||||
|
||||
|
@ -1691,7 +1708,7 @@ This is an example that shows the outputs of different output options (link:samp
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/save_options.cpp[tags=code]
|
||||
include::samples/save_options.cpp[tags=code]
|
||||
----
|
||||
|
||||
[[saving.encoding]]
|
||||
|
@ -1718,7 +1735,7 @@ This is an example that shows how to create a custom declaration node (link:samp
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/save_declaration.cpp[tags=code]
|
||||
include::samples/save_declaration.cpp[tags=code]
|
||||
----
|
||||
|
||||
[[xpath]]
|
||||
|
@ -1852,7 +1869,7 @@ This is an example of selecting nodes using XPath expressions (link:samples/xpat
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/xpath_select.cpp[tags=code]
|
||||
include::samples/xpath_select.cpp[tags=code]
|
||||
----
|
||||
|
||||
[[xpath.query]]
|
||||
|
@ -1865,7 +1882,7 @@ When you call `select_nodes` with an expression string as an argument, a query o
|
|||
* You can use query objects to evaluate XPath expressions which result in booleans, numbers or strings;
|
||||
* You can get the type of expression value via query object.
|
||||
|
||||
Query objects correspond to `xpath_query` type. They are immutable and non-copyable: they are bound to the expression at creation time and can not be cloned. If you want to put query objects in a container, allocate them on heap via `new` operator and store pointers to `xpath_query` in the container.
|
||||
Query objects correspond to `xpath_query` type. They are immutable and non-copyable: they are bound to the expression at creation time and can not be cloned. If you want to put query objects in a container, either allocate them on heap via `new` operator and store pointers to `xpath_query` in the container, or use a C++11 compiler (query objects are movable in C++11).
|
||||
|
||||
[[xpath_query::ctor]]
|
||||
You can create a query object with the constructor that takes XPath expression as an argument:
|
||||
|
@ -1907,7 +1924,7 @@ Note that `evaluate_string` function returns the STL string; as such, it's not a
|
|||
size_t xpath_query::evaluate_string(char_t* buffer, size_t capacity, const xpath_node& n) const;
|
||||
----
|
||||
|
||||
This function evaluates the string, and then writes the result to `buffer` (but at most `capacity` characters); then it returns the full size of the result in characters, including the terminating zero. If `capacity` is not 0, the resulting buffer is always zero-terminated. You can use this function as follows:
|
||||
This function evaluates the string, and then writes the result to `buffer` (but at most `capacity` characters); then it returns the full size of the result in characters, including the terminating zero. If `capacity` is not 0, the resulting buffer is always zero-terminated. You can use this function as follows:
|
||||
|
||||
* First call the function with `buffer = 0` and `capacity = 0`; then allocate the returned amount of characters, and call the function again, passing the allocated storage and the amount of characters;
|
||||
* First call the function with small buffer and buffer capacity; then, if the result is larger than the capacity, the output has been trimmed, so allocate a larger buffer and call the function again.
|
||||
|
@ -1916,7 +1933,7 @@ This is an example of using query objects (link:samples/xpath_query.cpp[]):
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/xpath_query.cpp[tags=code]
|
||||
include::samples/xpath_query.cpp[tags=code]
|
||||
----
|
||||
|
||||
[[xpath.variables]]
|
||||
|
@ -2020,7 +2037,7 @@ This is an example of using variables in XPath queries (link:samples/xpath_varia
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/xpath_variables.cpp[tags=code]
|
||||
include::samples/xpath_variables.cpp[tags=code]
|
||||
----
|
||||
|
||||
[[xpath.errors]]
|
||||
|
@ -2044,7 +2061,7 @@ If exceptions are disabled, then in the event of parsing failure the query is in
|
|||
----
|
||||
const xpath_parse_result& xpath_query::result() const;
|
||||
----
|
||||
|
||||
|
||||
Without exceptions, evaluating invalid query results in `false`, empty string, `NaN` or an empty node set, depending on the type; evaluating a query as a node set results in an empty node set if the return type is not node set.
|
||||
|
||||
[[xpath_parse_result]]
|
||||
|
@ -2078,7 +2095,7 @@ This is an example of XPath error handling (link:samples/xpath_error.cpp[]):
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/xpath_error.cpp[tags=code]
|
||||
include::samples/xpath_error.cpp[tags=code]
|
||||
----
|
||||
|
||||
[[xpath.w3c]]
|
||||
|
@ -2097,6 +2114,31 @@ Because of the differences in document object models, performance considerations
|
|||
|
||||
:!numbered:
|
||||
|
||||
[[v1.7]]
|
||||
=== v1.7 ^19.10.2015^
|
||||
|
||||
Major release, featuring performance and memory improvements along with some new features. Changes:
|
||||
|
||||
* Compact mode:
|
||||
. Introduced a new tree storage mode that takes significantly less memory (2-5x smaller DOM) at some performance cost.
|
||||
. The mode can be enabled using `PUGIXML_COMPACT` define.
|
||||
|
||||
* New integer parsing/formatting implementation:
|
||||
. Functions that convert from and to integers (e.g. `as_int`/`set_value`) do not rely on CRT any more.
|
||||
. New implementation is 3-5x faster and is always correct wrt overflow or underflow. This is a behavior change - where previously `as_uint()` would return UINT_MAX on a value "-1", it now returns 0.
|
||||
|
||||
* New features:
|
||||
. XPath objects (`xpath_query`, `xpath_node_set`, `xpath_variable_set`) are now movable if your compiler supports C++11. Additionally, `xpath_variable_set` is copyable.
|
||||
. Added `format_indent_attributes` that makes the resulting XML friendlier to line diff/merge tools.
|
||||
. Added a variant of `xml_node::attribute` function with a hint that can improve lookup performance.
|
||||
. Custom allocation functions are now allowed (but not required) to throw instead of returning a null pointer.
|
||||
|
||||
* Bug fixes:
|
||||
. Fix Clang 3.7 crashes in out-of-memory cases (C++ DR 1748)
|
||||
. Fix XPath crashes on SPARC64 (and other 32-bit architectures where doubles have to be aligned to 8 bytes)
|
||||
. Fix xpath_node_set assignment to provide strong exception guarantee
|
||||
. Fix saving for custom xml_writer implementations that can throw from write()
|
||||
|
||||
[[v1.6]]
|
||||
=== v1.6 ^10.04.2015^
|
||||
|
||||
|
@ -2459,6 +2501,7 @@ This is the reference for all macros, types, enumerations, classes and functions
|
|||
[source,subs="+macros"]
|
||||
----
|
||||
#define +++<a href="#PUGIXML_WCHAR_MODE">PUGIXML_WCHAR_MODE</a>+++
|
||||
#define +++<a href="#PUGIXML_COMPACT">PUGIXML_COMPACT</a>+++
|
||||
#define +++<a href="#PUGIXML_NO_XPATH">PUGIXML_NO_XPATH</a>+++
|
||||
#define +++<a href="#PUGIXML_NO_STL">PUGIXML_NO_STL</a>+++
|
||||
#define +++<a href="#PUGIXML_NO_EXCEPTIONS">PUGIXML_NO_EXCEPTIONS</a>+++
|
||||
|
@ -2546,6 +2589,7 @@ enum +++<a href="#xpath_value_type">xpath_value_type</a>+++
|
|||
// Formatting options bit flags:
|
||||
const unsigned int +++<a href="#format_default">format_default</a>+++
|
||||
const unsigned int +++<a href="#format_indent">format_indent</a>+++
|
||||
const unsigned int +++<a href="#format_indent_attributes">format_indent_attributes</a>+++
|
||||
const unsigned int +++<a href="#format_no_declaration">format_no_declaration</a>+++
|
||||
const unsigned int +++<a href="#format_no_escapes">format_no_escapes</a>+++
|
||||
const unsigned int +++<a href="#format_raw">format_raw</a>+++
|
||||
|
@ -2570,7 +2614,7 @@ const unsigned int +++<a href="#parse_ws_pcdata_single">parse_ws_pcdata_single</
|
|||
const unsigned int +++<a href="#parse_wconv_attribute">parse_wconv_attribute</a>+++
|
||||
const unsigned int +++<a href="#parse_wnorm_attribute">parse_wnorm_attribute</a>+++
|
||||
----
|
||||
|
||||
|
||||
[[apiref.classes]]
|
||||
=== Classes
|
||||
|
||||
|
|
217
3party/pugixml/docs/manual.html
Normal file → Executable file
|
@ -6,7 +6,7 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="generator" content="Asciidoctor 1.5.2">
|
||||
<meta name="author" content="website, repository">
|
||||
<title>pugixml 1.6 manual</title>
|
||||
<title>pugixml 1.7 manual</title>
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400">
|
||||
<style>
|
||||
/* Asciidoctor default stylesheet | MIT License | http://asciidoctor.org */
|
||||
|
@ -477,7 +477,7 @@ body.book #toc,body.book #preamble,body.book h1.sect0,body.book .sect1>h2{page-b
|
|||
</head>
|
||||
<body class="article toc2 toc-right">
|
||||
<div id="header">
|
||||
<h1>pugixml 1.6 manual</h1>
|
||||
<h1>pugixml 1.7 manual</h1>
|
||||
<div class="details">
|
||||
<span id="author" class="author">website</span><br>
|
||||
<span id="email" class="email"><a href="http://pugixml.org" class="bare">http://pugixml.org</a></span><br>
|
||||
|
@ -572,6 +572,7 @@ body.book #toc,body.book #preamble,body.book h1.sect0,body.book .sect1>h2{page-b
|
|||
</li>
|
||||
<li><a href="#changes">9. Changelog</a>
|
||||
<ul class="sectlevel2">
|
||||
<li><a href="#v1.7">v1.7 <sup>19.10.2015</sup></a></li>
|
||||
<li><a href="#v1.6">v1.6 <sup>10.04.2015</sup></a></li>
|
||||
<li><a href="#v1.5">v1.5 <sup>27.11.2014</sup></a></li>
|
||||
<li><a href="#v1.4">v1.4 <sup>27.02.2014</sup></a></li>
|
||||
|
@ -659,7 +660,7 @@ No documentation is perfect; neither is this one. If you find errors or omission
|
|||
<p>Thanks to <strong>Artyom Palvelev</strong> for suggesting a lazy gap contraction approach.</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>Thanks to <strong>Vyacheslav Egorov</strong> for documentation proofreading.</p>
|
||||
<p>Thanks to <strong>Vyacheslav Egorov</strong> for documentation proofreading and fuzz testing.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sect2">
|
||||
|
@ -719,9 +720,9 @@ pugixml is Copyright (C) 2006-2015 Arseny Kapoulkine.</pre>
|
|||
<p>You can download the latest source distribution as an archive:</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p><a href="https://github.com/zeux/pugixml/releases/download/v1.6/pugixml-1.6.zip">pugixml-1.6.zip</a> (Windows line endings)
|
||||
<p><a href="https://github.com/zeux/pugixml/releases/download/v1.7/pugixml-1.7.zip">pugixml-1.7.zip</a> (Windows line endings)
|
||||
/
|
||||
<a href="https://github.com/zeux/pugixml/releases/download/v1.6/pugixml-1.6.tar.gz">pugixml-1.6.tar.gz</a> (Unix line endings)</p>
|
||||
<a href="https://github.com/zeux/pugixml/releases/download/v1.7/pugixml-1.7.tar.gz">pugixml-1.7.tar.gz</a> (Unix line endings)</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>The distribution contains library source, documentation (the manual you’re reading now and the quick start guide) and some code examples. After downloading the distribution, install pugixml by extracting all files from the compressed archive.</p>
|
||||
|
@ -742,7 +743,7 @@ pugixml is Copyright (C) 2006-2015 Arseny Kapoulkine.</pre>
|
|||
<div class="content">
|
||||
<pre class="pygments highlight"><code data-lang="bash">git clone https://github.com/zeux/pugixml
|
||||
cd pugixml
|
||||
git checkout v1.6</code></pre>
|
||||
git checkout v1.7</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
|
@ -759,10 +760,35 @@ git checkout v1.6</code></pre>
|
|||
</div>
|
||||
<div class="listingblock">
|
||||
<div class="content">
|
||||
<pre class="pygments highlight"><code data-lang="bash">svn checkout https://github.com/zeux/pugixml/tags/v1.6 pugixml</code></pre>
|
||||
<pre class="pygments highlight"><code data-lang="bash">svn checkout https://github.com/zeux/pugixml/tags/v1.7 pugixml</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sect3">
|
||||
<h4 id="install.getting.packages"><a class="anchor" href="#install.getting.packages"></a>2.1.4. Packages</h4>
|
||||
<div class="paragraph">
|
||||
<p>pugixml is available as a package via various package managers. Note that most packages are maintained separately from the main repository so they do not necessarily contain the latest version.</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>Here’s an incomplete list of pugixml packages in various systems:</p>
|
||||
</div>
|
||||
<div class="ulist">
|
||||
<ul>
|
||||
<li>
|
||||
<p>Linux (<a href="http://packages.ubuntu.com/search?keywords=pugixml">Ubuntu</a>, <a href="https://tracker.debian.org/pkg/pugixml">Debian</a>, <a href="https://apps.fedoraproject.org/packages/pugixml">Fedora</a>, <a href="https://aur.archlinux.org/packages/pugixml/">Arch Linux</a>, other <a href="http://pkgs.org/search/pugixml">distributions</a>)</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><a href="http://fbsdmon.org/ports/textproc/pugixml">FreeBSD</a></p>
|
||||
</li>
|
||||
<li>
|
||||
<p>OSX, via <a href="http://brewformulas.org/Pugixml">Homebrew</a></p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Windows, via <a href="https://www.nuget.org/packages/pugixml/">NuGet</a></p>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sect2">
|
||||
<h3 id="install.building"><a class="anchor" href="#install.building"></a>2.2. Building pugixml</h3>
|
||||
|
@ -930,6 +956,9 @@ can include pugixml.cpp in your project (see <a href="#install.building.embed">B
|
|||
<p><a id="PUGIXML_WCHAR_MODE"></a><code>PUGIXML_WCHAR_MODE</code> define toggles between UTF-8 style interface (the in-memory text encoding is assumed to be UTF-8, most functions use <code>char</code> as character type) and UTF-16/32 style interface (the in-memory text encoding is assumed to be UTF-16/32, depending on <code>wchar_t</code> size, most functions use <code>wchar_t</code> as character type). See <a href="#dom.unicode">Unicode interface</a> for more details.</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p><a id="PUGIXML_COMPACT"></a><code>PUGIXML_COMPACT</code> define activates a different internal representation of document storage that is much more memory efficient for documents with a lot of markup (i.e. nodes and attributes), but is slightly slower to parse and access. For details see <a href="#dom.memory.compact">Compact mode</a>.</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p><a id="PUGIXML_NO_XPATH"></a><code>PUGIXML_NO_XPATH</code> define disables XPath. Both XPath interfaces and XPath implementation are excluded from compilation. This option is provided in case you do not need XPath functionality and need to save code space.</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
|
@ -964,63 +993,19 @@ In that example <code>PUGIXML_API</code> is inconsistent between several source
|
|||
<div class="sect2">
|
||||
<h3 id="install.portability"><a class="anchor" href="#install.portability"></a>2.3. Portability</h3>
|
||||
<div class="paragraph">
|
||||
<p>pugixml is written in standard-compliant C++ with some compiler-specific workarounds where appropriate. pugixml is compatible with the C++11 standard, but does not require C++11 support. Each version is tested with a unit test suite (with code coverage about 99%) on the following platforms:</p>
|
||||
<p>pugixml is written in standard-compliant C++ with some compiler-specific workarounds where appropriate. pugixml is compatible with the C++11 standard, but does not require C++11 support. Each version is tested with a unit test suite with code coverage exceeding 99%.</p>
|
||||
</div>
|
||||
<div class="ulist">
|
||||
<ul>
|
||||
<li>
|
||||
<p>Microsoft Windows:</p>
|
||||
<div class="ulist">
|
||||
<ul>
|
||||
<li>
|
||||
<p>Borland C++ Compiler 5.82</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Digital Mars C++ Compiler 8.51</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Intel C++ Compiler 8.0, 9.0 x86/x64, 10.0 x86/x64, 11.0 x86/x64</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Metrowerks CodeWarrior 8.0</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Microsoft Visual C++ 6.0, 7.0 (2002), 7.1 (2003), 8.0 (2005) x86/x64, 9.0 (2008) x86/x64, 10.0 (2010) x86/x64, 11.0 (2011) x86/x64/ARM, 12.0 (2013) x86/x64/ARM and some CLR versions</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>MinGW (GCC) 3.4, 4.4, 4.5, 4.6 x64</p>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="paragraph">
|
||||
<p>pugixml runs on a variety of desktop platforms (including Microsoft Windows, Linux, FreeBSD, Apple MacOSX and Sun Solaris), game consoles (inclusing Microsoft Xbox 360, Microsoft Xbox One, Nintendo Wii, Sony Playstation Portable and Sony Playstation 3) and mobile platforms (including Android, iOS, BlackBerry, Samsung bada and Microsoft Windows CE).</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<p>Linux (GCC 4.4.3 x86/x64, GCC 4.8.1 x64, Clang 3.2 x64)</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>FreeBSD (GCC 4.2.1 x86/x64)</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Apple MacOSX (GCC 4.0.1 x86/x64/PowerPC, Clang 3.5 x64)</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Sun Solaris (sunCC x86/x64)</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Microsoft Xbox 360</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Nintendo Wii (Metrowerks CodeWarrior 4.1)</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Sony Playstation Portable (GCC 3.4.2)</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Sony Playstation 3 (GCC 4.1.1, SNC 310.1)</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Various portable platforms (Android NDK, BlackBerry NDK, Samsung bada, Windows CE)</p>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="paragraph">
|
||||
<p>pugixml supports various architectures, such as x86/x86-64, PowerPC, ARM, MIPS and SPARC. In general it should run on any architecture since it does not use architecture-specific code and does not rely on features such as unaligned memory access.</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>pugixml can be compiled using any C++ compiler; it was tested with all versions of Microsoft Visual C++ from 6.0 up to 2015, GCC from 3.4 up to 5.2, Clang from 3.2 up to 3.7, as well as a variety of other compilers (e.g. Borland C++, Digital Mars C++, Intel C++, Metrowerks CodeWarrior and PathScale). The code is written to avoid compilation warnings even on reasonably high warning levels.</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>Note that some platforms may have very bare-bones support of C++; in some cases you’ll have to use <code>PUGIXML_NO_STL</code> and/or <code>PUGIXML_NO_EXCEPTIONS</code> to compile without issues. This mostly applies to old game consoles and embedded systems.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1070,7 +1055,7 @@ In that example <code>PUGIXML_API</code> is inconsistent between several source
|
|||
<p>Character data nodes (<a id="node_cdata"></a><code>node_cdata</code>) represent text in XML that is quoted in a special way. CDATA nodes do not differ from PCDATA nodes except in XML representation - the above text example looks like this with CDATA:</p>
|
||||
<div class="listingblock">
|
||||
<div class="content">
|
||||
<pre><node> <![CDATA[[text1]]> <child/> <![CDATA[[text2]]> </node></pre>
|
||||
<pre><node> <![CDATA[text1]]> <child/> <![CDATA[text2]]> </node></pre>
|
||||
</div>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
|
@ -1215,7 +1200,7 @@ Both <code>xml_node</code> and <code>xml_attribute</code> have the default const
|
|||
</div>
|
||||
<div class="paragraph">
|
||||
<p><a id="xml_attribute::hash_value"></a><a id="xml_node::hash_value"></a>
|
||||
If you want to use <code>xml_node</code> or <code>xml_attribute</code> objects as keys in hash-based associative containers, you can use the <code>hash_value</code> member functions. They return the hash values that are guaranteed to be the same for all handles to the same underlying object. The hash value for null handles is 0.</p>
|
||||
If you want to use <code>xml_node</code> or <code>xml_attribute</code> objects as keys in hash-based associative containers, you can use the <code>hash_value</code> member functions. They return the hash values that are guaranteed to be the same for all handles to the same underlying object. The hash value for null handles is 0. Note that hash value does not depend on the content of the node, only on the location of the underlying structure in memory - this means that loading the same document twice will likely produce different hash values, and copying the node will not preserve the hash.</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p><a id="xml_attribute::unspecified_bool_type"></a><a id="xml_node::unspecified_bool_type"></a><a id="xml_attribute::empty"></a><a id="xml_node::empty"></a>
|
||||
|
@ -1271,7 +1256,7 @@ If the size of <code>wchar_t</code> is 2, pugixml assumes UTF-16 encoding instea
|
|||
There is a special type, <code>pugi::char_t</code>, that is defined as the character type and depends on the library configuration; it will be also used in the documentation hereafter. There is also a type <code>pugi::string_t</code>, which is defined as the STL string of the character type; it corresponds to <code>std::string</code> in char mode and to <code>std::wstring</code> in wchar_t mode.</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>In addition to the interface, the internal implementation changes to store XML data as <code>pugi::char_t</code>; this means that these two modes have different memory usage characteristics. The conversion to <code>pugi::char_t</code> upon document loading and from <code>pugi::char_t</code> upon document saving happen automatically, which also carries minor performance penalty. The general advice however is to select the character mode based on usage scenario, i.e. if UTF-8 is inconvenient to process and most of your XML data is non-ASCII, wchar_t mode is probably a better choice.</p>
|
||||
<p>In addition to the interface, the internal implementation changes to store XML data as <code>pugi::char_t</code>; this means that these two modes have different memory usage characteristics - generally UTF-8 mode is more memory and performance efficient, especially if <code>sizeof(wchar_t)</code> is 4. The conversion to <code>pugi::char_t</code> upon document loading and from <code>pugi::char_t</code> upon document saving happen automatically, which also carries minor performance penalty. The general advice however is to select the character mode based on usage scenario, i.e. if UTF-8 is inconvenient to process and most of your XML data is non-ASCII, wchar_t mode is probably a better choice.</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p><a id="as_utf8"></a><a id="as_wide"></a>
|
||||
|
@ -1382,7 +1367,7 @@ You can use the following accessor functions to change or get current memory man
|
|||
</div>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>Allocation function is called with the size (in bytes) as an argument and should return a pointer to a memory block with alignment that is suitable for storage of primitive types (usually a maximum of <code>void*</code> and <code>double</code> types alignment is sufficient) and size that is greater than or equal to the requested one. If the allocation fails, the function has to return null pointer (throwing an exception from allocation function results in undefined behavior).</p>
|
||||
<p>Allocation function is called with the size (in bytes) as an argument and should return a pointer to a memory block with alignment that is suitable for storage of primitive types (usually a maximum of <code>void*</code> and <code>double</code> types alignment is sufficient) and size that is greater than or equal to the requested one. If the allocation fails, the function has to either return null pointer or to throw an exception.</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>Deallocation function is called with the pointer that was returned by some call to allocation function; it is never called with a null pointer. If memory management functions are not thread-safe, library thread safety is not guaranteed.</p>
|
||||
|
@ -1446,6 +1431,21 @@ You can use the following accessor functions to change or get current memory man
|
|||
<p>All additional memory, such as memory for document structure (node/attribute objects) and memory for node/attribute names/values is allocated in pages on the order of 32 Kb; actual objects are allocated inside the pages using a memory management scheme optimized for fast allocation/deallocation of many small objects. Because of the scheme specifics, the pages are only destroyed if all objects inside them are destroyed; also, generally destroying an object does not mean that subsequent object creation will reuse the same memory. This means that it is possible to devise a usage scheme which will lead to higher memory usage than expected; one example is adding a lot of nodes, and them removing all even numbered ones; not a single page is reclaimed in the process. However this is an example specifically crafted to produce unsatisfying behavior; in all practical usage scenarios the memory consumption is less than that of a general-purpose allocator because allocation meta-data is very small in size.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sect3">
|
||||
<h4 id="dom.memory.compact"><a class="anchor" href="#dom.memory.compact"></a>3.6.4. Compact mode</h4>
|
||||
<div class="paragraph">
|
||||
<p>By default nodes and attributes are optimized for efficiency of access. This can cause them to take a significant amount of memory - for documents with a lot of nodes and not a lot of contents (short attribute values/node text), and depending on the pointer size, the document structure can take noticeably more memory than the document itself (e.g. on a 64-bit platform in UTF-8 mode a markup-heavy document with the file size of 2.1 Mb can use 2.1 Mb for document buffer and 8.3 Mb for document structure).</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>If you are processing big documents or your platform is memory constrained and you’re willing to sacrifice a bit of performance for memory, you can compile pugixml with <code>PUGIXML_COMPACT</code> define which will activate compact mode. Compact mode uses a different representation of the document structure that assumes locality of reference between nodes and attributes to optimize memory usage. As a result you get significantly smaller node/attribute objects; usually most objects in most documents don’t require additional storage, but in the worst case - if assumptions about locality of reference don’t hold - additional memory will be allocated to store the extra data required.</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>The compact storage supports all existing operations - including tree modification - with the same amortized complexity (that is, all basic document manipulations are still O(1) on average). The operations are slightly slower; you can usually expect 10-50% slowdown in terms of processing time unless your processing was memory-bound.</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>On 32-bit architectures document structure in compact mode is typically reduced by around 2.5x; on 64-bit architectures the ratio is around 5x. Thus for big markup-heavy documents compact mode can make the difference between the processing of a multi-gigabyte document running completely from RAM vs requiring swapping to disk. Even if the document fits into memory, compact storage can use CPU caches more efficiently by taking less space and causing less cache/TLB misses.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -3295,7 +3295,10 @@ You should use the usual bitwise arithmetics to manipulate the bitmask: to enabl
|
|||
<div class="ulist">
|
||||
<ul>
|
||||
<li>
|
||||
<p><a id="format_indent"></a><code>format_indent</code> determines if all nodes should be indented with the indentation string (this is an additional parameter for all saving functions, and is <code>"\t"</code> by default). If this flag is on, before every node the indentation string is output several times, where the amount of indentation depends on the node’s depth relative to the output subtree. This flag has no effect if <a href="#format_raw">format_raw</a> is enabled. This flag is <strong>on</strong> by default.</p>
|
||||
<p><a id="format_indent"></a><code>format_indent</code> determines if all nodes should be indented with the indentation string (this is an additional parameter for all saving functions, and is <code>"\t"</code> by default). If this flag is on, the indentation string is printed several times before every node, where the amount of indentation depends on the node’s depth relative to the output subtree. This flag has no effect if <a href="#format_raw">format_raw</a> is enabled. This flag is <strong>on</strong> by default.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><a id="format_indent_attributes"></a><code>format_indent_attributes</code> determines if all attributes should be printed on a new line, indented with the indentation string according to the attribute’s depth. This flag implies <a href="#format_indent">format_indent</a>. This flag has no effect if <a href="#format_raw">format_raw</a> is enabled. This flag is <strong>off</strong> by default.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><a id="format_raw"></a><code>format_raw</code> switches between formatted and raw output. If this flag is on, the nodes are not indented in any way, and also no newlines that are not part of document text are printed. Raw mode can be used for serialization where the result is not intended to be read by humans; also it can be useful if the document was parsed with <a href="#parse_ws_pcdata">parse_ws_pcdata</a> flag, to preserve the original document formatting as much as possible. This flag is <strong>off</strong> by default.</p>
|
||||
|
@ -3634,7 +3637,7 @@ While compiling expressions is fast, the compilation time can introduce a signif
|
|||
</ul>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>Query objects correspond to <code>xpath_query</code> type. They are immutable and non-copyable: they are bound to the expression at creation time and can not be cloned. If you want to put query objects in a container, allocate them on heap via <code>new</code> operator and store pointers to <code>xpath_query</code> in the container.</p>
|
||||
<p>Query objects correspond to <code>xpath_query</code> type. They are immutable and non-copyable: they are bound to the expression at creation time and can not be cloned. If you want to put query objects in a container, either allocate them on heap via <code>new</code> operator and store pointers to <code>xpath_query</code> in the container, or use a C11 compiler (query objects are movable in C11).</p>
|
||||
</div>
|
||||
<div id="xpath_query::ctor" class="paragraph">
|
||||
<p>You can create a query object with the constructor that takes XPath expression as an argument:</p>
|
||||
|
@ -4001,6 +4004,80 @@ If exceptions are disabled, then in the event of parsing failure the query is in
|
|||
<h2 id="changes"><a class="anchor" href="#changes"></a>9. Changelog</h2>
|
||||
<div class="sectionbody">
|
||||
<div class="sect2">
|
||||
<h3 id="v1.7"><a class="anchor" href="#v1.7"></a>v1.7 <sup>19.10.2015</sup></h3>
|
||||
<div class="paragraph">
|
||||
<p>Major release, featuring performance and memory improvements along with some new features. Changes:</p>
|
||||
</div>
|
||||
<div class="ulist">
|
||||
<ul>
|
||||
<li>
|
||||
<p>Compact mode:</p>
|
||||
<div class="olist arabic">
|
||||
<ol class="arabic">
|
||||
<li>
|
||||
<p>Introduced a new tree storage mode that takes significantly less memory (2-5x smaller DOM) at some performance cost.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>The mode can be enabled using <code>PUGIXML_COMPACT</code> define.</p>
|
||||
</li>
|
||||
</ol>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<p>New integer parsing/formatting implementation:</p>
|
||||
<div class="olist arabic">
|
||||
<ol class="arabic">
|
||||
<li>
|
||||
<p>Functions that convert from and to integers (e.g. <code>as_int</code>/<code>set_value</code>) do not rely on CRT any more.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>New implementation is 3-5x faster and is always correct wrt overflow or underflow. This is a behavior change - where previously <code>as_uint()</code> would return UINT_MAX on a value "-1", it now returns 0.</p>
|
||||
</li>
|
||||
</ol>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<p>New features:</p>
|
||||
<div class="olist arabic">
|
||||
<ol class="arabic">
|
||||
<li>
|
||||
<p>XPath objects (<code>xpath_query</code>, <code>xpath_node_set</code>, <code>xpath_variable_set</code>) are now movable if your compiler supports C++11. Additionally, <code>xpath_variable_set</code> is copyable.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Added <code>format_indent_attributes</code> that makes the resulting XML friendlier to line diff/merge tools.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Added a variant of <code>xml_node::attribute</code> function with a hint that can improve lookup performance.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Custom allocation functions are now allowed (but not required) to throw instead of returning a null pointer.</p>
|
||||
</li>
|
||||
</ol>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<p>Bug fixes:</p>
|
||||
<div class="olist arabic">
|
||||
<ol class="arabic">
|
||||
<li>
|
||||
<p>Fix Clang 3.7 crashes in out-of-memory cases (C++ DR 1748)</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Fix XPath crashes on SPARC64 (and other 32-bit architectures where doubles have to be aligned to 8 bytes)</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Fix xpath_node_set assignment to provide strong exception guarantee</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Fix saving for custom xml_writer implementations that can throw from write()</p>
|
||||
</li>
|
||||
</ol>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sect2">
|
||||
<h3 id="v1.6"><a class="anchor" href="#v1.6"></a>v1.6 <sup>10.04.2015</sup></h3>
|
||||
<div class="paragraph">
|
||||
<p>Maintenance release. Changes:</p>
|
||||
|
@ -5028,6 +5105,7 @@ If exceptions are disabled, then in the event of parsing failure the query is in
|
|||
<div class="listingblock">
|
||||
<div class="content">
|
||||
<pre class="pygments highlight"><code data-lang="c++"><span class="tok-cp">#define <a href="#PUGIXML_WCHAR_MODE">PUGIXML_WCHAR_MODE</a></span>
|
||||
<span class="tok-cp">#define <a href="#PUGIXML_COMPACT">PUGIXML_COMPACT</a></span>
|
||||
<span class="tok-cp">#define <a href="#PUGIXML_NO_XPATH">PUGIXML_NO_XPATH</a></span>
|
||||
<span class="tok-cp">#define <a href="#PUGIXML_NO_STL">PUGIXML_NO_STL</a></span>
|
||||
<span class="tok-cp">#define <a href="#PUGIXML_NO_EXCEPTIONS">PUGIXML_NO_EXCEPTIONS</a></span>
|
||||
|
@ -5115,6 +5193,7 @@ If exceptions are disabled, then in the event of parsing failure the query is in
|
|||
<pre class="pygments highlight"><code data-lang="c++"><span class="tok-c1">// Formatting options bit flags:</span>
|
||||
<span class="tok-k">const</span> <span class="tok-kt">unsigned</span> <span class="tok-kt">int</span> <a href="#format_default">format_default</a>
|
||||
<span class="tok-k">const</span> <span class="tok-kt">unsigned</span> <span class="tok-kt">int</span> <a href="#format_indent">format_indent</a>
|
||||
<span class="tok-k">const</span> <span class="tok-kt">unsigned</span> <span class="tok-kt">int</span> <a href="#format_indent_attributes">format_indent_attributes</a>
|
||||
<span class="tok-k">const</span> <span class="tok-kt">unsigned</span> <span class="tok-kt">int</span> <a href="#format_no_declaration">format_no_declaration</a>
|
||||
<span class="tok-k">const</span> <span class="tok-kt">unsigned</span> <span class="tok-kt">int</span> <a href="#format_no_escapes">format_no_escapes</a>
|
||||
<span class="tok-k">const</span> <span class="tok-kt">unsigned</span> <span class="tok-kt">int</span> <a href="#format_raw">format_raw</a>
|
||||
|
@ -5509,7 +5588,7 @@ If exceptions are disabled, then in the event of parsing failure the query is in
|
|||
</div>
|
||||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated 2015-04-10 20:49:27 PDT
|
||||
Last updated 2015-10-19 20:55:20 PDT
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
8
3party/pugixml/docs/quickstart.adoc
Normal file → Executable file
|
@ -24,7 +24,7 @@ https://github.com/zeux/pugixml/releases/download/v{version}/pugixml-{version}.t
|
|||
The distribution contains library source, documentation (the guide you're reading now and the manual) and some code examples. After downloading the distribution, install pugixml by extracting all files from the compressed archive.
|
||||
|
||||
The complete pugixml source consists of three files - one source file, `pugixml.cpp`, and two header files, `pugixml.hpp` and `pugiconfig.hpp`. `pugixml.hpp` is the primary header which you need to include in order to use pugixml classes/functions. The rest of this guide assumes that `pugixml.hpp` is either in the current directory or in one of include directories of your projects, so that `#include "pugixml.hpp"` can find the header; however you can also use relative path (i.e. `#include "../libs/pugixml/src/pugixml.hpp"`) or include directory-relative path (i.e. `#include <xml/thirdparty/pugixml/src/pugixml.hpp>`).
|
||||
|
||||
|
||||
The easiest way to build pugixml is to compile the source file, `pugixml.cpp`, along with the existing library/executable. This process depends on the method of building your application; for example, if you're using Microsoft Visual Studio footnote:[All trademarks used are properties of their respective owners.], Apple Xcode, Code::Blocks or any other IDE, just add `pugixml.cpp` to one of your projects. There are other building methods available, including building pugixml as a standalone static/shared library; link:manual/install.html#install.building[read the manual] for further information.
|
||||
|
||||
[[dom]]
|
||||
|
@ -67,7 +67,7 @@ This is an example of loading XML document from file (link:samples/load_file.cpp
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/load_file.cpp[tags=code]
|
||||
include::samples/load_file.cpp[tags=code]
|
||||
----
|
||||
|
||||
`load_file`, as well as other loading functions, destroys the existing document tree and then tries to load the new tree from the specified file. The result of the operation is returned in an `xml_parse_result` object; this object contains the operation status, and the related information (i.e. last successfully parsed position in the input file, if parsing fails).
|
||||
|
@ -78,7 +78,7 @@ This is an example of handling loading errors (link:samples/load_error_handling.
|
|||
|
||||
[source,indent=0]
|
||||
----
|
||||
include::samples/load_error_handling.cpp[tags=code]
|
||||
include::samples/load_error_handling.cpp[tags=code]
|
||||
----
|
||||
|
||||
Sometimes XML data should be loaded from some other source than file, i.e. HTTP URL; also you may want to load XML data from file using non-standard functions, i.e. to use your virtual file system facilities or to load XML from gzip-compressed files. These scenarios either require loading document from memory, in which case you should prepare a contiguous memory block with all XML data and to pass it to one of buffer loading functions, or loading document from C{plus}{plus} IOstream, in which case you should provide an object which implements `std::istream` or `std::wistream` interface.
|
||||
|
@ -280,7 +280,7 @@ OTHER DEALINGS IN THE SOFTWARE.
|
|||
....
|
||||
|
||||
This means that you can freely use pugixml in your applications, both open-source and proprietary. If you use pugixml in a product, it is sufficient to add an acknowledgment like this to the product distribution:
|
||||
|
||||
|
||||
....
|
||||
This software is based on pugixml library (http://pugixml.org).
|
||||
pugixml is Copyright (C) 2006-2015 Arseny Kapoulkine.
|
||||
|
|
10
3party/pugixml/docs/quickstart.html
Normal file → Executable file
|
@ -6,7 +6,7 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="generator" content="Asciidoctor 1.5.2">
|
||||
<meta name="author" content="website, repository">
|
||||
<title>pugixml 1.6 quick start guide</title>
|
||||
<title>pugixml 1.7 quick start guide</title>
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400">
|
||||
<style>
|
||||
/* Asciidoctor default stylesheet | MIT License | http://asciidoctor.org */
|
||||
|
@ -477,7 +477,7 @@ body.book #toc,body.book #preamble,body.book h1.sect0,body.book .sect1>h2{page-b
|
|||
</head>
|
||||
<body class="article toc2 toc-right">
|
||||
<div id="header">
|
||||
<h1>pugixml 1.6 quick start guide</h1>
|
||||
<h1>pugixml 1.7 quick start guide</h1>
|
||||
<div class="details">
|
||||
<span id="author" class="author">website</span><br>
|
||||
<span id="email" class="email"><a href="http://pugixml.org" class="bare">http://pugixml.org</a></span><br>
|
||||
|
@ -533,9 +533,9 @@ No documentation is perfect; neither is this one. If you find errors or omission
|
|||
<p>You can download the latest source distribution as an archive:</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p><a href="https://github.com/zeux/pugixml/releases/download/v1.6/pugixml-1.6.zip">pugixml-1.6.zip</a> (Windows line endings)
|
||||
<p><a href="https://github.com/zeux/pugixml/releases/download/v1.7/pugixml-1.7.zip">pugixml-1.7.zip</a> (Windows line endings)
|
||||
/
|
||||
<a href="https://github.com/zeux/pugixml/releases/download/v1.6/pugixml-1.6.tar.gz">pugixml-1.6.tar.gz</a> (Unix line endings)</p>
|
||||
<a href="https://github.com/zeux/pugixml/releases/download/v1.7/pugixml-1.7.tar.gz">pugixml-1.7.tar.gz</a> (Unix line endings)</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>The distribution contains library source, documentation (the guide you’re reading now and the manual) and some code examples. After downloading the distribution, install pugixml by extracting all files from the compressed archive.</p>
|
||||
|
@ -1068,7 +1068,7 @@ pugixml is Copyright (C) 2006-2015 Arseny Kapoulkine.</pre>
|
|||
</div>
|
||||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated 2015-03-24 20:19:09 PDT
|
||||
Last updated 2015-10-10 13:43:12 PDT
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
0
3party/pugixml/docs/samples/character.xml
Normal file → Executable file
0
3party/pugixml/docs/samples/custom_memory_management.cpp
Normal file → Executable file
2
3party/pugixml/docs/samples/include.cpp
Normal file → Executable file
|
@ -48,7 +48,7 @@ bool preprocess(pugi::xml_node node)
|
|||
bool load_preprocess(pugi::xml_document& doc, const char* path)
|
||||
{
|
||||
pugi::xml_parse_result result = doc.load_file(path, pugi::parse_default | pugi::parse_pi); // for <?include?>
|
||||
|
||||
|
||||
return result ? preprocess(doc) : false;
|
||||
}
|
||||
// end::code[]
|
||||
|
|
0
3party/pugixml/docs/samples/load_error_handling.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/load_file.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/load_memory.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/load_options.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/load_stream.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/modify_add.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/modify_base.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/modify_remove.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/save_custom_writer.cpp
Normal file → Executable file
2
3party/pugixml/docs/samples/save_declaration.cpp
Normal file → Executable file
|
@ -15,7 +15,7 @@ int main()
|
|||
decl.append_attribute("encoding") = "UTF-8";
|
||||
decl.append_attribute("standalone") = "no";
|
||||
|
||||
// <?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
// <?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
// <foo bar="baz">
|
||||
// <call>hey</call>
|
||||
// </foo>
|
||||
|
|
0
3party/pugixml/docs/samples/save_file.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/save_options.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/save_stream.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/save_subtree.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/text.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/transitions.xml
Normal file → Executable file
0
3party/pugixml/docs/samples/traverse_base.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/traverse_iter.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/traverse_predicate.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/traverse_rangefor.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/traverse_walker.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/tree.xml
Normal file → Executable file
0
3party/pugixml/docs/samples/weekly-shift_jis.xml
Normal file → Executable file
0
3party/pugixml/docs/samples/weekly-utf-16.xml
Normal file → Executable file
0
3party/pugixml/docs/samples/weekly-utf-8.xml
Normal file → Executable file
2
3party/pugixml/docs/samples/xgconsole.xml
Normal file → Executable file
|
@ -2,7 +2,7 @@
|
|||
<Profile FormatVersion="1">
|
||||
<Tools>
|
||||
<Tool Filename="jam" AllowIntercept="true">
|
||||
<Description>Jamplus build system</Description>
|
||||
<Description>Jamplus build system</Description>
|
||||
</Tool>
|
||||
<Tool Filename="mayabatch.exe" AllowRemote="true" OutputFileMasks="*.dae" DeriveCaptionFrom="lastparam" Timeout="40" />
|
||||
<Tool Filename="meshbuilder_*.exe" AllowRemote="false" OutputFileMasks="*.mesh" DeriveCaptionFrom="lastparam" Timeout="10" />
|
||||
|
|
0
3party/pugixml/docs/samples/xpath_error.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/xpath_query.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/xpath_select.cpp
Normal file → Executable file
0
3party/pugixml/docs/samples/xpath_variables.cpp
Normal file → Executable file
|
@ -1,16 +1,15 @@
|
|||
# Pugi xml parser with XML DOM & XPath support.
|
||||
|
||||
TARGET = pugixml
|
||||
ROOT_DIR = ../..
|
||||
include($$ROOT_DIR/common.pri)
|
||||
|
||||
INCLUDEPATH += src
|
||||
|
||||
TEMPLATE = lib
|
||||
CONFIG += staticlib
|
||||
|
||||
ROOT_DIR = ../..
|
||||
|
||||
include($$ROOT_DIR/common.pri)
|
||||
|
||||
SOURCES += \
|
||||
src/pugixml.cpp \
|
||||
|
||||
HEADERS += \
|
||||
src/pugixml.hpp \
|
||||
src/pugiconfig.hpp \
|
||||
src/pugixml.hpp \
|
||||
|
|
2
3party/pugixml/readme.txt
Normal file → Executable file
|
@ -1,4 +1,4 @@
|
|||
pugixml 1.6 - an XML processing library
|
||||
pugixml 1.7 - an XML processing library
|
||||
|
||||
Copyright (C) 2006-2015, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
||||
Report bugs and download new versions at http://pugixml.org/
|
||||
|
|
28
3party/pugixml/scripts/CMakeLists.txt
Normal file → Executable file
|
@ -3,6 +3,7 @@ project(pugixml)
|
|||
cmake_minimum_required(VERSION 2.6)
|
||||
|
||||
option(BUILD_SHARED_LIBS "Build shared instead of static library" OFF)
|
||||
option(BUILD_TESTS "Build tests" OFF)
|
||||
set(BUILD_DEFINES "" CACHE STRING "Build defines")
|
||||
|
||||
# Pre-defines standard install locations on *nix systems.
|
||||
|
@ -13,18 +14,25 @@ set(HEADERS ../src/pugixml.hpp ../src/pugiconfig.hpp)
|
|||
set(SOURCES ${HEADERS} ../src/pugixml.cpp)
|
||||
|
||||
if(DEFINED BUILD_DEFINES)
|
||||
add_definitions(${BUILD_DEFINES})
|
||||
foreach(DEFINE ${BUILD_DEFINES})
|
||||
add_definitions("-D" ${DEFINE})
|
||||
endforeach()
|
||||
endif()
|
||||
|
||||
if(BUILD_SHARED_LIBS)
|
||||
add_library(pugixml SHARED ${SOURCES})
|
||||
add_library(pugixml SHARED ${SOURCES})
|
||||
else()
|
||||
add_library(pugixml STATIC ${SOURCES})
|
||||
add_library(pugixml STATIC ${SOURCES})
|
||||
endif()
|
||||
|
||||
set_target_properties(pugixml PROPERTIES VERSION 1.6 SOVERSION 1)
|
||||
# Enable C++11 long long for compilers that are capable of it
|
||||
if(NOT ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} STRLESS 3.1)
|
||||
target_compile_features(pugixml PUBLIC cxx_long_long_type)
|
||||
endif()
|
||||
|
||||
install(TARGETS pugixml EXPORT pugixml-config
|
||||
set_target_properties(pugixml PROPERTIES VERSION 1.7 SOVERSION 1)
|
||||
|
||||
install(TARGETS pugixml EXPORT pugixml-config
|
||||
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
||||
|
@ -32,3 +40,13 @@ install(TARGETS pugixml EXPORT pugixml-config
|
|||
|
||||
install(FILES ${HEADERS} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
|
||||
install(EXPORT pugixml-config DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/pugixml)
|
||||
|
||||
if(BUILD_TESTS)
|
||||
file(GLOB TEST_SOURCES ../tests/*.cpp)
|
||||
file(GLOB FUZZ_SOURCES ../tests/fuzz_*.cpp)
|
||||
list(REMOVE_ITEM TEST_SOURCES ${FUZZ_SOURCES})
|
||||
|
||||
add_executable(check ${TEST_SOURCES})
|
||||
target_link_libraries(check pugixml)
|
||||
add_custom_command(TARGET check POST_BUILD COMMAND check WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/..)
|
||||
endif()
|
32
3party/pugixml/scripts/nuget.autopkg
Executable file
|
@ -0,0 +1,32 @@
|
|||
nuget {
|
||||
nuspec {
|
||||
id = pugixml;
|
||||
version: 1.7.0-appveyor;
|
||||
|
||||
authors: {Arseny Kapoulkine};
|
||||
owners: {Arseny Kapoulkine};
|
||||
|
||||
projectUrl: "http://pugixml.org/";
|
||||
iconUrl: "https://github.com/zeux/pugixml/logo.svg";
|
||||
|
||||
title: pugixml;
|
||||
summary: "Light-weight, simple and fast XML parser for C++ with XPath support";
|
||||
releaseNotes: "http://pugixml.org/docs/manual.html#changes";
|
||||
copyright: "Copyright (c) 2006-2015 Arseny Kapoulkine";
|
||||
licenseUrl: "http://pugixml.org/license.html";
|
||||
requireLicenseAcceptance: false;
|
||||
|
||||
description: @"pugixml is a C++ XML processing library, which consists of a DOM-like interface with rich traversal/modification capabilities, an extremely fast XML parser which constructs the DOM tree from an XML file/buffer, and an XPath 1.0 implementation for complex data-driven tree queries. Full Unicode support is also available, with Unicode interface variants and conversions between different Unicode encodings (which happen automatically during parsing/saving).
|
||||
pugixml is used by a lot of projects, both open-source and proprietary, for performance and easy-to-use interface.";
|
||||
|
||||
tags: { native };
|
||||
}
|
||||
files {
|
||||
include: { "..\src\*.hpp" };
|
||||
|
||||
[x86,release] { lib: vs2015\Win32_Release\pugixml.lib; }
|
||||
[x86,debug] { lib: vs2015\Win32_Debug\pugixml.lib; }
|
||||
[x64,release] { lib: vs2015\x64_Release\pugixml.lib; }
|
||||
[x64,debug] { lib: vs2015\x64_Debug\pugixml.lib; }
|
||||
}
|
||||
}
|
9
3party/pugixml/scripts/nuget_build.bat
Executable file
|
@ -0,0 +1,9 @@
|
|||
@echo off
|
||||
cd %~dp0
|
||||
|
||||
"%VS140COMNTOOLS%\VsMSBuildCmd.bat" && ^
|
||||
msbuild pugixml_vs2015.vcxproj /t:Rebuild /p:Configuration=Debug /p:Platform=x86 /v:minimal /nologo && ^
|
||||
msbuild pugixml_vs2015.vcxproj /t:Rebuild /p:Configuration=Release /p:Platform=x86 /v:minimal /nologo && ^
|
||||
msbuild pugixml_vs2015.vcxproj /t:Rebuild /p:Configuration=Debug /p:Platform=x64 /v:minimal /nologo && ^
|
||||
msbuild pugixml_vs2015.vcxproj /t:Rebuild /p:Configuration=Release /p:Platform=x64 /v:minimal /nologo && ^
|
||||
powershell Write-NuGetPackage nuget.autopkg
|
0
3party/pugixml/scripts/premake4.lua
Normal file → Executable file
0
3party/pugixml/scripts/pugixml.xcodeproj/project.pbxproj
Normal file → Executable file
1
3party/pugixml/scripts/pugixml_airplay.mkf
Normal file → Executable file
|
@ -10,3 +10,4 @@ pugiconfig.hpp
|
|||
pugixml.cpp
|
||||
pugixml.hpp
|
||||
}
|
||||
|
||||
|
|
1
3party/pugixml/scripts/pugixml_codeblocks.cbp
Normal file → Executable file
|
@ -41,3 +41,4 @@
|
|||
<Extensions />
|
||||
</Project>
|
||||
</CodeBlocks_project_file>
|
||||
|
||||
|
|
0
3party/pugixml/scripts/pugixml_codelite.project
Normal file → Executable file
7
3party/pugixml/src/pugiconfig.hpp
Normal file → Executable file
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* pugixml parser - version 1.6
|
||||
* pugixml parser - version 1.7
|
||||
* --------------------------------------------------------
|
||||
* Copyright (C) 2006-2015, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
||||
* Report bugs and download new versions at http://pugixml.org/
|
||||
|
@ -17,6 +17,9 @@
|
|||
// Uncomment this to enable wchar_t mode
|
||||
// #define PUGIXML_WCHAR_MODE
|
||||
|
||||
// Uncomment this to enable compact mode
|
||||
// #define PUGIXML_COMPACT
|
||||
|
||||
// Uncomment this to disable XPath
|
||||
// #define PUGIXML_NO_XPATH
|
||||
|
||||
|
@ -59,7 +62,7 @@
|
|||
*
|
||||
* 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
|
||||
|
|
3027
3party/pugixml/src/pugixml.cpp
Normal file → Executable file
148
3party/pugixml/src/pugixml.hpp
Normal file → Executable file
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* pugixml parser - version 1.6
|
||||
* pugixml parser - version 1.7
|
||||
* --------------------------------------------------------
|
||||
* Copyright (C) 2006-2015, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
||||
* Report bugs and download new versions at http://pugixml.org/
|
||||
|
@ -13,7 +13,7 @@
|
|||
|
||||
#ifndef PUGIXML_VERSION
|
||||
// Define version macro; evaluates to major * 100 + minor so that it's safe to use in less-than comparisons
|
||||
# define PUGIXML_VERSION 160
|
||||
# define PUGIXML_VERSION 170
|
||||
#endif
|
||||
|
||||
// Include user configuration file (this can define various configuration macros)
|
||||
|
@ -65,7 +65,7 @@
|
|||
|
||||
// If the platform is known to have long long support, enable long long functions
|
||||
#ifndef PUGIXML_HAS_LONG_LONG
|
||||
# if defined(__cplusplus) && __cplusplus >= 201103
|
||||
# if __cplusplus >= 201103
|
||||
# define PUGIXML_HAS_LONG_LONG
|
||||
# elif defined(_MSC_VER) && _MSC_VER >= 1400
|
||||
# define PUGIXML_HAS_LONG_LONG
|
||||
|
@ -133,13 +133,13 @@ namespace pugi
|
|||
|
||||
// This flag determines if EOL characters are normalized (converted to #xA) during parsing. This flag is on by default.
|
||||
const unsigned int parse_eol = 0x0020;
|
||||
|
||||
|
||||
// This flag determines if attribute values are normalized using CDATA normalization rules during parsing. This flag is on by default.
|
||||
const unsigned int parse_wconv_attribute = 0x0040;
|
||||
|
||||
// This flag determines if attribute values are normalized using NMTOKENS normalization rules during parsing. This flag is off by default.
|
||||
const unsigned int parse_wnorm_attribute = 0x0080;
|
||||
|
||||
|
||||
// This flag determines if document declaration (node_declaration) is added to the DOM tree. This flag is off by default.
|
||||
const unsigned int parse_declaration = 0x0100;
|
||||
|
||||
|
@ -184,16 +184,16 @@ namespace pugi
|
|||
};
|
||||
|
||||
// Formatting flags
|
||||
|
||||
|
||||
// Indent the nodes that are written to output stream with as many indentation strings as deep the node is in DOM tree. This flag is on by default.
|
||||
const unsigned int format_indent = 0x01;
|
||||
|
||||
|
||||
// Write encoding-specific BOM to the output stream. This flag is off by default.
|
||||
const unsigned int format_write_bom = 0x02;
|
||||
|
||||
// Use raw output mode (no indentation and no line breaks are written). This flag is off by default.
|
||||
const unsigned int format_raw = 0x04;
|
||||
|
||||
|
||||
// Omit default XML declaration even if there is no declaration in the document. This flag is off by default.
|
||||
const unsigned int format_no_declaration = 0x08;
|
||||
|
||||
|
@ -203,6 +203,9 @@ namespace pugi
|
|||
// Open file using text mode in xml_document::save_file. This enables special character (i.e. new-line) conversions on some systems. This flag is off by default.
|
||||
const unsigned int format_save_file_text = 0x20;
|
||||
|
||||
// Write every attribute on a new line with appropriate indentation. This flag is off by default.
|
||||
const unsigned int format_indent_attributes = 0x40;
|
||||
|
||||
// The default set of formatting flags.
|
||||
// Nodes are indented depending on their depth in DOM tree, a default declaration is output if document has none.
|
||||
const unsigned int format_default = format_indent;
|
||||
|
@ -222,7 +225,7 @@ namespace pugi
|
|||
class xml_node;
|
||||
|
||||
class xml_text;
|
||||
|
||||
|
||||
#ifndef PUGIXML_NO_XPATH
|
||||
class xpath_node;
|
||||
class xpath_node_set;
|
||||
|
@ -296,13 +299,13 @@ namespace pugi
|
|||
|
||||
private:
|
||||
xml_attribute_struct* _attr;
|
||||
|
||||
|
||||
typedef void (*unspecified_bool_type)(xml_attribute***);
|
||||
|
||||
public:
|
||||
// Default constructor. Constructs an empty attribute.
|
||||
xml_attribute();
|
||||
|
||||
|
||||
// Constructs attribute from internal pointer
|
||||
explicit xml_attribute(xml_attribute_struct* attr);
|
||||
|
||||
|
@ -414,7 +417,7 @@ namespace pugi
|
|||
|
||||
// Borland C++ workaround
|
||||
bool operator!() const;
|
||||
|
||||
|
||||
// Comparison operators (compares wrapped node pointers)
|
||||
bool operator==(const xml_node& r) const;
|
||||
bool operator!=(const xml_node& r) const;
|
||||
|
@ -435,7 +438,7 @@ namespace pugi
|
|||
// Get node value, or "" if node is empty or it has no value
|
||||
// Note: For <node>text</node> node.value() does not return "text"! Use child_value() or text() methods to access text inside nodes.
|
||||
const char_t* value() const;
|
||||
|
||||
|
||||
// Get attribute list
|
||||
xml_attribute first_attribute() const;
|
||||
xml_attribute last_attribute() const;
|
||||
|
@ -447,7 +450,7 @@ namespace pugi
|
|||
// Get next/previous sibling in the children list of the parent node
|
||||
xml_node next_sibling() const;
|
||||
xml_node previous_sibling() const;
|
||||
|
||||
|
||||
// Get parent node
|
||||
xml_node parent() const;
|
||||
|
||||
|
@ -463,6 +466,9 @@ namespace pugi
|
|||
xml_node next_sibling(const char_t* name) const;
|
||||
xml_node previous_sibling(const char_t* name) const;
|
||||
|
||||
// Get attribute, starting the search from a hint (and updating hint so that searching for a sequence of attributes is fast)
|
||||
xml_attribute attribute(const char_t* name, xml_attribute& hint) const;
|
||||
|
||||
// Get child value of current node; that is, value of the first child node of type PCDATA/CDATA
|
||||
const char_t* child_value() const;
|
||||
|
||||
|
@ -472,7 +478,7 @@ namespace pugi
|
|||
// Set node name/value (returns false if node is empty, there is not enough memory, or node can not have name/value)
|
||||
bool set_name(const char_t* rhs);
|
||||
bool set_value(const char_t* rhs);
|
||||
|
||||
|
||||
// Add attribute with specified name. Returns added attribute, or empty attribute on errors.
|
||||
xml_attribute append_attribute(const char_t* name);
|
||||
xml_attribute prepend_attribute(const char_t* name);
|
||||
|
@ -526,11 +532,11 @@ namespace pugi
|
|||
template <typename Predicate> xml_attribute find_attribute(Predicate pred) const
|
||||
{
|
||||
if (!_root) return xml_attribute();
|
||||
|
||||
|
||||
for (xml_attribute attrib = first_attribute(); attrib; attrib = attrib.next_attribute())
|
||||
if (pred(attrib))
|
||||
return attrib;
|
||||
|
||||
|
||||
return xml_attribute();
|
||||
}
|
||||
|
||||
|
@ -538,11 +544,11 @@ namespace pugi
|
|||
template <typename Predicate> xml_node find_child(Predicate pred) const
|
||||
{
|
||||
if (!_root) return xml_node();
|
||||
|
||||
|
||||
for (xml_node node = first_child(); node; node = node.next_sibling())
|
||||
if (pred(node))
|
||||
return node;
|
||||
|
||||
|
||||
return xml_node();
|
||||
}
|
||||
|
||||
|
@ -552,7 +558,7 @@ namespace pugi
|
|||
if (!_root) return xml_node();
|
||||
|
||||
xml_node cur = first_child();
|
||||
|
||||
|
||||
while (cur._root && cur._root != _root)
|
||||
{
|
||||
if (pred(cur)) return cur;
|
||||
|
@ -584,7 +590,7 @@ namespace pugi
|
|||
|
||||
// Recursively traverse subtree with xml_tree_walker
|
||||
bool traverse(xml_tree_walker& walker);
|
||||
|
||||
|
||||
#ifndef PUGIXML_NO_XPATH
|
||||
// Select single node by evaluating XPath query. Returns first node from the resulting node set.
|
||||
xpath_node select_node(const char_t* query, xpath_variable_set* variables = 0) const;
|
||||
|
@ -599,7 +605,7 @@ namespace pugi
|
|||
xpath_node select_single_node(const xpath_query& query) const;
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
// Print subtree using a writer object
|
||||
void print(xml_writer& writer, const char_t* indent = PUGIXML_TEXT("\t"), unsigned int flags = format_default, xml_encoding encoding = encoding_auto, unsigned int depth = 0) const;
|
||||
|
||||
|
@ -861,11 +867,11 @@ namespace pugi
|
|||
|
||||
private:
|
||||
int _depth;
|
||||
|
||||
|
||||
protected:
|
||||
// Get current traversal depth
|
||||
int depth() const;
|
||||
|
||||
|
||||
public:
|
||||
xml_tree_walker();
|
||||
virtual ~xml_tree_walker();
|
||||
|
@ -936,10 +942,10 @@ namespace pugi
|
|||
char_t* _buffer;
|
||||
|
||||
char _memory[192];
|
||||
|
||||
|
||||
// Non-copyable semantics
|
||||
xml_document(const xml_document&);
|
||||
const xml_document& operator=(const xml_document&);
|
||||
xml_document& operator=(const xml_document&);
|
||||
|
||||
void create();
|
||||
void destroy();
|
||||
|
@ -1040,12 +1046,12 @@ namespace pugi
|
|||
xpath_value_type _type;
|
||||
xpath_variable* _next;
|
||||
|
||||
xpath_variable();
|
||||
xpath_variable(xpath_value_type type);
|
||||
|
||||
// Non-copyable semantics
|
||||
xpath_variable(const xpath_variable&);
|
||||
xpath_variable& operator=(const xpath_variable&);
|
||||
|
||||
|
||||
public:
|
||||
// Get variable name
|
||||
const char_t* name() const;
|
||||
|
@ -1072,17 +1078,29 @@ namespace pugi
|
|||
private:
|
||||
xpath_variable* _data[64];
|
||||
|
||||
// Non-copyable semantics
|
||||
xpath_variable_set(const xpath_variable_set&);
|
||||
xpath_variable_set& operator=(const xpath_variable_set&);
|
||||
void _assign(const xpath_variable_set& rhs);
|
||||
void _swap(xpath_variable_set& rhs);
|
||||
|
||||
xpath_variable* find(const char_t* name) const;
|
||||
xpath_variable* _find(const char_t* name) const;
|
||||
|
||||
static bool _clone(xpath_variable* var, xpath_variable** out_result);
|
||||
static void _destroy(xpath_variable* var);
|
||||
|
||||
public:
|
||||
// Default constructor/destructor
|
||||
xpath_variable_set();
|
||||
~xpath_variable_set();
|
||||
|
||||
// Copy constructor/assignment operator
|
||||
xpath_variable_set(const xpath_variable_set& rhs);
|
||||
xpath_variable_set& operator=(const xpath_variable_set& rhs);
|
||||
|
||||
#if __cplusplus >= 201103
|
||||
// Move semantics support
|
||||
xpath_variable_set(xpath_variable_set&& rhs);
|
||||
xpath_variable_set& operator=(xpath_variable_set&& rhs);
|
||||
#endif
|
||||
|
||||
// Add a new variable or get the existing one, if the types match
|
||||
xpath_variable* add(const char_t* name, xpath_value_type type);
|
||||
|
||||
|
@ -1115,26 +1133,35 @@ namespace pugi
|
|||
// If PUGIXML_NO_EXCEPTIONS is not defined, throws xpath_exception on compilation errors.
|
||||
explicit xpath_query(const char_t* query, xpath_variable_set* variables = 0);
|
||||
|
||||
// Constructor
|
||||
xpath_query();
|
||||
|
||||
// Destructor
|
||||
~xpath_query();
|
||||
|
||||
#if __cplusplus >= 201103
|
||||
// Move semantics support
|
||||
xpath_query(xpath_query&& rhs);
|
||||
xpath_query& operator=(xpath_query&& rhs);
|
||||
#endif
|
||||
|
||||
// Get query expression return type
|
||||
xpath_value_type return_type() const;
|
||||
|
||||
|
||||
// Evaluate expression as boolean value in the specified context; performs type conversion if necessary.
|
||||
// If PUGIXML_NO_EXCEPTIONS is not defined, throws std::bad_alloc on out of memory errors.
|
||||
bool evaluate_boolean(const xpath_node& n) const;
|
||||
|
||||
|
||||
// Evaluate expression as double value in the specified context; performs type conversion if necessary.
|
||||
// If PUGIXML_NO_EXCEPTIONS is not defined, throws std::bad_alloc on out of memory errors.
|
||||
double evaluate_number(const xpath_node& n) const;
|
||||
|
||||
|
||||
#ifndef PUGIXML_NO_STL
|
||||
// Evaluate expression as string value in the specified context; performs type conversion if necessary.
|
||||
// If PUGIXML_NO_EXCEPTIONS is not defined, throws std::bad_alloc on out of memory errors.
|
||||
string_t evaluate_string(const xpath_node& n) const;
|
||||
#endif
|
||||
|
||||
|
||||
// Evaluate expression as string value in the specified context; performs type conversion if necessary.
|
||||
// At most capacity characters are written to the destination buffer, full result size is returned (includes terminating zero).
|
||||
// If PUGIXML_NO_EXCEPTIONS is not defined, throws std::bad_alloc on out of memory errors.
|
||||
|
@ -1161,7 +1188,7 @@ namespace pugi
|
|||
// Borland C++ workaround
|
||||
bool operator!() const;
|
||||
};
|
||||
|
||||
|
||||
#ifndef PUGIXML_NO_EXCEPTIONS
|
||||
// XPath exception class
|
||||
class PUGIXML_CLASS xpath_exception: public std::exception
|
||||
|
@ -1180,20 +1207,20 @@ namespace pugi
|
|||
const xpath_parse_result& result() const;
|
||||
};
|
||||
#endif
|
||||
|
||||
|
||||
// XPath node class (either xml_node or xml_attribute)
|
||||
class PUGIXML_CLASS xpath_node
|
||||
{
|
||||
private:
|
||||
xml_node _node;
|
||||
xml_attribute _attribute;
|
||||
|
||||
|
||||
typedef void (*unspecified_bool_type)(xpath_node***);
|
||||
|
||||
public:
|
||||
// Default constructor; constructs empty XPath node
|
||||
xpath_node();
|
||||
|
||||
|
||||
// Construct XPath node from XML node/attribute
|
||||
xpath_node(const xml_node& node);
|
||||
xpath_node(const xml_attribute& attribute, const xml_node& parent);
|
||||
|
@ -1201,13 +1228,13 @@ namespace pugi
|
|||
// Get node/attribute, if any
|
||||
xml_node node() const;
|
||||
xml_attribute attribute() const;
|
||||
|
||||
|
||||
// Get parent of contained node/attribute
|
||||
xml_node parent() const;
|
||||
|
||||
// Safe bool conversion operator
|
||||
operator unspecified_bool_type() const;
|
||||
|
||||
|
||||
// Borland C++ workaround
|
||||
bool operator!() const;
|
||||
|
||||
|
@ -1233,13 +1260,13 @@ namespace pugi
|
|||
type_sorted, // Sorted by document order (ascending)
|
||||
type_sorted_reverse // Sorted by document order (descending)
|
||||
};
|
||||
|
||||
|
||||
// Constant iterator type
|
||||
typedef const xpath_node* const_iterator;
|
||||
|
||||
// We define non-constant iterator to be the same as constant iterator so that various generic algorithms (i.e. boost foreach) work
|
||||
typedef const xpath_node* iterator;
|
||||
|
||||
|
||||
// Default constructor. Constructs empty set.
|
||||
xpath_node_set();
|
||||
|
||||
|
@ -1248,42 +1275,49 @@ namespace pugi
|
|||
|
||||
// Destructor
|
||||
~xpath_node_set();
|
||||
|
||||
|
||||
// Copy constructor/assignment operator
|
||||
xpath_node_set(const xpath_node_set& ns);
|
||||
xpath_node_set& operator=(const xpath_node_set& ns);
|
||||
|
||||
#if __cplusplus >= 201103
|
||||
// Move semantics support
|
||||
xpath_node_set(xpath_node_set&& rhs);
|
||||
xpath_node_set& operator=(xpath_node_set&& rhs);
|
||||
#endif
|
||||
|
||||
// Get collection type
|
||||
type_t type() const;
|
||||
|
||||
|
||||
// Get collection size
|
||||
size_t size() const;
|
||||
|
||||
// Indexing operator
|
||||
const xpath_node& operator[](size_t index) const;
|
||||
|
||||
|
||||
// Collection iterators
|
||||
const_iterator begin() const;
|
||||
const_iterator end() const;
|
||||
|
||||
// Sort the collection in ascending/descending order by document order
|
||||
void sort(bool reverse = false);
|
||||
|
||||
|
||||
// Get first node in the collection by document order
|
||||
xpath_node first() const;
|
||||
|
||||
|
||||
// Check if collection is empty
|
||||
bool empty() const;
|
||||
|
||||
|
||||
private:
|
||||
type_t _type;
|
||||
|
||||
|
||||
xpath_node _storage;
|
||||
|
||||
|
||||
xpath_node* _begin;
|
||||
xpath_node* _end;
|
||||
|
||||
void _assign(const_iterator begin, const_iterator end);
|
||||
void _assign(const_iterator begin, const_iterator end, type_t type);
|
||||
void _move(xpath_node_set& rhs);
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -1291,7 +1325,7 @@ namespace pugi
|
|||
// Convert wide string to UTF8
|
||||
std::basic_string<char, std::char_traits<char>, std::allocator<char> > PUGIXML_FUNCTION as_utf8(const wchar_t* str);
|
||||
std::basic_string<char, std::char_traits<char>, std::allocator<char> > PUGIXML_FUNCTION as_utf8(const std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >& str);
|
||||
|
||||
|
||||
// Convert UTF8 to wide string
|
||||
std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > PUGIXML_FUNCTION as_wide(const char* str);
|
||||
std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > PUGIXML_FUNCTION as_wide(const std::basic_string<char, std::char_traits<char>, std::allocator<char> >& str);
|
||||
|
@ -1299,13 +1333,13 @@ namespace pugi
|
|||
|
||||
// Memory allocation function interface; returns pointer to allocated memory or NULL on failure
|
||||
typedef void* (*allocation_function)(size_t size);
|
||||
|
||||
|
||||
// Memory deallocation function interface
|
||||
typedef void (*deallocation_function)(void* ptr);
|
||||
|
||||
// Override default memory management functions. All subsequent allocations/deallocations will be performed via supplied functions.
|
||||
void PUGIXML_FUNCTION set_memory_management_functions(allocation_function allocate, deallocation_function deallocate);
|
||||
|
||||
|
||||
// Get current memory management functions
|
||||
allocation_function PUGIXML_FUNCTION get_memory_allocation_function();
|
||||
deallocation_function PUGIXML_FUNCTION get_memory_deallocation_function();
|
||||
|
@ -1354,7 +1388,7 @@ namespace std
|
|||
*
|
||||
* 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
|
||||
|
|
27
3party/pugixml/tests/allocator.cpp
Normal file → Executable file
|
@ -2,6 +2,14 @@
|
|||
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
// Address sanitizer
|
||||
#if defined(__has_feature)
|
||||
# define ADDRESS_SANITIZER __has_feature(address_sanitizer)
|
||||
#else
|
||||
# define ADDRESS_SANITIZER defined(__SANITIZE_ADDRESS__)
|
||||
#endif
|
||||
|
||||
// Low-level allocation functions
|
||||
#if defined(_WIN32) || defined(_WIN64)
|
||||
|
@ -66,7 +74,7 @@ namespace
|
|||
VirtualProtect(rptr, aligned_size + page_size, PAGE_NOACCESS, &old_flags);
|
||||
}
|
||||
}
|
||||
#elif defined(__APPLE__) || defined(__linux__)
|
||||
#elif (defined(__APPLE__) || defined(__linux__)) && (defined(__i386) || defined(__x86_64)) && !ADDRESS_SANITIZER
|
||||
# include <sys/mman.h>
|
||||
|
||||
namespace
|
||||
|
@ -80,7 +88,9 @@ namespace
|
|||
|
||||
void* allocate_page_aligned(size_t size)
|
||||
{
|
||||
return mmap(0, size + page_size, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON, -1, 0);
|
||||
void* result = malloc(size + page_size);
|
||||
|
||||
return reinterpret_cast<void*>(align_to_page(reinterpret_cast<size_t>(result)));
|
||||
}
|
||||
|
||||
void* allocate(size_t size)
|
||||
|
@ -111,8 +121,6 @@ namespace
|
|||
}
|
||||
}
|
||||
#else
|
||||
# include <stdlib.h>
|
||||
|
||||
namespace
|
||||
{
|
||||
void* allocate(size_t size)
|
||||
|
@ -130,14 +138,16 @@ namespace
|
|||
#endif
|
||||
|
||||
// High-level allocation functions
|
||||
const size_t memory_alignment = sizeof(double) > sizeof(void*) ? sizeof(double) : sizeof(void*);
|
||||
|
||||
void* memory_allocate(size_t size)
|
||||
{
|
||||
void* result = allocate(size + sizeof(size_t));
|
||||
void* result = allocate(size + memory_alignment);
|
||||
if (!result) return 0;
|
||||
|
||||
memcpy(result, &size, sizeof(size_t));
|
||||
|
||||
return static_cast<size_t*>(result) + 1;
|
||||
return static_cast<char*>(result) + memory_alignment;
|
||||
}
|
||||
|
||||
size_t memory_size(void* ptr)
|
||||
|
@ -145,7 +155,7 @@ size_t memory_size(void* ptr)
|
|||
assert(ptr);
|
||||
|
||||
size_t result;
|
||||
memcpy(&result, static_cast<size_t*>(ptr) - 1, sizeof(size_t));
|
||||
memcpy(&result, static_cast<char*>(ptr) - memory_alignment, sizeof(size_t));
|
||||
|
||||
return result;
|
||||
}
|
||||
|
@ -156,5 +166,6 @@ void memory_deallocate(void* ptr)
|
|||
|
||||
size_t size = memory_size(ptr);
|
||||
|
||||
deallocate(static_cast<size_t*>(ptr) - 1, size + sizeof(size_t));
|
||||
deallocate(static_cast<char*>(ptr) - memory_alignment, size + memory_alignment);
|
||||
}
|
||||
|
||||
|
|
0
3party/pugixml/tests/allocator.hpp
Normal file → Executable file
0
3party/pugixml/tests/archive.pl
Normal file → Executable file
71
3party/pugixml/tests/autotest-appveyor.ps1
Executable file
|
@ -0,0 +1,71 @@
|
|||
function Invoke-CmdScript($scriptName)
|
||||
{
|
||||
$cmdLine = """$scriptName"" $args & set"
|
||||
& $Env:SystemRoot\system32\cmd.exe /c $cmdLine |
|
||||
select-string '^([^=]*)=(.*)$' | foreach-object {
|
||||
$varName = $_.Matches[0].Groups[1].Value
|
||||
$varValue = $_.Matches[0].Groups[2].Value
|
||||
set-item Env:$varName $varValue
|
||||
}
|
||||
}
|
||||
|
||||
$sources = @("src/pugixml.cpp") + (Get-ChildItem -Path "tests/*.cpp" -Exclude "fuzz_*.cpp")
|
||||
$failed = $FALSE
|
||||
|
||||
foreach ($vs in 9,10,11,12,14)
|
||||
{
|
||||
foreach ($arch in "x86","x64")
|
||||
{
|
||||
Write-Output "# Setting up VS$vs $arch"
|
||||
|
||||
Invoke-CmdScript "C:\Program Files (x86)\Microsoft Visual Studio $vs.0\VC\vcvarsall.bat" $arch
|
||||
if (! $?) { throw "Error setting up VS$vs $arch" }
|
||||
|
||||
foreach ($defines in "standard", "PUGIXML_WCHAR_MODE", "PUGIXML_COMPACT")
|
||||
{
|
||||
$target = "tests_vs${vs}_${arch}_${defines}"
|
||||
$deflist = if ($defines -eq "standard") { "" } else { "/D$defines" }
|
||||
|
||||
Add-AppveyorTest $target -Outcome Running
|
||||
|
||||
Write-Output "# Building $target.exe"
|
||||
& cmd /c "cl.exe /Fe$target.exe /EHsc /W4 /WX $deflist $sources 2>&1" | Tee-Object -Variable buildOutput
|
||||
|
||||
if ($?)
|
||||
{
|
||||
Write-Output "# Running $target.exe"
|
||||
|
||||
$sw = [Diagnostics.Stopwatch]::StartNew()
|
||||
|
||||
& .\$target | Tee-Object -Variable testOutput
|
||||
|
||||
if ($?)
|
||||
{
|
||||
Write-Output "# Passed"
|
||||
|
||||
Update-AppveyorTest $target -Outcome Passed -StdOut ($testOutput | out-string) -Duration $sw.ElapsedMilliseconds
|
||||
}
|
||||
else
|
||||
{
|
||||
Write-Output "# Failed"
|
||||
|
||||
Update-AppveyorTest $target -Outcome Failed -StdOut ($testOutput | out-string) -ErrorMessage "Running failed"
|
||||
|
||||
$failed = $TRUE
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
Write-Output "# Failed to build"
|
||||
|
||||
Update-AppveyorTest $target -Outcome Failed -StdOut ($buildOutput | out-string) -ErrorMessage "Compilation failed"
|
||||
|
||||
$failed = $TRUE
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ($failed) { throw "One or more build steps failed" }
|
||||
|
||||
Write-Output "# End"
|
|
@ -1,10 +0,0 @@
|
|||
#!/bin/sh
|
||||
# put this to /etc/rc.d/pugixml-autotest
|
||||
# don't forget to chmod +x pugixml-autotest and to replace /home/USERNAME with actual path
|
||||
|
||||
if [ "$1" = "start" -o "$1" = "faststart" ]
|
||||
then
|
||||
PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin
|
||||
cd /home/USERNAME/pugixml
|
||||
perl tests/autotest-remote-host.pl "shutdown -p now" &
|
||||
fi
|
|
@ -1,14 +0,0 @@
|
|||
#!/bin/sh
|
||||
# chkconfig: 2345 20 80
|
||||
# description: pugixml autotest script
|
||||
# put this to /etc/init.d/pugixml-autotest.sh, then launch
|
||||
# Debian/Ubuntu: sudo update-rc.d pugixml-autotest.sh defaults 80
|
||||
# Fedora/RedHat: sudo chkconfig --add pugixml-autotest.sh
|
||||
# don't forget to chmod +x pugixml-autotest.sh and to replace /home/USERNAME with actual path
|
||||
|
||||
if [ "$1" = "start" ]
|
||||
then
|
||||
PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin
|
||||
cd /home/USERNAME/pugixml
|
||||
perl tests/autotest-remote-host.pl "shutdown -P now" &
|
||||
fi
|
|
@ -1,150 +0,0 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
use Config;
|
||||
|
||||
sub permute
|
||||
{
|
||||
my @defines = @_;
|
||||
my @result = ('');
|
||||
|
||||
foreach $define (@defines)
|
||||
{
|
||||
push @result, map { length($_) == 0 ? $define : "$_,$define" } @result;
|
||||
}
|
||||
|
||||
@result;
|
||||
}
|
||||
|
||||
sub gcctoolset
|
||||
{
|
||||
my $gccversion = `gcc -dumpversion`;
|
||||
chomp($gccversion);
|
||||
|
||||
my $gcc = "gcc$gccversion";
|
||||
|
||||
return ($^O =~ /darwin/) ? ($gcc, "${gcc}_x64", "${gcc}_ppc") : (`uname -m` =~ /64/) ? ("${gcc}_x64") : ($gcc);
|
||||
}
|
||||
|
||||
sub getcpucount
|
||||
{
|
||||
return $1 if ($^O =~ /linux/ && `cat /proc/cpuinfo` =~ /cpu cores\s*:\s*(\d+)/);
|
||||
return $1 if ($^O =~ /freebsd|darwin/ && `sysctl -a` =~ /hw\.ncpu\s*:\s*(\d+)/);
|
||||
return $1 - 1 if ($^O =~ /solaris/ && `mpstat | wc -l` =~ /(\d+)/);
|
||||
|
||||
undef;
|
||||
}
|
||||
|
||||
@alltoolsets = ($^O =~ /MSWin/)
|
||||
? (bcc, cw, dmc,
|
||||
ic8, ic9, ic9_x64, ic10, ic10_x64, ic11, ic11_x64,
|
||||
mingw34, mingw44, mingw45, mingw45_0x, mingw46_x64,
|
||||
msvc6, msvc7, msvc71, msvc8, msvc8_x64, msvc9, msvc9_x64,
|
||||
msvc10, msvc10_x64, msvc10_clr, msvc10_clr_x64,
|
||||
msvc11, msvc11_x64, msvc11_clr, msvc11_clr_x64, msvc11_arm,
|
||||
msvc12, msvc12_x64, msvc12_clr, msvc12_clr_x64, msvc12_arm,
|
||||
xbox360, ps3_gcc, ps3_snc, msvc8_wince, bada, blackberry, android, android_stlport)
|
||||
: ($^O =~ /solaris/)
|
||||
? (suncc, suncc_x64)
|
||||
: &gcctoolset();
|
||||
|
||||
$fast = scalar grep(/^fast$/, @ARGV);
|
||||
@toolsets = map { /^fast$/ ? () : ($_) } @ARGV;
|
||||
@toolsets = @toolsets ? @toolsets : @alltoolsets;
|
||||
|
||||
@configurations = (debug, release);
|
||||
@defines = (PUGIXML_NO_XPATH, PUGIXML_NO_EXCEPTIONS, PUGIXML_NO_STL, PUGIXML_WCHAR_MODE);
|
||||
$stddefine = 'PUGIXML_STANDARD';
|
||||
|
||||
if ($fast)
|
||||
{
|
||||
@defines = (PUGIXML_WCHAR_MODE);
|
||||
@configurations = (debug);
|
||||
}
|
||||
|
||||
@definesets = permute(@defines);
|
||||
|
||||
print "### autotest begin " . scalar localtime() . "\n";
|
||||
|
||||
# print Git revision info
|
||||
print "### autotest revision $1\n" if (`git rev-parse HEAD` =~ /(.+)/);
|
||||
|
||||
# get CPU info
|
||||
$cpucount = &getcpucount();
|
||||
|
||||
# build all configurations
|
||||
%results = ();
|
||||
|
||||
foreach $toolset (@toolsets)
|
||||
{
|
||||
my $cmdline = "jam";
|
||||
|
||||
# parallel build on non-windows platforms (since jam can't detect processor count)
|
||||
$cmdline .= " -j$cpucount" if (defined $cpucount);
|
||||
|
||||
# add toolset
|
||||
$cmdline .= " toolset=$toolset";
|
||||
|
||||
# add configurations
|
||||
$cmdline .= " configuration=" . join(',', @configurations);
|
||||
|
||||
# add definesets
|
||||
$cmdline .= " defines=$stddefine";
|
||||
|
||||
foreach $defineset (@definesets)
|
||||
{
|
||||
# STLport lacks bad_alloc on Android so skip configurations without PUGIXML_NO_EXCEPTIONS
|
||||
next if ($toolset eq 'android_stlport' && $defineset !~ /PUGIXML_NO_EXCEPTIONS/);
|
||||
|
||||
$cmdline .= ":$defineset" if ($defineset ne '');
|
||||
|
||||
# any configuration with prepare but without result is treated as failed
|
||||
foreach $configuration (@configurations)
|
||||
{
|
||||
print "### autotest $Config{archname} $toolset $configuration [$defineset] prepare\n";
|
||||
}
|
||||
}
|
||||
|
||||
print STDERR "*** testing $toolset... ***\n";
|
||||
|
||||
# launch command
|
||||
print "### autotest launch $cmdline\n";
|
||||
|
||||
open PIPE, "$cmdline autotest=on coverage |" || die "$cmdline failed: $!\n";
|
||||
|
||||
# parse build output
|
||||
while (<PIPE>)
|
||||
{
|
||||
# ... autotest release [wchar] success
|
||||
if (/^\.\.\. autotest (\S+) \[(.*?)\] (success|skiprun)/)
|
||||
{
|
||||
my $configuration = $1;
|
||||
my $defineset = ($2 eq $stddefine) ? '' : $2;
|
||||
my $result = $3;
|
||||
|
||||
print "### autotest $Config{archname} $toolset $configuration [$defineset] $result\n";
|
||||
}
|
||||
# ... autotest release [wchar] gcov
|
||||
elsif (/^\.\.\. autotest (\S+) \[(.*?)\] gcov/)
|
||||
{
|
||||
my $configuration = $1;
|
||||
my $defineset = ($2 eq $stddefine) ? '' : $2;
|
||||
|
||||
if (/pugixml\.cpp' executed:([^%]+)%/)
|
||||
{
|
||||
print "### autotest $Config{archname} $toolset $configuration [$defineset] coverage $1\n";
|
||||
}
|
||||
else
|
||||
{
|
||||
print;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
print;
|
||||
}
|
||||
}
|
||||
|
||||
close PIPE;
|
||||
}
|
||||
|
||||
print "### autotest end " . scalar localtime() . "\n";
|
|
@ -1,12 +0,0 @@
|
|||
#!/bin/sh
|
||||
# put this to /Library/StartupItems/pugixml-autotest/pugixml-autotest, then create
|
||||
# file StartupParameters.plist in the same folder with the following contents:
|
||||
# <plist><dict><key>Provides</key><array><string>pugixml-autotest</string></array></dict></plist>
|
||||
# don't forget to chmod +x pugixml-autotest and to replace /Users/USERNAME with actual path
|
||||
|
||||
if [ "$1" = "start" ]
|
||||
then
|
||||
PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin
|
||||
cd /Users/USERNAME/pugixml
|
||||
perl tests/autotest-remote-host.pl "shutdown -h now" &
|
||||
fi
|
|
@ -1,37 +0,0 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
sub execprint
|
||||
{
|
||||
my $cmd = shift;
|
||||
|
||||
open PIPE, "$cmd |" || die "$cmd failed: $!\n";
|
||||
print while (<PIPE>);
|
||||
close PIPE;
|
||||
|
||||
return $?;
|
||||
}
|
||||
|
||||
use IO::Socket;
|
||||
use Net::Ping;
|
||||
|
||||
$exitcmd = shift;
|
||||
$host = "10.0.2.2";
|
||||
|
||||
# wait while network is up
|
||||
$ping = Net::Ping->new("icmp");
|
||||
|
||||
while (!$ping->ping($host))
|
||||
{
|
||||
print "### autotest $host is down, retrying...\n";
|
||||
}
|
||||
|
||||
print "### autotest $host is up, connecting...\n";
|
||||
|
||||
my $client = new IO::Socket::INET(PeerAddr => "$host:7183");
|
||||
exit unless $client;
|
||||
|
||||
select $client;
|
||||
|
||||
&execprint('git pull') == 0 || die "error updating from repo\n";
|
||||
&execprint('perl tests/autotest-local.pl') == 0 || die "error launching tests\n";
|
||||
system($exitcmd);
|
|
@ -1,33 +0,0 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
use IO::Socket;
|
||||
|
||||
$vm = shift;
|
||||
$log = shift;
|
||||
|
||||
# start virtualbox gui in minimized mode - this should be the first thing we do since this process
|
||||
# inherits all handles and we want our sockets/log file closed
|
||||
system("start /min virtualbox --startvm $vm");
|
||||
|
||||
# start a server; vm will connect to the server via autotest-remote-host.pl
|
||||
my $server = new IO::Socket::INET(LocalPort => 7183, Listen => 1);
|
||||
die "Could not create socket: $!\n" unless $server;
|
||||
|
||||
open LOG, ">> $log" || die "Could not open log file: $!\n";
|
||||
|
||||
print LOG "Listening for connection...\n";
|
||||
|
||||
my $client = $server->accept();
|
||||
|
||||
# echo all input to log file
|
||||
print LOG $_ while (<$client>);
|
||||
close LOG;
|
||||
|
||||
$client->close();
|
||||
$server->close();
|
||||
|
||||
# wait for vm shutdown to decrease peak memory consumption
|
||||
while (`vboxmanage showvminfo $vm` !~ /State:\s+powered off/)
|
||||
{
|
||||
sleep(1);
|
||||
}
|
|
@ -1,229 +0,0 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
# pretty-printing
|
||||
sub prettysuffix
|
||||
{
|
||||
my $suffix = shift;
|
||||
|
||||
return " C++0x" if ($suffix eq '_0x');
|
||||
return " x64" if ($suffix eq '_x64');
|
||||
return " CLR" if ($suffix eq '_clr');
|
||||
return " CLR x64" if ($suffix eq '_clr_x64');
|
||||
return " PPC" if ($suffix eq '_ppc');
|
||||
return " WinCE" if ($suffix eq '_wince');
|
||||
return " ARM" if ($suffix eq '_arm');
|
||||
|
||||
return "";
|
||||
}
|
||||
|
||||
sub prettytoolset
|
||||
{
|
||||
my $toolset = shift;
|
||||
|
||||
return "Borland C++ 5.82" if ($toolset eq 'bcc');
|
||||
return "Metrowerks CodeWarrior 8" if ($toolset eq 'cw');
|
||||
return "Digital Mars C++ 8.51" if ($toolset eq 'dmc');
|
||||
return "Sun C++ 5.10" . prettysuffix($1) if ($toolset =~ /^suncc(.*)$/);
|
||||
|
||||
return "Intel C++ Compiler $1.0" . prettysuffix($2) if ($toolset =~ /^ic(\d+)(.*)$/);
|
||||
return "MinGW (GCC $1.$2)" . prettysuffix($3) if ($toolset =~ /^mingw(\d)(\d)(.*)$/);
|
||||
return "Microsoft Visual C++ 7.1" if ($toolset eq 'msvc71');
|
||||
return "Microsoft Visual C++ $1.0" . prettysuffix($2) if ($toolset =~ /^msvc(\d+)(.*)$/);
|
||||
return "GNU C++ Compiler $1" . prettysuffix($2) if ($toolset =~ /^gcc([\d.]*)(.*)$/);
|
||||
|
||||
return "Microsoft Xbox360 Compiler" if ($toolset =~ /^xbox360/);
|
||||
return "Sony PlayStation3 GCC" if ($toolset =~ /^ps3_gcc/);
|
||||
return "Sony PlayStation3 SNC" if ($toolset =~ /^ps3_snc/);
|
||||
|
||||
return "Android NDK (GCC)" . ($1 eq '_stlport' ? " STLport" : "") if ($toolset =~ /^android(.*)$/);
|
||||
return "bada SDK (GCC)" if ($toolset =~ /^bada$/);
|
||||
return "BlackBerry NDK (GCC)" if ($toolset =~ /^blackberry$/);
|
||||
|
||||
$toolset;
|
||||
}
|
||||
|
||||
sub prettyplatform
|
||||
{
|
||||
my ($platform, $toolset) = @_;
|
||||
|
||||
return "solaris" if ($platform =~ /solaris/);
|
||||
|
||||
return "macos" if ($platform =~ /darwin/);
|
||||
|
||||
return "linux64" if ($platform =~ /64-linux/);
|
||||
return "linux32" if ($platform =~ /86-linux/);
|
||||
|
||||
return "fbsd64" if ($platform =~ /64-freebsd/);
|
||||
return "fbsd32" if ($platform =~ /86-freebsd/);
|
||||
|
||||
return "x360" if ($toolset =~ /^xbox360/);
|
||||
return "ps3" if ($toolset =~ /^ps3/);
|
||||
|
||||
return "arm" if ($toolset =~ /_arm$/);
|
||||
return "arm" if ($toolset =~ /_wince$/);
|
||||
return "arm" if ($toolset =~ /^android/);
|
||||
return "arm" if ($toolset =~ /^bada/);
|
||||
return "arm" if ($toolset =~ /^blackberry/);
|
||||
|
||||
return "win64" if ($platform =~ /MSWin32-x64/);
|
||||
return "win32" if ($platform =~ /MSWin32/);
|
||||
|
||||
$platform;
|
||||
}
|
||||
|
||||
sub prettybox
|
||||
{
|
||||
my $enabled = shift;
|
||||
my $color = $enabled ? "#cccccc" : "#ffffff";
|
||||
|
||||
"<td bgcolor='$color' align='center'>" . ($enabled ? "+" : " ") . "</td>";
|
||||
}
|
||||
|
||||
# parse build log
|
||||
%results = ();
|
||||
%toolsets = ();
|
||||
%defines = ();
|
||||
%configurations = ();
|
||||
|
||||
sub insertindex
|
||||
{
|
||||
my ($hash, $key) = @_;
|
||||
|
||||
$$hash{$key} = scalar(keys %$hash) unless defined $$hash{$key};
|
||||
}
|
||||
|
||||
while (<>)
|
||||
{
|
||||
### autotest i386-freebsd-64int gcc release [wchar] result 0 97.78 98.85
|
||||
if (/^### autotest (\S+) (\S+) (\S+) \[(.*?)\] (.*)/)
|
||||
{
|
||||
my ($platform, $toolset, $configuration, $defineset, $info) = ($1, $2, $3, $4, $5);
|
||||
|
||||
my $fulltool = &prettyplatform($platform, $toolset) . ' ' . &prettytoolset($toolset);
|
||||
my $fullconf = "$configuration $defineset";
|
||||
|
||||
if ($info =~ /^prepare/)
|
||||
{
|
||||
$results{$fulltool}{$fullconf}{result} = "";
|
||||
}
|
||||
elsif ($info =~ /^success/)
|
||||
{
|
||||
$results{$fulltool}{$fullconf}{result} = "success";
|
||||
}
|
||||
elsif ($info =~ /^skiprun/)
|
||||
{
|
||||
$results{$fulltool}{$fullconf}{result} = "skiprun";
|
||||
}
|
||||
elsif ($info =~ /^coverage (\S+)/)
|
||||
{
|
||||
$results{$fulltool}{$fullconf}{coverage} = $1;
|
||||
}
|
||||
else
|
||||
{
|
||||
print STDERR "Unrecognized autotest infoline $_";
|
||||
}
|
||||
|
||||
&insertindex(\%toolsets, $fulltool);
|
||||
|
||||
$defines{$_} = 1 foreach (split /,/, $defineset);
|
||||
&insertindex(\%configurations, $fullconf);
|
||||
}
|
||||
elsif (/^### autotest revision (.+)/)
|
||||
{
|
||||
if (defined $revision && $revision != $1)
|
||||
{
|
||||
print STDERR "Autotest build report contains several revisions: $revision, $1\n";
|
||||
}
|
||||
else
|
||||
{
|
||||
$revision = $1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# make arrays of toolsets and configurations
|
||||
@toolsetarray = ();
|
||||
@configurationarray = ();
|
||||
|
||||
$toolsetarray[$toolsets{$_}] = $_ foreach (keys %toolsets);
|
||||
$configurationarray[$configurations{$_}] = $_ foreach (keys %configurations);
|
||||
|
||||
# print header
|
||||
$stylesheet = <<END;
|
||||
table.autotest { border: 1px solid black; border-left: none; border-top: none; }
|
||||
table.autotest td { border: 1px solid black; border-right: none; border-bottom: none; }
|
||||
END
|
||||
|
||||
print <<END;
|
||||
<html><head><title>pugixml autotest report</title><style type="text/css"><!-- $stylesheet --></style></head><body>
|
||||
<h3>pugixml autotest report</h3>
|
||||
<table border=1 cellspacing=0 cellpadding=4 class="autotest">
|
||||
END
|
||||
|
||||
# print configuration header (release/debug)
|
||||
print "<tr><td align='right' colspan=2>optimization</td>";
|
||||
print &prettybox((split /\s+/)[0] eq 'release') foreach (@configurationarray);
|
||||
print "</tr>\n";
|
||||
|
||||
# print defines header (one row for each define)
|
||||
foreach $define (sort {$a cmp $b} keys %defines)
|
||||
{
|
||||
print "<tr><td align='right' colspan=2><small>$define</small></td>";
|
||||
|
||||
foreach (@configurationarray)
|
||||
{
|
||||
my $present = ($_ =~ /\b$define\b/);
|
||||
|
||||
print &prettybox($present);
|
||||
}
|
||||
print "</tr>\n";
|
||||
}
|
||||
|
||||
# print data (one row for each toolset)
|
||||
foreach $tool (@toolsetarray)
|
||||
{
|
||||
my ($platform, $toolset) = split(/\s+/, $tool, 2);
|
||||
print "<tr><td style='border-right: none' align='center'><small>$platform</small></td><td style='border-left: none'><nobr>$toolset</nobr></td>";
|
||||
|
||||
foreach (@configurationarray)
|
||||
{
|
||||
my $info = $results{$tool}{$_};
|
||||
|
||||
if (!defined $$info{result})
|
||||
{
|
||||
print "<td bgcolor='#cccccc'> </td>";
|
||||
}
|
||||
elsif ($$info{result} eq "success")
|
||||
{
|
||||
my $coverage = $$info{coverage};
|
||||
|
||||
print "<td bgcolor='#00ff00' align='center'>pass";
|
||||
|
||||
if ($coverage > 0)
|
||||
{
|
||||
print "<br><font size='-2'>" . ($coverage + 0) . "%</font>";
|
||||
}
|
||||
|
||||
print "</td>";
|
||||
}
|
||||
elsif ($$info{result} eq "skiprun")
|
||||
{
|
||||
print "<td bgcolor='#ffff80' align='center'>pass</td>"
|
||||
}
|
||||
else
|
||||
{
|
||||
print "<td bgcolor='#ff0000' align='center'>fail</td>"
|
||||
}
|
||||
}
|
||||
|
||||
print "</tr>\n";
|
||||
}
|
||||
|
||||
# print footer
|
||||
$date = localtime;
|
||||
|
||||
print <<END;
|
||||
</table><br>
|
||||
Generated on $date from Git $revision
|
||||
</body></html>
|
||||
END
|
|
@ -1,10 +0,0 @@
|
|||
#!/bin/sh
|
||||
# put this to /etc/init.d/pugixml-autotest.sh, then launch
|
||||
# ln -s /etc/init.d/pugixml-autotest.sh /etc/rc3.d/S80pugixml-autotest
|
||||
# don't forget to chmod +x pugixml-autotest.sh and to replace /export/home/USERNAME with actual path
|
||||
|
||||
if [ "$1" = "start" ]
|
||||
then
|
||||
cd /export/home/USERNAME/pugixml
|
||||
perl tests/autotest-remote-host.pl "shutdown -g 0 -i 5 -y" &
|
||||
fi
|