-
Notifications
You must be signed in to change notification settings - Fork 0
Home
ARTA is a Open Source project that provides a wrapper around the Xerces C++ library to help speed up XML handling.
The library is intended to speed up XML processing by client applications by providing processing methods that can be overrided to customize processing for the given XML node type.
The project is still ongoing to increase the wrapping functionality.
The project depends on the Apache Xerces C++ library.
Any platform where Xerces C++ library can be compiled with a compiler supporting C++11.
The project deliverable is a C++ library that provides:
- Support for C++ applications to retrieve information from XML documents
- Abstraction of Xerces XML parser resource management
- Customization hook methods for each particular node type (e.g. specificElement)
- Extra customization by overriding main processing methods (e.g. processElement)
After cloning the GIT repository to a local directory (let's use $HOME/repository/arta
for the example bellow):
- Add ARTA_DIR variable to your environment
-
Linux
ARTA_DIR=$HOME/repository/arta; export ARTA_DIR
- Go to the Release directory
-
Linux
cd $ARTA_DIR/Release
- Execute make command
The resulting library is placed in the Release directory.
The API documentation is still under development and will be placed under the project docs folder.
The detailed description for the project is here.
The library wraps the Xerces C++ 3.2 library version. The library itself only imposes the requirement of using the C++11 Standard.
- Linux
- GCC/Clang supporting C++11 is required (advise is to use the latest available)
- GNU Make version 4.2.1 or above (older versions may be supported but were not tested)
The project license is the MIT license which means that the project can be used as you wish. However, your contribution is welcome in order to develop it so that others (and yourself) reap the benefits.