Files
libreoffice/sw/source/core/doc/acmplwrd.cxx

559 lines
17 KiB
C++
Raw Normal View History

2000-09-18 23:08:29 +00:00
/*************************************************************************
*
* $RCSfile: acmplwrd.cxx,v $
*
* $Revision: 1.4 $
2000-09-18 23:08:29 +00:00
*
* last change: $Author: os $ $Date: 2002-08-06 08:37:32 $
2000-09-18 23:08:29 +00:00
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* 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.
*
* 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.
*
* 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
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#ifdef PRECOMPILED
#include "core_pch.hxx"
#endif
#pragma hdrstop
#ifndef _HINTIDS_HXX
#include <hintids.hxx>
#endif
#ifndef _UNOTOOLS_TRANSLITERATIONWRAPPER_HXX
#include <unotools/transliterationwrapper.hxx>
2000-09-18 23:08:29 +00:00
#endif
#ifndef _ACMPLWRD_HXX
2000-09-18 23:08:29 +00:00
#include <acmplwrd.hxx>
#endif
#ifndef _DOC_HXX
2000-09-18 23:08:29 +00:00
#include <doc.hxx>
#endif
#ifndef _NDINDEX_HXX
2000-09-18 23:08:29 +00:00
#include <ndindex.hxx>
#endif
#ifndef _NODE_HXX
2000-09-18 23:08:29 +00:00
#include <node.hxx>
#endif
#ifndef _DOCARY_HXX
#include <docary.hxx>
#endif
#ifndef _NDTXT_HXX
2000-09-18 23:08:29 +00:00
#include <ndtxt.hxx>
#endif
#ifndef _PAM_HXX
2000-09-18 23:08:29 +00:00
#include <pam.hxx>
#endif
#ifndef _PAGEDESC_HXX
#include <pagedesc.hxx>
#endif
#ifndef _POOLFMT_HXX
#include <poolfmt.hxx>
#endif
#ifndef _CALBCK_HXX
#include <calbck.hxx>
#endif
#ifndef _HINTS_HXX
#include <hints.hxx>
#endif
#ifndef _OFF_APP_HXX //autogen
#include <offmgr/app.hxx>
#endif
#ifndef _OFAACCFG_HXX //autogen
#include <offmgr/ofaaccfg.hxx>
#endif
#ifndef _MySVXACORR_HXX
#include <svx/svxacorr.hxx>
#endif
#include <vector>
/* -----------------------------05.08.2002 12:43------------------------------
2000-09-18 23:08:29 +00:00
---------------------------------------------------------------------------*/
class SwAutoCompleteClient : public SwClient
{
SwAutoCompleteWord& rAutoCompleteWord;
SwDoc& rDoc;
#ifdef DBG_UTIL
static ULONG nSwAutoCompleteClientCount;
#endif
public:
SwAutoCompleteClient(SwAutoCompleteWord& rToTell, SwDoc& rSwDoc);
SwAutoCompleteClient(const SwAutoCompleteClient& rClient);
~SwAutoCompleteClient();
BOOL operator=(const SwAutoCompleteClient& rClient)
{return this == &rClient;}
virtual void Modify( SfxPoolItem *pOld, SfxPoolItem *pNew);
const SwDoc& GetDoc(){return rDoc;}
#ifdef DBG_UTIL
static ULONG GetElementCount() {return nSwAutoCompleteClientCount;}
#endif
};
/* -----------------------------05.08.2002 12:48------------------------------
---------------------------------------------------------------------------*/
typedef std::vector<SwAutoCompleteClient> SwAutoCompleteClientVector;
class SwAutoCompleteWord_Impl
{
SwAutoCompleteClientVector aClientVector;
SwAutoCompleteWord& rAutoCompleteWord;
public:
SwAutoCompleteWord_Impl(SwAutoCompleteWord& rParent) :
rAutoCompleteWord(rParent){}
void AddDocument(SwDoc& rDoc);
void RemoveDocument(const SwDoc& rDoc);
};
/* -----------------------------05.08.2002 14:11------------------------------
---------------------------------------------------------------------------*/
typedef const SwDoc* SwDocPtr;
typedef std::vector<SwDocPtr> SwDocPtrVector;
class SwAutoCompleteString : public String
{
#ifdef DBG_UTIL
static ULONG nSwAutoCompleteStringCount;
#endif
SwDocPtrVector aSourceDocs;
public:
SwAutoCompleteString(const String& rStr, xub_StrLen nPos, xub_StrLen nLen);
~SwAutoCompleteString();
void AddDocument(const SwDoc& rDoc);
//returns true if last document reference has been removed
sal_Bool RemoveDocument(const SwDoc& rDoc);
#ifdef DBG_UTIL
static ULONG GetElementCount() {return nSwAutoCompleteStringCount;}
#endif
};
#ifdef DBG_UTIL
ULONG SwAutoCompleteClient::nSwAutoCompleteClientCount = 0;
ULONG SwAutoCompleteString::nSwAutoCompleteStringCount = 0;
#endif
/* -----------------------------06.08.2002 08:57------------------------------
---------------------------------------------------------------------------*/
SwAutoCompleteClient::SwAutoCompleteClient(SwAutoCompleteWord& rToTell, SwDoc& rSwDoc) :
rAutoCompleteWord(rToTell),
rDoc(rSwDoc)
{
rDoc.GetPageDescFromPool(RES_POOLPAGE_STANDARD)->Add(this);
#ifdef DBG_UTIL
++nSwAutoCompleteClientCount;
#endif
}
/* -----------------------------05.08.2002 14:07------------------------------
---------------------------------------------------------------------------*/
SwAutoCompleteClient::SwAutoCompleteClient(const SwAutoCompleteClient& rClient) :
rAutoCompleteWord(rClient.rAutoCompleteWord),
rDoc(rClient.rDoc)
{
rDoc.GetPageDescFromPool(RES_POOLPAGE_STANDARD)->Add(this);
#ifdef DBG_UTIL
++nSwAutoCompleteClientCount;
#endif
}
/* -----------------------------05.08.2002 14:10------------------------------
---------------------------------------------------------------------------*/
SwAutoCompleteClient::~SwAutoCompleteClient()
{
#ifdef DBG_UTIL
--nSwAutoCompleteClientCount;
#endif
}
/* -----------------------------05.08.2002 12:49------------------------------
---------------------------------------------------------------------------*/
void SwAutoCompleteClient::Modify(SfxPoolItem *pOld, SfxPoolItem *pNew)
{
switch( pOld ? pOld->Which() : 0 )
{
case RES_REMOVE_UNO_OBJECT:
case RES_OBJECTDYING:
if( (void*)GetRegisteredIn() == ((SwPtrMsgPoolItem *)pOld)->pObject )
((SwModify*)GetRegisteredIn())->Remove(this);
rAutoCompleteWord.DocumentDying(rDoc);
break;
}
}
/* -----------------------------05.08.2002 13:03------------------------------
---------------------------------------------------------------------------*/
void SwAutoCompleteWord_Impl::AddDocument(SwDoc& rDoc)
{
SwAutoCompleteClientVector::iterator aIt;
for(aIt = aClientVector.begin(); aIt != aClientVector.end(); aIt++)
{
if(&aIt->GetDoc() == &rDoc)
return;
}
aClientVector.push_back(SwAutoCompleteClient(rAutoCompleteWord, rDoc));
}
/* -----------------------------05.08.2002 14:33------------------------------
2000-09-18 23:08:29 +00:00
---------------------------------------------------------------------------*/
void SwAutoCompleteWord_Impl::RemoveDocument(const SwDoc& rDoc)
{
SwAutoCompleteClientVector::iterator aIt;
for(aIt = aClientVector.begin(); aIt != aClientVector.end(); aIt++)
{
if(&aIt->GetDoc() == &rDoc)
{
aClientVector.erase(aIt);
return;
}
}
}
/* -----------------------------06.08.2002 08:54------------------------------
---------------------------------------------------------------------------*/
SwAutoCompleteString::SwAutoCompleteString(const String& rStr, xub_StrLen nPos, xub_StrLen nLen) :
String( rStr, nPos, nLen )
{
#ifdef DBG_UTIL
++nSwAutoCompleteStringCount;
#endif
}
/* -----------------------------05.08.2002 14:22------------------------------
---------------------------------------------------------------------------*/
SwAutoCompleteString::~SwAutoCompleteString()
{
#ifdef DBG_UTIL
--nSwAutoCompleteStringCount;
#endif
}
/* -----------------------------05.08.2002 14:17------------------------------
---------------------------------------------------------------------------*/
void SwAutoCompleteString::AddDocument(const SwDoc& rDoc)
{
SwDocPtrVector::iterator aIt;
for(aIt = aSourceDocs.begin(); aIt != aSourceDocs.end(); aIt++)
{
if(*aIt == &rDoc)
return;
}
SwDocPtr pNew = &rDoc;
aSourceDocs.push_back(pNew);
}
/* -----------------------------05.08.2002 14:36------------------------------
---------------------------------------------------------------------------*/
sal_Bool SwAutoCompleteString::RemoveDocument(const SwDoc& rDoc)
{
SwDocPtrVector::iterator aIt;
for(aIt = aSourceDocs.begin(); aIt != aSourceDocs.end(); aIt++)
{
if(*aIt == &rDoc)
{
aSourceDocs.erase(aIt);
return !aSourceDocs.size();
}
}
return sal_False;
}
/* ---------------------------------------------------------------------------
---------------------------------------------------------------------------*/
2000-09-18 23:08:29 +00:00
SwAutoCompleteWord::SwAutoCompleteWord( USHORT nWords, USHORT nMWrdLen )
: aWordLst( 0, 255 ), aLRULst( 0, 255 ),
pImpl(new SwAutoCompleteWord_Impl(*this)),
2000-09-18 23:08:29 +00:00
nMaxCount( nWords ),
nMinWrdLen( nMWrdLen ),
bLockWordLst( FALSE )
{
}
SwAutoCompleteWord::~SwAutoCompleteWord()
{
for(USHORT nPos = aWordLst.Count(); nPos; nPos--)
{
SwAutoCompleteString* pCurrent = (SwAutoCompleteString*)aWordLst[ nPos - 1 ];
aWordLst.Remove( nPos - 1 );
delete pCurrent;
}
delete pImpl;
#ifdef DBG_UTIL
ULONG nStrings = SwAutoCompleteString::GetElementCount();
ULONG nClients = SwAutoCompleteClient::GetElementCount();
DBG_ASSERT(!nStrings && !nClients, "AutoComplete: clients or string count mismatch")
#endif
2000-09-18 23:08:29 +00:00
}
BOOL SwAutoCompleteWord::InsertWord( const String& rWord, SwDoc& rDoc )
2000-09-18 23:08:29 +00:00
{
pImpl->AddDocument(rDoc);
2000-09-18 23:08:29 +00:00
BOOL bRet = FALSE;
xub_StrLen nWrdLen = rWord.Len();
2000-09-18 23:08:29 +00:00
while( nWrdLen && '.' == rWord.GetChar( nWrdLen-1 ))
--nWrdLen;
if( !bLockWordLst && nWrdLen > nMinWrdLen )
{
SwAutoCompleteString* pAutoString;
StringPtr pNew = pAutoString = new SwAutoCompleteString( rWord, 0, nWrdLen );
pAutoString->AddDocument(rDoc);
2000-09-18 23:08:29 +00:00
USHORT nInsPos;
if( aWordLst.Insert( pNew, nInsPos ) )
{
bRet = TRUE;
if( aLRULst.Count() < nMaxCount )
aLRULst.Insert( pNew, 0 );
else
{
// der letzte muss entfernt werden
// damit der neue vorne Platz hat
String* pDel = (String*)aLRULst[ nMaxCount - 1 ];
void** ppData = (void**)aLRULst.GetData();
memmove( ppData+1, ppData, (nMaxCount - 1) * sizeof( void* ));
*ppData = pNew;
aWordLst.Remove( pDel );
delete pDel;
}
}
else
{
delete (SwAutoCompleteString*)pNew;
2000-09-18 23:08:29 +00:00
// dann aber auf jedenfall nach "oben" moven
pNew = aWordLst[ nInsPos ];
//add the document to the already inserted string
SwAutoCompleteString* pCurrent = (SwAutoCompleteString*)pNew;
pCurrent->AddDocument(rDoc);
2000-09-18 23:08:29 +00:00
nInsPos = aLRULst.GetPos( (void*)pNew );
ASSERT( USHRT_MAX != nInsPos, "String nicht gefunden" );
if( nInsPos )
{
void** ppData = (void**)aLRULst.GetData();
memmove( ppData+1, ppData, nInsPos * sizeof( void* ) );
*ppData = pNew;
}
}
}
return bRet;
}
BOOL SwAutoCompleteWord::RemoveWord( const String& rWord )
{
BOOL bRet = FALSE;
USHORT nPos;
const StringPtr pStr = (StringPtr)&rWord;
if( !bLockWordLst && aWordLst.Seek_Entry( pStr, &nPos ))
{
void* pDel = aWordLst[ nPos ];
aWordLst.Remove(nPos);
2000-09-18 23:08:29 +00:00
nPos = aLRULst.GetPos( pDel );
ASSERT( USHRT_MAX != nPos, "String nicht gefunden" );
aLRULst.Remove( nPos );
delete (SwAutoCompleteString*)pDel;
2000-09-18 23:08:29 +00:00
}
return bRet;
}
BOOL SwAutoCompleteWord::SearchWord( const String& rWord, USHORT* pFndPos ) const
{
const StringPtr pStr = (StringPtr)&rWord;
return aWordLst.Seek_Entry( pStr, pFndPos );
}
BOOL SwAutoCompleteWord::SetToTop( const String& rWord )
{
BOOL bRet = FALSE;
USHORT nPos;
const StringPtr pStr = (StringPtr)&rWord;
if( !bLockWordLst && aWordLst.Seek_Entry( pStr, &nPos ))
{
bRet = TRUE;
void* pTop = aWordLst[ nPos ];
nPos = aLRULst.GetPos( pTop );
ASSERT( USHRT_MAX != nPos, "String nicht gefunden" );
if( nPos )
{
void** ppData = (void**)aLRULst.GetData();
memmove( ppData+1, ppData, nPos * sizeof( void* ) );
*ppData = pTop;
}
}
return bRet;
}
void SwAutoCompleteWord::SetMaxCount( USHORT nNewMax )
{
if( nNewMax < nMaxCount && aLRULst.Count() > nNewMax )
{
// dann die unten ueberhaengenden entfernen
while( nNewMax >= aWordLst.Count() )
{
USHORT nPos = aWordLst.GetPos( (String*)aLRULst[ nNewMax-1 ] );
ASSERT( USHRT_MAX != nPos, "String nicht gefunden" );
void * pDel = aWordLst[nPos];
aWordLst.Remove(nPos);
delete (SwAutoCompleteString*)pDel;
2000-09-18 23:08:29 +00:00
}
aLRULst.Remove( nNewMax-1, aLRULst.Count() - nNewMax );
}
nMaxCount = nNewMax;
}
void SwAutoCompleteWord::SetMinWordLen( USHORT n )
{
// will man wirklich alle Worte, die kleiner als die neue Min Laenge
// sind entfernen?
// JP 02.02.99 - erstmal nicht.
// JP 11.03.99 - mal testhalber eingebaut
if( n < nMinWrdLen )
{
for( USHORT nPos = 0; nPos < aWordLst.Count(); ++nPos )
if( aWordLst[ nPos ]->Len() < n )
{
void* pDel = aWordLst[ nPos ];
aWordLst.Remove(nPos);
2000-09-18 23:08:29 +00:00
USHORT nDelPos = aLRULst.GetPos( pDel );
ASSERT( USHRT_MAX != nDelPos, "String nicht gefunden" );
aLRULst.Remove( nDelPos );
--nPos;
delete (SwAutoCompleteString*)pDel;
2000-09-18 23:08:29 +00:00
}
}
nMinWrdLen = n;
}
BOOL SwAutoCompleteWord::GetRange( const String& rWord, USHORT& rStt,
USHORT& rEnd ) const
{
const StringPtr pStr = (StringPtr)&rWord;
aWordLst.Seek_Entry( pStr, &rStt );
rEnd = rStt;
const ::utl::TransliterationWrapper& rSCmp = GetAppCmpStrIgnore();
while( rEnd < aWordLst.Count() && rSCmp.isMatch( rWord, *aWordLst[ rEnd ]))
2000-09-18 23:08:29 +00:00
++rEnd;
return rStt < rEnd;
}
void SwAutoCompleteWord::CheckChangedList( const SvStringsISortDtor& rNewLst )
{
USHORT nMyLen = aWordLst.Count(), nNewLen = rNewLst.Count();
USHORT nMyPos = 0, nNewPos = 0;
for( ; nMyPos < nMyLen && nNewPos < nNewLen; ++nMyPos, ++nNewPos )
{
const StringPtr pStr = rNewLst[ nNewPos ];
while( aWordLst[ nMyPos ] != pStr )
{
void* pDel = aWordLst[ nMyPos ];
aWordLst.Remove(nMyPos);
2000-09-18 23:08:29 +00:00
USHORT nPos = aLRULst.GetPos( pDel );
ASSERT( USHRT_MAX != nPos, "String nicht gefunden" );
aLRULst.Remove( nPos );
delete (SwAutoCompleteString*)pDel;
2000-09-18 23:08:29 +00:00
if( nMyPos >= --nMyLen )
break;
}
}
//remove the elements at the end of the array
2000-09-18 23:08:29 +00:00
if( nMyPos < nMyLen )
{
//clear LRU array first then delete the string object
2000-09-18 23:08:29 +00:00
for( ; nNewPos < nMyLen; ++nNewPos )
{
void* pDel = aWordLst[ nNewPos ];
USHORT nPos = aLRULst.GetPos( pDel );
ASSERT( USHRT_MAX != nPos, "String nicht gefunden" );
aLRULst.Remove( nPos );
delete (SwAutoCompleteString*)pDel;
2000-09-18 23:08:29 +00:00
}
//remove from array
aWordLst.Remove( nMyPos, nMyLen - nMyPos );
2000-09-18 23:08:29 +00:00
}
}
/* -----------------------------05.08.2002 12:54------------------------------
2000-09-18 23:08:29 +00:00
---------------------------------------------------------------------------*/
void SwAutoCompleteWord::DocumentDying(const SwDoc& rDoc)
{
pImpl->RemoveDocument(rDoc);
2000-09-18 23:08:29 +00:00
SvxAutoCorrect* pACorr = OFF_APP()->GetAutoCorrConfig()->GetAutoCorrect();
const sal_Bool bDelete = !pACorr->GetSwFlags().bAutoCmpltKeepList;
for(USHORT nPos = aWordLst.Count(); nPos; nPos--)
{
SwAutoCompleteString* pCurrent = (SwAutoCompleteString*)aWordLst[ nPos - 1 ];
if(pCurrent->RemoveDocument(rDoc) && bDelete)
{
aWordLst.Remove( nPos - 1 );
delete pCurrent;
}
}
}
2000-09-18 23:08:29 +00:00