Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 :
21 : #include <stdlib.h>
22 : #include <stdio.h>
23 : #include <string.h>
24 :
25 : #include <tools/link.hxx>
26 : #include <rsctree.hxx>
27 :
28 :
29 134738 : BiNode::BiNode()
30 : {
31 134738 : pLeft = pRight = NULL;
32 134738 : }
33 :
34 134738 : BiNode::~BiNode()
35 : {
36 134738 : }
37 :
38 65570 : void BiNode::EnumNodes( Link aLink ) const
39 : {
40 65570 : if( Left() )
41 22238 : Left()->EnumNodes( aLink );
42 65570 : aLink.Call( (BiNode *)this );
43 65570 : if( Right() )
44 41217 : Right()->EnumNodes( aLink );
45 65570 : }
46 :
47 559772 : BiNode * BiNode::ChangeDLListBTree( BiNode * pList )
48 : {
49 : BiNode * pMiddle;
50 : BiNode * pTmp;
51 : sal_uInt32 nEle, i;
52 :
53 559772 : if( pList )
54 : {
55 557786 : while( pList->Left() )
56 0 : pList = pList->Left();
57 278893 : pTmp = pList;
58 :
59 2062947 : for( nEle = 0; pTmp->Right(); nEle++ )
60 1784054 : pTmp = pTmp->Right();
61 :
62 278893 : pMiddle = pList;
63 278893 : if( nEle / 2 )
64 : {
65 965510 : for( i = 0; i < (nEle / 2); i++ )
66 : {
67 848178 : pMiddle = pMiddle->Right();
68 : }
69 : }
70 : else
71 : {
72 161561 : pList = (BiNode *)0;
73 : }
74 278893 : if( NULL != (pTmp = pMiddle->Left()) ) // rechten Zeiger auf Null
75 117332 : pTmp->pRight = (BiNode *)0;
76 :
77 : // linken Zeiger auf Null
78 278893 : BiNode * pRightNode = pMiddle->Right();
79 278893 : if (pRightNode)
80 159575 : pRightNode->pLeft = (BiNode *)0;
81 :
82 278893 : pMiddle->pLeft = ChangeDLListBTree( pList );
83 278893 : pMiddle->pRight = ChangeDLListBTree( pRightNode );
84 :
85 278893 : return pMiddle;
86 : }
87 280879 : return pList;
88 : }
89 :
90 278893 : BiNode * BiNode::ChangeBTreeDLList()
91 : {
92 : BiNode * pList;
93 : BiNode * pLL_RN; // linke Liste rechter Knoten
94 :
95 278893 : if( Right() )
96 : {
97 170897 : pList = Right()->ChangeBTreeDLList();
98 170897 : pRight = pList;
99 170897 : pList->pLeft = this;
100 : }
101 278893 : pList = this;
102 278893 : if( Left() )
103 : {
104 106010 : pLL_RN = pList = Left()->ChangeBTreeDLList();
105 :
106 912105 : while( pLL_RN->Right() )
107 700085 : pLL_RN = pLL_RN->Right();
108 :
109 106010 : pLeft = pLL_RN;
110 106010 : pLL_RN->pRight = this;
111 : }
112 278893 : return pList;
113 : }
114 :
115 0 : NameNode * NameNode::Remove( NameNode * pRemove )
116 : {
117 0 : NameNode * pRoot = this;
118 0 : NameNode * pParent = SearchParent( pRemove );
119 :
120 0 : if( pParent )
121 : {
122 0 : if( pParent->Left() &&
123 0 : (EQUAL == pRemove->Compare( pParent->Left() ) ) )
124 : {
125 0 : pParent->pLeft = pRemove->Left();
126 0 : if( pRemove->Right() )
127 0 : pParent->Insert( pRemove->Right() );
128 : }
129 0 : else if( pParent->Right() &&
130 0 : (EQUAL == pRemove->Compare( pParent->Right() ) ) )
131 : {
132 0 : pParent->pRight = pRemove->Right();
133 0 : if( pRemove->Left() )
134 0 : pParent->Insert( pRemove->Left() );
135 : }
136 : }
137 0 : else if( EQUAL == this->Compare( pRemove ) )
138 : {
139 0 : if( Right() )
140 : {
141 0 : pRoot = Right();
142 0 : if( Left() )
143 0 : Right()->Insert( Left() );
144 : }
145 : else
146 : {
147 0 : pRoot = Left();
148 : }
149 : }
150 0 : pRemove->pLeft = pRemove->pRight = NULL;
151 :
152 0 : return pRoot;
153 : }
154 :
155 :
156 0 : COMPARE NameNode::Compare( const NameNode * pCompare ) const
157 : {
158 0 : if( reinterpret_cast<long>(this) < reinterpret_cast<long>(pCompare) )
159 0 : return LESS;
160 0 : else if( reinterpret_cast<long>(this) > reinterpret_cast<long>(pCompare) )
161 0 : return GREATER;
162 : else
163 0 : return EQUAL;
164 : }
165 :
166 0 : COMPARE NameNode::Compare( const void * pCompare ) const
167 : {
168 0 : if( reinterpret_cast<long>(this) < reinterpret_cast<long>(pCompare) )
169 0 : return LESS;
170 0 : else if( reinterpret_cast<long>(this) > reinterpret_cast<long>(pCompare) )
171 0 : return GREATER;
172 : else
173 0 : return EQUAL;
174 : }
175 :
176 : // search for a parent node.
177 : // return a pointer to the parent node if found.
178 : // otherwise return 0.
179 0 : NameNode* NameNode::SearchParent( const NameNode * pSearch ) const
180 : {
181 0 : int nCmp = Compare( pSearch );
182 :
183 0 : if( nCmp == GREATER )
184 : {
185 0 : if( Left() )
186 : {
187 0 : if( ((NameNode *)Left())->Compare( pSearch ) == EQUAL )
188 0 : return (NameNode *)this;
189 0 : return ((NameNode *)Left())->SearchParent( pSearch );
190 : }
191 : }
192 0 : else if( nCmp == LESS )
193 : {
194 0 : if( Right() )
195 : {
196 0 : if( ((NameNode *)Right())->Compare( pSearch ) == EQUAL )
197 0 : return (NameNode *)this;
198 0 : return ((NameNode *)Right())->SearchParent( pSearch );
199 : }
200 : }
201 0 : return (NameNode *)NULL;
202 : }
203 :
204 : // search for a node.
205 : // return a pointer to the node if found.
206 : // otherwise return 0.
207 0 : NameNode* NameNode::Search( const NameNode * pSearch ) const
208 : {
209 0 : int nCmp = Compare( pSearch );
210 :
211 0 : if( nCmp == GREATER )
212 : {
213 0 : if( Left() )
214 0 : return ((NameNode *)Left())->Search( pSearch );
215 : }
216 0 : else if( nCmp == LESS )
217 : {
218 0 : if( Right() )
219 0 : return ((NameNode *)Right())->Search( pSearch );
220 : }
221 : else
222 0 : return (NameNode *)this;
223 :
224 0 : return NULL;
225 : }
226 :
227 : // search for a node.
228 : // return a pointer to the node if found.
229 : // otherwise return 0.
230 16005 : NameNode* NameNode::Search( const void * pSearch ) const
231 : {
232 16005 : int nCmp = Compare( pSearch );
233 :
234 16005 : if( nCmp == GREATER )
235 : {
236 16 : if( Left() )
237 0 : return ((NameNode *)Left())->Search( pSearch );
238 : }
239 15989 : else if( nCmp == LESS )
240 : {
241 94 : if( Right() )
242 0 : return ((NameNode *)Right())->Search( pSearch );
243 : }
244 : else
245 15895 : return (NameNode *)this;
246 :
247 110 : return NULL;
248 : }
249 :
250 : // Ein Knoten wird in den Baum eingefuegt
251 : // Gibt es einen Knoten mit dem gleichen Namen, dann return false
252 : // sonst return true. Der Knoten wird auf jeden Fall eingefuegt.
253 :
254 431236 : bool NameNode::Insert( NameNode * pTN, sal_uInt32* pnDepth )
255 : {
256 431236 : bool bRet = true;
257 431236 : int nCmp = Compare( pTN );
258 :
259 431236 : *pnDepth += 1;
260 431236 : if( nCmp == GREATER )
261 : {
262 30270 : if( Left() )
263 28620 : bRet = ((NameNode *)Left())->Insert( pTN, pnDepth );
264 : else
265 1650 : pLeft = pTN;
266 : }
267 : else
268 : {
269 400966 : if( Right() )
270 366154 : bRet = ((NameNode *)Right())->Insert( pTN, pnDepth );
271 : else
272 34812 : pRight = pTN;
273 :
274 400966 : if( nCmp == EQUAL )
275 0 : bRet = false;
276 : }
277 431236 : return bRet;
278 : }
279 :
280 : // insert a node in the tree.
281 : // if the node with the same name is in, return false and no insert.
282 : // if not return true.
283 36462 : bool NameNode::Insert( NameNode * pTN )
284 : {
285 36462 : sal_uInt32 nDepth = 0;
286 : bool bRet;
287 :
288 36462 : bRet = Insert( pTN, &nDepth );
289 36462 : if( bRet )
290 : {
291 36462 : if( nDepth > 20 )
292 : {
293 1650 : if( Left() )
294 344 : pLeft = ChangeDLListBTree( Left()->ChangeBTreeDLList() );
295 1650 : if( Right() )
296 1642 : pRight = ChangeDLListBTree( Right()->ChangeBTreeDLList() );
297 : }
298 : }
299 :
300 36462 : return bRet;
301 : }
302 :
303 0 : void NameNode::OrderTree()
304 : {
305 0 : NameNode * pTmpLeft = static_cast<NameNode *>(Left());
306 0 : NameNode * pTmpRight = static_cast<NameNode *>(Right());
307 :
308 0 : pLeft = NULL;
309 0 : pRight = NULL;
310 0 : SubOrderTree( pTmpLeft );
311 0 : SubOrderTree( pTmpRight );
312 0 : }
313 :
314 0 : void NameNode::SubOrderTree( NameNode * pOrderNode )
315 : {
316 0 : if( pOrderNode )
317 : {
318 0 : NameNode * pTmpLeft = static_cast<NameNode *>(pOrderNode->Left());
319 0 : NameNode * pTmpRight = static_cast<NameNode *>(pOrderNode->Right());
320 0 : pOrderNode->pLeft = NULL;
321 0 : pOrderNode->pRight = NULL;
322 0 : Insert( pOrderNode );
323 0 : SubOrderTree( pTmpLeft );
324 0 : SubOrderTree( pTmpRight );
325 : }
326 0 : }
327 :
328 16005 : IdNode * IdNode::Search( sal_uInt32 nTypeName ) const
329 : {
330 16005 : return static_cast<IdNode *>(NameNode::Search( (const void *)&nTypeName ));
331 : }
332 :
333 431236 : COMPARE IdNode::Compare( const NameNode * pSearch ) const
334 : {
335 431236 : if( GetId() < (sal_uInt32)(static_cast<const IdNode *>(pSearch)->GetId()) )
336 400966 : return LESS;
337 30270 : else if( GetId() > (sal_uInt32)(static_cast<const IdNode *>(pSearch)->GetId()) )
338 30270 : return GREATER;
339 : else
340 0 : return EQUAL;
341 : }
342 :
343 : // pSearch ist ein Zeiger auf sal_uInt32
344 16005 : COMPARE IdNode::Compare( const void * pSearch ) const
345 : {
346 16005 : if( GetId() < *((const sal_uInt32 *)pSearch) )
347 94 : return LESS;
348 15911 : else if( GetId() > *((const sal_uInt32 *)pSearch) )
349 16 : return GREATER;
350 : else
351 15895 : return EQUAL;
352 : }
353 :
354 0 : sal_uInt32 IdNode::GetId() const
355 : {
356 0 : return 0xFFFFFFFF;
357 : }
358 :
359 0 : StringNode * StringNode::Search( const char * pSearch ) const
360 : {
361 0 : return static_cast<StringNode *>(NameNode::Search( (const void *)pSearch ));
362 : }
363 :
364 0 : COMPARE StringNode::Compare( const NameNode * pSearch ) const
365 : {
366 : int nCmp = strcmp( m_aName.getStr(),
367 0 : static_cast<const StringNode *>(pSearch)->m_aName.getStr() );
368 0 : if( nCmp < 0 )
369 0 : return LESS;
370 0 : else if( nCmp > 0 )
371 0 : return GREATER;
372 : else
373 0 : return EQUAL;
374 : }
375 :
376 : // pSearch ist ein Zeiger auf const char *
377 0 : COMPARE StringNode::Compare( const void * pSearch ) const
378 : {
379 0 : int nCmp = strcmp( m_aName.getStr(), (const char *)pSearch );
380 :
381 0 : if( nCmp < 0 )
382 0 : return LESS;
383 0 : else if( nCmp > 0 )
384 0 : return GREATER;
385 : else
386 0 : return EQUAL;
387 : }
388 :
389 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|