XQuilla/include/xqilla/events/EventHandler.hpp
2020-02-17 22:11:31 +01:00

136 lines
4.2 KiB
C++

/*
* Copyright (c) 2001-2006
* DecisionSoft Limited. All rights reserved.
* Copyright (c) 2004-2006
* Progress Software Corporation. All rights reserved.
* Copyright (c) 2004-2006
* Oracle. All rights reserved.
*
* See the file LICENSE for redistribution information.
*
* $Id: EventHandler.hpp,v 1.2 2007/02/08 13:17:10 jpcs Exp $
*/
#ifndef _EVENTHANDLER_HPP
#define _EVENTHANDLER_HPP
#include <xqilla/framework/XQillaExport.hpp>
#include <xqilla/items/AnyAtomicType.hpp>
#include <xercesc/util/XercesDefs.hpp>
class XQILLA_API EventHandler
{
public:
virtual ~EventHandler() {};
/** Handles a document node as an event */
virtual void startDocumentEvent(const XMLCh *documentURI, const XMLCh *encoding) = 0;
/** Handles a document node as an event */
virtual void endDocumentEvent() = 0;
/** Handles the start of an element node as an event */
virtual void startElementEvent(const XMLCh *prefix, const XMLCh *uri, const XMLCh *localname) = 0;
/** Handles the end of an element node as an event */
virtual void endElementEvent(const XMLCh *prefix, const XMLCh *uri, const XMLCh *localname,
const XMLCh *typeURI, const XMLCh *typeName) = 0;
/** Handles a processing instruction node as an event */
virtual void piEvent(const XMLCh *target, const XMLCh *value) = 0;
/** Handles a text node as an event */
virtual void textEvent(const XMLCh *value) = 0;
/** Handles a text node as an event */
virtual void textEvent(const XMLCh *chars, unsigned int length) = 0;
/** Handles a comment node as an event */
virtual void commentEvent(const XMLCh *value) = 0;
/** Handles an attribute node as an event */
virtual void attributeEvent(const XMLCh *prefix, const XMLCh *uri, const XMLCh *localname, const XMLCh *value,
const XMLCh *typeURI, const XMLCh *typeName) = 0;
/** Handles a namespace binding as an event */
virtual void namespaceEvent(const XMLCh *prefix, const XMLCh *uri) = 0;
/** Handles an atomic item as an event */
virtual void atomicItemEvent(AnyAtomicType::AtomicObjectType type, const XMLCh *value,
const XMLCh *typeURI, const XMLCh *typeName) {}
/** Called when all events have been reported */
virtual void endEvent() = 0;
};
class XQILLA_API EventFilter : public EventHandler
{
public:
EventFilter(EventHandler *next)
: next_(next)
{
}
virtual void startDocumentEvent(const XMLCh *documentURI, const XMLCh *encoding)
{
next_->startDocumentEvent(documentURI, encoding);
}
virtual void endDocumentEvent()
{
next_->endDocumentEvent();
}
virtual void startElementEvent(const XMLCh *prefix, const XMLCh *uri, const XMLCh *localname)
{
next_->startElementEvent(prefix, uri, localname);
}
virtual void endElementEvent(const XMLCh *prefix, const XMLCh *uri, const XMLCh *localname,
const XMLCh *typeURI, const XMLCh *typeName)
{
next_->endElementEvent(prefix, uri, localname, typeURI, typeName);
}
virtual void piEvent(const XMLCh *target, const XMLCh *value)
{
next_->piEvent(target, value);
}
virtual void textEvent(const XMLCh *value)
{
next_->textEvent(value);
}
virtual void textEvent(const XMLCh *chars, unsigned int length)
{
next_->textEvent(chars, length);
}
virtual void commentEvent(const XMLCh *value)
{
next_->commentEvent(value);
}
virtual void attributeEvent(const XMLCh *prefix, const XMLCh *uri, const XMLCh *localname, const XMLCh *value,
const XMLCh *typeURI, const XMLCh *typeName)
{
next_->attributeEvent(prefix, uri, localname, value, typeURI, typeName);
}
virtual void namespaceEvent(const XMLCh *prefix, const XMLCh *uri)
{
next_->namespaceEvent(prefix, uri);
}
virtual void atomicItemEvent(AnyAtomicType::AtomicObjectType type, const XMLCh *value, const XMLCh *typeURI,
const XMLCh *typeName)
{
next_->atomicItemEvent(type, value, typeURI, typeName);
}
virtual void endEvent()
{
next_->endEvent();
}
protected:
EventHandler *next_;
};
static inline const XMLCh *emptyToNull(const XMLCh * const in)
{
return (in == 0 || *in == 0) ? 0 : in;
}
#endif