Patches contributed by: Armin Le Grand.
#118558# Correcting OLE attributes of LO3.4 at load time by loading as OOo3.3, details see task.
http://svn.apache.org/viewvc?view=revision&revision=1195906
#118485# - Styles for OLEs are not saved.
http://svn.apache.org/viewvc?view=revision&revision=1182166
#118898# Adapted ImpGraphic::ImplGetBitmap to correctly convert metafiles
http://svn.apache.org/viewvc?view=revision&revision=1293316
#119337# Solves the wrong get/setPropertyValue calls in
SvxShapeText (and thus in SvxOle2Shape)
http://svn.apache.org/viewvc?view=revision&revision=1344156
Patches contributed by Mathias Bauer (and others)
gnumake4 work variously
http://svn.apache.org/viewvc?view=revision&revision=1394707
http://svn.apache.org/viewvc?view=revision&revision=1394326
cws mba34issues01: #i117717#: remove wrong assertion
http://svn.apache.org/viewvc?view=revision&revision=1172349
Patch contributed by Herbert Duerr
goodbye Registration and License dialogs, don't let the door hit you
http://svn.apache.org/viewvc?view=revision&revision=1172613
help gcc 4.6.0 on 32bit ubuntu 11.10"
http://svn.apache.org/viewvc?view=revision&revision=1245357
Do not add targets for junit tests when junit is disabled.
Patch contributed by Andre Fischer
http://svn.apache.org/viewvc?view=revision&revision=1241508
Revert "sb140: #i117082# avoid unncessary static class data members
commit 21d97438e2
.
remove obsolete FreeBSD visibility special case.
retain consolidated BSD bridge code, remove OS/2 pieces.
337 lines
12 KiB
C++
337 lines
12 KiB
C++
/* -*- 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 "MergeElemTContext.hxx"
|
|
#include "MutableAttrList.hxx"
|
|
#include "TransformerBase.hxx"
|
|
#include "TransformerActions.hxx"
|
|
#include "AttrTransformerAction.hxx"
|
|
#include "ElemTransformerAction.hxx"
|
|
#include "IgnoreTContext.hxx"
|
|
#include "xmloff/xmlnmspe.hxx"
|
|
|
|
using ::rtl::OUString;
|
|
using namespace ::com::sun::star::uno;
|
|
using namespace ::com::sun::star::xml::sax;
|
|
using namespace ::xmloff::token;
|
|
|
|
class XMLParagraphTransformerContext : public XMLTransformerContext
|
|
{
|
|
public:
|
|
TYPEINFO();
|
|
|
|
XMLParagraphTransformerContext( XMLTransformerBase& rTransformer,
|
|
const ::rtl::OUString& rQName );
|
|
|
|
virtual ~XMLParagraphTransformerContext();
|
|
|
|
// Create a children element context. By default, the import's
|
|
// CreateContext method is called to create a new default context.
|
|
virtual XMLTransformerContext *CreateChildContext( sal_uInt16 nPrefix,
|
|
const ::rtl::OUString& rLocalName,
|
|
const ::rtl::OUString& rQName,
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
|
|
|
|
// StartElement is called after a context has been constructed and
|
|
// before a elements context is parsed. It may be used for actions that
|
|
// require virtual methods. The default is to do nothing.
|
|
virtual void StartElement( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
|
|
|
|
// EndElement is called before a context will be destructed, but
|
|
// after a elements context has been parsed. It may be used for actions
|
|
// that require virtual methods. The default is to do nothing.
|
|
virtual void EndElement();
|
|
|
|
// This method is called for all characters that are contained in the
|
|
// current element. The default is to ignore them.
|
|
virtual void Characters( const ::rtl::OUString& rChars );
|
|
};
|
|
|
|
TYPEINIT1( XMLParagraphTransformerContext, XMLTransformerContext );
|
|
|
|
XMLParagraphTransformerContext::XMLParagraphTransformerContext(
|
|
XMLTransformerBase& rImp,
|
|
const OUString& rQName ) :
|
|
XMLTransformerContext( rImp, rQName )
|
|
{
|
|
}
|
|
|
|
XMLParagraphTransformerContext::~XMLParagraphTransformerContext()
|
|
{
|
|
}
|
|
|
|
XMLTransformerContext *XMLParagraphTransformerContext::CreateChildContext(
|
|
sal_uInt16 /*nPrefix*/,
|
|
const OUString& /*rLocalName*/,
|
|
const OUString& rQName,
|
|
const Reference< XAttributeList >& )
|
|
{
|
|
XMLTransformerContext *pContext = 0;
|
|
|
|
pContext = new XMLIgnoreTransformerContext( GetTransformer(),
|
|
rQName, sal_True );
|
|
|
|
return pContext;
|
|
}
|
|
|
|
void XMLParagraphTransformerContext::StartElement( const Reference< XAttributeList >& rAttrList )
|
|
{
|
|
XMLTransformerContext::StartElement( rAttrList );
|
|
}
|
|
|
|
void XMLParagraphTransformerContext::EndElement()
|
|
{
|
|
XMLTransformerContext::EndElement();
|
|
}
|
|
|
|
void XMLParagraphTransformerContext::Characters( const OUString& rChars )
|
|
{
|
|
XMLTransformerContext::Characters( rChars );
|
|
}
|
|
|
|
class XMLPersTextContentRNGTransformTContext : public XMLPersTextContentTContext
|
|
{
|
|
public:
|
|
TYPEINFO();
|
|
|
|
XMLPersTextContentRNGTransformTContext(
|
|
XMLTransformerBase& rTransformer,
|
|
const ::rtl::OUString& rQName,
|
|
sal_uInt16 nPrefix,
|
|
::xmloff::token::XMLTokenEnum eToken );
|
|
virtual ~XMLPersTextContentRNGTransformTContext();
|
|
|
|
virtual void Characters( const ::rtl::OUString& rChars );
|
|
};
|
|
|
|
TYPEINIT1( XMLPersTextContentRNGTransformTContext, XMLPersAttrListTContext );
|
|
|
|
XMLPersTextContentRNGTransformTContext::XMLPersTextContentRNGTransformTContext(
|
|
XMLTransformerBase& rTransformer,
|
|
const ::rtl::OUString& rQName,
|
|
sal_uInt16 nPrefix,
|
|
::xmloff::token::XMLTokenEnum eToken ) :
|
|
XMLPersTextContentTContext(
|
|
rTransformer, rQName, nPrefix, eToken )
|
|
{}
|
|
|
|
XMLPersTextContentRNGTransformTContext::~XMLPersTextContentRNGTransformTContext()
|
|
{}
|
|
|
|
void XMLPersTextContentRNGTransformTContext::Characters( const ::rtl::OUString& rChars )
|
|
{
|
|
OUString aConvChars( rChars );
|
|
GetTransformer().ConvertRNGDateTimeToISO( aConvChars );
|
|
XMLPersTextContentTContext::Characters( aConvChars );
|
|
}
|
|
|
|
|
|
TYPEINIT1( XMLMergeElemTransformerContext, XMLTransformerContext );
|
|
|
|
void XMLMergeElemTransformerContext::ExportStartElement()
|
|
{
|
|
XMLPersTextContentTContextVector::iterator aIter = m_aChildContexts.begin();
|
|
|
|
for( ; aIter != m_aChildContexts.end(); ++aIter )
|
|
{
|
|
XMLPersTextContentTContext *pContext = (*aIter).get();
|
|
static_cast< XMLMutableAttributeList * >( m_xAttrList.get() )
|
|
->AddAttribute( pContext->GetExportQName(),
|
|
pContext->GetTextContent() );
|
|
}
|
|
XMLTransformerContext::StartElement( m_xAttrList );
|
|
|
|
m_bStartElementExported = sal_True;
|
|
}
|
|
|
|
XMLMergeElemTransformerContext::XMLMergeElemTransformerContext(
|
|
XMLTransformerBase& rImp,
|
|
const OUString& rQName,
|
|
sal_uInt16 nActionMap ) :
|
|
XMLTransformerContext( rImp, rQName ),
|
|
m_nActionMap( nActionMap ),
|
|
m_bStartElementExported( sal_False )
|
|
{
|
|
}
|
|
|
|
XMLMergeElemTransformerContext::~XMLMergeElemTransformerContext()
|
|
{
|
|
}
|
|
|
|
void XMLMergeElemTransformerContext::StartElement(
|
|
const Reference< XAttributeList >& rAttrList )
|
|
{
|
|
XMLMutableAttributeList *pMutableAttrList =
|
|
new XMLMutableAttributeList( rAttrList, sal_True );
|
|
m_xAttrList = pMutableAttrList;
|
|
|
|
sal_Int16 nAttrCount = m_xAttrList.is() ? m_xAttrList->getLength() : 0;
|
|
for( sal_Int16 i=0; i < nAttrCount; i++ )
|
|
{
|
|
const OUString& rAttrName = m_xAttrList->getNameByIndex( i );
|
|
OUString aLocalName;
|
|
sal_uInt16 nPrefix =
|
|
GetTransformer().GetNamespaceMap().GetKeyByAttrName( rAttrName,
|
|
&aLocalName );
|
|
sal_Bool bRemove = sal_True;
|
|
if( XML_NAMESPACE_OFFICE == nPrefix)
|
|
{
|
|
if (IsXMLToken( aLocalName, XML_DISPLAY ) )
|
|
bRemove = sal_False;
|
|
else if (IsXMLToken( aLocalName, XML_AUTHOR ) )
|
|
bRemove = sal_False;
|
|
else if (IsXMLToken( aLocalName, XML_CREATE_DATE ) )
|
|
bRemove = sal_False;
|
|
else if (IsXMLToken( aLocalName, XML_CREATE_DATE_STRING ) )
|
|
bRemove = sal_False;
|
|
}
|
|
if (bRemove)
|
|
{
|
|
pMutableAttrList->RemoveAttributeByIndex( i );
|
|
--i;
|
|
--nAttrCount;
|
|
}
|
|
}
|
|
}
|
|
|
|
XMLTransformerContext *XMLMergeElemTransformerContext::CreateChildContext(
|
|
sal_uInt16 nPrefix,
|
|
const OUString& rLocalName,
|
|
const OUString& rQName,
|
|
const Reference< XAttributeList >& rAttrList )
|
|
{
|
|
XMLTransformerContext *pContext = 0;
|
|
|
|
if( !m_bStartElementExported )
|
|
{
|
|
XMLTransformerActions *pActions =
|
|
GetTransformer().GetUserDefinedActions( m_nActionMap );
|
|
OSL_ENSURE( pActions, "go no actions" );
|
|
if( pActions )
|
|
{
|
|
XMLTransformerActions::key_type aKey( nPrefix, rLocalName );
|
|
XMLTransformerActions::const_iterator aIter =
|
|
pActions->find( aKey );
|
|
|
|
if( !(aIter == pActions->end()) )
|
|
{
|
|
switch( (*aIter).second.m_nActionType )
|
|
{
|
|
case XML_ATACTION_MOVE_FROM_ELEM_RNG2ISO_DATETIME:
|
|
{
|
|
XMLPersTextContentTContext *pTC =
|
|
new XMLPersTextContentRNGTransformTContext(
|
|
GetTransformer(), rQName,
|
|
(*aIter).second.GetQNamePrefixFromParam1(),
|
|
(*aIter).second.GetQNameTokenFromParam1() );
|
|
XMLPersTextContentTContextVector::value_type aVal(pTC);
|
|
m_aChildContexts.push_back( aVal );
|
|
pContext = pTC;
|
|
}
|
|
break;
|
|
case XML_ATACTION_MOVE_FROM_ELEM:
|
|
{
|
|
XMLPersTextContentTContext *pTC =
|
|
new XMLPersTextContentTContext(
|
|
GetTransformer(), rQName,
|
|
(*aIter).second.GetQNamePrefixFromParam1(),
|
|
(*aIter).second.GetQNameTokenFromParam1() );
|
|
XMLPersTextContentTContextVector::value_type aVal(pTC);
|
|
m_aChildContexts.push_back( aVal );
|
|
pContext = pTC;
|
|
}
|
|
break;
|
|
case XML_ETACTION_EXTRACT_CHARACTERS:
|
|
{
|
|
if( !m_bStartElementExported )
|
|
ExportStartElement();
|
|
XMLParagraphTransformerContext* pPTC =
|
|
new XMLParagraphTransformerContext( GetTransformer(),
|
|
rQName);
|
|
pContext = pPTC;
|
|
}
|
|
break;
|
|
default:
|
|
OSL_ENSURE( !this, "unknown action" );
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
XMLTransformerActions *pActions =
|
|
GetTransformer().GetUserDefinedActions( m_nActionMap );
|
|
OSL_ENSURE( pActions, "go no actions" );
|
|
if( pActions )
|
|
{
|
|
XMLTransformerActions::key_type aKey( nPrefix, rLocalName );
|
|
XMLTransformerActions::const_iterator aIter =
|
|
pActions->find( aKey );
|
|
|
|
if( !(aIter == pActions->end()) )
|
|
{
|
|
switch( (*aIter).second.m_nActionType )
|
|
{
|
|
case XML_ETACTION_EXTRACT_CHARACTERS:
|
|
{
|
|
if( !m_bStartElementExported )
|
|
ExportStartElement();
|
|
XMLParagraphTransformerContext* pPTC =
|
|
new XMLParagraphTransformerContext( GetTransformer(),
|
|
rQName);
|
|
pContext = pPTC;
|
|
}
|
|
break;
|
|
default:
|
|
OSL_ENSURE( !this, "unknown action" );
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// default is copying
|
|
if( !pContext )
|
|
{
|
|
if( !m_bStartElementExported )
|
|
ExportStartElement();
|
|
pContext = XMLTransformerContext::CreateChildContext( nPrefix,
|
|
rLocalName,
|
|
rQName,
|
|
rAttrList );
|
|
}
|
|
|
|
return pContext;
|
|
}
|
|
|
|
void XMLMergeElemTransformerContext::EndElement()
|
|
{
|
|
if( !m_bStartElementExported )
|
|
ExportStartElement();
|
|
XMLTransformerContext::EndElement();
|
|
}
|
|
|
|
void XMLMergeElemTransformerContext::Characters( const OUString& )
|
|
{
|
|
// ignore
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|