summaryrefslogtreecommitdiff
path: root/src/KM_xml.h
blob: e7d76c91e77c90ff99908a590c75e7320d33b41f (plain)
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
/*
Copyright (c) 2005-2015, John Hurst
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
   derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*! \file    KM_xml.h
    \version $Id$
    \brief   XML writer
*/


#ifndef _KM_XML_H_
#define _KM_XML_H_

#include "KM_util.h"
#include <list>
#include <set>
#include <string>

namespace Kumu
{
  class XMLElement;

  //
  struct NVPair
  {
    std::string name;
    std::string value;
  };

  //
  typedef std::list<NVPair> AttributeList;
  typedef AttributeList::const_iterator Attr_i;
  typedef std::list<XMLElement*> ElementList;
  typedef ElementList::const_iterator Elem_i;

  bool GetXMLDocType(const ByteString& buf, std::string& ns_prefix, std::string& type_name,
		     std::string& namespace_name, AttributeList& doc_attr_list);

  bool GetXMLDocType(const std::string& buf, std::string& ns_prefix, std::string& type_name,
		     std::string& namespace_name, AttributeList& doc_attr_list);

  bool GetXMLDocType(const byte_t* buf, ui32_t buf_len, std::string& ns_prefix, std::string& type_name,
		     std::string& namespace_name, AttributeList& doc_attr_list);

  //
  class XMLNamespace
  {
    std::string   m_Prefix;
    std::string   m_Name;

    KM_NO_COPY_CONSTRUCT(XMLNamespace);
    XMLNamespace();

    public:
  XMLNamespace(const char* prefix, const char* name) : m_Prefix(prefix), m_Name(name) {}
    ~XMLNamespace() {}

    inline const std::string& Prefix() const { return m_Prefix; }
    inline const std::string& Name() const { return m_Name; }
  };

  //
  class XMLElement
    {
      KM_NO_COPY_CONSTRUCT(XMLElement);
      XMLElement();

    protected:
      AttributeList       m_AttrList;
      ElementList         m_ChildList;
      const XMLNamespace* m_Namespace;
      void*               m_NamespaceOwner;

      std::string   m_Name;
      std::string   m_Body;

    public:
      XMLElement(const char* name);
      ~XMLElement();

      inline const XMLNamespace* Namespace() const { return m_Namespace; }
      inline void                SetNamespace(const XMLNamespace* ns) { assert(ns); m_Namespace = ns; }

      bool        ParseString(const char* document, ui32_t doc_len);
      bool        ParseString(const ByteString& document);
      bool        ParseString(const std::string& document);

      bool        ParseFirstFromString(const char* document, ui32_t doc_len);
      bool        ParseFirstFromString(const ByteString& document);
      bool        ParseFirstFromString(const std::string& document);

      // building
      void        SetName(const char* name);
      void        SetBody(const std::string& value);
      void        AppendBody(const std::string& value);
      void        SetAttr(const char* name, const char* value);
      void        SetAttr(const char* name, const std::string& value) { SetAttr(name, value.c_str()); }
      XMLElement* AddChild(XMLElement* element);
      XMLElement* AddChild(const char* name);
      XMLElement* AddChildWithContent(const char* name, const char* value);
      XMLElement* AddChildWithContent(const char* name, const std::string& value);
      XMLElement* AddChildWithPrefixedContent(const char* name, const char* prefix, const char* value);
      void        AddComment(const char* value);
      void        Render(std::string& str) const { Render(str, true); }
      void        Render(std::string&, const bool& pretty) const;
      void        RenderElement(std::string& outbuf, const ui32_t& depth, const bool& pretty) const;

      // querying
      inline const std::string&   GetBody() const { return m_Body; }
      inline const ElementList&   GetChildren() const { return m_ChildList; }
      inline const std::string&   GetName() const { return m_Name; }
      inline const AttributeList& GetAttributes() const { return m_AttrList; }
      const char*        GetAttrWithName(const char* name) const;
      XMLElement*        GetChildWithName(const char* name) const;
      const ElementList& GetChildrenWithName(const char* name, ElementList& outList) const;
      bool               HasName(const char* name) const;

      // altering
      void        DeleteAttributes();
      void        DeleteAttrWithName(const char* name);
      void        DeleteChildren();
      void        DeleteChild(const XMLElement* element);
      void        ForgetChild(const XMLElement* element);
    };

  //
  template <class VisitorType>
    bool
    apply_visitor(const XMLElement& element, VisitorType& visitor)
    {
      const ElementList& l = element.GetChildren();
      ElementList::const_iterator i;
      
      for ( i = l.begin(); i != l.end(); ++i )
	{
	  if ( ! visitor.Element(**i) )
	    {
	      return false;
	    }

	  if ( ! apply_visitor(**i, visitor) )
	    {
	      return false;
	    }
	}

      return true;
    }

  //
  class AttributeVisitor
  {
    std::string attr_name;

  public:
  AttributeVisitor(const std::string& n) : attr_name(n) {}
    std::set<std::string> value_list;

    bool Element(const XMLElement& e)
    {
      const AttributeList& l = e.GetAttributes();
      AttributeList::const_iterator i;
 
      for ( i = l.begin(); i != l.end(); ++i )
	{
	  if ( i->name == attr_name )
	    {
	      value_list.insert(i->value);
	    }
	}

      return true;
    }
  };

  //
  class ElementVisitor
  {
    std::string element_name;

  public:
  ElementVisitor(const std::string& n) : element_name(n) {}
    std::set<std::string> value_list;

    bool Element(const XMLElement& e)
    {
      if ( e.GetBody() == element_name )
	{
	  value_list.insert(e.GetBody());
	}

      return true;
    }
  };

} // namespace Kumu

#endif // _KM_XML_H_

//
// end KM_xml.h
//