/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * 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 * * for a copy of the LGPLv3 License. * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_xmloff.hxx" #include #include #include #include #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; iInsert( 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]; }