2004-06-24 21:10:31 +00:00
|
|
|
/*---
|
|
|
|
This software is copyrighted by the Regents of the University of
|
|
|
|
California, and other parties. The following terms apply to all files
|
|
|
|
associated with the software unless explicitly disclaimed in
|
|
|
|
individual files.
|
|
|
|
|
|
|
|
The authors hereby grant permission to use, copy, modify, distribute,
|
|
|
|
and license this software and its documentation for any purpose,
|
|
|
|
provided that existing copyright notices are retained in all copies
|
|
|
|
and that this notice is included verbatim in any distributions. No
|
|
|
|
written agreement, license, or royalty fee is required for any of the
|
|
|
|
authorized uses. Modifications to this software may be copyrighted by
|
|
|
|
their authors and need not follow the licensing terms described here,
|
|
|
|
provided that the new terms are clearly indicated on the first page of
|
|
|
|
each file where they apply.
|
|
|
|
|
|
|
|
IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
|
|
|
|
FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
|
|
ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
|
|
|
|
DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
|
|
|
|
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
|
|
|
|
NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, AND
|
|
|
|
THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE
|
|
|
|
MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
|
|
|
|
GOVERNMENT USE: If you are acquiring this software on behalf of the
|
|
|
|
U.S. government, the Government shall have only "Restricted Rights" in
|
|
|
|
the software and related documentation as defined in the Federal
|
|
|
|
Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you are
|
|
|
|
acquiring the software on behalf of the Department of Defense, the
|
|
|
|
software shall be classified as "Commercial Computer Software" and the
|
|
|
|
Government shall have only "Restricted Rights" as defined in Clause
|
|
|
|
252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
|
|
|
|
authors grant the U.S. Government and others acting in its behalf
|
|
|
|
permission to use and distribute the software in accordance with the
|
|
|
|
terms specified in this license.
|
|
|
|
---*/
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*
|
|
|
|
* defines various constants
|
|
|
|
*
|
|
|
|
* @todo Sometime, LLADD's #includes need to be cleaned up. In
|
|
|
|
* particular, we should make sure everything directly or indirectly
|
|
|
|
* includes this file, common.h, and constants.h
|
|
|
|
*
|
|
|
|
* @ingroup LLADD_CORE
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONSTANTS_H__
|
|
|
|
#define __CONSTANTS_H__
|
|
|
|
|
|
|
|
/*#define DEBUG 1*/
|
|
|
|
|
|
|
|
#define LOG_FILE "logfile.txt"
|
2004-07-01 00:53:36 +00:00
|
|
|
#define LOG_FILE_SCRATCH "logfile.txt~"
|
2004-06-24 21:10:31 +00:00
|
|
|
#define STORE_FILE "storefile.txt"
|
|
|
|
#define BLOB0_FILE "blob0_file.txt"
|
|
|
|
#define BLOB1_FILE "blob1_file.txt"
|
|
|
|
|
2005-02-28 00:00:17 +00:00
|
|
|
/*
|
|
|
|
define error codes
|
2004-06-24 21:10:31 +00:00
|
|
|
*/
|
2005-02-08 01:13:57 +00:00
|
|
|
#define LLADD_DEADLOCK -1
|
|
|
|
#define LLADD_NO_MEM -2
|
|
|
|
#define LLADD_IO_ERROR -3
|
|
|
|
#define LLADD_INTERNAL_ERROR -4
|
|
|
|
|
|
|
|
//#define FILE_OPRN_ERROR 2
|
|
|
|
//#define FILE_READ_ERROR 3
|
|
|
|
//#define FILE_WRITE_ERROR 4
|
|
|
|
//#define FILE_WRITE_OPEN_ERROR 5
|
|
|
|
//#define MEM_WRITE_ERROR 6
|
2004-06-24 21:10:31 +00:00
|
|
|
|
|
|
|
#define PAGE_SIZE 4096
|
|
|
|
|
2004-10-06 06:08:09 +00:00
|
|
|
/* #define MAX_BUFFER_SIZE 100003 */
|
2005-01-14 01:52:53 +00:00
|
|
|
/*#define MAX_BUFFER_SIZE 20029 */
|
2005-03-12 22:11:18 +00:00
|
|
|
#define MAX_BUFFER_SIZE 10007
|
2005-01-14 10:08:10 +00:00
|
|
|
/*#define MAX_BUFFER_SIZE 5003*/
|
2005-03-12 22:11:18 +00:00
|
|
|
/*#define MAX_BUFFER_SIZE 2003 */
|
2004-10-06 06:08:09 +00:00
|
|
|
/* #define MAX_BUFFER_SIZE 71 */
|
2004-07-27 22:04:59 +00:00
|
|
|
/*#define MAX_BUFFER_SIZE 7 */
|
|
|
|
/*#define BUFFER_ASOOCIATIVE 2 */
|
2004-06-24 21:10:31 +00:00
|
|
|
|
2005-03-12 22:11:18 +00:00
|
|
|
#define MAX_TRANSACTIONS 100000
|
2004-06-24 21:10:31 +00:00
|
|
|
|
|
|
|
/** Operation types */
|
|
|
|
|
2004-08-03 02:04:56 +00:00
|
|
|
#define NO_INVERSE_WHOLE_PAGE -2
|
|
|
|
#define NO_INVERSE -1
|
|
|
|
#define OPERATION_SET 0
|
|
|
|
#define OPERATION_INCREMENT 1
|
|
|
|
#define OPERATION_DECREMENT 2
|
|
|
|
#define OPERATION_ALLOC 3
|
|
|
|
#define OPERATION_PREPARE 4
|
|
|
|
#define OPERATION_LHINSERT 5
|
|
|
|
#define OPERATION_LHREMOVE 6
|
|
|
|
#define OPERATION_DEALLOC 7
|
2004-10-02 07:29:34 +00:00
|
|
|
#define OPERATION_REALLOC 8
|
|
|
|
/*#define OPERATION_PAGE_ALLOC ?
|
2004-08-21 00:03:30 +00:00
|
|
|
#define OPERATION_PAGE_DEALLOC 9 */
|
2004-08-03 02:04:56 +00:00
|
|
|
#define OPERATION_PAGE_SET 10
|
2004-08-21 00:03:30 +00:00
|
|
|
#define OPERATION_UPDATE_FREESPACE 11
|
|
|
|
#define OPERATION_UPDATE_FREESPACE_INVERSE 12
|
|
|
|
#define OPERATION_UPDATE_FREELIST 13
|
|
|
|
#define OPERATION_UPDATE_FREELIST_INVERSE 14
|
|
|
|
#define OPERATION_FREE_PAGE 15
|
|
|
|
#define OPERATION_ALLOC_FREED 16
|
|
|
|
#define OPERATION_UNALLOC_FREED 17
|
2004-10-02 07:29:34 +00:00
|
|
|
#define OPERATION_NOOP 18
|
|
|
|
#define OPERATION_INSTANT_SET 19
|
2004-10-06 06:08:09 +00:00
|
|
|
#define OPERATION_ARRAY_LIST_ALLOC 20
|
|
|
|
#define OPERATION_INITIALIZE_FIXED_PAGE 21
|
|
|
|
#define OPERATION_UNINITIALIZE_PAGE 22
|
2004-10-18 18:24:54 +00:00
|
|
|
#define OPERATION_LINEAR_INSERT 23
|
|
|
|
#define OPERATION_UNDO_LINEAR_INSERT 24
|
|
|
|
#define OPERATION_LINEAR_DELETE 25
|
|
|
|
#define OPERATION_UNDO_LINEAR_DELETE 26
|
2004-12-03 00:27:47 +00:00
|
|
|
#define OPERATION_SET_RANGE 27
|
|
|
|
#define OPERATION_SET_RANGE_INVERSE 28
|
2005-01-14 10:08:10 +00:00
|
|
|
#define OPERATION_LINKED_LIST_INSERT 29
|
|
|
|
#define OPERATION_LINKED_LIST_REMOVE 30
|
2005-01-15 01:45:27 +00:00
|
|
|
#define OPERATION_LINEAR_HASH_INSERT 31
|
|
|
|
#define OPERATION_LINEAR_HASH_REMOVE 32
|
|
|
|
|
2004-06-24 21:10:31 +00:00
|
|
|
/* number above should be less than number below */
|
2004-10-02 07:29:34 +00:00
|
|
|
#define MAX_OPERATIONS 40
|
2004-06-24 21:10:31 +00:00
|
|
|
|
2004-08-21 00:03:30 +00:00
|
|
|
/** This constant is used as a placeholder to mark slot locations that are invalid.
|
|
|
|
@see slotted.c, indirect.c
|
|
|
|
*/
|
2004-06-24 21:10:31 +00:00
|
|
|
#define INVALID_SLOT PAGE_SIZE
|
2005-01-31 01:29:52 +00:00
|
|
|
/** This constant is used as a placeholder to mark slot locations that contain blobs.
|
|
|
|
@see slotted.c, indirect.c, blobManager.c */
|
|
|
|
#define BLOB_SLOT (PAGE_SIZE + 1)
|
2004-08-21 00:03:30 +00:00
|
|
|
|
|
|
|
/* #define NORMAL_SLOT (PAGE_SIZE + 1)
|
|
|
|
#define BLOB_SLOT (PAGE_SIZE + 2)*/
|
2004-07-04 00:46:49 +00:00
|
|
|
|
2005-01-31 01:29:52 +00:00
|
|
|
/* * @ deprecated Replace all occurrances with sizeof(blob_record_t) */
|
|
|
|
//#define BLOB_REC_SIZE sizeof(blob_record_t) /*12*/
|
|
|
|
|
2004-06-24 21:10:31 +00:00
|
|
|
#define BLOB_THRESHOLD_SIZE (PAGE_SIZE-30)
|
|
|
|
|
|
|
|
#define BITS_PER_BYTE 8
|
|
|
|
|
|
|
|
/** Log entry types. (Not to be confused with operation types, which are more interesting.) */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Definitions for different types of logs
|
|
|
|
*/
|
|
|
|
#define UPDATELOG 1
|
|
|
|
#define XBEGIN 2
|
|
|
|
#define XCOMMIT 3
|
|
|
|
#define XABORT 4
|
|
|
|
/* Folded into update log entries */
|
|
|
|
/*#define XALLOC 5*/
|
2004-07-04 00:46:49 +00:00
|
|
|
/**
|
|
|
|
XEND is used for after the pages touched by a transaction have
|
|
|
|
been flushed to stable storage.
|
|
|
|
|
|
|
|
@todo Actually write XEND entries to the log so that log
|
|
|
|
truncation can be implemented!
|
|
|
|
|
|
|
|
*/
|
2004-06-24 21:10:31 +00:00
|
|
|
#define XEND 6
|
|
|
|
#define CLRLOG 7
|
|
|
|
|
2005-02-16 04:11:14 +00:00
|
|
|
/* Page types */
|
|
|
|
|
|
|
|
#define UNINITIALIZED_PAGE 0
|
|
|
|
#define SLOTTED_PAGE 1
|
|
|
|
#define INDIRECT_PAGE 2
|
|
|
|
#define LLADD_HEADER_PAGE 3
|
|
|
|
#define LLADD_FREE_PAGE 4
|
|
|
|
#define FIXED_PAGE 5
|
|
|
|
#define ARRAY_LIST_PAGE 6
|
|
|
|
|
|
|
|
/* Record types */
|
|
|
|
|
|
|
|
#define UNINITIALIZED_RECORD 0
|
|
|
|
#define BLOB_RECORD 1
|
|
|
|
#define SLOTTED_RECORD 2
|
|
|
|
#define FIXED_RECORD 3
|
|
|
|
|
2004-06-24 21:10:31 +00:00
|
|
|
#endif
|