/usr/include/mapnik/xml_node.hpp is in libmapnik-dev 3.0.12+ds-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | /*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2015 Artem Pavlenko
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*****************************************************************************/
#ifndef MAPNIK_XML_NODE_H
#define MAPNIK_XML_NODE_H
//mapnik
#include <mapnik/config.hpp> // for MAPNIK_DECL
#pragma GCC diagnostic push
#include <mapnik/warning_ignore.hpp>
#include <boost/optional.hpp>
#pragma GCC diagnostic pop
//stl
#include <list>
#include <string>
#include <map>
#include <exception>
namespace mapnik
{
class MAPNIK_DECL xml_tree;
class MAPNIK_DECL xml_attribute
{
public:
xml_attribute(const char * value_);
std::string value;
mutable bool processed;
};
class MAPNIK_DECL node_not_found: public std::exception
{
public:
node_not_found(std::string const& node_name);
virtual const char* what() const throw();
~node_not_found() throw ();
private:
std::string node_name_;
protected:
mutable std::string msg_;
};
class MAPNIK_DECL attribute_not_found: public std::exception
{
public:
attribute_not_found(std::string const& node_name, std::string const& attribute_name);
virtual const char* what() const throw();
~attribute_not_found() throw ();
private:
std::string node_name_;
std::string attribute_name_;
protected:
mutable std::string msg_;
};
class MAPNIK_DECL more_than_one_child: public std::exception
{
public:
more_than_one_child(std::string const& node_name);
virtual const char* what() const throw();
~more_than_one_child() throw ();
private:
std::string node_name_;
protected:
mutable std::string msg_;
};
class MAPNIK_DECL xml_node
{
public:
using const_iterator = std::list<xml_node>::const_iterator;
using attribute_map = std::map<std::string, xml_attribute>;
xml_node(xml_tree &tree, std::string && name, unsigned line=0, bool is_text = false);
std::string const& name() const;
std::string const& text() const;
std::string const& filename() const;
bool is_text() const;
bool is(std::string const& name) const;
xml_node & add_child(const char * name, unsigned line=0, bool is_text = false);
void add_attribute(const char * name, const char * value);
attribute_map const& get_attributes() const;
bool ignore() const;
void set_ignore(bool ignore) const;
bool processed() const;
void set_processed(bool processed) const;
unsigned line() const;
std::string line_to_string() const;
std::size_t size() const;
const_iterator begin() const;
const_iterator end() const;
xml_node & get_child(std::string const& name);
xml_node const& get_child(std::string const& name) const;
xml_node const* get_opt_child(std::string const& name) const;
bool has_child(std::string const& name) const;
bool has_attribute(std::string const& name) const;
template <typename T>
boost::optional<T> get_opt_attr(std::string const& name) const;
template <typename T>
T get_attr(std::string const& name, T const& default_opt_value) const;
template <typename T>
T get_attr(std::string const& name) const;
std::string const& get_text() const;
inline xml_tree const& get_tree() const { return tree_; }
template <typename T>
T get_value() const;
private:
xml_tree & tree_;
std::string name_;
std::list<xml_node> children_;
attribute_map attributes_;
bool is_text_;
unsigned line_;
mutable bool processed_;
mutable bool ignore_;
static std::string xml_text;
};
} //ns mapnik
#endif // MAPNIK_XML_NODE_H
|