Files
libreoffice/xmloff/source/core/unoatrcn.cxx

255 lines
7.4 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
re-base on ALv2 code. Includes: 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 21d97438e2944861e26e4984195f959a0cce1e41. remove obsolete FreeBSD visibility special case. retain consolidated BSD bridge code, remove OS/2 pieces.
2012-11-12 17:21:24 +00:00
/*
* 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 .
*/
2000-09-18 23:31:44 +00:00
#include <string.h>
2000-09-18 23:31:44 +00:00
#include <com/sun/star/xml/AttributeData.hpp>
New o3tl::try/doGet to obtain value from Any ...in an attempt to reduce usage of type-unsafe void const * css::uno::Any::getValue() These new functions are often more convenient to use than the existing ">>=" and Any::get<T>. Note how they are careful to provide a pointer directly into the given Any, instead of creating temporaries. As an example, replaced most calls of getValue across xmloff: * Cases that first check for a specific type (via getValueType etc.) and then call getValue can instead call tryGet. (But beware that tryGet supports some conversions, which a check for a specific type may have missed---either intentionally or by accident. Also beware the somewhat common idiom of checking for TypeClass_ENUM and then using getValue to obtain a sal_Int32; this cannot be replaced with a call to tryGet.) * Cases that seem confident that the Any is of the correct type when calling getValue (but apparently are confident due to some higher-layer protocol, as the surrounding code does not do any checking via getValueType or similar) can instead call doGet. It throws an exception if it turns out the confidence wasn't warranted. (Many of the existing calls that directly dereferenced the return value of getValue as sal_Bool look suspicious, in that the author might have thought the given code would also cover a VOID Any---which technically it even would have happened to do. If any RuntimeExceptions thrown from these doGet calls start to crop up, these changes need to be revisited. Some may even be rewritten as uses of ">>=". But at least "make check" did not show any such problems. Also note that casting the value obtained from getValue to any css::uno::Reference<X> with X being anything but the base css::uno::XInterface was always prone to producing a bad pointer, in case the interface actually stored in the Any derived from X via multiple inheritance.) * Should there ever be cases where an Any is known to be of the requested type, some additional forceGet could be introduced (which would assert instead of throwing an exception). Change-Id: I2d8739e86314eff73abfcafe01d806f5bc5c34db
2016-06-02 15:06:06 +02:00
#include <o3tl/any.hxx>
#include <o3tl/make_unique.hxx>
2000-09-18 23:31:44 +00:00
#include <rtl/ustrbuf.hxx>
2011-05-31 22:55:31 +01:00
#include <comphelper/servicehelper.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <limits.h>
2000-09-18 23:31:44 +00:00
#include <xmloff/xmlcnimp.hxx>
2000-09-18 23:31:44 +00:00
#include <xmloff/unoatrcn.hxx>
2000-09-18 23:31:44 +00:00
using namespace ::com::sun::star;
// Interface implementation
uno::Reference< uno::XInterface > SvUnoAttributeContainer_CreateInstance()
{
return *(new SvUnoAttributeContainer);
}
SvUnoAttributeContainer::SvUnoAttributeContainer( std::unique_ptr<SvXMLAttrContainerData> pContainer)
: mpContainer( std::move( pContainer ) )
2000-09-18 23:31:44 +00:00
{
if( !mpContainer )
mpContainer = o3tl::make_unique<SvXMLAttrContainerData>();
2000-09-18 23:31:44 +00:00
}
// container::XElementAccess
uno::Type SAL_CALL SvUnoAttributeContainer::getElementType()
2000-09-18 23:31:44 +00:00
{
return cppu::UnoType<xml::AttributeData>::get();
2000-09-18 23:31:44 +00:00
}
sal_Bool SAL_CALL SvUnoAttributeContainer::hasElements()
2000-09-18 23:31:44 +00:00
{
return mpContainer->GetAttrCount() != 0;
2000-09-18 23:31:44 +00:00
}
sal_uInt16 SvUnoAttributeContainer::getIndexByName(const OUString& aName ) const
{
const sal_uInt16 nAttrCount = mpContainer->GetAttrCount();
sal_Int32 nPos = aName.indexOf( ':' );
2000-09-18 23:31:44 +00:00
if( nPos == -1L )
{
for( sal_uInt16 nAttr = 0; nAttr < nAttrCount; nAttr++ )
{
if( mpContainer->GetAttrLName(nAttr) == aName &&
mpContainer->GetAttrPrefix(nAttr).isEmpty() )
2000-09-18 23:31:44 +00:00
return nAttr;
}
}
else
{
const OUString aPrefix( aName.copy( 0L, nPos ) );
const OUString aLName( aName.copy( nPos+1L ) );
for( sal_uInt16 nAttr = 0; nAttr < nAttrCount; nAttr++ )
{
if( mpContainer->GetAttrLName(nAttr) == aLName &&
mpContainer->GetAttrPrefix(nAttr) == aPrefix )
return nAttr;
}
}
return USHRT_MAX;
}
2011-05-31 22:55:31 +01:00
namespace
{
class theSvUnoAttributeContainerUnoTunnelId : public rtl::Static< UnoTunnelIdInit, theSvUnoAttributeContainerUnoTunnelId> {};
}
const css::uno::Sequence< sal_Int8 > & SvUnoAttributeContainer::getUnoTunnelId() throw()
2000-09-18 23:31:44 +00:00
{
2011-05-31 22:55:31 +01:00
return theSvUnoAttributeContainerUnoTunnelId::get().getSeq();
2000-09-18 23:31:44 +00:00
}
sal_Int64 SAL_CALL SvUnoAttributeContainer::getSomething( const css::uno::Sequence< sal_Int8 >& rId )
2000-09-18 23:31:44 +00:00
{
if( rId.getLength() == 16 && 0 == memcmp( getUnoTunnelId().getConstArray(),
2000-09-18 23:31:44 +00:00
rId.getConstArray(), 16 ) )
{
return sal::static_int_cast<sal_Int64>(reinterpret_cast<sal_uIntPtr>(this));
2000-09-18 23:31:44 +00:00
}
return 0;
}
// container::XNameAccess
uno::Any SAL_CALL SvUnoAttributeContainer::getByName(const OUString& aName)
{
sal_uInt16 nAttr = getIndexByName(aName );
if( nAttr == USHRT_MAX )
throw container::NoSuchElementException();
xml::AttributeData aData;
aData.Namespace = mpContainer->GetAttrNamespace(nAttr);
aData.Type = "CDATA";
2000-09-18 23:31:44 +00:00
aData.Value = mpContainer->GetAttrValue(nAttr);
return uno::Any(aData);
2000-09-18 23:31:44 +00:00
}
uno::Sequence< OUString > SAL_CALL SvUnoAttributeContainer::getElementNames()
2000-09-18 23:31:44 +00:00
{
const sal_uInt16 nAttrCount = mpContainer->GetAttrCount();
uno::Sequence< OUString > aElementNames( (sal_Int32)nAttrCount );
OUString *pNames = aElementNames.getArray();
for( sal_uInt16 nAttr = 0; nAttr < nAttrCount; nAttr++ )
{
OUStringBuffer sBuffer( mpContainer->GetAttrPrefix(nAttr) );
if( !sBuffer.isEmpty() )
sBuffer.append( ':' );
2000-09-18 23:31:44 +00:00
sBuffer.append( mpContainer->GetAttrLName(nAttr) );
*pNames++ = sBuffer.makeStringAndClear();
}
return aElementNames;
}
sal_Bool SAL_CALL SvUnoAttributeContainer::hasByName(const OUString& aName)
2000-09-18 23:31:44 +00:00
{
return getIndexByName(aName ) != USHRT_MAX;
}
// container::XNameReplace
void SAL_CALL SvUnoAttributeContainer::replaceByName(const OUString& aName, const uno::Any& aElement)
{
if( auto pData = o3tl::tryAccess<xml::AttributeData>(aElement) )
2000-09-18 23:31:44 +00:00
{
sal_uInt16 nAttr = getIndexByName(aName );
if( nAttr == USHRT_MAX )
throw container::NoSuchElementException();
sal_Int32 nPos = aName.indexOf( ':' );
2000-09-18 23:31:44 +00:00
if( nPos != -1L )
{
const OUString aPrefix( aName.copy( 0L, nPos ));
const OUString aLName( aName.copy( nPos+1L ));
if( pData->Namespace.isEmpty() )
2000-09-18 23:31:44 +00:00
{
if( mpContainer->SetAt( nAttr, aPrefix, aLName, pData->Value ) )
return;
}
else
{
if( mpContainer->SetAt( nAttr, aPrefix, pData->Namespace, aLName, pData->Value ) )
return;
}
}
else
{
if( pData->Namespace.isEmpty() )
2000-09-18 23:31:44 +00:00
{
if( mpContainer->SetAt( nAttr, aName, pData->Value ) )
return;
}
}
}
throw lang::IllegalArgumentException();
}
// container::XNameContainer
void SAL_CALL SvUnoAttributeContainer::insertByName(const OUString& aName, const uno::Any& aElement)
{
auto pData = o3tl::tryAccess<xml::AttributeData>(aElement);
New o3tl::try/doGet to obtain value from Any ...in an attempt to reduce usage of type-unsafe void const * css::uno::Any::getValue() These new functions are often more convenient to use than the existing ">>=" and Any::get<T>. Note how they are careful to provide a pointer directly into the given Any, instead of creating temporaries. As an example, replaced most calls of getValue across xmloff: * Cases that first check for a specific type (via getValueType etc.) and then call getValue can instead call tryGet. (But beware that tryGet supports some conversions, which a check for a specific type may have missed---either intentionally or by accident. Also beware the somewhat common idiom of checking for TypeClass_ENUM and then using getValue to obtain a sal_Int32; this cannot be replaced with a call to tryGet.) * Cases that seem confident that the Any is of the correct type when calling getValue (but apparently are confident due to some higher-layer protocol, as the surrounding code does not do any checking via getValueType or similar) can instead call doGet. It throws an exception if it turns out the confidence wasn't warranted. (Many of the existing calls that directly dereferenced the return value of getValue as sal_Bool look suspicious, in that the author might have thought the given code would also cover a VOID Any---which technically it even would have happened to do. If any RuntimeExceptions thrown from these doGet calls start to crop up, these changes need to be revisited. Some may even be rewritten as uses of ">>=". But at least "make check" did not show any such problems. Also note that casting the value obtained from getValue to any css::uno::Reference<X> with X being anything but the base css::uno::XInterface was always prone to producing a bad pointer, in case the interface actually stored in the Any derived from X via multiple inheritance.) * Should there ever be cases where an Any is known to be of the requested type, some additional forceGet could be introduced (which would assert instead of throwing an exception). Change-Id: I2d8739e86314eff73abfcafe01d806f5bc5c34db
2016-06-02 15:06:06 +02:00
if( !pData )
2000-09-18 23:31:44 +00:00
throw lang::IllegalArgumentException();
sal_uInt16 nAttr = getIndexByName(aName );
if( nAttr != USHRT_MAX )
throw container::ElementExistException();
sal_Int32 nPos = aName.indexOf( ':' );
2000-09-18 23:31:44 +00:00
if( nPos != -1L )
{
const OUString aPrefix( aName.copy( 0L, nPos ));
const OUString aLName( aName.copy( nPos+1L ));
if( pData->Namespace.isEmpty() )
2000-09-18 23:31:44 +00:00
{
if( mpContainer->AddAttr( aPrefix, aLName, pData->Value ) )
return;
}
else
{
if( mpContainer->AddAttr( aPrefix, pData->Namespace, aLName, pData->Value ) )
return;
}
}
else
{
if( pData->Namespace.isEmpty() )
2000-09-18 23:31:44 +00:00
{
if( mpContainer->AddAttr( aName, pData->Value ) )
return;
}
}
}
void SAL_CALL SvUnoAttributeContainer::removeByName(const OUString& Name)
{
sal_uInt16 nAttr = getIndexByName(Name);
if( nAttr == USHRT_MAX )
throw container::NoSuchElementException();
mpContainer->Remove( nAttr );
}
//XServiceInfo
OUString SAL_CALL SvUnoAttributeContainer::getImplementationName()
2000-09-18 23:31:44 +00:00
{
return OUString( "SvUnoAttributeContainer" );
2000-09-18 23:31:44 +00:00
}
uno::Sequence< OUString > SvUnoAttributeContainer::getSupportedServiceNames()
2000-09-18 23:31:44 +00:00
{
OUString aSN( "com.sun.star.xml.AttributeContainer" );
2000-09-18 23:31:44 +00:00
uno::Sequence< OUString > aNS( &aSN, 1L );
return aNS;
}
sal_Bool SvUnoAttributeContainer::supportsService(const OUString& ServiceName)
{
return cppu::supportsService(this, ServiceName);
2000-09-18 23:31:44 +00:00
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */