2000-09-18 23:31:44 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-09 12:34:22 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 23:31:44 +00:00
|
|
|
*
|
2005-09-09 12:34:22 +00:00
|
|
|
* $RCSfile: attrlist.cxx,v $
|
2000-09-18 23:31:44 +00:00
|
|
|
*
|
2005-09-09 12:34:22 +00:00
|
|
|
* $Revision: 1.9 $
|
2000-09-18 23:31:44 +00:00
|
|
|
*
|
2005-09-09 12:34:22 +00:00
|
|
|
* last change: $Author: rt $ $Date: 2005-09-09 13:34:22 $
|
2000-09-18 23:31:44 +00:00
|
|
|
*
|
2005-09-09 12:34:22 +00:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2000-09-18 23:31:44 +00:00
|
|
|
*
|
|
|
|
*
|
2005-09-09 12:34:22 +00:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2000-09-18 23:31:44 +00:00
|
|
|
*
|
2005-09-09 12:34:22 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
2000-09-18 23:31:44 +00:00
|
|
|
*
|
2005-09-09 12:34:22 +00:00
|
|
|
* This library 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 for more details.
|
2000-09-18 23:31:44 +00:00
|
|
|
*
|
2005-09-09 12:34:22 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
2000-09-18 23:31:44 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2000-11-22 17:04:58 +00:00
|
|
|
#include <vector>
|
2001-02-06 09:41:54 +00:00
|
|
|
|
2000-09-18 23:31:44 +00:00
|
|
|
#ifndef _OSL_MUTEX_HXX_
|
|
|
|
#include <osl/mutex.hxx>
|
|
|
|
#endif
|
2003-03-27 17:21:03 +00:00
|
|
|
#ifndef _XMLOFF_XMLTOKEN_HXX
|
|
|
|
#include "xmltoken.hxx"
|
|
|
|
#endif
|
2000-09-18 23:31:44 +00:00
|
|
|
#include <rtl/uuid.h>
|
|
|
|
#include <rtl/memory.h>
|
|
|
|
|
2003-04-15 15:32:44 +00:00
|
|
|
#if OSL_DEBUG_LEVEL == 0
|
2004-02-04 13:15:30 +00:00
|
|
|
# ifndef NDEBUG
|
|
|
|
# define NDEBUG
|
|
|
|
# endif
|
2003-04-15 15:32:44 +00:00
|
|
|
#endif
|
2000-09-18 23:31:44 +00:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "attrlist.hxx"
|
|
|
|
|
|
|
|
using namespace ::rtl;
|
|
|
|
using namespace ::osl;
|
|
|
|
using namespace ::com::sun::star;
|
2003-03-27 17:21:03 +00:00
|
|
|
using namespace ::xmloff::token;
|
2000-09-18 23:31:44 +00:00
|
|
|
|
|
|
|
struct SvXMLTagAttribute_Impl
|
|
|
|
{
|
|
|
|
SvXMLTagAttribute_Impl(){}
|
2003-03-27 17:21:03 +00:00
|
|
|
SvXMLTagAttribute_Impl( const OUString &rName,
|
2001-06-26 06:26:50 +00:00
|
|
|
const OUString &rValue )
|
|
|
|
: sName(rName),
|
|
|
|
sValue(rValue)
|
2000-09-18 23:31:44 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2004-07-13 07:05:56 +00:00
|
|
|
SvXMLTagAttribute_Impl( const SvXMLTagAttribute_Impl& r ) :
|
|
|
|
sName(r.sName),
|
|
|
|
sValue(r.sValue)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2000-09-18 23:31:44 +00:00
|
|
|
OUString sName;
|
|
|
|
OUString sValue;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SvXMLAttributeList_Impl
|
|
|
|
{
|
|
|
|
SvXMLAttributeList_Impl()
|
|
|
|
{
|
|
|
|
// performance improvement during adding
|
|
|
|
vecAttribute.reserve(20);
|
|
|
|
}
|
2004-07-13 07:05:56 +00:00
|
|
|
|
|
|
|
SvXMLAttributeList_Impl( const SvXMLAttributeList_Impl& r ) :
|
|
|
|
vecAttribute( r.vecAttribute )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2000-09-18 23:31:44 +00:00
|
|
|
::std::vector<struct SvXMLTagAttribute_Impl> vecAttribute;
|
2004-07-13 07:05:56 +00:00
|
|
|
typedef ::std::vector<struct SvXMLTagAttribute_Impl>::size_type size_type;
|
2000-09-18 23:31:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sal_Int16 SAL_CALL SvXMLAttributeList::getLength(void) throw( ::com::sun::star::uno::RuntimeException )
|
|
|
|
{
|
|
|
|
return m_pImpl->vecAttribute.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-13 07:05:56 +00:00
|
|
|
SvXMLAttributeList::SvXMLAttributeList( const SvXMLAttributeList &r ) :
|
|
|
|
m_pImpl( new SvXMLAttributeList_Impl( *r.m_pImpl ) )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SvXMLAttributeList::SvXMLAttributeList( const uno::Reference<
|
|
|
|
xml::sax::XAttributeList> & rAttrList )
|
|
|
|
: sType( GetXMLToken(XML_CDATA) )
|
2000-09-18 23:31:44 +00:00
|
|
|
{
|
|
|
|
m_pImpl = new SvXMLAttributeList_Impl;
|
2004-07-13 07:05:56 +00:00
|
|
|
|
|
|
|
SvXMLAttributeList* pImpl =
|
|
|
|
SvXMLAttributeList::getImplementation( rAttrList );
|
|
|
|
|
|
|
|
if( pImpl )
|
|
|
|
*m_pImpl = *(pImpl->m_pImpl);
|
|
|
|
else
|
|
|
|
AppendAttributeList( rAttrList );
|
2000-09-18 23:31:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
OUString SAL_CALL SvXMLAttributeList::getNameByIndex(sal_Int16 i) throw( ::com::sun::star::uno::RuntimeException )
|
|
|
|
{
|
2004-07-13 07:05:56 +00:00
|
|
|
if( static_cast< SvXMLAttributeList_Impl::size_type >( i )
|
|
|
|
< m_pImpl->vecAttribute.size() ) {
|
2000-09-18 23:31:44 +00:00
|
|
|
return m_pImpl->vecAttribute[i].sName;
|
|
|
|
}
|
|
|
|
return OUString();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
OUString SAL_CALL SvXMLAttributeList::getTypeByIndex(sal_Int16 i) throw( ::com::sun::star::uno::RuntimeException )
|
|
|
|
{
|
2003-03-27 17:21:03 +00:00
|
|
|
return sType;
|
2000-09-18 23:31:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
OUString SAL_CALL SvXMLAttributeList::getValueByIndex(sal_Int16 i) throw( ::com::sun::star::uno::RuntimeException )
|
|
|
|
{
|
2004-07-13 07:05:56 +00:00
|
|
|
if( static_cast< SvXMLAttributeList_Impl::size_type >( i )
|
|
|
|
< m_pImpl->vecAttribute.size() ) {
|
2000-09-18 23:31:44 +00:00
|
|
|
return m_pImpl->vecAttribute[i].sValue;
|
|
|
|
}
|
|
|
|
return OUString();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
OUString SAL_CALL SvXMLAttributeList::getTypeByName( const OUString& sName ) throw( ::com::sun::star::uno::RuntimeException )
|
|
|
|
{
|
2003-03-27 17:21:03 +00:00
|
|
|
return sType;
|
2000-09-18 23:31:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
OUString SAL_CALL SvXMLAttributeList::getValueByName(const OUString& sName) throw( ::com::sun::star::uno::RuntimeException )
|
|
|
|
{
|
|
|
|
::std::vector<struct SvXMLTagAttribute_Impl>::iterator ii = m_pImpl->vecAttribute.begin();
|
|
|
|
|
2004-07-13 07:05:56 +00:00
|
|
|
for( ; ii != m_pImpl->vecAttribute.end() ; ++ii ) {
|
2000-09-18 23:31:44 +00:00
|
|
|
if( (*ii).sName == sName ) {
|
|
|
|
return (*ii).sValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return OUString();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uno::Reference< ::com::sun::star::util::XCloneable > SvXMLAttributeList::createClone() throw( ::com::sun::star::uno::RuntimeException )
|
|
|
|
{
|
|
|
|
uno::Reference< ::com::sun::star::util::XCloneable > r = new SvXMLAttributeList( *this );
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SvXMLAttributeList::SvXMLAttributeList()
|
2003-03-27 17:21:03 +00:00
|
|
|
: sType( GetXMLToken(XML_CDATA) )
|
2000-09-18 23:31:44 +00:00
|
|
|
{
|
|
|
|
m_pImpl = new SvXMLAttributeList_Impl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SvXMLAttributeList::~SvXMLAttributeList()
|
|
|
|
{
|
|
|
|
delete m_pImpl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SvXMLAttributeList::AddAttribute( const OUString &sName ,
|
|
|
|
const OUString &sValue )
|
|
|
|
{
|
2003-03-27 17:21:03 +00:00
|
|
|
m_pImpl->vecAttribute.push_back( SvXMLTagAttribute_Impl( sName , sValue ) );
|
2000-09-18 23:31:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SvXMLAttributeList::Clear()
|
|
|
|
{
|
|
|
|
m_pImpl->vecAttribute.clear();
|
|
|
|
|
|
|
|
assert( ! getLength() );
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvXMLAttributeList::RemoveAttribute( const OUString sName )
|
|
|
|
{
|
|
|
|
::std::vector<struct SvXMLTagAttribute_Impl>::iterator ii = m_pImpl->vecAttribute.begin();
|
|
|
|
|
2004-07-13 07:05:56 +00:00
|
|
|
for( ; ii != m_pImpl->vecAttribute.end() ; ++ii ) {
|
2000-09-18 23:31:44 +00:00
|
|
|
if( (*ii).sName == sName ) {
|
|
|
|
m_pImpl->vecAttribute.erase( ii );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SvXMLAttributeList::SetAttributeList( const uno::Reference< ::com::sun::star::xml::sax::XAttributeList > &r )
|
|
|
|
{
|
|
|
|
Clear();
|
|
|
|
AppendAttributeList( r );
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvXMLAttributeList::AppendAttributeList( const uno::Reference< ::com::sun::star::xml::sax::XAttributeList > &r )
|
|
|
|
{
|
|
|
|
assert( r.is() );
|
|
|
|
|
2004-07-13 07:05:56 +00:00
|
|
|
sal_Int16 nMax = r->getLength();
|
|
|
|
SvXMLAttributeList_Impl::size_type nTotalSize =
|
|
|
|
m_pImpl->vecAttribute.size() + nMax;
|
2000-09-18 23:31:44 +00:00
|
|
|
m_pImpl->vecAttribute.reserve( nTotalSize );
|
|
|
|
|
2004-07-13 07:05:56 +00:00
|
|
|
for( sal_Int16 i = 0 ; i < nMax ; ++i ) {
|
2000-09-18 23:31:44 +00:00
|
|
|
m_pImpl->vecAttribute.push_back( SvXMLTagAttribute_Impl(
|
|
|
|
r->getNameByIndex( i ) ,
|
|
|
|
r->getValueByIndex( i )));
|
|
|
|
}
|
|
|
|
|
|
|
|
assert( nTotalSize == getLength());
|
|
|
|
}
|
|
|
|
|
2004-07-13 07:05:56 +00:00
|
|
|
void SvXMLAttributeList::SetValueByIndex( sal_Int16 i,
|
|
|
|
const ::rtl::OUString& rValue )
|
|
|
|
{
|
|
|
|
if( static_cast< SvXMLAttributeList_Impl::size_type >( i )
|
|
|
|
< m_pImpl->vecAttribute.size() )
|
|
|
|
{
|
|
|
|
m_pImpl->vecAttribute[i].sValue = rValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvXMLAttributeList::RemoveAttributeByIndex( sal_Int16 i )
|
|
|
|
{
|
|
|
|
::std::vector<struct SvXMLTagAttribute_Impl>::iterator ii =
|
|
|
|
m_pImpl->vecAttribute.begin();
|
|
|
|
|
|
|
|
for( ; i && ii != m_pImpl->vecAttribute.end() ; --i )
|
|
|
|
++ii;
|
|
|
|
|
|
|
|
if( ii != m_pImpl->vecAttribute.end() )
|
|
|
|
m_pImpl->vecAttribute.erase( ii );
|
|
|
|
}
|
|
|
|
|
|
|
|
void SvXMLAttributeList::RenameAttributeByIndex( sal_Int16 i,
|
|
|
|
const OUString& rNewName )
|
|
|
|
{
|
|
|
|
if( static_cast< SvXMLAttributeList_Impl::size_type >( i )
|
|
|
|
< m_pImpl->vecAttribute.size() )
|
|
|
|
{
|
|
|
|
m_pImpl->vecAttribute[i].sName = rNewName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sal_Int16 SvXMLAttributeList::GetIndexByName( const OUString& rName ) const
|
|
|
|
{
|
|
|
|
::std::vector<struct SvXMLTagAttribute_Impl>::iterator ii =
|
|
|
|
m_pImpl->vecAttribute.begin();
|
|
|
|
|
|
|
|
for( sal_Int16 nIndex=0; ii!=m_pImpl->vecAttribute.end(); ++ii, ++nIndex )
|
|
|
|
{
|
|
|
|
if( (*ii).sName == rName )
|
|
|
|
{
|
|
|
|
return nIndex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2000-09-18 23:31:44 +00:00
|
|
|
// XUnoTunnel & co
|
|
|
|
const uno::Sequence< sal_Int8 > & SvXMLAttributeList::getUnoTunnelId() throw()
|
|
|
|
{
|
|
|
|
static uno::Sequence< sal_Int8 > * pSeq = 0;
|
|
|
|
if( !pSeq )
|
|
|
|
{
|
|
|
|
Guard< Mutex > aGuard( Mutex::getGlobalMutex() );
|
|
|
|
if( !pSeq )
|
|
|
|
{
|
|
|
|
static uno::Sequence< sal_Int8 > aSeq( 16 );
|
|
|
|
rtl_createUuid( (sal_uInt8*)aSeq.getArray(), 0, sal_True );
|
|
|
|
pSeq = &aSeq;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return *pSeq;
|
|
|
|
}
|
|
|
|
|
|
|
|
SvXMLAttributeList* SvXMLAttributeList::getImplementation( uno::Reference< uno::XInterface > xInt ) throw()
|
|
|
|
{
|
|
|
|
uno::Reference< lang::XUnoTunnel > xUT( xInt, uno::UNO_QUERY );
|
|
|
|
if( xUT.is() )
|
|
|
|
return (SvXMLAttributeList*)xUT->getSomething( SvXMLAttributeList::getUnoTunnelId() );
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// XUnoTunnel
|
|
|
|
sal_Int64 SAL_CALL SvXMLAttributeList::getSomething( const uno::Sequence< sal_Int8 >& rId )
|
|
|
|
throw( uno::RuntimeException )
|
|
|
|
{
|
|
|
|
if( rId.getLength() == 16 && 0 == rtl_compareMemory( getUnoTunnelId().getConstArray(),
|
|
|
|
rId.getConstArray(), 16 ) )
|
|
|
|
{
|
|
|
|
return (sal_Int64)this;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|