bump product version to 5.0.4.1
[LibreOffice.git] / rsc / source / res / rscclobj.cxx
blob96866dd4b819091c1cc0b3169f45c29dba557441
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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>
22 #include <rsctop.hxx>
25 RefNode::RefNode( Atom nTyp )
27 pObjBiTree = 0;
28 nTypNameId = nTyp;
31 sal_uInt32 RefNode::GetId() const
33 return nTypNameId;
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 )
42 if( pObjBiTree )
43 return pObjBiTree->Insert( pPutObject );
45 pObjBiTree = pPutObject;
46 return true;
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 )
55 if( pObjBiTree )
56 return pObjBiTree->Search( rRscId );
57 return NULL;
60 ObjNode::ObjNode( const RscId & rId, CLASS_DATA pData, sal_uLong lKey )
62 pRscObj = pData;
63 aRscId = rId;
64 lFileKey = lKey;
67 ObjNode * ObjNode::DelObjNode( RscTop * pClass, sal_uLong nFileKey )
69 ObjNode * pRetNode = this;
71 if( Right() )
72 pRight = static_cast<ObjNode *>(Right())->DelObjNode( pClass, nFileKey );
73 if( Left() )
74 pLeft = static_cast<ObjNode *>(Left())->DelObjNode( pClass, nFileKey );
76 if( GetFileKey() == nFileKey )
78 if( GetRscObj() )
80 pClass->Destroy( RSCINST( pClass, GetRscObj() ) );
81 rtl_freeMemory( GetRscObj() );
83 pRetNode = static_cast<ObjNode *>(Right());
84 if( pRetNode )
86 if( Left() )
87 pRetNode->Insert( static_cast<ObjNode *>(Left()) );
89 else
90 pRetNode = static_cast<ObjNode *>(Left());
92 delete this;
94 return pRetNode;
97 sal_uInt32 ObjNode::GetId() const
99 return (sal_uInt32)(long)aRscId;
102 bool ObjNode::IsConsistent()
104 bool bRet = true;
106 if( (long)aRscId > 0x7FFF || (long)aRscId < 1 )
108 bRet = false;
110 else
112 if( Left() )
114 if( !static_cast<ObjNode *>(Left())->IsConsistent() )
116 bRet = false;
118 if( static_cast<ObjNode *>(Left())->aRscId >= aRscId )
120 bRet = false;
123 if( Right() )
125 if( static_cast<ObjNode *>(Right())->aRscId <= aRscId )
127 bRet = false;
129 if( !static_cast<ObjNode *>(Right())->IsConsistent() )
131 bRet = false;
136 return bRet;
139 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */