2010-10-14 08:27:31 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2007-05-10 15:39:01 +00:00
|
|
|
#/*************************************************************************
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 13:00:43 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 13:00:43 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 13:00:43 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 13:00:43 +00:00
|
|
|
* 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.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 13:00:43 +00:00
|
|
|
* 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).
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 13:00:43 +00:00
|
|
|
* 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.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2007-05-10 15:39:01 +00:00
|
|
|
// no include "precompiled_tools.hxx" because this is included in other cxx files.
|
2006-09-17 00:02:56 +00:00
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
// =======================================================================
|
|
|
|
|
|
|
|
#ifdef DBG_UTIL
|
|
|
|
|
2006-06-19 12:52:38 +00:00
|
|
|
static BOOL ImplDbgCheckAsciiStr( const sal_Char* pAsciiStr, sal_Int32 nLen )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
while ( nLen && *pAsciiStr )
|
|
|
|
{
|
|
|
|
if ( ((unsigned char)*pAsciiStr) > 127 )
|
|
|
|
return FALSE;
|
2003-03-27 16:05:12 +00:00
|
|
|
++pAsciiStr,
|
|
|
|
--nLen;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// =======================================================================
|
|
|
|
|
|
|
|
static void ImplCopyAsciiStr( sal_Unicode* pDest, const sal_Char* pSrc,
|
2006-06-19 12:52:38 +00:00
|
|
|
sal_Int32 nLen )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
DBG_ASSERT( ImplDbgCheckAsciiStr( pSrc, nLen ),
|
|
|
|
"UniString::CopyAsciiStr() - pAsciiStr include characters > 127" );
|
|
|
|
|
|
|
|
while ( nLen )
|
|
|
|
{
|
|
|
|
*pDest = (unsigned char)*pSrc;
|
2003-03-27 16:05:12 +00:00
|
|
|
++pDest,
|
|
|
|
++pSrc,
|
|
|
|
--nLen;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// =======================================================================
|
|
|
|
|
|
|
|
static sal_Int32 ImplStringCompareAscii( const sal_Unicode* pStr1, const sal_Char* pStr2 )
|
|
|
|
{
|
|
|
|
sal_Int32 nRet;
|
|
|
|
while ( ((nRet = ((sal_Int32)*pStr1)-((sal_Int32)((unsigned char)*pStr2))) == 0) &&
|
|
|
|
*pStr2 )
|
|
|
|
{
|
2003-03-27 16:05:12 +00:00
|
|
|
++pStr1,
|
|
|
|
++pStr2;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
static sal_Int32 ImplStringCompareAscii( const sal_Unicode* pStr1, const sal_Char* pStr2,
|
|
|
|
xub_StrLen nCount )
|
|
|
|
{
|
|
|
|
sal_Int32 nRet = 0;
|
|
|
|
while ( nCount &&
|
|
|
|
((nRet = ((sal_Int32)*pStr1)-((sal_Int32)((unsigned char)*pStr2))) == 0) &&
|
|
|
|
*pStr2 )
|
|
|
|
{
|
2003-03-27 16:05:12 +00:00
|
|
|
++pStr1,
|
|
|
|
++pStr2,
|
|
|
|
--nCount;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
static sal_Int32 ImplStringCompareWithoutZeroAscii( const sal_Unicode* pStr1, const sal_Char* pStr2,
|
|
|
|
xub_StrLen nCount )
|
|
|
|
{
|
|
|
|
sal_Int32 nRet = 0;
|
|
|
|
while ( nCount &&
|
|
|
|
((nRet = ((sal_Int32)*pStr1)-((sal_Int32)((unsigned char)*pStr2))) == 0) )
|
|
|
|
{
|
2003-03-27 16:05:12 +00:00
|
|
|
++pStr1,
|
|
|
|
++pStr2,
|
|
|
|
--nCount;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
static sal_Int32 ImplStringICompareAscii( const sal_Unicode* pStr1, const sal_Char* pStr2 )
|
|
|
|
{
|
|
|
|
sal_Int32 nRet;
|
|
|
|
sal_Unicode c1;
|
|
|
|
sal_Char c2;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
// Ist das Zeichen zwischen 'A' und 'Z' dann umwandeln
|
|
|
|
c1 = *pStr1;
|
|
|
|
c2 = *pStr2;
|
|
|
|
if ( (c1 >= 65) && (c1 <= 90) )
|
|
|
|
c1 += 32;
|
|
|
|
if ( (c2 >= 65) && (c2 <= 90) )
|
|
|
|
c2 += 32;
|
|
|
|
nRet = ((sal_Int32)c1)-((sal_Int32)((unsigned char)c2));
|
|
|
|
if ( nRet != 0 )
|
|
|
|
break;
|
|
|
|
|
2003-03-27 16:05:12 +00:00
|
|
|
++pStr1,
|
|
|
|
++pStr2;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
while ( c2 );
|
|
|
|
|
|
|
|
return nRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
static sal_Int32 ImplStringICompareAscii( const sal_Unicode* pStr1, const sal_Char* pStr2,
|
|
|
|
xub_StrLen nCount )
|
|
|
|
{
|
|
|
|
sal_Int32 nRet = 0;
|
|
|
|
sal_Unicode c1;
|
|
|
|
sal_Char c2;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if ( !nCount )
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Ist das Zeichen zwischen 'A' und 'Z' dann umwandeln
|
|
|
|
c1 = *pStr1;
|
|
|
|
c2 = *pStr2;
|
|
|
|
if ( (c1 >= 65) && (c1 <= 90) )
|
|
|
|
c1 += 32;
|
|
|
|
if ( (c2 >= 65) && (c2 <= 90) )
|
|
|
|
c2 += 32;
|
|
|
|
nRet = ((sal_Int32)c1)-((sal_Int32)((unsigned char)c2));
|
|
|
|
if ( nRet != 0 )
|
|
|
|
break;
|
|
|
|
|
2003-03-27 16:05:12 +00:00
|
|
|
++pStr1,
|
|
|
|
++pStr2,
|
|
|
|
--nCount;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
while ( c2 );
|
|
|
|
|
|
|
|
return nRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
// =======================================================================
|
|
|
|
|
|
|
|
UniString UniString::CreateFromAscii( const sal_Char* pAsciiStr )
|
|
|
|
{
|
|
|
|
DBG_ASSERT( pAsciiStr, "UniString::CreateFromAscii() - pAsciiStr is NULL" );
|
|
|
|
|
|
|
|
// Stringlaenge ermitteln
|
|
|
|
xub_StrLen nLen = ImplStringLen( pAsciiStr );
|
|
|
|
|
|
|
|
UniString aTempStr;
|
|
|
|
if ( nLen )
|
|
|
|
{
|
|
|
|
ImplCopyAsciiStr( aTempStr.AllocBuffer( nLen ), pAsciiStr, nLen );
|
|
|
|
}
|
|
|
|
return aTempStr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
UniString UniString::CreateFromAscii( const sal_Char* pAsciiStr, xub_StrLen nLen )
|
|
|
|
{
|
|
|
|
DBG_ASSERT( pAsciiStr, "UniString::CreateFromAscii() - pAsciiStr is NULL" );
|
|
|
|
|
|
|
|
// Stringlaenge ermitteln
|
|
|
|
if ( nLen == STRING_LEN )
|
|
|
|
nLen = ImplStringLen( pAsciiStr );
|
|
|
|
|
|
|
|
UniString aTempStr;
|
|
|
|
|
|
|
|
if ( nLen )
|
|
|
|
{
|
|
|
|
ImplCopyAsciiStr( aTempStr.AllocBuffer( nLen ), pAsciiStr, nLen );
|
|
|
|
}
|
|
|
|
return aTempStr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
UniString& UniString::AssignAscii( const sal_Char* pAsciiStr )
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS( UniString, DbgCheckUniString );
|
|
|
|
DBG_ASSERT( pAsciiStr, "UniString::AssignAscii() - pAsciiStr is NULL" );
|
|
|
|
|
|
|
|
// Stringlaenge ermitteln
|
|
|
|
xub_StrLen nLen = ImplStringLen( pAsciiStr );
|
|
|
|
|
|
|
|
if ( !nLen )
|
|
|
|
{
|
2006-05-04 13:51:42 +00:00
|
|
|
STRING_NEW((STRING_TYPE **)&mpData);
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Wenn String genauso lang ist, wie der String, dann direkt kopieren
|
|
|
|
if ( (nLen == mpData->mnLen) && (mpData->mnRefCount == 1) )
|
|
|
|
ImplCopyAsciiStr( mpData->maStr, pAsciiStr, nLen );
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Alte Daten loeschen
|
2006-05-04 13:51:42 +00:00
|
|
|
STRING_RELEASE((STRING_TYPE *)mpData);
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// Daten initialisieren und String kopieren
|
|
|
|
mpData = ImplAllocData( nLen );
|
|
|
|
ImplCopyAsciiStr( mpData->maStr, pAsciiStr, nLen );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
UniString& UniString::AssignAscii( const sal_Char* pAsciiStr, xub_StrLen nLen )
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS( UniString, DbgCheckUniString );
|
|
|
|
DBG_ASSERT( pAsciiStr, "UniString::AssignAscii() - pAsciiStr is NULL" );
|
|
|
|
|
|
|
|
if ( nLen == STRING_LEN )
|
|
|
|
nLen = ImplStringLen( pAsciiStr );
|
|
|
|
|
|
|
|
#ifdef DBG_UTIL
|
|
|
|
if ( DbgIsAssert() )
|
|
|
|
{
|
2003-03-27 16:05:12 +00:00
|
|
|
for ( xub_StrLen i = 0; i < nLen; ++i )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
if ( !pAsciiStr[i] )
|
|
|
|
{
|
|
|
|
DBG_ERROR( "UniString::AssignAscii() : nLen is wrong" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if ( !nLen )
|
|
|
|
{
|
2006-05-04 13:51:42 +00:00
|
|
|
STRING_NEW((STRING_TYPE **)&mpData);
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Wenn String genauso lang ist, wie der String, dann direkt kopieren
|
|
|
|
if ( (nLen == mpData->mnLen) && (mpData->mnRefCount == 1) )
|
|
|
|
ImplCopyAsciiStr( mpData->maStr, pAsciiStr, nLen );
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Alte Daten loeschen
|
2006-05-04 13:51:42 +00:00
|
|
|
STRING_RELEASE((STRING_TYPE *)mpData);
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// Daten initialisieren und String kopieren
|
|
|
|
mpData = ImplAllocData( nLen );
|
|
|
|
ImplCopyAsciiStr( mpData->maStr, pAsciiStr, nLen );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
UniString& UniString::AppendAscii( const sal_Char* pAsciiStr )
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS( UniString, DbgCheckUniString );
|
|
|
|
DBG_ASSERT( pAsciiStr, "UniString::AppendAscii() - pAsciiStr is NULL" );
|
|
|
|
|
|
|
|
// Stringlaenge ermitteln
|
2006-06-19 12:52:38 +00:00
|
|
|
sal_Int32 nCopyLen = ImplStringLen( pAsciiStr );
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// Ueberlauf abfangen
|
|
|
|
nCopyLen = ImplGetCopyLen( mpData->mnLen, nCopyLen );
|
|
|
|
|
|
|
|
// Ist es kein leerer String
|
|
|
|
if ( nCopyLen )
|
|
|
|
{
|
|
|
|
// Neue Datenstruktur und neuen String erzeugen
|
|
|
|
UniStringData* pNewData = ImplAllocData( mpData->mnLen+nCopyLen );
|
|
|
|
|
|
|
|
// String kopieren
|
|
|
|
memcpy( pNewData->maStr, mpData->maStr, mpData->mnLen*sizeof( sal_Unicode ) );
|
|
|
|
ImplCopyAsciiStr( pNewData->maStr+mpData->mnLen, pAsciiStr, nCopyLen );
|
|
|
|
|
|
|
|
// Alte Daten loeschen und Neue zuweisen
|
2006-05-04 13:51:42 +00:00
|
|
|
STRING_RELEASE((STRING_TYPE *)mpData);
|
2000-09-18 16:07:07 +00:00
|
|
|
mpData = pNewData;
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
UniString& UniString::AppendAscii( const sal_Char* pAsciiStr, xub_StrLen nLen )
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS( UniString, DbgCheckUniString );
|
|
|
|
DBG_ASSERT( pAsciiStr, "UniString::AppendAscii() - pAsciiStr is NULL" );
|
|
|
|
|
|
|
|
if ( nLen == STRING_LEN )
|
|
|
|
nLen = ImplStringLen( pAsciiStr );
|
|
|
|
|
|
|
|
#ifdef DBG_UTIL
|
|
|
|
if ( DbgIsAssert() )
|
|
|
|
{
|
2003-03-27 16:05:12 +00:00
|
|
|
for ( xub_StrLen i = 0; i < nLen; ++i )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
if ( !pAsciiStr[i] )
|
|
|
|
{
|
|
|
|
DBG_ERROR( "UniString::AppendAscii() : nLen is wrong" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Ueberlauf abfangen
|
2006-06-19 12:52:38 +00:00
|
|
|
sal_Int32 nCopyLen = ImplGetCopyLen( mpData->mnLen, nLen );
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// Ist es kein leerer String
|
|
|
|
if ( nCopyLen )
|
|
|
|
{
|
|
|
|
// Neue Datenstruktur und neuen String erzeugen
|
|
|
|
UniStringData* pNewData = ImplAllocData( mpData->mnLen+nCopyLen );
|
|
|
|
|
|
|
|
// String kopieren
|
|
|
|
memcpy( pNewData->maStr, mpData->maStr, mpData->mnLen*sizeof( sal_Unicode ) );
|
|
|
|
ImplCopyAsciiStr( pNewData->maStr+mpData->mnLen, pAsciiStr, nCopyLen );
|
|
|
|
|
|
|
|
// Alte Daten loeschen und Neue zuweisen
|
2006-05-04 13:51:42 +00:00
|
|
|
STRING_RELEASE((STRING_TYPE *)mpData);
|
2000-09-18 16:07:07 +00:00
|
|
|
mpData = pNewData;
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
UniString& UniString::InsertAscii( const char* pAsciiStr, xub_StrLen nIndex )
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS( UniString, DbgCheckUniString );
|
|
|
|
DBG_ASSERT( pAsciiStr, "UniString::InsertAscii() - pAsciiStr is NULL" );
|
|
|
|
|
|
|
|
// Stringlaenge ermitteln
|
2006-06-19 12:52:38 +00:00
|
|
|
sal_Int32 nCopyLen = ImplStringLen( pAsciiStr );
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// Ueberlauf abfangen
|
|
|
|
nCopyLen = ImplGetCopyLen( mpData->mnLen, nCopyLen );
|
|
|
|
|
|
|
|
// Ist der einzufuegende String ein Leerstring
|
|
|
|
if ( !nCopyLen )
|
|
|
|
return *this;
|
|
|
|
|
|
|
|
// Index groesser als Laenge
|
|
|
|
if ( nIndex > mpData->mnLen )
|
2006-06-19 12:52:38 +00:00
|
|
|
nIndex = static_cast< xub_StrLen >(mpData->mnLen);
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// Neue Laenge ermitteln und neuen String anlegen
|
|
|
|
UniStringData* pNewData = ImplAllocData( mpData->mnLen+nCopyLen );
|
|
|
|
|
|
|
|
// String kopieren
|
|
|
|
memcpy( pNewData->maStr, mpData->maStr, nIndex*sizeof( sal_Unicode ) );
|
|
|
|
ImplCopyAsciiStr( pNewData->maStr+nIndex, pAsciiStr, nCopyLen );
|
|
|
|
memcpy( pNewData->maStr+nIndex+nCopyLen, mpData->maStr+nIndex,
|
|
|
|
(mpData->mnLen-nIndex)*sizeof( sal_Unicode ) );
|
|
|
|
|
|
|
|
// Alte Daten loeschen und Neue zuweisen
|
2006-05-04 13:51:42 +00:00
|
|
|
STRING_RELEASE((STRING_TYPE *)mpData);
|
2000-09-18 16:07:07 +00:00
|
|
|
mpData = pNewData;
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
UniString& UniString::ReplaceAscii( xub_StrLen nIndex, xub_StrLen nCount,
|
|
|
|
const sal_Char* pAsciiStr, xub_StrLen nStrLen )
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS( UniString, DbgCheckUniString );
|
|
|
|
DBG_ASSERT( pAsciiStr, "UniString::ReplaceAscii() - pAsciiStr is NULL" );
|
|
|
|
|
|
|
|
// Wenn Index groessergleich Laenge ist, dann ist es ein Append
|
|
|
|
if ( nIndex >= mpData->mnLen )
|
|
|
|
{
|
|
|
|
AppendAscii( pAsciiStr, nStrLen );
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ist es eine Zuweisung
|
|
|
|
if ( (nIndex == 0) && (nCount >= mpData->mnLen) )
|
|
|
|
{
|
|
|
|
AssignAscii( pAsciiStr, nStrLen );
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reicht ein Erase
|
|
|
|
if ( nStrLen == STRING_LEN )
|
|
|
|
nStrLen = ImplStringLen( pAsciiStr );
|
|
|
|
if ( !nStrLen )
|
|
|
|
return Erase( nIndex, nCount );
|
|
|
|
|
|
|
|
// nCount darf nicht ueber das Stringende hinnausgehen
|
2006-06-19 12:52:38 +00:00
|
|
|
if ( nCount > mpData->mnLen - nIndex )
|
|
|
|
nCount = static_cast< xub_StrLen >(mpData->mnLen-nIndex);
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// Reicht eine zeichenweise Zuweisung
|
|
|
|
if ( nCount == nStrLen )
|
|
|
|
{
|
2006-06-19 12:52:38 +00:00
|
|
|
ImplCopyData();
|
2000-09-18 16:07:07 +00:00
|
|
|
ImplCopyAsciiStr( mpData->maStr+nIndex, pAsciiStr, nStrLen );
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ueberlauf abfangen
|
2006-06-19 12:52:38 +00:00
|
|
|
sal_Int32 n = ImplGetCopyLen( mpData->mnLen-nCount, nStrLen );
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// Neue Daten anlegen
|
2006-06-19 12:52:38 +00:00
|
|
|
STRINGDATA* pNewData = ImplAllocData( mpData->mnLen-nCount+n );
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// String kopieren
|
|
|
|
memcpy( pNewData->maStr, mpData->maStr, nIndex*sizeof( STRCODE ) );
|
2006-06-19 12:52:38 +00:00
|
|
|
ImplCopyAsciiStr( pNewData->maStr+nIndex, pAsciiStr, n );
|
|
|
|
memcpy( pNewData->maStr+nIndex+n, mpData->maStr+nIndex+nCount,
|
2000-09-18 16:07:07 +00:00
|
|
|
(mpData->mnLen-nIndex-nCount+1)*sizeof( STRCODE ) );
|
|
|
|
|
|
|
|
// Alte Daten loeschen und Neue zuweisen
|
2006-05-04 13:51:42 +00:00
|
|
|
STRING_RELEASE((STRING_TYPE *)mpData);
|
2000-09-18 16:07:07 +00:00
|
|
|
mpData = pNewData;
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
StringCompare UniString::CompareToAscii( const sal_Char* pAsciiStr,
|
|
|
|
xub_StrLen nLen ) const
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS( UniString, DbgCheckUniString );
|
|
|
|
DBG_ASSERT( ImplDbgCheckAsciiStr( pAsciiStr, nLen ),
|
|
|
|
"UniString::CompareToAscii() - pAsciiStr include characters > 127" );
|
|
|
|
|
|
|
|
// String vergleichen
|
|
|
|
sal_Int32 nCompare = ImplStringCompareAscii( mpData->maStr, pAsciiStr, nLen );
|
|
|
|
|
|
|
|
// Rueckgabewert anpassen
|
|
|
|
if ( nCompare == 0 )
|
|
|
|
return COMPARE_EQUAL;
|
|
|
|
else if ( nCompare < 0 )
|
|
|
|
return COMPARE_LESS;
|
|
|
|
else
|
|
|
|
return COMPARE_GREATER;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
StringCompare UniString::CompareIgnoreCaseToAscii( const sal_Char* pAsciiStr,
|
|
|
|
xub_StrLen nLen ) const
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS( UniString, DbgCheckUniString );
|
|
|
|
DBG_ASSERT( ImplDbgCheckAsciiStr( pAsciiStr, nLen ),
|
|
|
|
"UniString::CompareIgnoreCaseToAscii() - pAsciiStr include characters > 127" );
|
|
|
|
|
|
|
|
// String vergleichen
|
|
|
|
sal_Int32 nCompare = ImplStringICompareAscii( mpData->maStr, pAsciiStr, nLen );
|
|
|
|
|
|
|
|
// Rueckgabewert anpassen
|
|
|
|
if ( nCompare == 0 )
|
|
|
|
return COMPARE_EQUAL;
|
|
|
|
else if ( nCompare < 0 )
|
|
|
|
return COMPARE_LESS;
|
|
|
|
else
|
|
|
|
return COMPARE_GREATER;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL UniString::EqualsAscii( const sal_Char* pAsciiStr ) const
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS( UniString, DbgCheckUniString );
|
|
|
|
DBG_ASSERT( ImplDbgCheckAsciiStr( pAsciiStr, STRING_LEN ),
|
|
|
|
"UniString::EqualsAscii() - pAsciiStr include characters > 127" );
|
|
|
|
|
|
|
|
return (ImplStringCompareAscii( mpData->maStr, pAsciiStr ) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL UniString::EqualsIgnoreCaseAscii( const sal_Char* pAsciiStr ) const
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS( UniString, DbgCheckUniString );
|
|
|
|
DBG_ASSERT( ImplDbgCheckAsciiStr( pAsciiStr, STRING_LEN ),
|
|
|
|
"UniString::EqualsIgnoreCaseAscii() - pAsciiStr include characters > 127" );
|
|
|
|
|
|
|
|
return (ImplStringICompareAscii( mpData->maStr, pAsciiStr ) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL UniString::EqualsAscii( const sal_Char* pAsciiStr,
|
|
|
|
xub_StrLen nIndex, xub_StrLen nLen ) const
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS( UniString, DbgCheckUniString );
|
|
|
|
DBG_ASSERT( ImplDbgCheckAsciiStr( pAsciiStr, nLen ),
|
|
|
|
"UniString::EqualsAscii() - pAsciiStr include characters > 127" );
|
|
|
|
|
|
|
|
// Are there enough codes for comparing?
|
|
|
|
if ( nIndex > mpData->mnLen )
|
|
|
|
return (*pAsciiStr == 0);
|
|
|
|
|
|
|
|
return (ImplStringCompareAscii( mpData->maStr+nIndex, pAsciiStr, nLen ) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL UniString::EqualsIgnoreCaseAscii( const sal_Char* pAsciiStr,
|
|
|
|
xub_StrLen nIndex, xub_StrLen nLen ) const
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS( UniString, DbgCheckUniString );
|
|
|
|
DBG_ASSERT( ImplDbgCheckAsciiStr( pAsciiStr, nLen ),
|
|
|
|
"UniString::EqualsIgnoreCaseAscii() - pAsciiStr include characters > 127" );
|
|
|
|
|
|
|
|
// Are there enough codes for comparing?
|
|
|
|
if ( nIndex > mpData->mnLen )
|
|
|
|
return (*pAsciiStr == 0);
|
|
|
|
|
|
|
|
return (ImplStringICompareAscii( mpData->maStr+nIndex, pAsciiStr, nLen ) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
xub_StrLen UniString::SearchAscii( const sal_Char* pAsciiStr, xub_StrLen nIndex ) const
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS( UniString, DbgCheckUniString );
|
|
|
|
DBG_ASSERT( ImplDbgCheckAsciiStr( pAsciiStr, STRING_LEN ),
|
|
|
|
"UniString::SearchAscii() - pAsciiStr include characters > 127" );
|
|
|
|
|
2006-06-19 12:52:38 +00:00
|
|
|
sal_Int32 nLen = mpData->mnLen;
|
2000-09-18 16:07:07 +00:00
|
|
|
xub_StrLen nStrLen = ImplStringLen( pAsciiStr );
|
|
|
|
|
|
|
|
// Falls die Laenge des uebergebenen Strings 0 ist oder der Index
|
|
|
|
// hinter dem String liegt, dann wurde der String nicht gefunden
|
|
|
|
if ( !nStrLen || (nIndex >= nLen) )
|
|
|
|
return STRING_NOTFOUND;
|
|
|
|
|
|
|
|
const sal_Unicode* pStr = mpData->maStr;
|
|
|
|
pStr += nIndex;
|
|
|
|
|
|
|
|
if ( nStrLen == 1 )
|
|
|
|
{
|
|
|
|
sal_Unicode cSearch = (unsigned char)*pAsciiStr;
|
|
|
|
while ( nIndex < nLen )
|
|
|
|
{
|
|
|
|
if ( *pStr == cSearch )
|
|
|
|
return nIndex;
|
2003-03-27 16:05:12 +00:00
|
|
|
++pStr,
|
|
|
|
++nIndex;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Nur innerhalb des Strings suchen
|
2006-06-19 12:52:38 +00:00
|
|
|
while ( nLen - nIndex >= nStrLen )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
// Stimmt der String ueberein
|
|
|
|
if ( ImplStringCompareWithoutZeroAscii( pStr, pAsciiStr, nStrLen ) == 0 )
|
|
|
|
return nIndex;
|
2003-03-27 16:05:12 +00:00
|
|
|
++pStr,
|
|
|
|
++nIndex;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return STRING_NOTFOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
xub_StrLen UniString::SearchAndReplaceAscii( const sal_Char* pAsciiStr, const UniString& rRepStr,
|
|
|
|
xub_StrLen nIndex )
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS( UniString, DbgCheckUniString );
|
|
|
|
DBG_ASSERT( ImplDbgCheckAsciiStr( pAsciiStr, STRING_LEN ),
|
|
|
|
"UniString::SearchAndReplaceAscii() - pAsciiStr include characters > 127" );
|
|
|
|
|
|
|
|
xub_StrLen nSPos = SearchAscii( pAsciiStr, nIndex );
|
|
|
|
if ( nSPos != STRING_NOTFOUND )
|
|
|
|
Replace( nSPos, ImplStringLen( pAsciiStr ), rRepStr );
|
|
|
|
|
|
|
|
return nSPos;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void UniString::SearchAndReplaceAllAscii( const sal_Char* pAsciiStr, const UniString& rRepStr )
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS( UniString, DbgCheckUniString );
|
|
|
|
DBG_ASSERT( ImplDbgCheckAsciiStr( pAsciiStr, STRING_LEN ),
|
|
|
|
"UniString::SearchAndReplaceAllAscii() - pAsciiStr include characters > 127" );
|
|
|
|
|
|
|
|
xub_StrLen nCharLen = ImplStringLen( pAsciiStr );
|
|
|
|
xub_StrLen nSPos = SearchAscii( pAsciiStr, 0 );
|
|
|
|
while ( nSPos != STRING_NOTFOUND )
|
|
|
|
{
|
|
|
|
Replace( nSPos, nCharLen, rRepStr );
|
2006-06-19 12:52:38 +00:00
|
|
|
nSPos = nSPos + rRepStr.Len();
|
2000-09-18 16:07:07 +00:00
|
|
|
nSPos = SearchAscii( pAsciiStr, nSPos );
|
|
|
|
}
|
|
|
|
}
|
2010-10-14 08:27:31 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|