229 lines
6.2 KiB
C
229 lines
6.2 KiB
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Harbour Project source code:
|
|
* DBFCDX RDD
|
|
*
|
|
* Copyright 1999 Bruno Cantero <bruno@issnet.net>
|
|
* Copyright 2000 Horacio Roldán <horacioroldan@usa.net> (portions)
|
|
* www - http://www.harbour-project.org
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version, with one exception:
|
|
*
|
|
* The exception is that if you link the Harbour Runtime Library (HRL)
|
|
* and/or the Harbour Virtual Machine (HVM) with other files to produce
|
|
* an executable, this does not by itself cause the resulting executable
|
|
* to be covered by the GNU General Public License. Your use of that
|
|
* executable is in no way restricted on account of linking the HRL
|
|
* and/or HVM code into it.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit
|
|
* their web site at http://www.gnu.org/).
|
|
*
|
|
*/
|
|
|
|
|
|
//#define LOCK_START 0x40000000L
|
|
//#define LOCK_APPEND 0x7FFFFFFEL
|
|
//#define LOCK_FILE 0x3FFFFFFFL
|
|
//#define MEMO_BLOCK 64
|
|
//#define CDX_MAX_KEY 240
|
|
//#define CDX_MAX_TAG_NAME_LEN 10
|
|
//#define CDX_BLOCK_SIZE 512
|
|
#define CDX_INTERNAL_SPACE 500
|
|
#define CDX_EXTERNAL_SPACE 488
|
|
#define CDX_MAX_REC_NUM 0x7FFFFFFFL
|
|
#define CDX_IGNORE_REC_NUM -1
|
|
#define PAGE_ROOT 1
|
|
#define PAGE_NODE 2
|
|
#define PAGE_LEAF 3
|
|
#define TOP_RECORD 1
|
|
#define BTTM_RECORD 2
|
|
#define PREV_RECORD 3
|
|
#define NEXT_RECORD 4
|
|
#define SORT_CHUNK_LIMIT 16384
|
|
#define SORT_ACTIVE_LIST 0
|
|
#define SORT_END_OF_KEY 1
|
|
#define SORT_END_OF_WORD 2
|
|
#define SORT_STACK_OF_CHAR 3
|
|
#define SORT_NOT_KEY 0x10
|
|
|
|
|
|
#if (__BORLANDC__ > 1040) /* Use this only above Borland C++ 3.1 */
|
|
#pragma option -a1 /* byte alignment */
|
|
#endif
|
|
#if defined(__GNUC__)
|
|
#pragma pack(1)
|
|
#endif
|
|
#if defined(__WATCOMC__)
|
|
#pragma pack(push, 1);
|
|
#endif
|
|
|
|
typedef struct
|
|
{
|
|
USHORT FreeSpace;
|
|
LONG RecNumMask;
|
|
BYTE DupCntMask;
|
|
BYTE TrlCntMask;
|
|
BYTE RecNumBits;
|
|
BYTE DupCntBits;
|
|
BYTE TrlCntBits;
|
|
BYTE ShortBytes;
|
|
BYTE ExtData[ CDX_EXTERNAL_SPACE ];
|
|
} CDXEXTERNAL;
|
|
typedef struct
|
|
{
|
|
BYTE IntData[ CDX_INTERNAL_SPACE ];
|
|
} CDXINTERNAL;
|
|
typedef struct _CDXDATA
|
|
{
|
|
USHORT Node_Atr;
|
|
USHORT Entry_Ct;
|
|
LONG Left_Ptr;
|
|
LONG Rght_Ptr;
|
|
union
|
|
{
|
|
CDXEXTERNAL External;
|
|
CDXINTERNAL Internal;
|
|
} cdxu;
|
|
} CDXDATA;
|
|
#if (__BORLANDC__ > 1040) /* Use this only above Borland C++ 3.1 */
|
|
#pragma option -a /* default alignment */
|
|
#endif
|
|
#if defined(__GNUC__)
|
|
#pragma pack()
|
|
#endif
|
|
#if defined(__WATCOMC__)
|
|
#pragma pack(pop);
|
|
#endif
|
|
typedef CDXDATA * LPCDXDATA;
|
|
|
|
typedef struct _KEYINFO
|
|
{
|
|
char * Value;
|
|
ULONG length;
|
|
BOOL fString;
|
|
LONG Tag;
|
|
LONG Xtra;
|
|
struct _KEYINFO * pNext;
|
|
} KEYINFO;
|
|
typedef KEYINFO * LPKEYINFO;
|
|
|
|
struct _CDXTAG; /* forward declaration */
|
|
|
|
typedef struct HB_PAGEINFO_STRU
|
|
{
|
|
LONG Page;
|
|
LONG Left;
|
|
LONG Right;
|
|
BOOL Changed;
|
|
BOOL NewRoot;
|
|
BOOL LastEntry;
|
|
BOOL Reload;
|
|
BOOL ChkBOF;
|
|
BOOL ChkEOF;
|
|
BYTE PageType;
|
|
LONG RNMask;
|
|
BYTE ReqByte;
|
|
BYTE RNBits;
|
|
BYTE DCBits;
|
|
BYTE TCBits;
|
|
BYTE DCMask;
|
|
BYTE TCMask;
|
|
USHORT Space;
|
|
LPKEYINFO pKeys;
|
|
USHORT uiKeys;
|
|
SHORT CurKey;
|
|
struct HB_PAGEINFO_STRU * Owner;
|
|
struct HB_PAGEINFO_STRU * Child;
|
|
struct _CDXTAG * TagParent;
|
|
} HB_PAGEINFO;
|
|
typedef HB_PAGEINFO * LPPAGEINFO;
|
|
|
|
|
|
/*SORT stuff*/
|
|
typedef struct
|
|
{
|
|
BYTE Character;
|
|
BYTE NUse;
|
|
USHORT WordArray;
|
|
USHORT Fill02;
|
|
USHORT LevelLink;
|
|
} SORT_A;
|
|
|
|
|
|
typedef struct
|
|
{
|
|
BYTE Fill03[ 4 ];
|
|
BYTE ChrStack[ 4 ];
|
|
} SORT_B;
|
|
|
|
|
|
typedef struct
|
|
{
|
|
LONG Fill04;
|
|
LONG ChrFill;
|
|
} SORT_C;
|
|
|
|
#define SORT_GET_NUSE(w) (w & 0x07)
|
|
#define SORT_SET_NUSE(w,n) (w = (w & 0xF8) | n )
|
|
#define SORT_GET_STACK_LEN(w) (w >> 6)
|
|
#define SORT_SET_STACK_LEN(w,n) (w = (w & 0x3f) | n << 6)
|
|
|
|
typedef struct
|
|
{
|
|
union
|
|
{
|
|
SORT_A A;
|
|
SORT_B B;
|
|
SORT_C C;
|
|
} sortu;
|
|
} SORTDATA;
|
|
|
|
typedef SORTDATA * LPSORTDATA;
|
|
|
|
typedef struct
|
|
{
|
|
LONG WordCount;
|
|
LONG RootLink;
|
|
LONG LevelPtr;
|
|
LONG PriorPtr;
|
|
LONG KeyTot;
|
|
LONG KeyCnt;
|
|
LONG LastTag;
|
|
LONG * ChunkList;
|
|
BYTE * SortBuffer;
|
|
USHORT SortChunk;
|
|
USHORT NodeLimit;
|
|
USHORT NodeMask;
|
|
USHORT NodeShift;
|
|
USHORT ChunkSize;
|
|
USHORT ChunkLimit;
|
|
USHORT ChunkCur;
|
|
USHORT NodeCur;
|
|
USHORT KeySize;
|
|
USHORT WCur;
|
|
BOOL Unique;
|
|
BOOL Ascend;
|
|
BOOL Closing;
|
|
BYTE WPch[ 256 ];
|
|
SORTDATA * WAdr;
|
|
struct _CDXTAG * CurTag;
|
|
LPCDXDATA NodeList[ 32 ];
|
|
LPKEYINFO KeyWork;
|
|
LPKEYINFO LastKey;
|
|
} SORTINFO;
|
|
|
|
typedef SORTINFO * LPSORTINFO; |