2bafc7384b
and cid#1545841 COPY_INSTEAD_OF_MOVE cid#1554682 COPY_INSTEAD_OF_MOVE cid#1554686 COPY_INSTEAD_OF_MOVE cid#1554715 COPY_INSTEAD_OF_MOVE cid#1554750 COPY_INSTEAD_OF_MOVE cid#1554759 COPY_INSTEAD_OF_MOVE cid#1554770 COPY_INSTEAD_OF_MOVE cid#1554779 COPY_INSTEAD_OF_MOVE cid#1554794 COPY_INSTEAD_OF_MOVE cid#1554800 COPY_INSTEAD_OF_MOVE cid#1554826 COPY_INSTEAD_OF_MOVE cid#1554836 COPY_INSTEAD_OF_MOVE cid#1554862 COPY_INSTEAD_OF_MOVE cid#1554865 COPY_INSTEAD_OF_MOVE cid#1554872 COPY_INSTEAD_OF_MOVE cid#1554883 COPY_INSTEAD_OF_MOVE cid#1554906 COPY_INSTEAD_OF_MOVE cid#1554921 COPY_INSTEAD_OF_MOVE cid#1554926 COPY_INSTEAD_OF_MOVE cid#1554946 COPY_INSTEAD_OF_MOVE cid#1554956 COPY_INSTEAD_OF_MOVE cid#1554970 COPY_INSTEAD_OF_MOVE cid#1554986 COPY_INSTEAD_OF_MOVE cid#1554991 COPY_INSTEAD_OF_MOVE cid#1555013 COPY_INSTEAD_OF_MOVE cid#1555037 COPY_INSTEAD_OF_MOVE cid#1555050 COPY_INSTEAD_OF_MOVE cid#1555057 COPY_INSTEAD_OF_MOVE cid#1555066 COPY_INSTEAD_OF_MOVE cid#1555067 COPY_INSTEAD_OF_MOVE cid#1555083 COPY_INSTEAD_OF_MOVE cid#1555097 COPY_INSTEAD_OF_MOVE cid#1555135 COPY_INSTEAD_OF_MOVE cid#1555140 COPY_INSTEAD_OF_MOVE cid#1555146 COPY_INSTEAD_OF_MOVE cid#1555148 COPY_INSTEAD_OF_MOVE cid#1555149 COPY_INSTEAD_OF_MOVE cid#1555155 COPY_INSTEAD_OF_MOVE cid#1555157 COPY_INSTEAD_OF_MOVE cid#1555168 COPY_INSTEAD_OF_MOVE cid#1555195 COPY_INSTEAD_OF_MOVE cid#1555196 COPY_INSTEAD_OF_MOVE cid#1555237 COPY_INSTEAD_OF_MOVE Change-Id: I90531c19c28dca77fe99c72efdfc0972c311da98 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/175377 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
172 lines
5.1 KiB
C++
172 lines
5.1 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 "IgnoreTContext.hxx"
|
|
#include "TransformerBase.hxx"
|
|
#include "MutableAttrList.hxx"
|
|
#include <xmloff/namespacemap.hxx>
|
|
#include "PersAttrListTContext.hxx"
|
|
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
using namespace ::com::sun::star::xml::sax;
|
|
|
|
void XMLPersAttrListTContext::AddAttribute(
|
|
sal_uInt16 nAPrefix,
|
|
::xmloff::token::XMLTokenEnum eAToken,
|
|
::xmloff::token::XMLTokenEnum eVToken )
|
|
{
|
|
const OUString& aAttrValue( ::xmloff::token::GetXMLToken( eVToken ) );
|
|
AddAttribute( nAPrefix, eAToken, aAttrValue );
|
|
}
|
|
|
|
void XMLPersAttrListTContext::AddAttribute(
|
|
sal_uInt16 nAPrefix,
|
|
::xmloff::token::XMLTokenEnum eAToken,
|
|
const OUString & rValue )
|
|
{
|
|
OUString aAttrQName( GetTransformer().GetNamespaceMap().GetQNameByKey(
|
|
nAPrefix, ::xmloff::token::GetXMLToken( eAToken ) ) );
|
|
const OUString& aAttrValue( rValue );
|
|
|
|
rtl::Reference<XMLMutableAttributeList> pMutableAttrList;
|
|
if( m_xAttrList.is() )
|
|
{
|
|
pMutableAttrList =
|
|
static_cast< XMLMutableAttributeList * >( m_xAttrList.get() );
|
|
}
|
|
else
|
|
{
|
|
pMutableAttrList = new XMLMutableAttributeList ;
|
|
m_xAttrList = pMutableAttrList;
|
|
}
|
|
|
|
pMutableAttrList->AddAttribute( aAttrQName, aAttrValue );
|
|
}
|
|
|
|
XMLPersAttrListTContext::XMLPersAttrListTContext(
|
|
XMLTransformerBase& rImp,
|
|
const OUString& rQName ) :
|
|
XMLTransformerContext( rImp, rQName ),
|
|
m_aElemQName( rQName ),
|
|
m_nActionMap( INVALID_ACTIONS )
|
|
{
|
|
}
|
|
|
|
XMLPersAttrListTContext::XMLPersAttrListTContext(
|
|
XMLTransformerBase& rImp,
|
|
const OUString& rQName,
|
|
sal_uInt16 nActionMap ) :
|
|
XMLTransformerContext( rImp, rQName ),
|
|
m_aElemQName( rQName ),
|
|
m_nActionMap( nActionMap )
|
|
{
|
|
}
|
|
|
|
XMLPersAttrListTContext::XMLPersAttrListTContext(
|
|
XMLTransformerBase& rImp,
|
|
const OUString& rQName,
|
|
sal_uInt16 nPrefix,
|
|
::xmloff::token::XMLTokenEnum eToken ) :
|
|
XMLTransformerContext( rImp, rQName ),
|
|
m_aElemQName( rImp.GetNamespaceMap().GetQNameByKey( nPrefix,
|
|
::xmloff::token::GetXMLToken( eToken ) ) ),
|
|
m_nActionMap( INVALID_ACTIONS )
|
|
{
|
|
}
|
|
|
|
XMLPersAttrListTContext::XMLPersAttrListTContext(
|
|
XMLTransformerBase& rImp,
|
|
const OUString& rQName,
|
|
sal_uInt16 nPrefix,
|
|
::xmloff::token::XMLTokenEnum eToken,
|
|
sal_uInt16 nActionMap ) :
|
|
XMLTransformerContext( rImp, rQName ),
|
|
m_aElemQName( rImp.GetNamespaceMap().GetQNameByKey( nPrefix,
|
|
::xmloff::token::GetXMLToken( eToken ) ) ),
|
|
m_nActionMap( nActionMap )
|
|
{
|
|
}
|
|
|
|
rtl::Reference<XMLTransformerContext> XMLPersAttrListTContext::CreateChildContext(
|
|
sal_uInt16 /*nPrefix*/,
|
|
const OUString& /*rLocalName*/,
|
|
const OUString& rQName,
|
|
const Reference< XAttributeList >& )
|
|
{
|
|
// ignore all child elements
|
|
return new XMLIgnoreTransformerContext( GetTransformer(),
|
|
rQName, true, true );
|
|
}
|
|
|
|
void XMLPersAttrListTContext::StartElement(
|
|
const Reference< XAttributeList >& rAttrList )
|
|
{
|
|
XMLMutableAttributeList *pMutableAttrList = nullptr;
|
|
|
|
Reference< XAttributeList > xAttrList( rAttrList );
|
|
if( m_nActionMap != INVALID_ACTIONS )
|
|
{
|
|
pMutableAttrList =
|
|
GetTransformer().ProcessAttrList( xAttrList, m_nActionMap,
|
|
true );
|
|
}
|
|
|
|
if( m_xAttrList.is() )
|
|
{
|
|
static_cast< XMLMutableAttributeList * >( m_xAttrList.get() )
|
|
->AppendAttributeList( xAttrList );
|
|
}
|
|
else if( pMutableAttrList )
|
|
{
|
|
m_xAttrList = std::move(xAttrList);
|
|
}
|
|
else
|
|
{
|
|
m_xAttrList = new XMLMutableAttributeList( rAttrList, true );
|
|
}
|
|
}
|
|
|
|
void XMLPersAttrListTContext::EndElement()
|
|
{
|
|
// ignore for now
|
|
}
|
|
|
|
void XMLPersAttrListTContext::Characters( const OUString& )
|
|
{
|
|
}
|
|
|
|
bool XMLPersAttrListTContext::IsPersistent() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void XMLPersAttrListTContext::Export()
|
|
{
|
|
GetTransformer().GetDocHandler()->startElement( m_aElemQName, m_xAttrList );
|
|
ExportContent();
|
|
GetTransformer().GetDocHandler()->endElement( m_aElemQName );
|
|
}
|
|
|
|
void XMLPersAttrListTContext::ExportContent()
|
|
{
|
|
// nothing to export
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|