/*      
** avl_tree.h	AVL Balanced Tree Library Header
**
** Copyright (c) 1996  Hughes Technologies Pty Ltd
**
*************************************************************************
**
*/

#ifndef __AVL_TREE_H
#define __AVL_TREE_H

/* 
** AVL Tree Flags 
*/
#define	AVL_UNIQUE	1
#define	AVL_DUP		2


/* 
** AVL Tree Types 
*/
#define	AVL_BYTE	0x0001
#define	AVL_CHAR	0x0002
#define AVL_INT		0x0003
#define AVL_REAL	0x0004


/* 
** AVL Tree Dump Options 
*/
#define AVL_QUIET	0
#define	AVL_VERBOSE	1


/*
** AVL Tree lookup options
*/
#define	AVL_EXACT	1
#define AVL_CLOSEST	2

/*
** Return Codes
*/
#define	AVL_OK		0
#define AVL_DUP_ERR	-1
#define AVL_NOT_FOUND	-2


typedef struct {
	int	magic,		/* Magic number for tree (for testing) */
		keyLen,		/* Length of key values */
		nodeLen,	/* On disk node length */
		keyType,	/* Data type  of key */
		flags;		/* Flags for unique etc. */
	int	root,		/* Node number of tree root */
		freeList;	/* Node number of start of free list */
} avl_sbk;


typedef struct {
	char	*mapRegion,	/* Pointer to mapping of the file */
		*oldRegion;	/* Pointer to last mapping location*/
	off_t	mapLen,		/* Length of file mapping */
		oldLen;		/* Length of last mapping */
	avl_sbk	*sblk;		/* Pointer to file superblock */
	int	fd,		/* Open file descriptor of tree file */
		remapped,	/* Flag to indicate the tree was remapped */
		curNode;	/* Flags last node of last tree search */
} avltree;



typedef struct {
	int	curNode,	/* Current node for get/next */
		curDup;		/* Current dup for get/next */
} avl_cur;


typedef struct node_s {
	int	nodeNum,	/* Node number for this node */
		left,		/* Node number of left node */
		right,		/* Node number of right node */
		parent,		/* Node number of parent node */
		dup;		/* Node number of head of dup list */
	short	height;		/* Node height indicator */
	char	*key;		/* Pointer to key value */
	off_t	data;		/* Offset value for main data table */
} avl_nod;


/* Prototypes */

int 	avlCreate();
void	avlDumpTree();
void	avlSetCursor();
avltree	*avlOpen();
avl_nod	*avlFindNode();
avl_nod	*avlGetFirst();
avl_nod	*avlGetNext();
avl_nod	*avlGetPrev();
avl_nod	*avlLookup();

#endif
