/mordor/xml/parser.h

http://github.com/mozy/mordor · C Header · 87 lines · 72 code · 14 blank · 1 comment · 7 complexity · 4c635d3f4ee5670541a788afd1883d85 MD5 · raw file

  1. #ifndef __MORDOR_XML_PARSER_H__
  2. #define __MORDOR_XML_PARSER_H__
  3. // Copyright (c) 2009 - Mozy, Inc.
  4. #include <boost/function.hpp>
  5. #include "mordor/ragel.h"
  6. namespace Mordor {
  7. class XMLParserEventHandler
  8. {
  9. public:
  10. virtual ~XMLParserEventHandler() {}
  11. virtual void onStartTag(const std::string &tag) {}
  12. virtual void onEndTag(const std::string &tag) {}
  13. virtual void onEmptyTag() {}
  14. virtual void onAttributeName(const std::string &attribute) {}
  15. virtual void onAttributeValue(const std::string &value) {}
  16. virtual void onInnerText(const std::string &text) {}
  17. virtual void onReference(const std::string &reference) {}
  18. };
  19. class CallbackXMLParserEventHandler : public XMLParserEventHandler
  20. {
  21. public:
  22. CallbackXMLParserEventHandler(
  23. boost::function<void (const std::string &)> startTag,
  24. boost::function<void (const std::string &)> endTag = NULL,
  25. boost::function<void ()> emptyTag = NULL,
  26. boost::function<void (const std::string &)> attribName = NULL,
  27. boost::function<void (const std::string &)> attribValue = NULL,
  28. boost::function<void (const std::string &)> innerText = NULL,
  29. boost::function<void (const std::string &)> reference = NULL)
  30. : m_startTag(startTag),
  31. m_endTag(endTag),
  32. m_attribName(attribName),
  33. m_attribValue(attribValue),
  34. m_innerText(innerText),
  35. m_reference(reference),
  36. m_emptyTag(emptyTag)
  37. {}
  38. void onStartTag(const std::string &tag)
  39. { if (m_startTag) m_startTag(tag); }
  40. void onEndTag(const std::string &tag)
  41. { if (m_endTag) m_endTag(tag); }
  42. void onEmptyTag()
  43. { if (m_emptyTag) m_emptyTag(); }
  44. void onAttributeName(const std::string &attribute)
  45. { if (m_attribName) m_attribName(attribute); }
  46. void onAttributeValue(const std::string &value)
  47. { if (m_attribValue) m_attribValue(value); }
  48. void onInnerText(const std::string &text)
  49. { if (m_innerText) m_innerText(text); }
  50. void onReference(const std::string &reference)
  51. { if (m_reference) m_reference(reference); }
  52. private:
  53. boost::function<void (const std::string &)> m_startTag, m_endTag,
  54. m_attribName, m_attribValue, m_innerText, m_reference;
  55. boost::function<void ()> m_emptyTag;
  56. };
  57. class XMLParser : public RagelParserWithStack
  58. {
  59. public:
  60. XMLParser(XMLParserEventHandler &handler)
  61. : m_handler(handler)
  62. {}
  63. void init();
  64. bool complete() const { return false; }
  65. bool final() const;
  66. bool error() const;
  67. protected:
  68. void exec();
  69. private:
  70. XMLParserEventHandler &m_handler;
  71. };
  72. }
  73. #endif