/usr/include/xbase/ndx.h is in libxbase2.0-dev 2.0.0-8.5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* $Id: ndx.h,v 1.6 2000/11/10 19:04:17 dbryson Exp $
Xbase project source code
This file contains a header file for the xbNdx object, which is used
for handling NDX type indices.
Copyright (C) 1997 StarTech, Gary A. Kunkel
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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 for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Contact:
Mail:
Technology Associates, Inc.
XBase Project
1455 Deming Way #11
Sparks, NV 89434
USA
Email:
xbase@techass.com
See our website at:
xdb.sourceforge.net
V 1.0 10/10/97 - Initial release of software
V 1.02 10/25/97 - Index performance enhancements
V 1.3 11/30/97 - Moved GetLong and GetShort to DBF class for memos
V 1.5 1/2/98 - Added Dbase IV memo field support
V 1.6a 4/1/98 - Added expression support
V 1.6b 4/8/98 - umeric index support
V 1.9 4/12/99 - Bug fix w/ AddKey and code cleanup
*/
#ifndef __XB_NDX_H__
#define __XB_NDX_H__
#include <xbase/xbase.h>
#include <string.h>
/*! \file ndx.h
*/
//
// Define the following to use inline versions of the respective methods.
//
#define XB_INLINE_COMPAREKEY
#define XB_INLINE_GETDBFNO
#define XB_NDX_NODE_BASESIZE 24 // size of base header data
#define XB_VAR_NODESIZE // define to enable variable node sizes
#ifndef XB_VAR_NODESIZE
#define XB_NDX_NODE_SIZE 2048
//#define XB_NDX_NODE_SIZE 512 // standard dbase node size
#else
#define XB_DEFAULT_NDX_NODE_SIZE 512
#define XB_MAX_NDX_NODE_SIZE 4096
#define XB_NDX_NODE_SIZE NodeSize
#define XB_NDX_NODE_MULTIPLE 512
#endif // XB_VAR_NODESIZE
//! xbNdxHeadnode struct
/*!
*/
struct XBDLLEXPORT xbNdxHeadNode { /* ndx header on disk */
xbLong StartNode; /* header node is node 0 */
xbLong TotalNodes; /* includes header node */
xbLong NoOfKeys; /* actual count + 1 */
xbUShort KeyLen; /* length of key data */
xbUShort KeysPerNode;
xbUShort KeyType; /* 00 = Char, 01 = Numeric */
xbLong KeySize; /* key len + 8 bytes */
char Unknown2;
char Unique;
// char KeyExpression[488];
#ifndef XB_VAR_NODESIZE
char KeyExpression[XB_NDX_NODE_SIZE - 24];
#else
char KeyExpression[XB_MAX_NDX_NODE_SIZE - 24];
#endif // XB_VAR_NODESIZE
};
//! xbNdxLeafNode struct
/*!
*/
struct XBDLLEXPORT xbNdxLeafNode { /* ndx node on disk */
xbLong NoOfKeysThisNode;
#ifndef XB_VAR_NODESIZE
char KeyRecs[XB_NDX_NODE_SIZE-4];
#else
char KeyRecs[XB_MAX_NDX_NODE_SIZE - 4];
#endif // XB_VAR_NODESIZE
};
//! xbNdxNodeLink struct
/*!
*/
struct XBDLLEXPORT xbNdxNodeLink { /* ndx node memory */
xbNdxNodeLink * PrevNode;
xbNdxNodeLink * NextNode;
xbLong CurKeyNo; /* 0 - KeysPerNode-1 */
xbLong NodeNo;
struct xbNdxLeafNode Leaf;
};
//! xbNdx class
/*!
*/
class XBDLLEXPORT xbNdx : public xbIndex
{
// xbExpNode * ExpressionTree; /* Expression tree for index */
public:
xbNdx() : xbIndex() {}
xbNdx( xbDbf * );
~xbNdx() {}
/* don't uncomment next line - it causes seg faults for some undiagnosed reason*/
// ~NDX() { if( NdxStatus ) CloseIndex(); }
xbShort OpenIndex ( const char * FileName );
xbShort CloseIndex();
xbShort CreateIndex( const char *IxName, const char *Exp,
xbShort Unique, xbShort OverLay );
xbLong GetTotalNodes();
xbLong GetCurDbfRec() { return CurDbfRec; }
xbShort CreateKey( xbShort, xbShort );
xbShort GetCurrentKey(char *key);
xbShort AddKey( xbLong );
xbShort UniqueIndex() { return HeadNode.Unique; }
xbShort DeleteKey( xbLong );
xbShort KeyWasChanged();
xbShort FindKey( const char *Key );
xbShort FindKey();
xbShort FindKey( xbDouble );
#ifdef XBASE_DEBUG
void DumpHdrNode();
void DumpNodeRec( xbLong NodeNo );
void DumpNodeChain();
xbShort CheckIndexIntegrity( const xbShort Option );
#endif
//! Short description.
/*!
*/
xbShort GetNextKey() { return GetNextKey( 1 ); }
//! Short description.
/*!
*/
xbShort GetLastKey() { return GetLastKey( 0, 1 ); }
//! Short description.
/*!
*/
xbShort GetFirstKey() { return GetFirstKey( 1 ); }
//! Short description.
/*!
*/
xbShort GetPrevKey() { return GetPrevKey( 1 ); }
xbShort ReIndex(void (*statusFunc)(xbLong itemNum, xbLong numItems) = 0);
xbShort KeyExists( const char * Key ) { return FindKey( Key, strlen( Key ), 0 ); }
xbShort KeyExists( xbDouble );
virtual void SetNodeSize(xbShort size);
virtual void GetExpression(char *buf, int len);
protected:
xbNdxHeadNode HeadNode;
xbNdxLeafNode LeafNode;
xbLong xbNodeLinkCtr;
xbLong ReusedxbNodeLinks;
xbString IndexName;
#ifndef XB_VAR_NODESIZE
char Node[XB_NDX_NODE_SIZE];
#else
char Node[XB_MAX_NDX_NODE_SIZE];
#endif // XB_VAR_NODESIZE
// FILE *ndxfp;
// int NdxStatus; /* 0 = closed, 1 = open */
xbNdxNodeLink * NodeChain; /* pointer to node chain of index nodes */
xbNdxNodeLink * FreeNodeChain; /* pointer to chain of free index nodes */
xbNdxNodeLink * CurNode; /* pointer to current node */
xbNdxNodeLink * DeleteChain; /* pointer to chain to delete */
xbNdxNodeLink * CloneChain; /* pointer to node chain copy (add dup) */
xbLong CurDbfRec; /* current Dbf record number */
char *KeyBuf; /* work area key buffer */
char *KeyBuf2; /* work area key buffer */
/* private functions */
xbLong GetLeftNodeNo( xbShort, xbNdxNodeLink * );
#ifndef XB_INLINE_COMPAREKEY
xbShort CompareKey( const char *Key1, const char *Key2, xbShort Klen );
#else
//! Short description.
/*!
*/
inline xbShort CompareKey( const char *Key1, const char *Key2, xbShort Klen )
{
#if 0
const char *k1, *k2;
xbShort i;
#endif
xbDouble d1, d2;
int c;
if(!( Key1 && Key2 )) return -1;
if( Klen > HeadNode.KeyLen ) Klen = HeadNode.KeyLen;
if( HeadNode.KeyType == 0 )
{
c = memcmp(Key1, Key2, Klen);
if(c < 0)
return 2;
else if(c > 0)
return 1;
return 0;
}
else /* key is numeric */
{
d1 = dbf->xbase->GetDouble( Key1 );
d2 = dbf->xbase->GetDouble( Key2 );
if( d1 == d2 ) return 0;
else if( d1 > d2 ) return 1;
else return 2;
}
}
#endif
#ifndef XB_INLINE_GETDBFNO
xbLong GetDbfNo( xbShort, xbNdxNodeLink * );
#else
//! Short description.
/*!
*/
inline xbLong GetDbfNo( xbShort RecNo, xbNdxNodeLink *n )
{
xbNdxLeafNode *temp;
char *p;
if( !n ) return 0L;
temp = &n->Leaf;
if( RecNo < 0 || RecNo > ( temp->NoOfKeysThisNode - 1 )) return 0L;
p = temp->KeyRecs + 4;
p += RecNo * ( 8 + HeadNode.KeyLen );
return( dbf->xbase->GetLong( p ));
}
#endif
char * GetKeyData( xbShort, xbNdxNodeLink * );
xbUShort GetKeysPerNode();
xbShort GetHeadNode();
xbShort GetLeafNode( xbLong, xbShort );
xbNdxNodeLink * GetNodeMemory();
void ReleaseNodeMemory( xbNdxNodeLink * );
xbShort BSearchNode(const char *key, xbShort klen,
const xbNdxNodeLink *node,
xbShort *comp);
xbLong GetLeafFromInteriorNode( const char *Tkey, xbShort Klen );
xbShort CalcKeyLen();
xbShort PutKeyData( xbShort, xbNdxNodeLink * );
xbShort PutLeftNodeNo( xbShort, xbNdxNodeLink *, xbLong );
xbShort PutLeafNode( xbLong, xbNdxNodeLink * );
xbShort PutHeadNode( xbNdxHeadNode *, FILE *, xbShort );
xbShort PutDbfNo( xbShort, xbNdxNodeLink *, xbLong );
xbShort PutKeyInNode( xbNdxNodeLink *, xbShort, xbLong, xbLong, xbShort );
xbShort SplitLeafNode( xbNdxNodeLink *, xbNdxNodeLink *, xbShort, xbLong );
xbShort SplitINode( xbNdxNodeLink *, xbNdxNodeLink *, xbLong );
xbShort AddToIxList();
xbShort RemoveFromIxList();
xbShort RemoveKeyFromNode( xbShort, xbNdxNodeLink * );
xbShort FindKey( const char *Tkey, xbShort Klen, xbShort RetrieveSw );
xbShort UpdateParentKey( xbNdxNodeLink * );
xbShort GetFirstKey( xbShort );
xbShort GetNextKey( xbShort );
xbShort GetLastKey( xbLong, xbShort );
xbShort GetPrevKey( xbShort );
void UpdateDeleteList( xbNdxNodeLink * );
void ProcessDeleteList();
xbNdxNodeLink * LeftSiblingHasSpace( xbNdxNodeLink * );
xbNdxNodeLink * RightSiblingHasSpace( xbNdxNodeLink * );
xbShort DeleteSibling( xbNdxNodeLink * );
xbShort MoveToLeftNode( xbNdxNodeLink *, xbNdxNodeLink * );
xbShort MoveToRightNode( xbNdxNodeLink *, xbNdxNodeLink * );
xbShort FindKey( const char *Tkey, xbLong DbfRec ); /* for a specific dbf no */
xbShort CloneNodeChain();
xbShort UncloneNodeChain();
//#ifdef XB_LOCKING_ON
// xbShort LockIndex( const xbShort, const xbShort ) const;
//#else
// xbShort LockIndex( const xbShort, const xbShort ) const { return NO_ERROR; }
//#endif
};
#endif /* __XB_NDX_H__ */
|