2000-11-17 05:37:46 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 06:23:59 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-11-17 05:37:46 -06:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-11-17 05:37:46 -06:00
|
|
|
*
|
2008-04-10 06:23:59 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-11-17 05:37:46 -06:00
|
|
|
*
|
2008-04-10 06:23:59 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-11-17 05:37:46 -06:00
|
|
|
*
|
2008-04-10 06:23:59 -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-11-17 05:37:46 -06:00
|
|
|
*
|
2008-04-10 06:23:59 -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-11-17 05:37:46 -06:00
|
|
|
*
|
2008-04-10 06:23:59 -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-11-17 05:37:46 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 21:53:57 -05:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_linguistic.hxx"
|
|
|
|
|
2000-11-17 05:37:46 -06:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "iprcache.hxx"
|
|
|
|
#include "misc.hxx"
|
|
|
|
|
|
|
|
#include <com/sun/star/linguistic2/DictionaryListEventFlags.hpp>
|
|
|
|
#include <tools/debug.hxx>
|
|
|
|
#include <osl/mutex.hxx>
|
|
|
|
|
|
|
|
//#define IPR_DEF_CACHE_SIZE 503
|
|
|
|
#define IPR_DEF_CACHE_MAX 375
|
|
|
|
#define IPR_DEF_CACHE_MAXINPUT 200
|
|
|
|
|
|
|
|
#ifdef DBG_STATISTIC
|
|
|
|
#include <tools/stream.hxx>
|
|
|
|
|
|
|
|
//#define IPR_CACHE_SIZE nTblSize
|
|
|
|
#define IPR_CACHE_MAX nMax
|
|
|
|
#define IPR_CACHE_MAXINPUT nMaxInput
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
//#define IPR_CACHE_SIZE IPR_DEF_CACHE_SIZE
|
|
|
|
#define IPR_CACHE_MAX IPR_DEF_CACHE_MAX
|
|
|
|
#define IPR_CACHE_MAXINPUT IPR_DEF_CACHE_MAXINPUT
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#include <unotools/processfactory.hxx>
|
|
|
|
|
2001-02-27 07:26:48 -06:00
|
|
|
#include <lngprops.hxx>
|
|
|
|
|
2000-11-17 05:37:46 -06:00
|
|
|
using namespace utl;
|
|
|
|
using namespace osl;
|
|
|
|
using namespace rtl;
|
|
|
|
using namespace com::sun::star;
|
2001-02-27 07:26:48 -06:00
|
|
|
using namespace com::sun::star::beans;
|
2000-11-17 05:37:46 -06:00
|
|
|
using namespace com::sun::star::lang;
|
|
|
|
using namespace com::sun::star::uno;
|
|
|
|
using namespace com::sun::star::linguistic2;
|
|
|
|
|
2001-02-27 07:26:48 -06:00
|
|
|
|
2000-11-17 05:37:46 -06:00
|
|
|
namespace linguistic
|
|
|
|
{
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2001-02-27 07:26:48 -06:00
|
|
|
#define NUM_FLUSH_PROPS 6
|
|
|
|
|
|
|
|
static const struct
|
|
|
|
{
|
|
|
|
const char *pPropName;
|
|
|
|
INT32 nPropHdl;
|
|
|
|
} aFlushProperties[ NUM_FLUSH_PROPS ] =
|
|
|
|
{
|
2007-05-25 06:23:20 -05:00
|
|
|
{ UPN_IS_USE_DICTIONARY_LIST, UPH_IS_USE_DICTIONARY_LIST },
|
|
|
|
{ UPN_IS_IGNORE_CONTROL_CHARACTERS, UPH_IS_IGNORE_CONTROL_CHARACTERS },
|
|
|
|
{ UPN_IS_SPELL_UPPER_CASE, UPH_IS_SPELL_UPPER_CASE },
|
|
|
|
{ UPN_IS_SPELL_WITH_DIGITS, UPH_IS_SPELL_WITH_DIGITS },
|
|
|
|
{ UPN_IS_SPELL_CAPITALIZATION, UPH_IS_SPELL_CAPITALIZATION }
|
2001-02-27 07:26:48 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static void lcl_AddAsPropertyChangeListener(
|
|
|
|
Reference< XPropertyChangeListener > xListener,
|
|
|
|
Reference< XPropertySet > &rPropSet )
|
|
|
|
{
|
|
|
|
if (xListener.is() && rPropSet.is())
|
|
|
|
{
|
|
|
|
for (int i = 0; i < NUM_FLUSH_PROPS; ++i)
|
|
|
|
{
|
|
|
|
rPropSet->addPropertyChangeListener(
|
|
|
|
A2OU(aFlushProperties[i].pPropName), xListener );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void lcl_RemoveAsPropertyChangeListener(
|
|
|
|
Reference< XPropertyChangeListener > xListener,
|
|
|
|
Reference< XPropertySet > &rPropSet )
|
|
|
|
{
|
|
|
|
if (xListener.is() && rPropSet.is())
|
|
|
|
{
|
|
|
|
for (int i = 0; i < NUM_FLUSH_PROPS; ++i)
|
|
|
|
{
|
|
|
|
rPropSet->removePropertyChangeListener(
|
|
|
|
A2OU(aFlushProperties[i].pPropName), xListener );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static BOOL lcl_IsFlushProperty( INT32 nHandle )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < NUM_FLUSH_PROPS; ++i)
|
|
|
|
{
|
|
|
|
if (nHandle == aFlushProperties[i].nPropHdl)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return i < NUM_FLUSH_PROPS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-11-17 05:37:46 -06:00
|
|
|
FlushListener::FlushListener( Flushable *pFO )
|
|
|
|
{
|
|
|
|
SetFlushObj( pFO );
|
|
|
|
}
|
|
|
|
|
2001-02-27 07:26:48 -06:00
|
|
|
|
2000-11-17 05:37:46 -06:00
|
|
|
FlushListener::~FlushListener()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2001-02-27 07:26:48 -06:00
|
|
|
|
|
|
|
void FlushListener::SetDicList( Reference<XDictionaryList> &rDL )
|
2000-11-17 05:37:46 -06:00
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetLinguMutex() );
|
|
|
|
|
2001-02-27 07:26:48 -06:00
|
|
|
if (xDicList != rDL)
|
2000-11-17 05:37:46 -06:00
|
|
|
{
|
|
|
|
if (xDicList.is())
|
|
|
|
xDicList->removeDictionaryListEventListener( this );
|
|
|
|
|
2001-02-27 07:26:48 -06:00
|
|
|
xDicList = rDL;
|
2000-11-17 05:37:46 -06:00
|
|
|
if (xDicList.is())
|
|
|
|
xDicList->addDictionaryListEventListener( this, FALSE );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-02-27 07:26:48 -06:00
|
|
|
|
|
|
|
void FlushListener::SetPropSet( Reference< XPropertySet > &rPS )
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetLinguMutex() );
|
|
|
|
|
|
|
|
if (xPropSet != rPS)
|
|
|
|
{
|
|
|
|
if (xPropSet.is())
|
|
|
|
lcl_RemoveAsPropertyChangeListener( this, xPropSet );
|
|
|
|
|
|
|
|
xPropSet = rPS;
|
|
|
|
if (xPropSet.is())
|
|
|
|
lcl_AddAsPropertyChangeListener( this, xPropSet );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-11-17 05:37:46 -06:00
|
|
|
void SAL_CALL FlushListener::disposing( const EventObject& rSource )
|
|
|
|
throw(RuntimeException)
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetLinguMutex() );
|
|
|
|
|
|
|
|
if (xDicList.is() && rSource.Source == xDicList)
|
|
|
|
{
|
|
|
|
xDicList->removeDictionaryListEventListener( this );
|
|
|
|
xDicList = NULL; //! release reference
|
|
|
|
}
|
2001-02-27 07:26:48 -06:00
|
|
|
if (xPropSet.is() && rSource.Source == xPropSet)
|
|
|
|
{
|
|
|
|
lcl_RemoveAsPropertyChangeListener( this, xPropSet );
|
|
|
|
xPropSet = NULL; //! release reference
|
|
|
|
}
|
2000-11-17 05:37:46 -06:00
|
|
|
}
|
|
|
|
|
2001-02-27 07:26:48 -06:00
|
|
|
|
2000-11-17 05:37:46 -06:00
|
|
|
void SAL_CALL FlushListener::processDictionaryListEvent(
|
2001-02-27 07:26:48 -06:00
|
|
|
const DictionaryListEvent& rDicListEvent )
|
2000-11-17 05:37:46 -06:00
|
|
|
throw(RuntimeException)
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetLinguMutex() );
|
|
|
|
|
|
|
|
if (rDicListEvent.Source == xDicList)
|
|
|
|
{
|
|
|
|
INT16 nEvt = rDicListEvent.nCondensedEvent;
|
2001-02-27 07:26:48 -06:00
|
|
|
INT16 nFlushFlags =
|
|
|
|
DictionaryListEventFlags::ADD_NEG_ENTRY |
|
|
|
|
DictionaryListEventFlags::DEL_POS_ENTRY |
|
|
|
|
DictionaryListEventFlags::ACTIVATE_NEG_DIC |
|
|
|
|
DictionaryListEventFlags::DEACTIVATE_POS_DIC;
|
|
|
|
BOOL bFlush = 0 != (nEvt & nFlushFlags);
|
|
|
|
|
|
|
|
DBG_ASSERT( pFlushObj, "missing object (NULL pointer)" );
|
|
|
|
if (bFlush && pFlushObj != NULL)
|
|
|
|
pFlushObj->Flush();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SAL_CALL FlushListener::propertyChange(
|
|
|
|
const PropertyChangeEvent& rEvt )
|
|
|
|
throw(RuntimeException)
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetLinguMutex() );
|
2000-11-17 05:37:46 -06:00
|
|
|
|
2001-02-27 07:26:48 -06:00
|
|
|
if (rEvt.Source == xPropSet)
|
|
|
|
{
|
|
|
|
BOOL bFlush = lcl_IsFlushProperty( rEvt.PropertyHandle );
|
|
|
|
|
|
|
|
DBG_ASSERT( pFlushObj, "missing object (NULL pointer)" );
|
2000-11-17 05:37:46 -06:00
|
|
|
if (bFlush && pFlushObj != NULL)
|
|
|
|
pFlushObj->Flush();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-02-27 07:26:48 -06:00
|
|
|
|
2000-11-17 05:37:46 -06:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-12-15 06:01:46 -06:00
|
|
|
SpellCache::SpellCache()
|
2000-11-17 05:37:46 -06:00
|
|
|
{
|
|
|
|
pFlushLstnr = new FlushListener( this );
|
|
|
|
xFlushLstnr = pFlushLstnr;
|
2001-10-11 11:13:17 -05:00
|
|
|
Reference<XDictionaryList> aDictionaryList(GetDictionaryList());
|
|
|
|
pFlushLstnr->SetDicList( aDictionaryList ); //! after reference is established
|
|
|
|
Reference<XPropertySet> aPropertySet(GetLinguProperties());
|
|
|
|
pFlushLstnr->SetPropSet( aPropertySet ); //! after reference is established
|
2000-11-17 05:37:46 -06:00
|
|
|
}
|
|
|
|
|
2008-12-15 06:01:46 -06:00
|
|
|
SpellCache::~SpellCache()
|
2000-11-17 05:37:46 -06:00
|
|
|
{
|
2008-12-15 06:01:46 -06:00
|
|
|
Reference<XDictionaryList> aEmptyList;
|
|
|
|
Reference<XPropertySet> aEmptySet;
|
|
|
|
pFlushLstnr->SetDicList( aEmptyList );
|
|
|
|
pFlushLstnr->SetPropSet( aEmptySet );
|
2000-11-17 05:37:46 -06:00
|
|
|
}
|
|
|
|
|
2008-12-15 06:01:46 -06:00
|
|
|
void SpellCache::Flush()
|
2000-11-17 05:37:46 -06:00
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetLinguMutex() );
|
2008-12-15 06:01:46 -06:00
|
|
|
// clear word list
|
|
|
|
LangWordList_t aEmpty;
|
|
|
|
aWordLists.swap( aEmpty );
|
2000-11-17 05:37:46 -06:00
|
|
|
}
|
|
|
|
|
2008-12-15 06:01:46 -06:00
|
|
|
bool SpellCache::CheckWord( const OUString& rWord, LanguageType nLang )
|
2000-11-17 05:37:46 -06:00
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetLinguMutex() );
|
2008-12-15 06:01:46 -06:00
|
|
|
WordList_t &rList = aWordLists[ nLang ];
|
|
|
|
const WordList_t::const_iterator aIt = rList.find( rWord );
|
|
|
|
return aIt != rList.end();
|
2000-11-17 05:37:46 -06:00
|
|
|
}
|
|
|
|
|
2008-12-15 06:01:46 -06:00
|
|
|
void SpellCache::AddWord( const OUString& rWord, LanguageType nLang )
|
2000-11-17 05:37:46 -06:00
|
|
|
{
|
|
|
|
MutexGuard aGuard( GetLinguMutex() );
|
2008-12-15 06:01:46 -06:00
|
|
|
WordList_t & rList = aWordLists[ nLang ];
|
|
|
|
// occasional clean-up...
|
|
|
|
if (rList.size() > 500)
|
|
|
|
rList.clear();
|
|
|
|
rList.insert( rWord );
|
2000-11-17 05:37:46 -06:00
|
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
} // namespace linguistic
|
|
|
|
|