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.
|
|
|
|
---*/
|
|
|
|
/**
|
2009-04-13 21:55:08 +00:00
|
|
|
* @file
|
2004-06-24 21:10:31 +00:00
|
|
|
*
|
2009-04-13 21:55:08 +00:00
|
|
|
* A standard header file, adopted from Autobook.
|
2004-06-24 21:10:31 +00:00
|
|
|
*
|
2004-07-06 20:59:36 +00:00
|
|
|
* http://sources.redhat.com/autobook/
|
|
|
|
*
|
2004-07-06 01:22:18 +00:00
|
|
|
* The idea behind this file is twofold. First, we want to keep as
|
2006-10-05 00:46:18 +00:00
|
|
|
* much of the \#ifdef portability nonsense in here as possible.
|
|
|
|
* Second, we allow users to \#include headers that in turn \#include
|
2004-07-06 01:22:18 +00:00
|
|
|
* common.h. If they do so, then their code should continue to 'do
|
2009-04-13 22:50:12 +00:00
|
|
|
* the right thing' and build, even if they do not \#include the
|
2007-07-18 20:09:14 +00:00
|
|
|
* config.h file that all of the Stasis stuff uses.
|
2004-07-06 01:22:18 +00:00
|
|
|
*
|
2004-06-24 21:10:31 +00:00
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
2006-06-13 22:36:03 +00:00
|
|
|
//#define NDEBUG 1
|
2004-10-19 04:45:42 +00:00
|
|
|
|
2007-07-18 20:09:14 +00:00
|
|
|
#ifndef __stasis_common_h
|
|
|
|
#define __stasis_common_h
|
2010-01-21 00:03:17 +00:00
|
|
|
#define _XOPEN_SOURCE 600
|
2009-04-29 21:31:39 +00:00
|
|
|
#include <sys/types.h> // for size_t
|
|
|
|
|
2004-06-24 21:10:31 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
# define BEGIN_C_DECLS extern "C" {
|
|
|
|
# define END_C_DECLS }
|
|
|
|
#else /* !__cplusplus */
|
|
|
|
# define BEGIN_C_DECLS
|
|
|
|
# define END_C_DECLS
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2006-06-13 22:36:03 +00:00
|
|
|
#include <stdint.h> // uint32, et. al.
|
2009-04-13 22:50:12 +00:00
|
|
|
|
2006-06-12 21:50:21 +00:00
|
|
|
#include <limits.h>
|
|
|
|
|
2009-07-26 18:51:45 +00:00
|
|
|
//#if STDC_HEADERS
|
|
|
|
//# include <stdlib.h>
|
|
|
|
//# include <string.h>
|
|
|
|
//#elif HAVE_STRINGS_H
|
|
|
|
//# include <strings.h>
|
|
|
|
//#endif /*STDC_HEADERS*/
|
|
|
|
//
|
|
|
|
//#if HAVE_UNISTD_H
|
|
|
|
//# include <unistd.h>
|
|
|
|
//#endif
|
|
|
|
//
|
|
|
|
//#if HAVE_ERRNO_H
|
|
|
|
//# include <errno.h>
|
|
|
|
//#endif /*HAVE_ERRNO_H*/
|
|
|
|
//#ifndef errno
|
|
|
|
// /* Some systems define this! */
|
|
|
|
//extern int errno;
|
|
|
|
//#endif
|
|
|
|
|
|
|
|
#include<stdlib.h>
|
|
|
|
#include<string.h>
|
|
|
|
#include<unistd.h>
|
|
|
|
#include<errno.h>
|
2004-06-24 21:10:31 +00:00
|
|
|
|
2006-06-13 22:36:03 +00:00
|
|
|
//#define byte unsigned char
|
|
|
|
//#define lsn_t long
|
|
|
|
|
|
|
|
typedef unsigned char byte;
|
|
|
|
//@todo lsn_t should be unsigned.
|
|
|
|
// If it were unsigned, it could be typedef'ed from size_t.
|
2007-11-12 16:40:50 +00:00
|
|
|
// Setting these to int64_t makes printf cranky. :(
|
|
|
|
typedef long long lsn_t;
|
2006-08-11 19:31:42 +00:00
|
|
|
#define LSN_T_MAX INT64_MAX
|
2007-11-12 16:40:50 +00:00
|
|
|
typedef long long pageid_t;
|
2006-08-11 19:31:42 +00:00
|
|
|
#define PAGEID_T_MAX INT64_MAX
|
2008-09-28 03:11:24 +00:00
|
|
|
typedef int32_t slotid_t;
|
|
|
|
#define SLOTID_T_MAX INT32_MAX
|
2009-03-15 07:21:37 +00:00
|
|
|
typedef uint16_t pageoff_t;
|
|
|
|
#define PAGEOFF_T_MAX UINT16_MAX;
|
2004-07-20 00:15:17 +00:00
|
|
|
|
2009-07-07 19:20:22 +00:00
|
|
|
typedef int16_t pagetype_t;
|
|
|
|
#define PAGETYPE_T_MAX INT16_MAX;
|
|
|
|
|
2004-07-27 21:30:54 +00:00
|
|
|
/*#define DEBUGGING */
|
2004-10-19 04:45:42 +00:00
|
|
|
/*#define PROFILE_LATCHES*/
|
2004-10-19 21:16:37 +00:00
|
|
|
/*#define NO_LATCHES */
|
2004-07-04 00:46:49 +00:00
|
|
|
|
2010-01-20 23:51:54 +00:00
|
|
|
|
|
|
|
// ICK: Only way to portably shut up GCC warnings about variadic macros
|
|
|
|
#pragma GCC system_header
|
|
|
|
|
2009-04-13 21:55:08 +00:00
|
|
|
#ifdef DEBUGGING
|
2004-07-06 01:22:18 +00:00
|
|
|
/** @todo Files that use DEBUG have to pull in stdio.h, which is a pain! */
|
2004-06-24 21:10:31 +00:00
|
|
|
#define DEBUG(...) \
|
2009-04-13 21:55:08 +00:00
|
|
|
printf(__VA_ARGS__); fflush(NULL)
|
|
|
|
#else
|
2004-07-04 00:46:49 +00:00
|
|
|
#define DEBUG(...)
|
2007-10-22 20:31:16 +00:00
|
|
|
#endif /*DEBUGGING*/
|
2004-07-04 00:46:49 +00:00
|
|
|
|
2008-09-28 03:11:24 +00:00
|
|
|
/**
|
|
|
|
* represents how to look up a record on a page
|
|
|
|
* @todo int64_t (for recordid.size) is a stopgap fix.
|
|
|
|
*/
|
2009-11-30 01:01:30 +00:00
|
|
|
#pragma pack(push,1)
|
2008-09-28 03:11:24 +00:00
|
|
|
typedef struct {
|
|
|
|
pageid_t page;
|
|
|
|
slotid_t slot;
|
|
|
|
int64_t size;
|
|
|
|
} recordid;
|
2009-11-30 01:01:30 +00:00
|
|
|
#pragma pack(pop)
|
2008-09-28 03:11:24 +00:00
|
|
|
|
2009-04-13 22:50:12 +00:00
|
|
|
// TODO move blob_record_t into an operation header.
|
2009-11-30 01:01:30 +00:00
|
|
|
#pragma pack(push,1)
|
2009-04-13 22:50:12 +00:00
|
|
|
typedef struct {
|
|
|
|
size_t offset;
|
|
|
|
size_t size;
|
|
|
|
// unsigned fd : 1;
|
|
|
|
} blob_record_t;
|
2009-11-30 01:01:30 +00:00
|
|
|
#pragma pack(pop)
|
2009-04-13 22:50:12 +00:00
|
|
|
|
2009-04-13 21:55:08 +00:00
|
|
|
/*
|
|
|
|
Define Page as an incomplete type to hide its implementation from clients.
|
|
|
|
|
|
|
|
Include stasis/page.h for the complete definition.
|
|
|
|
*/
|
|
|
|
typedef struct Page_s Page;
|
|
|
|
|
2009-11-24 00:24:18 +00:00
|
|
|
#define STLSEARCH
|
|
|
|
|
2005-02-16 04:11:14 +00:00
|
|
|
#include "compensations.h"
|
|
|
|
|
2007-07-18 20:09:14 +00:00
|
|
|
#endif /* __stasis_common_h */
|