SourceForge.net Logo

EventSerializer.hpp

Go to the documentation of this file.
00001 /*
00002  * Copyright (c) 2001, 2008,
00003  *     DecisionSoft Limited. All rights reserved.
00004  * Copyright (c) 2004, 2011,
00005  *     Oracle and/or its affiliates. All rights reserved.
00006  *
00007  * Licensed under the Apache License, Version 2.0 (the "License");
00008  * you may not use this file except in compliance with the License.
00009  * You may obtain a copy of the License at
00010  *
00011  *     http://www.apache.org/licenses/LICENSE-2.0
00012  *
00013  * Unless required by applicable law or agreed to in writing, software
00014  * distributed under the License is distributed on an "AS IS" BASIS,
00015  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00016  * See the License for the specific language governing permissions and
00017  * limitations under the License.
00018  */
00019 
00020 #ifndef _EVENTSERIALIZER_HPP
00021 #define _EVENTSERIALIZER_HPP
00022 
00023 #include <xqilla/events/EventHandler.hpp>
00024 
00025 #include <xercesc/framework/XMLFormatter.hpp>
00026 
00027 class XQILLA_API EventSerializer : public EventHandler
00028 {
00029 public:
00030   EventSerializer(const char *encoding, const char *xmlVersion, XERCES_CPP_NAMESPACE_QUALIFIER XMLFormatTarget *target,
00031                   XERCES_CPP_NAMESPACE_QUALIFIER MemoryManager *mm =
00032                   XERCES_CPP_NAMESPACE_QUALIFIER XMLPlatformUtils::fgMemoryManager);
00033   EventSerializer(XERCES_CPP_NAMESPACE_QUALIFIER XMLFormatTarget *target,
00034                   XERCES_CPP_NAMESPACE_QUALIFIER MemoryManager *mm =
00035                   XERCES_CPP_NAMESPACE_QUALIFIER XMLPlatformUtils::fgMemoryManager);
00036   ~EventSerializer();
00037 
00038   virtual void setLocationInfo(const LocationInfo *location) {}
00039 
00040   virtual void startDocumentEvent(const XMLCh *documentURI, const XMLCh *encoding);
00041   virtual void endDocumentEvent();
00042   virtual void startElementEvent(const XMLCh *prefix, const XMLCh *uri, const XMLCh *localname);
00043   virtual void endElementEvent(const XMLCh *prefix, const XMLCh *uri, const XMLCh *localname,
00044                                const XMLCh *typeURI, const XMLCh *typeName);
00045   virtual void piEvent(const XMLCh *target, const XMLCh *value);
00046   virtual void textEvent(const XMLCh *value);
00047   virtual void textEvent(const XMLCh *chars, unsigned int length);
00048   virtual void commentEvent(const XMLCh *value);
00049   virtual void attributeEvent(const XMLCh *prefix, const XMLCh *uri, const XMLCh *localname, const XMLCh *value,
00050                               const XMLCh *typeURI, const XMLCh *typeName);
00051   virtual void namespaceEvent(const XMLCh *prefix, const XMLCh *uri);
00052   virtual void atomicItemEvent(AnyAtomicType::AtomicObjectType type, const XMLCh *value,
00053                                const XMLCh *typeURI, const XMLCh *typeName);
00054   virtual void endEvent();
00055 
00056   void addNewlines(bool add) { addNewlines_ = add; }
00057   void useSelfClosingElement(bool value) { selfClosing_ = value; }
00058   void addXMLDeclarations(bool value) { xmlDecls_ = value; }
00059 
00060 private:
00061   XERCES_CPP_NAMESPACE_QUALIFIER XMLFormatter formatter_;
00062   bool elementStarted_;
00063   unsigned int level_;
00064   XMLCh *version_, *encoding_;
00065   bool addNewlines_, selfClosing_, xmlDecls_;
00066   XERCES_CPP_NAMESPACE_QUALIFIER MemoryManager *mm_;
00067 };
00068 
00069 #endif