2004-07-13 07:52:08 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 22:43:59 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2004-07-13 07:52:08 +00:00
|
|
|
*
|
2008-04-10 22:43:59 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2004-07-13 07:52:08 +00:00
|
|
|
*
|
2008-04-10 22:43:59 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2004-07-13 07:52:08 +00:00
|
|
|
*
|
2008-04-10 22:43:59 +00:00
|
|
|
* $RCSfile: IgnoreTContext.cxx,v $
|
|
|
|
* $Revision: 1.8 $
|
2004-07-13 07:52:08 +00:00
|
|
|
*
|
2008-04-10 22:43:59 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2004-07-13 07:52:08 +00:00
|
|
|
*
|
2008-04-10 22:43:59 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2004-07-13 07:52:08 +00:00
|
|
|
*
|
2008-04-10 22:43:59 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2004-07-13 07:52:08 +00:00
|
|
|
*
|
2008-04-10 22:43:59 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2004-07-13 07:52:08 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 10:25:04 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_xmloff.hxx"
|
2004-07-13 07:52:08 +00:00
|
|
|
#include "IgnoreTContext.hxx"
|
|
|
|
#ifndef _XMLOFF_TRANSFORMERBASE_HXX
|
|
|
|
#include "TransformerBase.hxx"
|
|
|
|
#endif
|
|
|
|
|
2008-03-12 10:14:53 +00:00
|
|
|
using ::rtl::OUString;
|
|
|
|
|
2004-07-13 07:52:08 +00:00
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::xml::sax;
|
|
|
|
|
|
|
|
TYPEINIT1( XMLIgnoreTransformerContext, XMLTransformerContext );
|
|
|
|
|
|
|
|
XMLIgnoreTransformerContext::XMLIgnoreTransformerContext(
|
|
|
|
XMLTransformerBase& rImp,
|
|
|
|
const OUString& rQName,
|
|
|
|
sal_Bool bIgnoreChars,
|
|
|
|
sal_Bool bIgnoreElems ) :
|
|
|
|
XMLTransformerContext( rImp, rQName ),
|
|
|
|
m_bIgnoreCharacters( bIgnoreChars ),
|
2005-02-21 14:53:17 +00:00
|
|
|
m_bIgnoreElements( bIgnoreElems ),
|
|
|
|
m_bRecursiveUse( sal_False )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
XMLIgnoreTransformerContext::XMLIgnoreTransformerContext(
|
|
|
|
XMLTransformerBase& rTransformer,
|
|
|
|
const ::rtl::OUString& rQName,
|
|
|
|
sal_Bool bAllowCharactersRecursive ) :
|
|
|
|
XMLTransformerContext( rTransformer, rQName ),
|
|
|
|
m_bIgnoreCharacters( sal_False ),
|
|
|
|
m_bIgnoreElements( sal_False ),
|
|
|
|
m_bAllowCharactersRecursive( bAllowCharactersRecursive ),
|
|
|
|
m_bRecursiveUse( sal_True )
|
2004-07-13 07:52:08 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
XMLIgnoreTransformerContext::~XMLIgnoreTransformerContext()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
XMLTransformerContext *XMLIgnoreTransformerContext::CreateChildContext(
|
|
|
|
sal_uInt16 nPrefix,
|
|
|
|
const OUString& rLocalName,
|
|
|
|
const OUString& rQName,
|
|
|
|
const Reference< XAttributeList >& xAttrList )
|
|
|
|
{
|
|
|
|
XMLTransformerContext *pContext = 0;
|
|
|
|
if( m_bIgnoreElements )
|
|
|
|
pContext = new XMLIgnoreTransformerContext( GetTransformer(),
|
|
|
|
rQName, sal_True,
|
|
|
|
sal_True );
|
2005-02-21 14:53:17 +00:00
|
|
|
else if (m_bRecursiveUse)
|
|
|
|
pContext = new XMLIgnoreTransformerContext( GetTransformer(),
|
|
|
|
rQName, m_bAllowCharactersRecursive );
|
2004-07-13 07:52:08 +00:00
|
|
|
else
|
|
|
|
pContext = XMLTransformerContext::CreateChildContext(
|
|
|
|
nPrefix, rLocalName, rQName, xAttrList );
|
|
|
|
|
|
|
|
return pContext;
|
|
|
|
}
|
|
|
|
|
2006-06-19 17:53:04 +00:00
|
|
|
void XMLIgnoreTransformerContext::StartElement( const Reference< XAttributeList >& )
|
2004-07-13 07:52:08 +00:00
|
|
|
{
|
|
|
|
// ignore
|
|
|
|
}
|
|
|
|
|
|
|
|
void XMLIgnoreTransformerContext::EndElement()
|
|
|
|
{
|
|
|
|
// ignore
|
|
|
|
}
|
|
|
|
|
|
|
|
void XMLIgnoreTransformerContext::Characters( const OUString& rChars )
|
|
|
|
{
|
|
|
|
if( !m_bIgnoreCharacters )
|
|
|
|
GetTransformer().GetDocHandler()->characters( rChars );
|
2005-02-21 14:53:17 +00:00
|
|
|
else if ( m_bRecursiveUse && m_bAllowCharactersRecursive )
|
|
|
|
GetTransformer().GetDocHandler()->characters( rChars );
|
2004-07-13 07:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|