summaryrefslogtreecommitdiff
path: root/binfilter/bf_sw/source/core/txtnode/sw_ndhints.cxx
blob: 9ebfb8f2b7d385079cb7f5974bec52210314c3a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 * 
 * Copyright 2000, 2010 Oracle and/or its affiliates.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * This file is part of OpenOffice.org.
 *
 * 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.
 *
 * 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).
 *
 * 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.
 *
 ************************************************************************/


#ifdef _MSC_VER
#pragma hdrstop
#endif

#include "txatbase.hxx"
#include "ndhints.hxx"
namespace binfilter {

/*N*/ _SV_IMPL_SORTAR_ALG( SwpHtStart, SwTxtAttr* )
/*N*/ _SV_IMPL_SORTAR_ALG( SwpHtEnd, SwTxtAttr* )

#ifdef NIE

/*N*/ void DumpHints( const SwpHtStart &rHtStart,
/*N*/ 				const SwpHtEnd &rHtEnd )
/*N*/ {
#ifdef DBG_UTIL
        DBG_BF_ASSERT(0, "STRIP");//STRIP001 	aDbstream << "DumpHints:" << endl;
/*N*/ #endif
/*N*/ }
/*N*/ #else
/*N*/ inline void DumpHints(const SwpHtStart &, const SwpHtEnd &) { }
/*N*/ #endif

/*************************************************************************
 *                        inline IsEqual()
 *************************************************************************/

/*N*/ inline BOOL IsEqual( const SwTxtAttr &rHt1, const SwTxtAttr &rHt2 )
/*N*/ {
/*N*/ 	return (long)(&rHt1) == (long)(&rHt2);
/*N*/ }

/*************************************************************************
 *                      IsLessStart()
 *************************************************************************/

// SV_IMPL_OP_PTRARR_SORT( SwpHtStart, SwTxtAttr* )
// kein SV_IMPL_PTRARR_SORT( name,ArrElement )
// unser SEEK_PTR_TO_OBJECT_NOTL( name,ArrElement )

// Sortierreihenfolge: Start, Ende (umgekehrt!), Which-Wert (umgekehrt!),
// 					   als letztes die Adresse selbst

/*N*/ BOOL lcl_IsLessStart( const SwTxtAttr &rHt1, const SwTxtAttr &rHt2 )
/*N*/ {
/*N*/ 	if ( *rHt1.GetStart() == *rHt2.GetStart() )
/*N*/ 	{
/*N*/ 		xub_StrLen nHt1 = *rHt1.GetAnyEnd();
/*N*/ 		xub_StrLen nHt2 = *rHt2.GetAnyEnd();
/*N*/ 		if ( nHt1 == nHt2 )
/*N*/ 		{
/*N*/ 			nHt1 = rHt1.Which();
/*N*/ 			nHt2 = rHt2.Which();
/*N*/ 			return nHt1 > nHt2 ||
/*N*/ 				(nHt1 == nHt2 && (long)&rHt1 < (long)&rHt2);
/*N*/ 		}
/*N*/ 		else
/*N*/ 			return ( nHt1 > nHt2 );
/*N*/ 	}
/*N*/ 	return ( *rHt1.GetStart() < *rHt2.GetStart() );
/*N*/ }

/*************************************************************************
 *                      inline IsLessEnd()
 *************************************************************************/

// Zuerst nach Ende danach nach Ptr
/*N*/ #ifdef HP9000
/*N*/ BOOL lcl_IsLessEnd( const SwTxtAttr &rHt1, const SwTxtAttr &rHt2 )
/*N*/ #else
/*N*/ inline BOOL lcl_IsLessEnd( const SwTxtAttr &rHt1, const SwTxtAttr &rHt2 )
/*N*/ #endif
/*N*/ {
/*N*/ 	xub_StrLen nHt1 = *rHt1.GetAnyEnd();
/*N*/ 	xub_StrLen nHt2 = *rHt2.GetAnyEnd();
/*N*/ 	if ( nHt1 == nHt2 )
/*N*/ 	{
/*N*/ 		if ( *rHt1.GetStart() == *rHt2.GetStart() )
/*N*/ 		{
/*N*/ 			nHt1 = rHt1.Which();
/*N*/ 			nHt2 = rHt2.Which();
/*N*/ 			return nHt1 < nHt2 ||
/*N*/ 				(nHt1 == nHt2 && (long)&rHt1 > (long)&rHt2);
/*N*/ 		}
/*N*/ 		else
/*N*/ 			return ( *rHt1.GetStart() > *rHt2.GetStart() );
/*N*/ 	}
/*N*/ 	return ( nHt1 < nHt2 );
/*N*/ }

/*************************************************************************
 *                      SwpHtStart::Seek_Entry()
 *************************************************************************/

/*N*/ BOOL SwpHtStart::Seek_Entry( const SwTxtAttr *pElement, USHORT *pPos ) const
/*N*/ {
/*N*/ 	register USHORT nOben = Count(), nMitte, nUnten = 0;
/*N*/ 	if( nOben > 0 )
/*N*/ 	{
/*N*/ 		nOben--;
/*N*/ 		while( nUnten <= nOben )
/*N*/ 		{
/*N*/ 			nMitte = nUnten + ( nOben - nUnten ) / 2;
/*N*/ 			const SwTxtAttr *pMitte = (*this)[nMitte];
/*N*/ 			if( IsEqual( *pMitte, *pElement ) )
/*N*/ 			{
/*N*/ 				*pPos = nMitte;
/*N*/ 				return TRUE;
/*N*/ 			}
/*N*/ 			else
/*N*/ 				if( lcl_IsLessStart( *pMitte, *pElement ) )
/*N*/ 					nUnten = nMitte + 1;
/*N*/ 				else
/*N*/ 					if( nMitte == 0 )
/*N*/ 					{
/*N*/ 						*pPos = nUnten;
/*N*/ 						return FALSE;
/*N*/ 					}
/*N*/ 					else
/*N*/ 						nOben = nMitte - 1;
/*N*/ 		}
/*N*/ 	}
/*N*/ 	*pPos = nUnten;
/*N*/ 	return FALSE;
/*N*/ }

/*************************************************************************
 *                      SwpHtEnd::Seek_Entry()
 *************************************************************************/

/*N*/ BOOL SwpHtEnd::Seek_Entry( const SwTxtAttr *pElement, USHORT *pPos ) const
/*N*/ {
/*N*/ 	register USHORT nOben = Count(), nMitte, nUnten = 0;
/*N*/ 	if( nOben > 0 )
/*N*/ 	{
/*N*/ 		nOben--;
/*N*/ 		while( nUnten <= nOben )
/*N*/ 		{
/*N*/ 			nMitte = nUnten + ( nOben - nUnten ) / 2;
/*N*/ 			const SwTxtAttr *pMitte = (*this)[nMitte];
/*N*/ 			if( IsEqual( *pMitte, *pElement ) )
/*N*/ 			{
/*N*/ 				*pPos = nMitte;
/*N*/ 				return TRUE;
/*N*/ 			}
/*N*/ 			else
/*N*/ 				if( lcl_IsLessEnd( *pMitte, *pElement ) )
/*N*/ 					nUnten = nMitte + 1;
/*N*/ 				else
/*N*/ 					if( nMitte == 0 )
/*N*/ 					{
/*N*/ 						*pPos = nUnten;
/*N*/ 						return FALSE;
/*N*/ 					}
/*N*/ 					else
/*N*/ 						nOben = nMitte - 1;
/*N*/ 		}
/*N*/ 	}
/*N*/ 	*pPos = nUnten;
/*N*/ 	return FALSE;
/*N*/ }

/*************************************************************************
 *                      class SwpHintsArr
 *************************************************************************/

/*N*/ void SwpHintsArr::Insert( const SwTxtAttr *pHt )
/*N*/ {
/*N*/ 	Resort();
/*N*/ #ifdef DBG_UTIL
/*N*/ 	USHORT nPos;
/*N*/ 	ASSERT(!SwpHtStart::Seek_Entry( pHt, &nPos ), "Insert: hint already in HtStart");
/*N*/ 	ASSERT(!aHtEnd.Seek_Entry( pHt, &nPos ), "Insert: hint already in HtEnd");
/*N*/ #endif
/*N*/ 	SwpHtStart::Insert( pHt );
/*N*/ 	aHtEnd.Insert( pHt );
/*N*/ #ifdef DBG_UTIL
/*N*/ #ifdef NIE
/*N*/ 	(aDbstream << "Insert: " ).WriteNumber( long( pHt ) )<< endl;
/*N*/ 	DumpHints( *this, aHtEnd );
/*N*/ #endif
/*N*/ #endif
/*N*/ }

/*N*/ void SwpHintsArr::DeleteAtPos( const USHORT nPos )
/*N*/ {
/*N*/ 	// Optimierung: nPos bezieht sich auf die Position im StartArray, also:
/*N*/ 	const SwTxtAttr *pHt = SwpHtStart::operator[]( nPos );
/*N*/ 	SwpHtStart::Remove( nPos );
/*N*/ 
/*N*/ 	Resort();
/*N*/ 
/*N*/ 	USHORT nEndPos;
/*N*/ 	aHtEnd.Seek_Entry( pHt, &nEndPos );
/*N*/ 	aHtEnd.Remove( nEndPos );
/*N*/ #ifdef DBG_UTIL
/*N*/ #ifdef NIE
/*N*/ 	(aDbstream << "DeleteAtPos: " ).WriteNumber( long( pHt ) )<< endl;
/*N*/ 	DumpHints( *this, aHtEnd );
/*N*/ #endif
/*N*/ #endif
/*N*/ }

#ifdef DBG_UTIL

/*************************************************************************
 *                      SwpHintsArr::Check()
 *************************************************************************/


/*N*/ #define CHECK_ERR(cond, text) \
/*N*/         if(!(cond)) \
/*N*/         { \
/*N*/             ASSERT(!this, text); \
/*N*/             DumpHints(*(SwpHtStart*)this,aHtEnd); \
/*N*/             const BOOL bErr = 0 == (cond); /* fuer den CV */ \
/*N*/             return !((SwpHintsArr*)this)->Resort(); \
/*N*/         }
/*N*/ 
/*N*/ BOOL SwpHintsArr::Check() const
/*N*/ {
/*N*/ 	// 1) gleiche Anzahl in beiden Arrays
/*N*/ 	CHECK_ERR( Count() == aHtEnd.Count(), "HintsCheck: wrong sizes" );
/*N*/ 	xub_StrLen nLastStart = 0;
/*N*/ 	xub_StrLen nLastEnd   = 0;
/*N*/ 
/*N*/ 	const SwTxtAttr *pLastStart = 0;
/*N*/ 	const SwTxtAttr *pLastEnd = 0;
/*N*/ 
/*N*/ 	for( USHORT i = 0; i < Count(); ++i )
/*N*/ 	{
/*N*/ 		// --- Start-Kontrolle ---
/*N*/ 
/*N*/ 		// 2a) gueltiger Pointer? vgl. DELETEFF
/*N*/ 		const SwTxtAttr *pHt = (*this)[i];
/*N*/ 		CHECK_ERR( 0xFF != *(char*)pHt, "HintsCheck: start ptr was deleted" );
/*N*/ 
/*N*/ 		// 3a) Stimmt die Start-Sortierung?
/*N*/ 		xub_StrLen nIdx = *pHt->GetStart();
/*N*/ 		CHECK_ERR( nIdx >= nLastStart, "HintsCheck: starts are unsorted" );
/*N*/ 
/*N*/ 		// 4a) IsLessStart-Konsistenz
/*N*/ 		if( pLastStart )
/*N*/ 			CHECK_ERR( lcl_IsLessStart( *pLastStart, *pHt ), "HintsCheck: IsLastStart" );
/*N*/ 
/*N*/ 		nLastStart = nIdx;
/*N*/ 		pLastStart = pHt;
/*N*/ 
/*N*/ 		// --- End-Kontrolle ---
/*N*/ 
/*N*/ 		// 2b) gueltiger Pointer? vgl. DELETEFF
/*N*/ 		const SwTxtAttr *pHtEnd = aHtEnd[i];
/*N*/ 		CHECK_ERR( 0xFF != *(char*)pHtEnd, "HintsCheck: end ptr was deleted" );
/*N*/ 
/*N*/ 		// 3b) Stimmt die End-Sortierung?
/*N*/ 		nIdx = *pHtEnd->GetAnyEnd();
/*N*/ 		CHECK_ERR( nIdx >= nLastEnd, "HintsCheck: ends are unsorted" );
/*N*/ 		nLastEnd = nIdx;
/*N*/ 
/*N*/ 		// 4b) IsLessEnd-Konsistenz
/*N*/ 		if( pLastEnd )
/*N*/ 			CHECK_ERR( lcl_IsLessEnd( *pLastEnd, *pHtEnd ), "HintsCheck: IsLastEnd" );
/*N*/ 
/*N*/ 		nLastEnd = nIdx;
/*N*/ 		pLastEnd = pHtEnd;
/*N*/ 
/*N*/ 		// --- Ueberkreuzungen ---
/*N*/ 
/*N*/ 		// 5) gleiche Pointer in beiden Arrays
/*N*/ 		nIdx = GetStartOf( pHtEnd );
/*N*/ 		CHECK_ERR( STRING_LEN != nIdx, "HintsCheck: no GetStartOf" );
/*N*/ 
/*N*/ 		// 6) gleiche Pointer in beiden Arrays
/*N*/ 		nIdx = GetEndOf( pHt );
/*N*/ 		CHECK_ERR( STRING_LEN != nIdx, "HintsCheck: no GetEndOf" );
/*N*/ 	}
/*N*/ 	return TRUE;
/*N*/ }

#endif      /* PRODUCT */

/*************************************************************************
 *                          SwpHintsArr::Resort()
 *************************************************************************/

// Resort() wird vor jedem Insert und Delete gerufen.
// Wenn Textmasse geloescht wird, so werden die Indizes in
// ndtxt.cxx angepasst. Leider erfolgt noch keine Neusortierung
// auf gleichen Positionen.

/*N*/ BOOL SwpHintsArr::Resort()
/*N*/ {
/*N*/ 	BOOL bResort = FALSE;
/*N*/ 	const SwTxtAttr *pLast = 0;
        USHORT i=0;
/*N*/ 	for( i = 0; i < SwpHtStart::Count(); ++i )
/*N*/ 	{
/*N*/ 		const SwTxtAttr *pHt = (*this)[i];
/*N*/ 		if( pLast && !lcl_IsLessStart( *pLast, *pHt ) )
/*N*/ 		{
/*N*/ #ifdef NIE
/*N*/ #ifdef DBG_UTIL
/*N*/ //            ASSERT( bResort, "!Resort/Start: correcting hints-array" );
/*N*/ 			aDbstream << "Resort: Starts" << endl;
/*N*/ 			DumpHints( *this, aHtEnd );
/*N*/ #endif
/*N*/ #endif
/*N*/ 			// Aufpassen: nicht die unsere SwpHintsArr-Methoden rufen,
/*N*/ 			// weil dort ein Resort steht!
/*N*/ 			// AMA: Bisher ( -> USED ) wurde ein Arrayinhalt [3,4,4,3] nur in
/*N*/ 			// 		[3,4,3,4] sortiert, nicht in [3,3,4,4]
/*N*/ #ifdef USED
/*N*/ 			SwpHtStart::Delete( i - 1 );
/*N*/ 			SwpHtStart::Insert( pLast );
/*N*/ 			USHORT nPos;
/*N*/ 			if( SwpHtStart::Seek_Entry( pLast, &nPos ) && nPos > i )
/*N*/ 				--i;
/*N*/ #else
/*N*/ 			SwpHtStart::Remove( i );
/*N*/ 			SwpHtStart::Insert( pHt );
/*N*/ 			pHt = (*this)[i];
/*N*/ 			if ( pHt != pLast )
/*N*/ 				--i;
/*N*/ #endif //!USED
/*N*/ 			bResort = TRUE;
/*N*/ 		}
/*N*/ 		pLast = pHt;
/*N*/ 	}
/*N*/ 
/*N*/ 	pLast = 0;
/*N*/ 	for( i = 0; i < aHtEnd.Count(); ++i )
/*N*/ 	{
/*N*/ 		const SwTxtAttr *pHt = aHtEnd[i];
/*N*/ 		if( pLast && !lcl_IsLessEnd( *pLast, *pHt ) )
/*N*/ 		{
/*N*/ #ifdef NIE
/*N*/ #ifdef DBG_UTIL
/*N*/ //            ASSERT( bResort, "!Resort/Ends: correcting hints-array" );
/*N*/ 			aDbstream << "Resort: Ends" << endl;
/*N*/ 			DumpHints( *this, aHtEnd );
/*N*/ #endif
/*N*/ #endif
/*N*/ // AMA: siehe oben
/*N*/ #ifdef USED
/*N*/ 			aHtEnd.Delete( i - 1 );
/*N*/ 			aHtEnd.Insert( pLast );
/*N*/ 			USHORT nPos;
/*N*/ 			if( aHtEnd.Seek_Entry( pLast, &nPos ) && nPos > i )
/*N*/ 				--i;
/*N*/ #else
/*N*/ 			aHtEnd.Remove( i );
/*N*/ 			aHtEnd.Insert( pHt );
/*N*/ 			pHt = aHtEnd[i]; // normalerweise == pLast
/*N*/ 			// Wenn die Unordnung etwas groesser ist (24200),
/*N*/ 			// muessen wir Position i erneut vergleichen.
/*N*/ 			if ( pLast != pHt )
/*N*/ 				--i;
/*N*/ #endif //!USED
/*N*/ 			bResort = TRUE;
/*N*/ 		}
/*N*/ 		pLast = pHt;
/*N*/ 	}
/*N*/ #ifdef DBG_UTIL
/*N*/ #ifdef NIE
/*N*/ 	aDbstream << "Resorted:" << endl;
/*N*/ 	DumpHints( *this, aHtEnd );
/*N*/ #endif
/*N*/ #endif
/*N*/ 	return bResort;
/*N*/ }


}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */