Files
libreoffice/xmloff/source/core/xmlcnitm.cxx
Rüdiger Timm 7a820609c2 INTEGRATION: CWS changefileheader (1.10.162); FILE MERGED
2008/04/01 16:09:36 thb 1.10.162.3: #i85898# Stripping all external header guards
2008/04/01 13:04:37 thb 1.10.162.2: #i85898# Stripping all external header guards
2008/03/31 16:28:04 rt 1.10.162.1: #i87441# Change license header to LPGL v3.
2008-04-10 20:38:26 +00:00

222 lines
6.5 KiB
C++

/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2008 by Sun Microsystems, Inc.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: xmlcnitm.cxx,v $
* $Revision: 1.11 $
*
* This file is part of OpenOffice.org.
*
* 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.
*
* 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).
*
* 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.
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_xmloff.hxx"
#include <tools/debug.hxx>
#include <com/sun/star/xml/AttributeData.hpp>
#include <com/sun/star/lang/XUnoTunnel.hpp>
#include <xmloff/xmlcnimp.hxx>
#include "unoatrcn.hxx"
using namespace rtl;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::xml;
typedef ::rtl::OUString *OUStringPtr;
SV_DECL_PTRARR_DEL( SvXMLAttrContainerData_Impl, OUStringPtr, 5, 5 )
SV_IMPL_PTRARR( SvXMLAttrContainerData_Impl, OUStringPtr )
SvXMLAttrContainerData::SvXMLAttrContainerData(
const SvXMLAttrContainerData& rImpl ) :
aNamespaceMap( rImpl.aNamespaceMap ),
pLNames( new SvXMLAttrContainerData_Impl ),
pValues( new SvXMLAttrContainerData_Impl )
{
USHORT nCount = rImpl.pLNames->Count();
for( USHORT i=0; i<nCount; i++ )
{
aPrefixPoss.Insert( rImpl.aPrefixPoss[i], i );
pLNames->Insert( new OUString( *(*rImpl.pLNames)[i] ), i );
pValues->Insert( new OUString( *(*rImpl.pValues)[i] ), i );
}
}
SvXMLAttrContainerData::SvXMLAttrContainerData() :
pLNames( new SvXMLAttrContainerData_Impl ),
pValues( new SvXMLAttrContainerData_Impl )
{
}
SvXMLAttrContainerData::~SvXMLAttrContainerData()
{
delete pLNames;
delete pValues;
}
int SvXMLAttrContainerData::operator ==(
const SvXMLAttrContainerData& rCmp ) const
{
BOOL bRet = pLNames->Count() == rCmp.pLNames->Count() &&
aNamespaceMap == rCmp.aNamespaceMap;
if( bRet )
{
USHORT nCount = pLNames->Count();
USHORT i;
for( i=0; bRet && i < nCount; i++ )
bRet = aPrefixPoss[i] == rCmp.aPrefixPoss[i];
if( bRet )
{
for( i=0; bRet && i < nCount; i++ )
bRet = *(*pLNames)[i] == *(*rCmp.pLNames)[i] &&
*(*pValues)[i] == *(*rCmp.pValues)[i];
}
}
return (int)bRet;
}
BOOL SvXMLAttrContainerData::AddAttr( const OUString& rLName,
const OUString& rValue )
{
aPrefixPoss.Insert( USHRT_MAX, aPrefixPoss.Count() );
pLNames->Insert( new OUString(rLName), pLNames->Count() );
pValues->Insert( new OUString(rValue), pValues->Count() );
return TRUE;
}
BOOL SvXMLAttrContainerData::AddAttr( const OUString& rPrefix,
const OUString& rNamespace,
const OUString& rLName,
const OUString& rValue )
{
USHORT nPos = aNamespaceMap.Add( rPrefix, rNamespace );
aPrefixPoss.Insert( nPos, aPrefixPoss.Count() );
pLNames->Insert( new OUString(rLName), pLNames->Count() );
pValues->Insert( new OUString(rValue), pValues->Count() );
return TRUE;
}
BOOL SvXMLAttrContainerData::AddAttr( const OUString& rPrefix,
const OUString& rLName,
const OUString& rValue )
{
USHORT nPos = aNamespaceMap.GetIndexByPrefix( rPrefix );
if( USHRT_MAX == nPos )
return FALSE;
aPrefixPoss.Insert( nPos, aPrefixPoss.Count() );
pLNames->Insert( new OUString(rLName), pLNames->Count() );
pValues->Insert( new OUString(rValue), pValues->Count() );
return TRUE;
}
BOOL SvXMLAttrContainerData::SetAt( USHORT i,
const rtl::OUString& rLName, const rtl::OUString& rValue )
{
if( i >= GetAttrCount() )
return FALSE;
*(*pLNames)[i] = rLName;
*(*pValues)[i] = rValue;
aPrefixPoss[i] = USHRT_MAX;
return TRUE;
}
BOOL SvXMLAttrContainerData::SetAt( USHORT i,
const rtl::OUString& rPrefix, const rtl::OUString& rNamespace,
const rtl::OUString& rLName, const rtl::OUString& rValue )
{
if( i >= GetAttrCount() )
return FALSE;
USHORT nPos = aNamespaceMap.Add( rPrefix, rNamespace );
if( USHRT_MAX == nPos )
return FALSE;
*(*pLNames)[i] = rLName;
*(*pValues)[i] = rValue;
aPrefixPoss[i] = nPos;
return TRUE;
}
BOOL SvXMLAttrContainerData::SetAt( USHORT i,
const rtl::OUString& rPrefix,
const rtl::OUString& rLName,
const rtl::OUString& rValue )
{
if( i >= GetAttrCount() )
return FALSE;
USHORT nPos = aNamespaceMap.GetIndexByPrefix( rPrefix );
if( USHRT_MAX == nPos )
return FALSE;
*(*pLNames)[i] = rLName;
*(*pValues)[i] = rValue;
aPrefixPoss[i] = nPos;
return TRUE;
}
void SvXMLAttrContainerData::Remove( USHORT i )
{
if( i < GetAttrCount() )
{
delete (*pLNames)[i];
pLNames->Remove( i );
delete (*pValues)[i];
pValues->Remove( i );
aPrefixPoss.Remove( i );
}
else
{
DBG_ERROR( "illegal index" );
}
}
sal_uInt16 SvXMLAttrContainerData::GetAttrCount() const
{
return pLNames->Count();
}
const ::rtl::OUString& SvXMLAttrContainerData::GetAttrLName(sal_uInt16 i) const
{
OSL_ENSURE( i < pLNames->Count(), "SvXMLAttrContainerData::GetLName: illegal index" );
return *(*pLNames)[i];
}
const ::rtl::OUString& SvXMLAttrContainerData::GetAttrValue(sal_uInt16 i) const
{
OSL_ENSURE( i < pValues->Count(), "SvXMLAttrContainerData::GetValue: illegal index" );
return *(*pValues)[i];
}