1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
21 #include <rscclobj.hxx>
25 RefNode::RefNode( Atom nTyp
)
31 sal_uInt32
RefNode::GetId() const
36 // insert a node in the b-tree pObjBiTree
37 // if the node with the same name is in pObjBiTree,
38 // return sal_False and no insert,
40 bool RefNode::PutObjNode( ObjNode
* pPutObject
)
43 return pObjBiTree
->Insert( pPutObject
);
45 pObjBiTree
= pPutObject
;
49 // insert a node in the b-tree pObjBiTree
50 // if the node with the same name is in pObjBiTree,
51 // return NULL and no insert,
52 // if not return the pointer to the Object
53 ObjNode
* RefNode :: GetObjNode( const RscId
& rRscId
)
56 return pObjBiTree
->Search( rRscId
);
60 ObjNode::ObjNode( const RscId
& rId
, CLASS_DATA pData
, sal_uLong lKey
)
67 ObjNode
* ObjNode::DelObjNode( RscTop
* pClass
, sal_uLong nFileKey
)
69 ObjNode
* pRetNode
= this;
72 pRight
= static_cast<ObjNode
*>(Right())->DelObjNode( pClass
, nFileKey
);
74 pLeft
= static_cast<ObjNode
*>(Left())->DelObjNode( pClass
, nFileKey
);
76 if( GetFileKey() == nFileKey
)
80 pClass
->Destroy( RSCINST( pClass
, GetRscObj() ) );
81 rtl_freeMemory( GetRscObj() );
83 pRetNode
= static_cast<ObjNode
*>(Right());
87 pRetNode
->Insert( static_cast<ObjNode
*>(Left()) );
90 pRetNode
= static_cast<ObjNode
*>(Left());
97 sal_uInt32
ObjNode::GetId() const
99 return (sal_uInt32
)(long)aRscId
;
102 bool ObjNode::IsConsistent()
106 if( (long)aRscId
> 0x7FFF || (long)aRscId
< 1 )
114 if( !static_cast<ObjNode
*>(Left())->IsConsistent() )
118 if( static_cast<ObjNode
*>(Left())->aRscId
>= aRscId
)
125 if( static_cast<ObjNode
*>(Right())->aRscId
<= aRscId
)
129 if( !static_cast<ObjNode
*>(Right())->IsConsistent() )
139 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */