/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include "fastserializer.hxx" #include #include #include #include #include #if OSL_DEBUG_LEVEL > 0 #include #include #endif using ::comphelper::SequenceAsVector; using ::com::sun::star::uno::Reference; using ::com::sun::star::uno::RuntimeException; using ::com::sun::star::uno::Sequence; using ::com::sun::star::xml::FastAttribute; using ::com::sun::star::xml::Attribute; using ::com::sun::star::xml::sax::SAXException; using ::com::sun::star::io::XOutputStream; using ::com::sun::star::io::NotConnectedException; using ::com::sun::star::io::IOException; using ::com::sun::star::io::BufferSizeExceededException; #define HAS_NAMESPACE(x) ((x & 0xffff0000) != 0) #define NAMESPACE(x) (x >> 16) #define TOKEN(x) (x & 0xffff) // number of characters without terminating 0 #define N_CHARS(string) (SAL_N_ELEMENTS(string) - 1) static const char sClosingBracket[] = ">"; static const char sSlashAndClosingBracket[] = "/>"; static const char sColon[] = ":"; static const char sOpeningBracket[] = "<"; static const char sOpeningBracketAndSlash[] = "\n"; namespace sax_fastparser { FastSaxSerializer::FastSaxSerializer( ) : maOutputData(0x4000) , maOutputStream(maOutputData, 1.3, 0x1000, 0x4000) , mxOutputStream() , mxFastTokenHandler() , maMarkStack() { } FastSaxSerializer::~FastSaxSerializer() {} void FastSaxSerializer::startDocument() { writeBytes(sXmlHeader, N_CHARS(sXmlHeader)); } void FastSaxSerializer::write( const OUString& sOutput, bool bEscape ) { write( OUStringToOString(sOutput, RTL_TEXTENCODING_UTF8), bEscape ); } void FastSaxSerializer::write( const OString& sOutput, bool bEscape ) { if (!bEscape) { writeBytes( sOutput.getStr(), sOutput.getLength() ); return; } const char* pStr = sOutput.getStr(); sal_Int32 nLen = sOutput.getLength(); for (sal_Int32 i = 0; i < nLen; ++i) { char c = pStr[ i ]; switch( c ) { case '<': writeBytes( "<", 4 ); break; case '>': writeBytes( ">", 4 ); break; case '&': writeBytes( "&", 5 ); break; case '\'': writeBytes( "'", 6 ); break; case '"': writeBytes( """, 6 ); break; case '\n': writeBytes( " ", 5 ); break; case '\r': writeBytes( " ", 5 ); break; default: writeBytes( &c, 1 ); break; } } } void FastSaxSerializer::endDocument() { maOutputStream.flush(); mxOutputStream->writeBytes(maOutputData); } void FastSaxSerializer::writeId( ::sal_Int32 nElement ) { if( HAS_NAMESPACE( nElement ) ) { writeBytes(mxFastTokenHandler->getUTF8Identifier(NAMESPACE(nElement))); writeBytes(sColon, N_CHARS(sColon)); writeBytes(mxFastTokenHandler->getUTF8Identifier(TOKEN(nElement))); } else writeBytes(mxFastTokenHandler->getUTF8Identifier(nElement)); } #ifdef DBG_UTIL OString FastSaxSerializer::getId( ::sal_Int32 nElement ) { if (HAS_NAMESPACE(nElement)) { Sequence const ns( mxFastTokenHandler->getUTF8Identifier(NAMESPACE(nElement))); Sequence const name( mxFastTokenHandler->getUTF8Identifier(TOKEN(nElement))); return OString(reinterpret_cast(ns.getConstArray()), ns.getLength()) + OString(sColon, N_CHARS(sColon)) + OString(reinterpret_cast(name.getConstArray()), name.getLength()); } else { Sequence const name( mxFastTokenHandler->getUTF8Identifier(nElement)); return OString(reinterpret_cast(name.getConstArray()), name.getLength()); } } #endif void FastSaxSerializer::startFastElement( ::sal_Int32 Element, FastAttributeList* pAttrList ) { if ( !maMarkStack.empty() ) maMarkStack.top()->setCurrentElement( Element ); #ifdef DBG_UTIL m_DebugStartedElements.push(Element); #endif writeBytes(sOpeningBracket, N_CHARS(sOpeningBracket)); writeId(Element); writeFastAttributeList(pAttrList); writeBytes(sClosingBracket, N_CHARS(sClosingBracket)); } void FastSaxSerializer::endFastElement( ::sal_Int32 Element ) { #ifdef DBG_UTIL assert(!m_DebugStartedElements.empty()); // Well-formedness constraint: Element Type Match assert(Element == m_DebugStartedElements.top()); m_DebugStartedElements.pop(); #endif writeBytes(sOpeningBracketAndSlash, N_CHARS(sOpeningBracketAndSlash)); writeId(Element); writeBytes(sClosingBracket, N_CHARS(sClosingBracket)); } void FastSaxSerializer::singleFastElement( ::sal_Int32 Element, FastAttributeList* pAttrList ) { if ( !maMarkStack.empty() ) maMarkStack.top()->setCurrentElement( Element ); writeBytes(sOpeningBracket, N_CHARS(sOpeningBracket)); writeId(Element); writeFastAttributeList(pAttrList); writeBytes(sSlashAndClosingBracket, N_CHARS(sSlashAndClosingBracket)); } void FastSaxSerializer::setOutputStream( const ::com::sun::star::uno::Reference< ::com::sun::star::io::XOutputStream >& xOutputStream ) { mxOutputStream = xOutputStream; } void FastSaxSerializer::setFastTokenHandler( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastTokenHandler >& xFastTokenHandler ) { mxFastTokenHandler = xFastTokenHandler; } void FastSaxSerializer::writeFastAttributeList( FastAttributeList* pAttrList ) { #ifdef DBG_UTIL ::std::set DebugAttributes; #endif const std::vector< sal_Int32 >& Tokens = pAttrList->getFastAttributeTokens(); for (size_t j = 0; j < Tokens.size(); j++) { writeBytes(sSpace, N_CHARS(sSpace)); sal_Int32 nToken = Tokens[j]; writeId(nToken); #ifdef DBG_UTIL // Well-formedness constraint: Unique Att Spec OUString const name(OStringToOUString(getId(nToken), RTL_TEXTENCODING_UTF8)); assert(DebugAttributes.find(name) == DebugAttributes.end()); DebugAttributes.insert(name); #endif writeBytes(sEqualSignAndQuote, N_CHARS(sEqualSignAndQuote)); write(pAttrList->getFastAttributeValue(j), true); writeBytes(sQuote, N_CHARS(sQuote)); } } void FastSaxSerializer::mark( const Int32Sequence& aOrder ) { if ( aOrder.hasElements() ) { boost::shared_ptr< ForMerge > pSort( new ForSort( aOrder ) ); maMarkStack.push( pSort ); } else { boost::shared_ptr< ForMerge > pMerge( new ForMerge( ) ); maMarkStack.push( pMerge ); } } void FastSaxSerializer::mergeTopMarks( sax_fastparser::MergeMarksEnum eMergeType ) { if ( maMarkStack.empty() ) return; if ( maMarkStack.size() == 1 && eMergeType != MERGE_MARKS_IGNORE) { writeOutput( maMarkStack.top()->getData() ); maMarkStack.pop(); return; } const Int8Sequence aMerge( maMarkStack.top()->getData() ); maMarkStack.pop(); switch ( eMergeType ) { case MERGE_MARKS_APPEND: maMarkStack.top()->append( aMerge ); break; case MERGE_MARKS_PREPEND: maMarkStack.top()->prepend( aMerge ); break; case MERGE_MARKS_POSTPONE: maMarkStack.top()->postpone( aMerge ); break; case MERGE_MARKS_IGNORE : break; } } void FastSaxSerializer::writeBytes( const Sequence< sal_Int8 >& rData ) { writeBytes( reinterpret_cast(rData.getConstArray()), rData.getLength() ); } void FastSaxSerializer::writeBytes( const char* pStr, size_t nLen ) { if ( maMarkStack.empty() ) writeOutput( reinterpret_cast(pStr), nLen ); else maMarkStack.top()->append( Sequence< sal_Int8 >( reinterpret_cast(pStr), nLen) ); } void FastSaxSerializer::writeOutput( const Sequence< ::sal_Int8 >& aData ) { writeOutput( aData.getConstArray(), aData.getLength() ); } void FastSaxSerializer::writeOutput( const sal_Int8* pStr, size_t nLen ) { maOutputStream.writeBytes( pStr, nLen ); // Write when the sequence gets big enough if (maOutputStream.getSize() > 0x10000) { maOutputStream.flush(); mxOutputStream->writeBytes(maOutputData); } } FastSaxSerializer::Int8Sequence& FastSaxSerializer::ForMerge::getData() { merge( maData, maPostponed, true ); maPostponed.realloc( 0 ); return maData; } #if OSL_DEBUG_LEVEL > 0 void FastSaxSerializer::ForMerge::print( ) { std::cerr << "Data: "; for ( sal_Int32 i=0, len=maData.getLength(); i < len; i++ ) { std::cerr << maData[i]; } std::cerr << "\nPostponed: "; for ( sal_Int32 i=0, len=maPostponed.getLength(); i < len; i++ ) { std::cerr << maPostponed[i]; } std::cerr << "\n"; } #endif void FastSaxSerializer::ForMerge::prepend( const Int8Sequence &rWhat ) { merge( maData, rWhat, false ); } void FastSaxSerializer::ForMerge::append( const Int8Sequence &rWhat ) { merge( maData, rWhat, true ); } void FastSaxSerializer::ForMerge::postpone( const Int8Sequence &rWhat ) { merge( maPostponed, rWhat, true ); } void FastSaxSerializer::ForMerge::merge( Int8Sequence &rTop, const Int8Sequence &rMerge, bool bAppend ) { sal_Int32 nMergeLen = rMerge.getLength(); if ( nMergeLen > 0 ) { sal_Int32 nTopLen = rTop.getLength(); rTop.realloc( nTopLen + nMergeLen ); if ( bAppend ) { // append the rMerge to the rTop memcpy( rTop.getArray() + nTopLen, rMerge.getConstArray(), nMergeLen ); } else { // prepend the rMerge to the rTop memmove( rTop.getArray() + nMergeLen, rTop.getConstArray(), nTopLen ); memcpy( rTop.getArray(), rMerge.getConstArray(), nMergeLen ); } } } void FastSaxSerializer::ForMerge::resetData( ) { maData = Int8Sequence(); } void FastSaxSerializer::ForSort::setCurrentElement( sal_Int32 nElement ) { SequenceAsVector< sal_Int32 > aOrder( maOrder ); if( std::find( aOrder.begin(), aOrder.end(), nElement ) != aOrder.end() ) { mnCurrentElement = nElement; if ( maData.find( nElement ) == maData.end() ) maData[ nElement ] = Int8Sequence(); } } void FastSaxSerializer::ForSort::prepend( const Int8Sequence &rWhat ) { append( rWhat ); } void FastSaxSerializer::ForSort::append( const Int8Sequence &rWhat ) { merge( maData[mnCurrentElement], rWhat, true ); } void FastSaxSerializer::ForSort::sort() { // Clear the ForMerge data to avoid duplicate items resetData(); // Sort it all std::map< sal_Int32, Int8Sequence >::iterator iter; for ( sal_Int32 i=0, len=maOrder.getLength(); i < len; i++ ) { iter = maData.find( maOrder[i] ); if ( iter != maData.end() ) ForMerge::append( iter->second ); } } FastSaxSerializer::Int8Sequence& FastSaxSerializer::ForSort::getData() { sort( ); return ForMerge::getData(); } #if OSL_DEBUG_LEVEL > 0 void FastSaxSerializer::ForSort::print( ) { std::map< sal_Int32, Int8Sequence >::iterator iter = maData.begin(); while ( iter != maData.end( ) ) { std::cerr << "pair: " << iter->first; for ( sal_Int32 i=0, len=iter->second.getLength(); i < len; ++i ) std::cerr << iter->second[i]; std::cerr << "\n"; ++iter; } sort( ); ForMerge::print(); } #endif } // namespace sax_fastparser /* vim:set shiftwidth=4 softtabstop=4 expandtab: */