2003-04-24 06:26:04 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-07 11:41:13 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2003-04-24 06:26:04 -05:00
|
|
|
*
|
2005-09-07 11:41:13 -05:00
|
|
|
* $RCSfile: oneToOneMapping.cxx,v $
|
2003-04-24 06:26:04 -05:00
|
|
|
*
|
2008-01-28 08:32:27 -06:00
|
|
|
* $Revision: 1.5 $
|
2003-04-24 06:26:04 -05:00
|
|
|
*
|
2008-01-28 08:32:27 -06:00
|
|
|
* last change: $Author: vg $ $Date: 2008-01-28 15:32:00 $
|
2003-04-24 06:26:04 -05:00
|
|
|
*
|
2005-09-07 11:41:13 -05:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2003-04-24 06:26:04 -05:00
|
|
|
*
|
|
|
|
*
|
2005-09-07 11:41:13 -05:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2003-04-24 06:26:04 -05:00
|
|
|
*
|
2005-09-07 11:41:13 -05: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.
|
2003-04-24 06:26:04 -05:00
|
|
|
*
|
2005-09-07 11:41:13 -05: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.
|
2003-04-24 06:26:04 -05:00
|
|
|
*
|
2005-09-07 11:41:13 -05: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
|
2003-04-24 06:26:04 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include <i18nutil/oneToOneMapping.hxx>
|
|
|
|
|
|
|
|
namespace com { namespace sun { namespace star { namespace i18n {
|
|
|
|
|
2008-01-28 08:32:27 -06:00
|
|
|
oneToOneMapping::oneToOneMapping( OneToOneMappingTable_t *rpTable, const size_t rnBytes, const size_t rnUnitSize )
|
|
|
|
: mpTable( rpTable ),
|
|
|
|
mnSize( rnBytes / rnUnitSize )
|
2003-04-24 06:26:04 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
oneToOneMapping::~oneToOneMapping()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-01-28 08:32:27 -06:00
|
|
|
sal_Unicode oneToOneMapping::find(const sal_Unicode nKey) const
|
2003-04-24 06:26:04 -05:00
|
|
|
{
|
2008-01-28 08:32:27 -06:00
|
|
|
if( mpTable )
|
|
|
|
{
|
|
|
|
// binary search
|
2003-04-24 06:26:04 -05:00
|
|
|
int bottom = 0;
|
2008-01-28 08:32:27 -06:00
|
|
|
int top = mnSize - 1;
|
2003-04-24 06:26:04 -05:00
|
|
|
int current;
|
|
|
|
|
|
|
|
for (;;) {
|
2008-01-28 08:32:27 -06:00
|
|
|
current = (top + bottom) / 2;
|
|
|
|
if( nKey < mpTable[current].first )
|
|
|
|
top = current - 1;
|
|
|
|
else if( nKey > mpTable[current].first )
|
|
|
|
bottom = current + 1;
|
|
|
|
else
|
|
|
|
return mpTable[current].second;
|
|
|
|
|
|
|
|
if( bottom > top )
|
|
|
|
return sal_Unicode( nKey );
|
2003-04-24 06:26:04 -05:00
|
|
|
}
|
|
|
|
}
|
2008-01-28 08:32:27 -06:00
|
|
|
else
|
|
|
|
return sal_Unicode( nKey );
|
2003-04-24 06:26:04 -05:00
|
|
|
}
|
|
|
|
|
2008-01-28 08:32:27 -06:00
|
|
|
oneToOneMappingWithFlag::oneToOneMappingWithFlag( UnicodePairWithFlag *rpTableWF, const size_t rnSize, const UnicodePairFlag rnFlag )
|
|
|
|
: oneToOneMapping( NULL, rnSize, sizeof(UnicodePairWithFlag) ),
|
|
|
|
mpTableWF ( rpTableWF ),
|
|
|
|
mnFlag ( rnFlag ),
|
|
|
|
mbHasIndex( sal_False )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
oneToOneMappingWithFlag::~oneToOneMappingWithFlag()
|
|
|
|
{
|
|
|
|
if( mbHasIndex )
|
|
|
|
for( int i = 0; i < 256; i++ )
|
|
|
|
if( mpIndex[i] )
|
|
|
|
delete [] mpIndex[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void oneToOneMappingWithFlag::makeIndex()
|
2003-04-24 06:26:04 -05:00
|
|
|
{
|
2008-01-28 08:32:27 -06:00
|
|
|
if( !mbHasIndex && mpTableWF )
|
|
|
|
{
|
2003-04-24 06:26:04 -05:00
|
|
|
int i, j, high, low, current = -1;
|
2008-01-28 08:32:27 -06:00
|
|
|
|
|
|
|
for( i = 0; i < 256; i++ )
|
|
|
|
mpIndex[i] = NULL;
|
|
|
|
|
|
|
|
for( size_t k = 0; k < mnSize; k++ )
|
|
|
|
{
|
|
|
|
high = (mpTableWF[k].first >> 8) & 0xFF;
|
|
|
|
low = (mpTableWF[k].first) & 0xFF;
|
|
|
|
if( high != current )
|
|
|
|
{
|
|
|
|
current = high;
|
|
|
|
mpIndex[high] = new UnicodePairWithFlag*[256];
|
|
|
|
|
|
|
|
for( j = 0; j < 256; j++ )
|
|
|
|
mpIndex[high][j] = NULL;
|
|
|
|
}
|
|
|
|
mpIndex[high][low] = &mpTableWF[k];
|
|
|
|
}
|
|
|
|
|
|
|
|
mbHasIndex = sal_True;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sal_Unicode oneToOneMappingWithFlag::find( const sal_Unicode nKey ) const
|
|
|
|
{
|
|
|
|
if( mpTableWF )
|
|
|
|
{
|
|
|
|
if( mbHasIndex )
|
|
|
|
{
|
|
|
|
// index search
|
|
|
|
int high, low;
|
|
|
|
high = (nKey >> 8) & 0xFF;
|
|
|
|
low = nKey & 0xFF;
|
|
|
|
if( mpIndex[high] != NULL &&
|
|
|
|
mpIndex[high][low] != NULL &&
|
|
|
|
mpIndex[high][low]->flag & mnFlag )
|
|
|
|
return mpIndex[high][low]->second;
|
|
|
|
else
|
|
|
|
return sal_Unicode( nKey );
|
2003-04-24 06:26:04 -05:00
|
|
|
}
|
2008-01-28 08:32:27 -06:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// binary search
|
|
|
|
int bottom = 0;
|
|
|
|
int top = mnSize - 1;
|
|
|
|
int current;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
current = (top + bottom) / 2;
|
|
|
|
if( nKey < mpTableWF[current].first )
|
|
|
|
top = current - 1;
|
|
|
|
else if( nKey > mpTableWF[current].first )
|
|
|
|
bottom = current + 1;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( mpTableWF[current].flag & mnFlag )
|
|
|
|
return mpTableWF[current].second;
|
|
|
|
else
|
|
|
|
return sal_Unicode( nKey );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( bottom > top )
|
|
|
|
return sal_Unicode( nKey );
|
|
|
|
}
|
2003-04-24 06:26:04 -05:00
|
|
|
}
|
|
|
|
}
|
2008-01-28 08:32:27 -06:00
|
|
|
else
|
|
|
|
return sal_Unicode( nKey );
|
2003-04-24 06:26:04 -05:00
|
|
|
}
|
|
|
|
|
2008-01-28 08:32:27 -06:00
|
|
|
|
2003-04-24 06:26:04 -05:00
|
|
|
} } } }
|