Update ooo320-m1
[ooovba.git] / binfilter / inc / bf_sw / bparr.hxx
blob708f96567b750d47c94e2889fd612b9a92e339ea
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: bparr.hxx,v $
10 * $Revision: 1.5 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _BPARR_HXX
32 #define _BPARR_HXX
34 #ifndef _SOLAR_H
35 #include <tools/solar.h>
36 #endif
37 #ifndef _DEBUG_HXX //autogen
38 #include <tools/debug.hxx>
39 #endif
40 namespace binfilter {
42 struct BlockInfo;
43 class BigPtrArray;
45 class BigPtrEntry
47 friend class BigPtrArray;
48 BlockInfo* pBlock;
49 USHORT nOffset;
50 protected:
51 BigPtrEntry() : pBlock(0), nOffset(0) {}
52 virtual ~BigPtrEntry() {}
54 inline ULONG GetPos() const;
55 inline BigPtrArray& GetArray() const;
57 typedef BigPtrEntry* ElementPtr;
60 typedef BOOL (*FnForEach)( const ElementPtr&, void* pArgs );
62 // 1000 Eintr„ge pro Block = etwas weniger als 4K
63 #define MAXENTRY 1000
66 // Anzahl Eintraege, die bei der Kompression frei bleiben duerfen
67 // dieser Wert ist fuer den Worst Case, da wir MAXBLOCK mit ca 25%
68 // Overhead definiert haben, reichen 80% = 800 Eintraege vollkommen aus
69 // Will mann voellige Kompression haben, muss eben 100 angegeben werden.
71 #define COMPRESSLVL 80
73 struct BlockInfo { // Block-Info:
74 BigPtrArray* pBigArr; // in diesem Array steht der Block
75 ElementPtr* pData; // Datenblock
76 ULONG nStart, nEnd; // Start- und EndIndex
77 USHORT nElem; // Anzahl Elemente
80 class BigPtrArray
82 BlockInfo** ppInf; // Block-Infos
83 ULONG nSize; // Anzahl Elemente
84 USHORT nMaxBlock; // akt. max Anzahl Bloecke
85 USHORT nBlock; // Anzahl Bloecke
86 USHORT nCur; // letzter Block
88 USHORT Index2Block( ULONG ) const; // Blocksuche
89 BlockInfo* InsBlock( USHORT ); // Block einfuegen
90 void BlockDel( USHORT ); // es wurden Bloecke geloescht
91 void UpdIndex( USHORT ); // Indexe neu berechnen
93 protected:
94 // fuelle alle Bloecke auf.
95 // Der short gibt in Prozent an, wie voll die Bloecke werden sollen.
96 // Der ReturnWert besagt, das irgendetwas "getan" wurde
97 USHORT Compress( short = COMPRESSLVL );
99 public:
100 BigPtrArray();
101 ~BigPtrArray();
103 ULONG Count() const { return nSize; }
105 void Insert( const ElementPtr& r, ULONG pos );
106 // void Insert( const ElementPtr* p, ULONG n, ULONG pos );
107 void Remove( ULONG pos, ULONG n = 1 );
108 void Replace( ULONG pos, const ElementPtr& r);
110 ElementPtr operator[]( ULONG ) const;
111 void ForEach( FnForEach fn, void* pArgs = NULL )
113 ForEach( 0, nSize, fn, pArgs );
115 void ForEach( ULONG nStart, ULONG nEnd, FnForEach fn, void* pArgs = NULL );
120 inline ULONG BigPtrEntry::GetPos() const
122 DBG_ASSERT( this == pBlock->pData[ nOffset ], "Element nicht im Block" );
123 return pBlock->nStart + nOffset;
126 inline BigPtrArray& BigPtrEntry::GetArray() const
128 return *pBlock->pBigArr;
132 } //namespace binfilter
133 #endif