Newer
Older
#ifndef PUGIXML_NO_XPATH
arseny.kapoulkine
committed
// XPath query return type
enum xpath_value_type
{
xpath_type_none, // Unknown type (query failed to compile)
arseny.kapoulkine
committed
xpath_type_node_set, // Node set (xpath_node_set)
xpath_type_number, // Number
xpath_type_string, // String
xpath_type_boolean // Boolean
// XPath parsing result
struct PUGIXML_CLASS xpath_parse_result
{
arseny.kapoulkine
committed
// Error message (0 if no error)
const char* error;
arseny.kapoulkine
committed
// Last parsed offset (in char_t units from string start)
ptrdiff_t offset;
// Default constructor, initializes object to failed state
arseny.kapoulkine
committed
xpath_parse_result();
arseny.kapoulkine
committed
arseny.kapoulkine
committed
// Cast to bool operator
operator bool() const;
arseny.kapoulkine
committed
// Get error description
const char* description() const;
};
arseny.kapoulkine
committed
// A single XPath variable
arseny.kapoulkine
committed
class PUGIXML_CLASS xpath_variable
{
friend class xpath_variable_set;
protected:
xpath_value_type _type;
xpath_variable* _next;
arseny.kapoulkine
committed
xpath_variable();
arseny.kapoulkine
committed
// Non-copyable semantics
xpath_variable(const xpath_variable&);
xpath_variable& operator=(const xpath_variable&);
// Get variable name
const char_t* name() const;
arseny.kapoulkine
committed
// Get variable type
xpath_value_type type() const;
// Get variable value; no type conversion is performed, default value (false, NaN, empty string, empty node set) is returned on type mismatch error
bool get_boolean() const;
double get_number() const;
const char_t* get_string() const;
const xpath_node_set& get_node_set() const;
// Set variable value; no type conversion is performed, false is returned on type mismatch error
bool set(bool value);
bool set(double value);
bool set(const char_t* value);
bool set(const xpath_node_set& value);
};
arseny.kapoulkine
committed
// A set of XPath variables
arseny.kapoulkine
committed
class PUGIXML_CLASS xpath_variable_set
arseny.kapoulkine
committed
xpath_variable* _data[64];
// Non-copyable semantics
xpath_variable_set(const xpath_variable_set&);
xpath_variable_set& operator=(const xpath_variable_set&);
xpath_variable* find(const char_t* name) const;
public:
// Default constructor/destructor
xpath_variable_set();
~xpath_variable_set();
// Add a new variable or get the existing one, if the types match
xpath_variable* add(const char_t* name, xpath_value_type type);
// Set value of an existing variable; no type conversion is performed, false is returned if there is no such variable or if types mismatch
bool set(const char_t* name, bool value);
bool set(const char_t* name, double value);
bool set(const char_t* name, const char_t* value);
bool set(const char_t* name, const xpath_node_set& value);
// Get existing variable by name
xpath_variable* get(const char_t* name);
const xpath_variable* get(const char_t* name) const;
};
arseny.kapoulkine
committed
// A compiled XPath query object
class PUGIXML_CLASS xpath_query
{
private:
xpath_parse_result _result;
typedef void (*unspecified_bool_type)(xpath_query***);
arseny.kapoulkine
committed
// Non-copyable semantics
xpath_query(const xpath_query&);
xpath_query& operator=(const xpath_query&);
// Construct a compiled object from XPath expression.
// 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);
arseny.kapoulkine
committed
// Destructor
~xpath_query();
arseny.kapoulkine
committed
// Get query expression return type
xpath_value_type return_type() const;
arseny.kapoulkine
committed
// 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.
arseny.kapoulkine
committed
bool evaluate_boolean(const xpath_node& n) const;
arseny.kapoulkine
committed
// 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.
arseny.kapoulkine
committed
double evaluate_number(const xpath_node& n) const;
arseny.kapoulkine
committed
#ifndef PUGIXML_NO_STL
arseny.kapoulkine
committed
// 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.
arseny.kapoulkine
committed
string_t evaluate_string(const xpath_node& n) const;
arseny.kapoulkine
committed
#endif
arseny.kapoulkine
committed
// 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.
// If PUGIXML_NO_EXCEPTIONS is defined, returns empty set instead.
arseny.kapoulkine
committed
size_t evaluate_string(char_t* buffer, size_t capacity, const xpath_node& n) const;
arseny.kapoulkine
committed
arseny.kapoulkine
committed
// Evaluate expression as node set in the specified context.
// If PUGIXML_NO_EXCEPTIONS is not defined, throws xpath_exception on type mismatch and std::bad_alloc on out of memory errors.
// If PUGIXML_NO_EXCEPTIONS is defined, returns empty node set instead.
arseny.kapoulkine
committed
xpath_node_set evaluate_node_set(const xpath_node& n) const;
// Evaluate expression as node set in the specified context.
// Return first node in document order, or empty node if node set is empty.
// If PUGIXML_NO_EXCEPTIONS is not defined, throws xpath_exception on type mismatch and std::bad_alloc on out of memory errors.
// If PUGIXML_NO_EXCEPTIONS is defined, returns empty node instead.
xpath_node evaluate_node(const xpath_node& n) const;
arseny.kapoulkine
committed
// Get parsing result (used to get compilation errors in PUGIXML_NO_EXCEPTIONS mode)
const xpath_parse_result& result() const;
arseny.kapoulkine
committed
// Safe bool conversion operator
operator unspecified_bool_type() const;
// Borland C++ workaround
bool operator!() const;
};
#ifndef PUGIXML_NO_EXCEPTIONS
arseny.kapoulkine
committed
// XPath exception class
class PUGIXML_CLASS xpath_exception: public std::exception
{
private:
xpath_parse_result _result;
arseny.kapoulkine
committed
// Construct exception from parse result
explicit xpath_exception(const xpath_parse_result& result);
arseny.kapoulkine
committed
// Get error message
virtual const char* what() const throw();
// Get parse result
const xpath_parse_result& result() const;
arseny.kapoulkine
committed
// 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***);
arseny.kapoulkine
committed
// Default constructor; constructs empty XPath node
arseny.kapoulkine
committed
// Construct XPath node from XML node/attribute
xpath_node(const xml_node& node);
xpath_node(const xml_attribute& attribute, const xml_node& parent);
arseny.kapoulkine
committed
// Get node/attribute, if any
xml_node node() const;
xml_attribute attribute() const;
arseny.kapoulkine
committed
// 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;
arseny.kapoulkine
committed
// Comparison operators
bool operator==(const xpath_node& n) const;
bool operator!=(const xpath_node& n) const;
};
#ifdef __BORLANDC__
// Borland C++ workaround
bool PUGIXML_FUNCTION operator&&(const xpath_node& lhs, bool rhs);
bool PUGIXML_FUNCTION operator||(const xpath_node& lhs, bool rhs);
#endif
arseny.kapoulkine
committed
// A fixed-size collection of XPath nodes
class PUGIXML_CLASS xpath_node_set
{
public:
arseny.kapoulkine
committed
// Collection type
arseny.kapoulkine
committed
type_unsorted, // Not ordered
type_sorted, // Sorted by document order (ascending)
type_sorted_reverse // Sorted by document order (descending)
arseny.kapoulkine
committed
// 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;
arseny.kapoulkine
committed
// Default constructor. Constructs empty set.
xpath_node_set();
arseny.kapoulkine
committed
// Constructs a set from iterator range; data is not checked for duplicates and is not sorted according to provided type, so be careful
arseny.kapoulkine
committed
xpath_node_set(const_iterator begin, const_iterator end, type_t type = type_unsorted);
arseny.kapoulkine
committed
// Destructor
~xpath_node_set();
arseny.kapoulkine
committed
// Copy constructor/assignment operator
xpath_node_set(const xpath_node_set& ns);
xpath_node_set& operator=(const xpath_node_set& ns);
arseny.kapoulkine
committed
arseny.kapoulkine
committed
// Get collection type
type_t type() const;
arseny.kapoulkine
committed
// Get collection size
size_t size() const;
// Indexing operator
const xpath_node& operator[](size_t index) const;
arseny.kapoulkine
committed
// Collection iterators
const_iterator begin() const;
const_iterator end() const;
arseny.kapoulkine
committed
// Sort the collection in ascending/descending order by document order
void sort(bool reverse = false);
arseny.kapoulkine
committed
// Get first node in the collection by document order
xpath_node first() const;
arseny.kapoulkine
committed
// Check if collection is empty
arseny.kapoulkine
committed
private:
type_t _type;
xpath_node _storage;
xpath_node* _begin;
xpath_node* _end;
void _assign(const_iterator begin, const_iterator end);
};
#endif
#ifndef PUGIXML_NO_STL
arseny.kapoulkine
committed
// Convert wide string to UTF8
std::basic_string<char, std::char_traits<char>, std::allocator<char> > PUGIXML_FUNCTION as_utf8(const wchar_t* str);
arseny.kapoulkine
committed
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);
arseny.kapoulkine
committed
// 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);
arseny.kapoulkine
committed
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);
arseny.kapoulkine
committed
// Memory allocation function interface; returns pointer to allocated memory or NULL on failure
typedef void* (*allocation_function)(size_t size);
arseny.kapoulkine
committed
// 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();
}
#if !defined(PUGIXML_NO_STL) && (defined(_MSC_VER) || defined(__ICC))
namespace std
{
// Workarounds for (non-standard) iterator category detection for older versions (MSVC7/IC8 and earlier)
arseny.kapoulkine
committed
std::bidirectional_iterator_tag PUGIXML_FUNCTION _Iter_cat(const pugi::xml_node_iterator&);
std::bidirectional_iterator_tag PUGIXML_FUNCTION _Iter_cat(const pugi::xml_attribute_iterator&);
std::bidirectional_iterator_tag PUGIXML_FUNCTION _Iter_cat(const pugi::xml_named_node_iterator&);
}
#endif
#if !defined(PUGIXML_NO_STL) && defined(__SUNPRO_CC)
namespace std
{
// Workarounds for (non-standard) iterator category detection
arseny.kapoulkine
committed
std::bidirectional_iterator_tag PUGIXML_FUNCTION __iterator_category(const pugi::xml_node_iterator&);
std::bidirectional_iterator_tag PUGIXML_FUNCTION __iterator_category(const pugi::xml_attribute_iterator&);
std::bidirectional_iterator_tag PUGIXML_FUNCTION __iterator_category(const pugi::xml_named_node_iterator&);
}
#endif
#endif
/**
* Copyright (c) 2006-2014 Arseny Kapoulkine
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/