SourceForge.net Logo

EventSerializer.hpp

Go to the documentation of this file.
00001 /*
00002  * Copyright (c) 2001-2007
00003  *     DecisionSoft Limited. All rights reserved.
00004  * Copyright (c) 2004-2007
00005  *     Oracle. 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  * $Id: EventSerializer.hpp,v 1.3 2007/11/28 13:13:21 jpcs Exp $
00020  */
00021 
00022 #ifndef _EVENTSERIALIZER_HPP
00023 #define _EVENTSERIALIZER_HPP
00024 
00025 #include <xqilla/events/EventHandler.hpp>
00026 
00027 #include <xercesc/framework/XMLFormatter.hpp>
00028 
00029 class XQILLA_API EventSerializer : public EventHandler
00030 {
00031 public:
00032   EventSerializer(char *encoding, char *xmlVersion, XERCES_CPP_NAMESPACE_QUALIFIER XMLFormatTarget *target,
00033                   XERCES_CPP_NAMESPACE_QUALIFIER MemoryManager *mm =
00034                   XERCES_CPP_NAMESPACE_QUALIFIER XMLPlatformUtils::fgMemoryManager);
00035   EventSerializer(XERCES_CPP_NAMESPACE_QUALIFIER XMLFormatTarget *target,
00036                   XERCES_CPP_NAMESPACE_QUALIFIER MemoryManager *mm =
00037                   XERCES_CPP_NAMESPACE_QUALIFIER XMLPlatformUtils::fgMemoryManager);
00038 
00039   virtual void startDocumentEvent(const XMLCh *documentURI, const XMLCh *encoding);
00040   virtual void endDocumentEvent();
00041   virtual void startElementEvent(const XMLCh *prefix, const XMLCh *uri, const XMLCh *localname);
00042   virtual void endElementEvent(const XMLCh *prefix, const XMLCh *uri, const XMLCh *localname,
00043                                const XMLCh *typeURI, const XMLCh *typeName);
00044   virtual void piEvent(const XMLCh *target, const XMLCh *value);
00045   virtual void textEvent(const XMLCh *value);
00046   virtual void textEvent(const XMLCh *chars, unsigned int length);
00047   virtual void commentEvent(const XMLCh *value);
00048   virtual void attributeEvent(const XMLCh *prefix, const XMLCh *uri, const XMLCh *localname, const XMLCh *value,
00049                               const XMLCh *typeURI, const XMLCh *typeName);
00050   virtual void namespaceEvent(const XMLCh *prefix, const XMLCh *uri);
00051   virtual void atomicItemEvent(AnyAtomicType::AtomicObjectType type, const XMLCh *value,
00052                                const XMLCh *typeURI, const XMLCh *typeName);
00053   virtual void endEvent();
00054 
00055   void addNewlines(bool add) { addNewlines_ = add; }
00056 
00057 private:
00058   XERCES_CPP_NAMESPACE_QUALIFIER XMLFormatter formatter_;
00059   bool elementStarted_;
00060   unsigned int level_;
00061   bool addNewlines_;
00062 };
00063 
00064 #endif

Generated on Wed Dec 12 20:16:43 2007 for XQilla Simple API by  doxygen 1.5.1