XMLParser.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /*
  2. * This source file is part of libRocket, the HTML/CSS Interface Middleware
  3. *
  4. * For the latest information, see http://www.librocket.com
  5. *
  6. * Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in
  16. * all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. *
  26. */
  27. #ifndef ROCKETCOREXMLPARSER_H
  28. #define ROCKETCOREXMLPARSER_H
  29. #include <stack>
  30. #include "Header.h"
  31. #include "BaseXMLParser.h"
  32. namespace Rocket {
  33. namespace Core {
  34. class DocumentHeader;
  35. class Element;
  36. class XMLNodeHandler;
  37. /**
  38. Rocket's XML parsing engine. The factory creates an instance of this class for each RML parse.
  39. @author Lloyd Weehuizen
  40. */
  41. class ROCKETCORE_API XMLParser : public BaseXMLParser
  42. {
  43. public:
  44. XMLParser(Element* root);
  45. ~XMLParser();
  46. /// Registers a custom node handler to be used to a given tag.
  47. /// @param[in] tag The tag the custom parser will handle.
  48. /// @param[in] handler The custom handler.
  49. /// @return The registered XML node handler.
  50. static XMLNodeHandler* RegisterNodeHandler(const String& tag, XMLNodeHandler* handler);
  51. /// Releases all registered node handlers. This is called internally.
  52. static void ReleaseHandlers();
  53. /// Returns the XML document's header.
  54. /// @return The document header.
  55. DocumentHeader* GetDocumentHeader();
  56. /// Returns the source URL of this parse.
  57. /// @return The URL of the parsing stream.
  58. const URL& GetSourceURL() const;
  59. // The parse stack.
  60. struct ParseFrame
  61. {
  62. // Tag being parsed.
  63. String tag;
  64. // Element representing this frame.
  65. Element* element;
  66. // Handler used for this frame.
  67. XMLNodeHandler* node_handler;
  68. // The default handler used for this frame's children.
  69. XMLNodeHandler* child_handler;
  70. };
  71. /// Pushes an element handler onto the parse stack for parsing child elements.
  72. /// @param[in] tag The tag the handler was registered with.
  73. /// @return True if an appropriate handler was found and pushed onto the stack, false if not.
  74. bool PushHandler(const String& tag);
  75. /// Pushes the default element handler onto the parse stack.
  76. void PushDefaultHandler();
  77. /// Access the current parse frame.
  78. /// @return The parser's current parse frame.
  79. const ParseFrame* GetParseFrame() const;
  80. protected:
  81. /// Called when the parser finds the beginning of an element tag.
  82. virtual void HandleElementStart(const String& name, const XMLAttributes& attributes);
  83. /// Called when the parser finds the end of an element tag.
  84. virtual void HandleElementEnd(const String& name);
  85. /// Called when the parser encounters data.
  86. virtual void HandleData(const String& data);
  87. private:
  88. // The header of the document being parsed.
  89. DocumentHeader* header;
  90. // The active node handler.
  91. XMLNodeHandler* active_handler;
  92. // The parser stack.
  93. typedef std::stack< ParseFrame > ParserStack;
  94. ParserStack stack;
  95. };
  96. }
  97. }
  98. #endif