2010-10-12 08:59:03 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2000-10-05 04:09:48 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 10:04:25 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-10-05 04:09:48 -05:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-10-05 04:09:48 -05:00
|
|
|
*
|
2008-04-10 10:04:25 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-10-05 04:09:48 -05:00
|
|
|
*
|
2008-04-10 10:04:25 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-10-05 04:09:48 -05:00
|
|
|
*
|
2008-04-10 10:04:25 -05: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-10-05 04:09:48 -05:00
|
|
|
*
|
2008-04-10 10:04:25 -05: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-10-05 04:09:48 -05:00
|
|
|
*
|
2008-04-10 10:04:25 -05: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-10-05 04:09:48 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 01:15:48 -05:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_dbaccess.hxx"
|
|
|
|
|
2000-10-05 04:09:48 -05:00
|
|
|
#include "charsets.hxx"
|
|
|
|
#include <tools/debug.hxx>
|
2002-08-19 02:01:32 -05:00
|
|
|
#include "dbu_misc.hrc"
|
2000-11-29 15:26:32 -06:00
|
|
|
#include <rtl/tencinfo.h>
|
2001-10-15 07:38:09 -05:00
|
|
|
#include <tools/rcid.h>
|
2003-03-19 10:57:12 -06:00
|
|
|
#include "localresaccess.hxx"
|
2000-10-05 04:09:48 -05:00
|
|
|
|
|
|
|
//.........................................................................
|
|
|
|
namespace dbaui
|
|
|
|
{
|
|
|
|
//.........................................................................
|
2000-11-29 15:26:32 -06:00
|
|
|
using namespace ::dbtools;
|
|
|
|
|
|
|
|
//=========================================================================
|
|
|
|
//= OCharsetDisplay
|
|
|
|
//=========================================================================
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
OCharsetDisplay::OCharsetDisplay()
|
|
|
|
:OCharsetMap()
|
2003-03-19 10:57:12 -06:00
|
|
|
,SvxTextEncodingTable()
|
2000-11-29 15:26:32 -06:00
|
|
|
{
|
2001-05-10 06:02:10 -05:00
|
|
|
{
|
2006-05-04 02:45:40 -05:00
|
|
|
LocalResourceAccess aCharsetStrings( RSC_CHARSETS, RSC_RESOURCE );
|
2007-04-26 02:02:21 -05:00
|
|
|
m_aSystemDisplayName = String( ModuleRes( 1 ) );
|
2001-05-10 06:02:10 -05:00
|
|
|
}
|
2003-03-19 10:57:12 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
sal_Bool OCharsetDisplay::approveEncoding( const rtl_TextEncoding _eEncoding, const rtl_TextEncodingInfo& _rInfo ) const
|
|
|
|
{
|
|
|
|
if ( !OCharsetMap::approveEncoding( _eEncoding, _rInfo ) )
|
|
|
|
return sal_False;
|
|
|
|
|
|
|
|
if ( RTL_TEXTENCODING_DONTKNOW == _eEncoding )
|
|
|
|
return sal_True;
|
2001-10-15 07:38:09 -05:00
|
|
|
|
2003-03-19 10:57:12 -06:00
|
|
|
return 0 != GetTextString( _eEncoding ).Len();
|
2000-11-29 15:26:32 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
OCharsetDisplay::const_iterator OCharsetDisplay::begin() const
|
2000-10-05 04:09:48 -05:00
|
|
|
{
|
2003-03-19 10:57:12 -06:00
|
|
|
return const_iterator( this, OCharsetMap::begin() );
|
2000-10-05 04:09:48 -05:00
|
|
|
}
|
|
|
|
|
2000-11-29 15:26:32 -06:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
OCharsetDisplay::const_iterator OCharsetDisplay::end() const
|
|
|
|
{
|
2003-03-19 10:57:12 -06:00
|
|
|
return const_iterator( this, OCharsetMap::end() );
|
2000-11-29 15:26:32 -06:00
|
|
|
}
|
2000-10-05 04:09:48 -05:00
|
|
|
|
2000-11-29 15:26:32 -06:00
|
|
|
//-------------------------------------------------------------------------
|
2006-06-19 21:22:45 -05:00
|
|
|
OCharsetDisplay::const_iterator OCharsetDisplay::findEncoding(const rtl_TextEncoding _eEncoding) const
|
2000-11-29 15:26:32 -06:00
|
|
|
{
|
|
|
|
OCharsetMap::const_iterator aBaseIter = OCharsetMap::find(_eEncoding);
|
2003-03-19 10:57:12 -06:00
|
|
|
return const_iterator( this, aBaseIter );
|
2000-11-29 15:26:32 -06:00
|
|
|
}
|
2000-10-05 04:09:48 -05:00
|
|
|
|
2000-11-29 15:26:32 -06:00
|
|
|
//-------------------------------------------------------------------------
|
2006-06-19 21:22:45 -05:00
|
|
|
OCharsetDisplay::const_iterator OCharsetDisplay::findIanaName(const ::rtl::OUString& _rIanaName) const
|
2000-11-29 15:26:32 -06:00
|
|
|
{
|
|
|
|
OCharsetMap::const_iterator aBaseIter = OCharsetMap::find(_rIanaName, OCharsetMap::IANA());
|
2003-03-19 10:57:12 -06:00
|
|
|
return const_iterator( this, aBaseIter );
|
2000-11-29 15:26:32 -06:00
|
|
|
}
|
2000-10-05 04:09:48 -05:00
|
|
|
|
2000-11-29 15:26:32 -06:00
|
|
|
//-------------------------------------------------------------------------
|
2006-06-19 21:22:45 -05:00
|
|
|
OCharsetDisplay::const_iterator OCharsetDisplay::findDisplayName(const ::rtl::OUString& _rDisplayName) const
|
2000-11-29 15:26:32 -06:00
|
|
|
{
|
2003-03-19 10:57:12 -06:00
|
|
|
rtl_TextEncoding eEncoding = RTL_TEXTENCODING_DONTKNOW;
|
|
|
|
if ( _rDisplayName != m_aSystemDisplayName )
|
|
|
|
{
|
|
|
|
eEncoding = GetTextEncoding( _rDisplayName );
|
|
|
|
OSL_ENSURE( RTL_TEXTENCODING_DONTKNOW != eEncoding,
|
|
|
|
"OCharsetDisplay::find: non-empty display name, but DONTKNOW!" );
|
|
|
|
}
|
|
|
|
return const_iterator( this, OCharsetMap::find( eEncoding ) );
|
2000-11-29 15:26:32 -06:00
|
|
|
}
|
2000-10-05 04:09:48 -05:00
|
|
|
|
2000-11-29 15:26:32 -06:00
|
|
|
//=========================================================================
|
|
|
|
//= CharsetDisplayDerefHelper
|
|
|
|
//=========================================================================
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
CharsetDisplayDerefHelper::CharsetDisplayDerefHelper(const CharsetDisplayDerefHelper& _rSource)
|
|
|
|
:CharsetDisplayDerefHelper_Base(_rSource)
|
|
|
|
,m_sDisplayName(m_sDisplayName)
|
|
|
|
{
|
|
|
|
}
|
2000-10-05 04:09:48 -05:00
|
|
|
|
2000-11-29 15:26:32 -06:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
CharsetDisplayDerefHelper::CharsetDisplayDerefHelper(const CharsetDisplayDerefHelper_Base& _rBase, const ::rtl::OUString& _rDisplayName)
|
|
|
|
:CharsetDisplayDerefHelper_Base(_rBase)
|
|
|
|
,m_sDisplayName(_rDisplayName)
|
|
|
|
{
|
2003-03-19 10:57:12 -06:00
|
|
|
DBG_ASSERT( m_sDisplayName.getLength(), "CharsetDisplayDerefHelper::CharsetDisplayDerefHelper: invalid display name!" );
|
2000-11-29 15:26:32 -06:00
|
|
|
}
|
2000-10-05 04:09:48 -05:00
|
|
|
|
2000-11-29 15:26:32 -06:00
|
|
|
//=========================================================================
|
|
|
|
//= OCharsetDisplay::ExtendedCharsetIterator
|
|
|
|
//=========================================================================
|
|
|
|
//-------------------------------------------------------------------------
|
2003-03-19 10:57:12 -06:00
|
|
|
OCharsetDisplay::ExtendedCharsetIterator::ExtendedCharsetIterator( const OCharsetDisplay* _pContainer, const base_iterator& _rPosition )
|
2000-11-29 15:26:32 -06:00
|
|
|
:m_pContainer(_pContainer)
|
|
|
|
,m_aPosition(_rPosition)
|
|
|
|
{
|
|
|
|
DBG_ASSERT(m_pContainer, "OCharsetDisplay::ExtendedCharsetIterator::ExtendedCharsetIterator : invalid container!");
|
|
|
|
}
|
2000-10-05 04:09:48 -05:00
|
|
|
|
2000-11-29 15:26:32 -06:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
OCharsetDisplay::ExtendedCharsetIterator::ExtendedCharsetIterator(const ExtendedCharsetIterator& _rSource)
|
2003-03-19 10:57:12 -06:00
|
|
|
:m_pContainer( _rSource.m_pContainer )
|
|
|
|
,m_aPosition( _rSource.m_aPosition )
|
2000-11-29 15:26:32 -06:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
CharsetDisplayDerefHelper OCharsetDisplay::ExtendedCharsetIterator::operator*() const
|
|
|
|
{
|
2003-03-19 10:57:12 -06:00
|
|
|
DBG_ASSERT( m_aPosition != m_pContainer->OCharsetDisplay_Base::end(), "OCharsetDisplay::ExtendedCharsetIterator::operator* : invalid position!");
|
|
|
|
|
|
|
|
rtl_TextEncoding eEncoding = (*m_aPosition).getEncoding();
|
|
|
|
return CharsetDisplayDerefHelper(
|
|
|
|
*m_aPosition,
|
|
|
|
RTL_TEXTENCODING_DONTKNOW == eEncoding ? m_pContainer->m_aSystemDisplayName : (::rtl::OUString)m_pContainer->GetTextString( eEncoding )
|
|
|
|
);
|
2000-11-29 15:26:32 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
const OCharsetDisplay::ExtendedCharsetIterator& OCharsetDisplay::ExtendedCharsetIterator::operator++()
|
|
|
|
{
|
2003-03-19 10:57:12 -06:00
|
|
|
DBG_ASSERT( m_aPosition != m_pContainer->OCharsetDisplay_Base::end(), "OCharsetDisplay::ExtendedCharsetIterator::operator++ : invalid position!");
|
|
|
|
if ( m_aPosition != m_pContainer->OCharsetDisplay_Base::end() )
|
2000-11-29 15:26:32 -06:00
|
|
|
++m_aPosition;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
const OCharsetDisplay::ExtendedCharsetIterator& OCharsetDisplay::ExtendedCharsetIterator::operator--()
|
|
|
|
{
|
2003-03-19 10:57:12 -06:00
|
|
|
DBG_ASSERT( m_aPosition != m_pContainer->OCharsetDisplay_Base::begin(), "OCharsetDisplay::ExtendedCharsetIterator::operator-- : invalid position!");
|
|
|
|
if ( m_aPosition != m_pContainer->OCharsetDisplay_Base::begin() )
|
2000-11-29 15:26:32 -06:00
|
|
|
--m_aPosition;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
bool operator==(const OCharsetDisplay::ExtendedCharsetIterator& lhs, const OCharsetDisplay::ExtendedCharsetIterator& rhs)
|
|
|
|
{
|
2003-03-19 10:57:12 -06:00
|
|
|
return (lhs.m_pContainer == rhs.m_pContainer) && (lhs.m_aPosition == rhs.m_aPosition);
|
2000-11-29 15:26:32 -06:00
|
|
|
}
|
2000-10-05 04:09:48 -05:00
|
|
|
|
|
|
|
//.........................................................................
|
|
|
|
} // namespace dbaui
|
|
|
|
//.........................................................................
|
|
|
|
|
2010-10-12 08:59:03 -05:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|