]> granicus.if.org Git - postgresql/blobdiff - src/include/c.h
Remove define inadvertantly left over from testing.
[postgresql] / src / include / c.h
index abc3923f9d2192d86225f8e3b24c9f5077eeb013..5bed7190da5180bb88dc39c3ad5c0fe6f6b64902 100644 (file)
@@ -2,17 +2,22 @@
  *
  * c.h
  *       Fundamental C definitions.  This is included by every .c file in
- *       postgres.
+ *       PostgreSQL (via either postgres.h or postgres_fe.h, as appropriate).
  *
+ *       Note that the definitions here are not intended to be exposed to clients
+ *       of the frontend interface libraries --- so we don't worry much about
+ *       polluting the namespace with lots of stuff...
  *
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ *
+ * Portions Copyright (c) 1996-2011, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $Id: c.h,v 1.68 2000/04/12 05:29:10 momjian Exp $
+ * src/include/c.h
  *
  *-------------------------------------------------------------------------
  */
 /*
+ *----------------------------------------------------------------
  *      TABLE OF CONTENTS
  *
  *             When adding stuff to this file, please try to put stuff
  *
  *       section       description
  *       -------       ------------------------------------------------
- *             1)              bool, true, false, TRUE, FALSE, NULL
- *             2)              non-ansi C definitions:
- *                             type prefixes: const, signed, volatile, inline
- *                             cpp magic macros
+ *             0)              pg_config.h and standard system headers
+ *             1)              hacks to cope with non-ANSI C compilers
+ *             2)              bool, true, false, TRUE, FALSE, NULL
  *             3)              standard system types
- *             4)              datum type
- *             5)              IsValid macros for system types
- *             6)              offsetof, lengthof, endof
- *             7)              exception handling definitions, Assert, Trap, etc macros
- *             8)              Min, Max, Abs, StrNCpy macros
- *             9)              externs
- *             10)             Berkeley-specific defs
- *             11)             system-specific hacks
+ *             4)              IsValid macros for system types
+ *             5)              offsetof, lengthof, endof, alignment
+ *             6)              widely useful macros
+ *             7)              random stuff
+ *             8)              system-specific hacks
  *
- * ----------------------------------------------------------------
+ * NOTE: since this file is included by both frontend and backend modules, it's
+ * almost certainly wrong to put an "extern" declaration here. typedefs and
+ * macros are the kind of thing that might go here.
+ *
+ *----------------------------------------------------------------
  */
 #ifndef C_H
 #define C_H
 
-/* We have to include stdlib.h here because it defines many of these macros
-   on some platforms, and we only want our definitions used if stdlib.h doesn't
-   have its own.  The same goes for stddef and stdarg if present.
-*/
+/*
+ * We have to include stdlib.h here because it defines many of these macros
+ * on some platforms, and we only want our definitions used if stdlib.h doesn't
+ * have its own.  The same goes for stddef and stdarg if present.
+ */
 
-#include "config.h"
+#include "pg_config.h"
+#include "pg_config_manual.h"  /* must be after pg_config.h */
+#if !defined(WIN32) && !defined(__CYGWIN__)            /* win32 will include further
+                                                                                                * down */
+#include "pg_config_os.h"              /* must be before any system header files */
+#endif
+#include "postgres_ext.h"
 
+#if _MSC_VER >= 1400 || defined(HAVE_CRTDEFS_H)
+#define errcode __msvc_errcode
+#include <crtdefs.h>
+#undef errcode
+#endif
 
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-#ifdef STDC_HEADERS
 #include <stddef.h>
 #include <stdarg.h>
+#ifdef HAVE_STRINGS_H
+#include <strings.h>
+#endif
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
 #endif
+#include <sys/types.h>
 
-#ifdef __CYGWIN32__
 #include <errno.h>
+#if defined(WIN32) || defined(__CYGWIN__)
+#include <fcntl.h>                             /* ensure O_BINARY is available */
 #endif
-
-/* ----------------------------------------------------------------
- *                             Section 1:      bool, true, false, TRUE, FALSE, NULL
- * ----------------------------------------------------------------
- */
-/*
- * bool
- *             Boolean value, either true or false.
- *
- */
-#ifndef __cplusplus
-#ifndef bool
-typedef char bool;
-
-#endif  /* ndef bool */
-#endif  /* not C++ */
-#ifndef true
-#define true   ((bool) 1)
+#ifdef HAVE_SUPPORTDEFS_H
+#include <SupportDefs.h>
 #endif
-#ifndef false
-#define false  ((bool) 0)
+
+#if defined(WIN32) || defined(__CYGWIN__)
+/* We have to redefine some system functions after they are included above. */
+#include "pg_config_os.h"
 #endif
-typedef bool *BoolPtr;
 
-#ifndef TRUE
-#define TRUE   1
-#endif  /* TRUE */
+/* Must be before gettext() games below */
+#include <locale.h>
 
-#ifndef FALSE
-#define FALSE  0
-#endif  /* FALSE */
+#define _(x) gettext(x)
+
+#ifdef ENABLE_NLS
+#include <libintl.h>
+#else
+#define gettext(x) (x)
+#define dgettext(d,x) (x)
+#define ngettext(s,p,n) ((n) == 1 ? (s) : (p))
+#define dngettext(d,s,p,n) ((n) == 1 ? (s) : (p))
+#endif
 
 /*
- * NULL
- *             Null pointer.
+ *     Use this to mark string constants as needing translation at some later
+ *     time, rather than immediately.  This is useful for cases where you need
+ *     access to the original string and translated string, and for cases where
+ *     immediate translation is not possible, like when initializing global
+ *     variables.
+ *             http://www.gnu.org/software/autoconf/manual/gettext/Special-cases.html
  */
-#ifndef NULL
-#define NULL   ((void *) 0)
-#endif  /* !defined(NULL) */
+#define gettext_noop(x) (x)
+
 
 /* ----------------------------------------------------------------
- *                             Section 2: non-ansi C definitions:
+ *                             Section 1: hacks to cope with non-ANSI C compilers
  *
- *                             type prefixes: const, signed, volatile, inline
- *                             cpp magic macros
+ * type prefixes (const, signed, volatile, inline) are handled in pg_config.h.
  * ----------------------------------------------------------------
  */
 
@@ -119,7 +135,6 @@ typedef bool *BoolPtr;
 
 #define CppAsString(identifier) #identifier
 #define CppConcat(x, y)                        x##y
-
 #else                                                  /* !HAVE_STRINGIZE */
 
 #define CppAsString(identifier) "identifier"
@@ -134,8 +149,7 @@ typedef bool *BoolPtr;
  */
 #define _priv_CppIdentity(x)x
 #define CppConcat(x, y)                        _priv_CppIdentity(x)y
-
-#endif  /* !HAVE_STRINGIZE */
+#endif   /* !HAVE_STRINGIZE */
 
 /*
  * dummyret is used to set return values in macros that use ?: to make
@@ -147,6 +161,57 @@ typedef bool *BoolPtr;
 #define dummyret       char
 #endif
 
+#ifndef __GNUC__
+#define __attribute__(_arg_)
+#endif
+
+/* ----------------------------------------------------------------
+ *                             Section 2:      bool, true, false, TRUE, FALSE, NULL
+ * ----------------------------------------------------------------
+ */
+
+/*
+ * bool
+ *             Boolean value, either true or false.
+ *
+ * XXX for C++ compilers, we assume the compiler has a compatible
+ * built-in definition of bool.
+ */
+
+#ifndef __cplusplus
+
+#ifndef bool
+typedef char bool;
+#endif
+
+#ifndef true
+#define true   ((bool) 1)
+#endif
+
+#ifndef false
+#define false  ((bool) 0)
+#endif
+#endif   /* not C++ */
+
+typedef bool *BoolPtr;
+
+#ifndef TRUE
+#define TRUE   1
+#endif
+
+#ifndef FALSE
+#define FALSE  0
+#endif
+
+/*
+ * NULL
+ *             Null pointer.
+ */
+#ifndef NULL
+#define NULL   ((void *) 0)
+#endif
+
+
 /* ----------------------------------------------------------------
  *                             Section 3:      standard system types
  * ----------------------------------------------------------------
@@ -167,9 +232,11 @@ typedef char *Pointer;
  *             used for numerical computations and the
  *             frontend/backend protocol.
  */
+#ifndef HAVE_INT8
 typedef signed char int8;              /* == 8 bits */
 typedef signed short int16;            /* == 16 bits */
 typedef signed int int32;              /* == 32 bits */
+#endif   /* not HAVE_INT8 */
 
 /*
  * uintN
@@ -177,30 +244,11 @@ typedef signed int int32;         /* == 32 bits */
  *             used for numerical computations and the
  *             frontend/backend protocol.
  */
+#ifndef HAVE_UINT8
 typedef unsigned char uint8;   /* == 8 bits */
 typedef unsigned short uint16; /* == 16 bits */
 typedef unsigned int uint32;   /* == 32 bits */
-
-/*
- * floatN
- *             Floating point number, AT LEAST N BITS IN SIZE,
- *             used for numerical computations.
- *
- *             Since sizeof(floatN) may be > sizeof(char *), always pass
- *             floatN by reference.
- */
-typedef float float32data;
-typedef double float64data;
-typedef float *float32;
-typedef double *float64;
-
-/*
- * boolN
- *             Boolean value, AT LEAST N BITS IN SIZE.
- */
-typedef uint8 bool8;                   /* >= 8 bits */
-typedef uint16 bool16;                 /* >= 16 bits */
-typedef uint32 bool32;                 /* >= 32 bits */
+#endif   /* not HAVE_UINT8 */
 
 /*
  * bitsN
@@ -211,13 +259,50 @@ typedef uint16 bits16;                    /* >= 16 bits */
 typedef uint32 bits32;                 /* >= 32 bits */
 
 /*
- * wordN
- *             Unit of storage, AT LEAST N BITS IN SIZE,
- *             used to fetch/store data.
+ * 64-bit integers
  */
-typedef uint8 word8;                   /* >= 8 bits */
-typedef uint16 word16;                 /* >= 16 bits */
-typedef uint32 word32;                 /* >= 32 bits */
+#ifdef HAVE_LONG_INT_64
+/* Plain "long int" fits, use it */
+
+#ifndef HAVE_INT64
+typedef long int int64;
+#endif
+#ifndef HAVE_UINT64
+typedef unsigned long int uint64;
+#endif
+#elif defined(HAVE_LONG_LONG_INT_64)
+/* We have working support for "long long int", use that */
+
+#ifndef HAVE_INT64
+typedef long long int int64;
+#endif
+#ifndef HAVE_UINT64
+typedef unsigned long long int uint64;
+#endif
+#else
+/* neither HAVE_LONG_INT_64 nor HAVE_LONG_LONG_INT_64 */
+#error must have a working 64-bit integer datatype
+#endif
+
+/* Decide if we need to decorate 64-bit constants */
+#ifdef HAVE_LL_CONSTANTS
+#define INT64CONST(x)  ((int64) x##LL)
+#define UINT64CONST(x) ((uint64) x##ULL)
+#else
+#define INT64CONST(x)  ((int64) x)
+#define UINT64CONST(x) ((uint64) x)
+#endif
+
+
+/* Select timestamp representation (float8 or int64) */
+#ifdef USE_INTEGER_DATETIMES
+#define HAVE_INT64_TIMESTAMP
+#endif
+
+/* sig_atomic_t is required by ANSI C, but may be missing on old platforms */
+#ifndef HAVE_SIG_ATOMIC_T
+typedef int sig_atomic_t;
+#endif
 
 /*
  * Size
@@ -234,12 +319,6 @@ typedef size_t Size;
  */
 typedef unsigned int Index;
 
-#define MAXDIM 6
-typedef struct
-{
-       int                     indx[MAXDIM];
-} IntArray;
-
 /*
  * Offset
  *             Offset into any memory resident array.
@@ -250,211 +329,143 @@ typedef struct
  */
 typedef signed int Offset;
 
-/* ----------------------------------------------------------------
- *                             Section 4:      datum type + support macros
- * ----------------------------------------------------------------
- */
 /*
- * datum.h
- *             POSTGRES abstract data type datum representation definitions.
- *
- * Note:
- *
- * Port Notes:
- *     Postgres makes the following assumption about machines:
- *
- *     sizeof(Datum) == sizeof(long) >= sizeof(void *) >= 4
- *
- *     Postgres also assumes that
- *
- *     sizeof(char) == 1
- *
- *     and that
- *
- *     sizeof(short) == 2
- *
- *     If your machine meets these requirements, Datums should also be checked
- *     to see if the positioning is correct.
+ * Common Postgres datatype names (as used in the catalogs)
  */
-
-typedef unsigned long Datum;   /* XXX sizeof(long) >= sizeof(void *) */
-typedef Datum *DatumPtr;
-
-#define GET_1_BYTE(datum)      (((Datum) (datum)) & 0x000000ff)
-#define GET_2_BYTES(datum)     (((Datum) (datum)) & 0x0000ffff)
-#define GET_4_BYTES(datum)     (((Datum) (datum)) & 0xffffffff)
-#define SET_1_BYTE(value)      (((Datum) (value)) & 0x000000ff)
-#define SET_2_BYTES(value)     (((Datum) (value)) & 0x0000ffff)
-#define SET_4_BYTES(value)     (((Datum) (value)) & 0xffffffff)
+typedef int16 int2;
+typedef int32 int4;
+typedef float float4;
+typedef double float8;
 
 /*
- * DatumGetChar
- *             Returns character value of a datum.
+ * Oid, RegProcedure, TransactionId, SubTransactionId, MultiXactId,
+ * CommandId
  */
 
-#define DatumGetChar(X) ((char) GET_1_BYTE(X))
+/* typedef Oid is in postgres_ext.h */
 
 /*
- * CharGetDatum
- *             Returns datum representation for a character.
+ * regproc is the type name used in the include/catalog headers, but
+ * RegProcedure is the preferred name in C code.
  */
+typedef Oid regproc;
+typedef regproc RegProcedure;
 
-#define CharGetDatum(X) ((Datum) SET_1_BYTE(X))
+typedef uint32 TransactionId;
 
-/*
- * Int8GetDatum
- *             Returns datum representation for an 8-bit integer.
- */
+typedef uint32 LocalTransactionId;
 
-#define Int8GetDatum(X) ((Datum) SET_1_BYTE(X))
+typedef uint32 SubTransactionId;
 
-/*
- * DatumGetUInt8
- *             Returns 8-bit unsigned integer value of a datum.
- */
+#define InvalidSubTransactionId                ((SubTransactionId) 0)
+#define TopSubTransactionId                    ((SubTransactionId) 1)
 
-#define DatumGetUInt8(X) ((uint8) GET_1_BYTE(X))
+/* MultiXactId must be equivalent to TransactionId, to fit in t_xmax */
+typedef TransactionId MultiXactId;
 
-/*
- * UInt8GetDatum
- *             Returns datum representation for an 8-bit unsigned integer.
- */
-
-#define UInt8GetDatum(X) ((Datum) SET_1_BYTE(X))
-
-/*
- * DatumGetInt16
- *             Returns 16-bit integer value of a datum.
- */
-
-#define DatumGetInt16(X) ((int16) GET_2_BYTES(X))
-
-/*
- * Int16GetDatum
- *             Returns datum representation for a 16-bit integer.
- */
+typedef uint32 MultiXactOffset;
 
-#define Int16GetDatum(X) ((Datum) SET_2_BYTES(X))
+typedef uint32 CommandId;
 
-/*
- * DatumGetUInt16
- *             Returns 16-bit unsigned integer value of a datum.
- */
-
-#define DatumGetUInt16(X) ((uint16) GET_2_BYTES(X))
+#define FirstCommandId ((CommandId) 0)
 
 /*
- * UInt16GetDatum
- *             Returns datum representation for a 16-bit unsigned integer.
+ * Array indexing support
  */
+#define MAXDIM 6
+typedef struct
+{
+       int                     indx[MAXDIM];
+} IntArray;
 
-#define UInt16GetDatum(X) ((Datum) SET_2_BYTES(X))
-
-/*
- * DatumGetInt32
- *             Returns 32-bit integer value of a datum.
- */
-
-#define DatumGetInt32(X) ((int32) GET_4_BYTES(X))
-
-/*
- * Int32GetDatum
- *             Returns datum representation for a 32-bit integer.
- */
-
-#define Int32GetDatum(X) ((Datum) SET_4_BYTES(X))
-
-/*
- * DatumGetUInt32
- *             Returns 32-bit unsigned integer value of a datum.
- */
-
-#define DatumGetUInt32(X) ((uint32) GET_4_BYTES(X))
-
-/*
- * UInt32GetDatum
- *             Returns datum representation for a 32-bit unsigned integer.
- */
-
-#define UInt32GetDatum(X) ((Datum) SET_4_BYTES(X))
-
-/*
- * DatumGetObjectId
- *             Returns object identifier value of a datum.
- */
-
-#define DatumGetObjectId(X) ((Oid) GET_4_BYTES(X))
-
-/*
- * ObjectIdGetDatum
- *             Returns datum representation for an object identifier.
- */
-
-#define ObjectIdGetDatum(X) ((Datum) SET_4_BYTES(X))
-
-/*
- * DatumGetPointer
- *             Returns pointer value of a datum.
- */
-
-#define DatumGetPointer(X) ((Pointer) (X))
-
-/*
- * PointerGetDatum
- *             Returns datum representation for a pointer.
- */
-
-#define PointerGetDatum(X) ((Datum) (X))
-
-/*
- * DatumGetName
- *             Returns name value of a datum.
- */
-
-#define DatumGetName(X) ((Name) DatumGetPointer((Datum) (X)))
-
-/*
- * NameGetDatum
- *             Returns datum representation for a name.
+/* ----------------
+ *             Variable-length datatypes all share the 'struct varlena' header.
+ *
+ * NOTE: for TOASTable types, this is an oversimplification, since the value
+ * may be compressed or moved out-of-line.     However datatype-specific routines
+ * are mostly content to deal with de-TOASTed values only, and of course
+ * client-side routines should never see a TOASTed value.  But even in a
+ * de-TOASTed value, beware of touching vl_len_ directly, as its representation
+ * is no longer convenient.  It's recommended that code always use the VARDATA,
+ * VARSIZE, and SET_VARSIZE macros instead of relying on direct mentions of
+ * the struct fields.  See postgres.h for details of the TOASTed form.
+ * ----------------
  */
+struct varlena
+{
+       char            vl_len_[4];             /* Do not touch this field directly! */
+       char            vl_dat[1];
+};
 
-#define NameGetDatum(X) PointerGetDatum((Pointer) (X))
-
+#define VARHDRSZ               ((int32) sizeof(int32))
 
 /*
- * DatumGetFloat32
- *             Returns 32-bit floating point value of a datum.
- *             This is really a pointer, of course.
+ * These widely-used datatypes are just a varlena header and the data bytes.
+ * There is no terminating null or anything like that --- the data length is
+ * always VARSIZE(ptr) - VARHDRSZ.
  */
-
-#define DatumGetFloat32(X) ((float32) DatumGetPointer(X))
+typedef struct varlena bytea;
+typedef struct varlena text;
+typedef struct varlena BpChar; /* blank-padded char, ie SQL char(n) */
+typedef struct varlena VarChar; /* var-length char, ie SQL varchar(n) */
 
 /*
- * Float32GetDatum
- *             Returns datum representation for a 32-bit floating point number.
- *             This is really a pointer, of course.
+ * Specialized array types.  These are physically laid out just the same
+ * as regular arrays (so that the regular array subscripting code works
+ * with them). They exist as distinct types mostly for historical reasons:
+ * they have nonstandard I/O behavior which we don't want to change for fear
+ * of breaking applications that look at the system catalogs.  There is also
+ * an implementation issue for oidvector: it's part of the primary key for
+ * pg_proc, and we can't use the normal btree array support routines for that
+ * without circularity.
  */
+typedef struct
+{
+       int32           vl_len_;                /* these fields must match ArrayType! */
+       int                     ndim;                   /* always 1 for int2vector */
+       int32           dataoffset;             /* always 0 for int2vector */
+       Oid                     elemtype;
+       int                     dim1;
+       int                     lbound1;
+       int2            values[1];              /* VARIABLE LENGTH ARRAY */
+} int2vector;                                  /* VARIABLE LENGTH STRUCT */
 
-#define Float32GetDatum(X) PointerGetDatum((Pointer) (X))
+typedef struct
+{
+       int32           vl_len_;                /* these fields must match ArrayType! */
+       int                     ndim;                   /* always 1 for oidvector */
+       int32           dataoffset;             /* always 0 for oidvector */
+       Oid                     elemtype;
+       int                     dim1;
+       int                     lbound1;
+       Oid                     values[1];              /* VARIABLE LENGTH ARRAY */
+} oidvector;                                   /* VARIABLE LENGTH STRUCT */
 
 /*
- * DatumGetFloat64
- *             Returns 64-bit floating point value of a datum.
- *             This is really a pointer, of course.
+ * Representation of a Name: effectively just a C string, but null-padded to
+ * exactly NAMEDATALEN bytes.  The use of a struct is historical.
  */
+typedef struct nameData
+{
+       char            data[NAMEDATALEN];
+} NameData;
+typedef NameData *Name;
 
-#define DatumGetFloat64(X) ((float64) DatumGetPointer(X))
+#define NameStr(name)  ((name).data)
 
 /*
- * Float64GetDatum
- *             Returns datum representation for a 64-bit floating point number.
- *             This is really a pointer, of course.
+ * Support macros for escaping strings.  escape_backslash should be TRUE
+ * if generating a non-standard-conforming string.     Prefixing a string
+ * with ESCAPE_STRING_SYNTAX guarantees it is non-standard-conforming.
+ * Beware of multiple evaluation of the "ch" argument!
  */
+#define SQL_STR_DOUBLE(ch, escape_backslash)   \
+       ((ch) == '\'' || ((ch) == '\\' && (escape_backslash)))
 
-#define Float64GetDatum(X) PointerGetDatum((Pointer) (X))
+#define ESCAPE_STRING_SYNTAX   'E'
 
 /* ----------------------------------------------------------------
- *                             Section 5:      IsValid macros for system types
+ *                             Section 4:      IsValid macros for system types
  * ----------------------------------------------------------------
  */
 /*
@@ -474,10 +485,15 @@ typedef Datum *DatumPtr;
  *             True iff pointer is properly aligned to point to the given type.
  */
 #define PointerIsAligned(pointer, type) \
-               (((long)(pointer) % (sizeof (type))) == 0)
+               (((intptr_t)(pointer) % (sizeof (type))) == 0)
+
+#define OidIsValid(objectId)  ((bool) ((objectId) != InvalidOid))
+
+#define RegProcedureIsValid(p) OidIsValid(p)
+
 
 /* ----------------------------------------------------------------
- *                             Section 6:      offsetof, lengthof, endof
+ *                             Section 5:      offsetof, lengthof, endof, alignment
  * ----------------------------------------------------------------
  */
 /*
@@ -489,7 +505,7 @@ typedef Datum *DatumPtr;
  */
 #ifndef offsetof
 #define offsetof(type, field)  ((long) &((type *)0)->field)
-#endif  /* offsetof */
+#endif   /* offsetof */
 
 /*
  * lengthof
@@ -501,125 +517,41 @@ typedef Datum *DatumPtr;
  * endof
  *             Address of the element one past the last in an array.
  */
-#define endof(array)   (&array[lengthof(array)])
-
-/* ----------------------------------------------------------------
- *                             Section 7:      exception handling definitions
- *                                                     Assert, Trap, etc macros
- * ----------------------------------------------------------------
- */
-/*
- * Exception Handling definitions
- */
-
-typedef char *ExcMessage;
-typedef struct Exception
-{
-       ExcMessage      message;
-} Exception;
-
-/*
- * USE_ASSERT_CHECKING, if defined, turns on all the assertions.
- * - plai  9/5/90
- *
- * It should _NOT_ be defined in releases or in benchmark copies
- */
-
-/*
- * Trap
- *             Generates an exception if the given condition is true.
- *
- */
-#define Trap(condition, exception) \
-               { if ((assert_enabled) && (condition)) \
-                               ExceptionalCondition(CppAsString(condition), &(exception), \
-                                               (char*)NULL, __FILE__, __LINE__); }
-
-/*
- *     TrapMacro is the same as Trap but it's intended for use in macros:
- *
- *             #define foo(x) (AssertM(x != 0) && bar(x))
- *
- *     Isn't CPP fun?
- */
-#define TrapMacro(condition, exception) \
-       ((bool) ((! assert_enabled) || ! (condition) || \
-                        (ExceptionalCondition(CppAsString(condition), \
-                                                                 &(exception), \
-                                                                 (char*) NULL, __FILE__, __LINE__))))
-
-#ifndef USE_ASSERT_CHECKING
-#define Assert(condition)
-#define AssertMacro(condition) ((void)true)
-#define AssertArg(condition)
-#define AssertState(condition)
-#define assert_enabled 0
-#else
-#define Assert(condition) \
-               Trap(!(condition), FailedAssertion)
-
-#define AssertMacro(condition) \
-               ((void) TrapMacro(!(condition), FailedAssertion))
-
-#define AssertArg(condition) \
-               Trap(!(condition), BadArg)
-
-#define AssertState(condition) \
-               Trap(!(condition), BadState)
+#define endof(array)   (&(array)[lengthof(array)])
 
-extern int     assert_enabled;
-
-#endif  /* USE_ASSERT_CHECKING */
-
-/*
- * LogTrap
- *             Generates an exception with a message if the given condition is true.
+/* ----------------
+ * Alignment macros: align a length or address appropriately for a given type.
+ * The fooALIGN() macros round up to a multiple of the required alignment,
+ * while the fooALIGN_DOWN() macros round down.  The latter are more useful
+ * for problems like "how many X-sized structures will fit in a page?".
  *
+ * NOTE: TYPEALIGN[_DOWN] will not work if ALIGNVAL is not a power of 2.
+ * That case seems extremely unlikely to be needed in practice, however.
+ * ----------------
  */
-#define LogTrap(condition, exception, printArgs) \
-               { if ((assert_enabled) && (condition)) \
-                               ExceptionalCondition(CppAsString(condition), &(exception), \
-                                               vararg_format printArgs, __FILE__, __LINE__); }
-
-/*
- *     LogTrapMacro is the same as LogTrap but it's intended for use in macros:
- *
- *             #define foo(x) (LogAssertMacro(x != 0, "yow!") && bar(x))
- */
-#define LogTrapMacro(condition, exception, printArgs) \
-       ((bool) ((! assert_enabled) || ! (condition) || \
-                        (ExceptionalCondition(CppAsString(condition), \
-                                                                  &(exception), \
-                                                                  vararg_format printArgs, __FILE__, __LINE__))))
-
-#ifndef USE_ASSERT_CHECKING
-#define LogAssert(condition, printArgs)
-#define LogAssertMacro(condition, printArgs) true
-#define LogAssertArg(condition, printArgs)
-#define LogAssertState(condition, printArgs)
-#else
-#define LogAssert(condition, printArgs) \
-               LogTrap(!(condition), FailedAssertion, printArgs)
-
-#define LogAssertMacro(condition, printArgs) \
-               LogTrapMacro(!(condition), FailedAssertion, printArgs)
 
-#define LogAssertArg(condition, printArgs) \
-               LogTrap(!(condition), BadArg, printArgs)
+#define TYPEALIGN(ALIGNVAL,LEN)  \
+       (((intptr_t) (LEN) + ((ALIGNVAL) - 1)) & ~((intptr_t) ((ALIGNVAL) - 1)))
 
-#define LogAssertState(condition, printArgs) \
-               LogTrap(!(condition), BadState, printArgs)
+#define SHORTALIGN(LEN)                        TYPEALIGN(ALIGNOF_SHORT, (LEN))
+#define INTALIGN(LEN)                  TYPEALIGN(ALIGNOF_INT, (LEN))
+#define LONGALIGN(LEN)                 TYPEALIGN(ALIGNOF_LONG, (LEN))
+#define DOUBLEALIGN(LEN)               TYPEALIGN(ALIGNOF_DOUBLE, (LEN))
+#define MAXALIGN(LEN)                  TYPEALIGN(MAXIMUM_ALIGNOF, (LEN))
+/* MAXALIGN covers only built-in types, not buffers */
+#define BUFFERALIGN(LEN)               TYPEALIGN(ALIGNOF_BUFFER, (LEN))
 
-extern int     assertEnable(int val);
+#define TYPEALIGN_DOWN(ALIGNVAL,LEN)  \
+       (((intptr_t) (LEN)) & ~((intptr_t) ((ALIGNVAL) - 1)))
 
-#ifdef ASSERT_CHECKING_TEST
-extern int     assertTest(int val);
-
-#endif
-#endif  /* USE_ASSERT_CHECKING */
+#define SHORTALIGN_DOWN(LEN)   TYPEALIGN_DOWN(ALIGNOF_SHORT, (LEN))
+#define INTALIGN_DOWN(LEN)             TYPEALIGN_DOWN(ALIGNOF_INT, (LEN))
+#define LONGALIGN_DOWN(LEN)            TYPEALIGN_DOWN(ALIGNOF_LONG, (LEN))
+#define DOUBLEALIGN_DOWN(LEN)  TYPEALIGN_DOWN(ALIGNOF_DOUBLE, (LEN))
+#define MAXALIGN_DOWN(LEN)             TYPEALIGN_DOWN(MAXIMUM_ALIGNOF, (LEN))
 
 /* ----------------------------------------------------------------
- *                             Section 8:      Min, Max, Abs macros
+ *                             Section 6:      widely useful macros
  * ----------------------------------------------------------------
  */
 /*
@@ -642,11 +574,19 @@ extern int        assertTest(int val);
 
 /*
  * StrNCpy
- *             Like standard library function strncpy(), except that result string
- *             is guaranteed to be null-terminated --- that is, at most N-1 bytes
- *             of the source string will be kept.
- *             Also, the macro returns no result (too hard to do that without
- *             evaluating the arguments multiple times, which seems worse).
+ *     Like standard library function strncpy(), except that result string
+ *     is guaranteed to be null-terminated --- that is, at most N-1 bytes
+ *     of the source string will be kept.
+ *     Also, the macro returns no result (too hard to do that without
+ *     evaluating the arguments multiple times, which seems worse).
+ *
+ *     BTW: when you need to copy a non-null-terminated string (like a text
+ *     datum) and add a null, do not do it with StrNCpy(..., len+1).  That
+ *     might seem to work, but it fetches one byte more than there is in the
+ *     text object.  One fine day you'll have a SIGSEGV because there isn't
+ *     another byte before the end of memory.  Don't laugh, we've had real
+ *     live bug reports from real live users over exactly this mistake.
+ *     Do it honestly with "memcpy(dst,src,len); dst[len] = '\0';", instead.
  */
 #define StrNCpy(dst,src,len) \
        do \
@@ -662,148 +602,252 @@ extern int      assertTest(int val);
        } while (0)
 
 
-/* Get a bit mask of the bits set in non-int32 aligned addresses */
-#define INT_ALIGN_MASK (sizeof(int32) - 1)
+/* Get a bit mask of the bits set in non-long aligned addresses */
+#define LONG_ALIGN_MASK (sizeof(long) - 1)
 
 /*
  * MemSet
  *     Exactly the same as standard library function memset(), but considerably
  *     faster for zeroing small word-aligned structures (such as parsetree nodes).
  *     This has to be a macro because the main point is to avoid function-call
- *     overhead.
- *
- *     We got the 64 number by testing this against the stock memset() on
- *     BSD/OS 3.0. Larger values were slower.  bjm 1997/09/11
- *
- *  I think the crossover point could be a good deal higher for
- *     most platforms, actually.  tgl 2000-03-19
+ *     overhead.       However, we have also found that the loop is faster than
+ *     native libc memset() on some platforms, even those with assembler
+ *     memset() functions.  More research needs to be done, perhaps with
+ *     MEMSET_LOOP_LIMIT tests in configure.
  */
 #define MemSet(start, val, len) \
        do \
        { \
-               int32 * _start = (int32 *) (start); \
+               /* must be void* because we don't know if it is integer aligned yet */ \
+               void   *_vstart = (void *) (start); \
+               int             _val = (val); \
+               Size    _len = (len); \
+\
+               if ((((intptr_t) _vstart) & LONG_ALIGN_MASK) == 0 && \
+                       (_len & LONG_ALIGN_MASK) == 0 && \
+                       _val == 0 && \
+                       _len <= MEMSET_LOOP_LIMIT && \
+                       /* \
+                        *      If MEMSET_LOOP_LIMIT == 0, optimizer should find \
+                        *      the whole "if" false at compile time. \
+                        */ \
+                       MEMSET_LOOP_LIMIT != 0) \
+               { \
+                       long *_start = (long *) _vstart; \
+                       long *_stop = (long *) ((char *) _start + _len); \
+                       while (_start < _stop) \
+                               *_start++ = 0; \
+               } \
+               else \
+                       memset(_vstart, _val, _len); \
+       } while (0)
+
+/*
+ * MemSetAligned is the same as MemSet except it omits the test to see if
+ * "start" is word-aligned.  This is okay to use if the caller knows a-priori
+ * that the pointer is suitably aligned (typically, because he just got it
+ * from palloc(), which always delivers a max-aligned pointer).
+ */
+#define MemSetAligned(start, val, len) \
+       do \
+       { \
+               long   *_start = (long *) (start); \
                int             _val = (val); \
                Size    _len = (len); \
 \
-               if ((((long) _start) & INT_ALIGN_MASK) == 0 && \
-                       (_len & INT_ALIGN_MASK) == 0 && \
+               if ((_len & LONG_ALIGN_MASK) == 0 && \
                        _val == 0 && \
-                       _len <= MEMSET_LOOP_LIMIT) \
+                       _len <= MEMSET_LOOP_LIMIT && \
+                       MEMSET_LOOP_LIMIT != 0) \
                { \
-                       int32 * _stop = (int32 *) ((char *) _start + _len); \
+                       long *_stop = (long *) ((char *) _start + _len); \
                        while (_start < _stop) \
                                *_start++ = 0; \
                } \
                else \
-                       memset((char *) _start, _val, _len); \
+                       memset(_start, _val, _len); \
        } while (0)
 
-#define MEMSET_LOOP_LIMIT  64
+
+/*
+ * MemSetTest/MemSetLoop are a variant version that allow all the tests in
+ * MemSet to be done at compile time in cases where "val" and "len" are
+ * constants *and* we know the "start" pointer must be word-aligned.
+ * If MemSetTest succeeds, then it is okay to use MemSetLoop, otherwise use
+ * MemSetAligned.  Beware of multiple evaluations of the arguments when using
+ * this approach.
+ */
+#define MemSetTest(val, len) \
+       ( ((len) & LONG_ALIGN_MASK) == 0 && \
+       (len) <= MEMSET_LOOP_LIMIT && \
+       MEMSET_LOOP_LIMIT != 0 && \
+       (val) == 0 )
+
+#define MemSetLoop(start, val, len) \
+       do \
+       { \
+               long * _start = (long *) (start); \
+               long * _stop = (long *) ((char *) _start + (Size) (len)); \
+       \
+               while (_start < _stop) \
+                       *_start++ = 0; \
+       } while (0)
 
 
 /* ----------------------------------------------------------------
- *                             Section 9: externs
+ *                             Section 7:      random stuff
  * ----------------------------------------------------------------
  */
 
-extern Exception FailedAssertion;
-extern Exception BadArg;
-extern Exception BadState;
+/* msb for char */
+#define HIGHBIT                                        (0x80)
+#define IS_HIGHBIT_SET(ch)             ((unsigned char)(ch) & HIGHBIT)
 
-/* in utils/error/assert.c */
-extern int ExceptionalCondition(char *conditionName,
-                                        Exception *exceptionP, char *details,
-                                        char *fileName, int lineNumber);
+#define STATUS_OK                              (0)
+#define STATUS_ERROR                   (-1)
+#define STATUS_EOF                             (-2)
+#define STATUS_FOUND                   (1)
+#define STATUS_WAITING                 (2)
 
 
-/* ----------------
- *             vararg_format is used by assert and the exception handling stuff
- * ----------------
+/* gettext domain name mangling */
+
+/*
+ * To better support parallel installations of major PostgeSQL
+ * versions as well as parallel installations of major library soname
+ * versions, we mangle the gettext domain name by appending those
+ * version numbers.  The coding rule ought to be that whereever the
+ * domain name is mentioned as a literal, it must be wrapped into
+ * PG_TEXTDOMAIN().  The macros below do not work on non-literals; but
+ * that is somewhat intentional because it avoids having to worry
+ * about multiple states of premangling and postmangling as the values
+ * are being passed around.
+ *
+ * Make sure this matches the installation rules in nls-global.mk.
  */
-extern char *vararg_format(const char *fmt,...);
 
+/* need a second indirection because we want to stringize the macro value, not the name */
+#define CppAsString2(x) CppAsString(x)
+
+#ifdef SO_MAJOR_VERSION
+#define PG_TEXTDOMAIN(domain) (domain CppAsString2(SO_MAJOR_VERSION) "-" PG_MAJORVERSION)
+#else
+#define PG_TEXTDOMAIN(domain) (domain "-" PG_MAJORVERSION)
+#endif
 
 
 /* ----------------------------------------------------------------
- *                             Section 10: berkeley-specific configuration
+ *                             Section 8: system-specific hacks
  *
- * this section contains settings which are only relevant to the UC Berkeley
- * sites.  Other sites can ignore this
+ *             This should be limited to things that absolutely have to be
+ *             included in every source file.  The port-specific header file
+ *             is usually a better place for this sort of thing.
  * ----------------------------------------------------------------
  */
 
-/* ----------------
- *             storage managers
- *
- *             These are experimental and are not supported in the code that
- *             we distribute to other sites.
- * ----------------
+/*
+ *     NOTE:  this is also used for opening text files.
+ *     WIN32 treats Control-Z as EOF in files opened in text mode.
+ *     Therefore, we open files in binary mode on Win32 so we can read
+ *     literal control-Z.      The other affect is that we see CRLF, but
+ *     that is OK because we can already handle those cleanly.
  */
-#ifdef NOT_USED
-#define STABLE_MEMORY_STORAGE
+#if defined(WIN32) || defined(__CYGWIN__)
+#define PG_BINARY      O_BINARY
+#define PG_BINARY_A "ab"
+#define PG_BINARY_R "rb"
+#define PG_BINARY_W "wb"
+#else
+#define PG_BINARY      0
+#define PG_BINARY_A "a"
+#define PG_BINARY_R "r"
+#define PG_BINARY_W "w"
 #endif
 
-
-
-/* ----------------------------------------------------------------
- *                             Section 11: system-specific hacks
- *
- *             This should be limited to things that absolutely have to be
- *             included in every source file.  The changes should be factored
- *             into a separate file so that changes to one port don't require
- *             changes to c.h (and everyone recompiling their whole system).
- * ----------------------------------------------------------------
+/*
+ * Provide prototypes for routines not present in a particular machine's
+ * standard C library.
  */
 
-#ifdef FIXADE
-#if defined(hpux)
-#include "port/hpux/fixade.h"  /* for unaligned access fixup */
-#endif  /* hpux */
+#if !HAVE_DECL_SNPRINTF
+extern int
+snprintf(char *str, size_t count, const char *fmt,...)
+/* This extension allows gcc to check the format string */
+__attribute__((format(PG_PRINTF_ATTRIBUTE, 3, 4)));
 #endif
 
-#if defined(sun) && defined(__sparc__) && !defined(__SVR4)
-#define memmove(d, s, l)               bcopy(s, d, l)
-#include <unistd.h>
-#include <varargs.h>
+#if !HAVE_DECL_VSNPRINTF
+extern int     vsnprintf(char *str, size_t count, const char *fmt, va_list args);
 #endif
 
-/* These are for things that are one way on Unix and another on NT */
-#define NULL_DEV               "/dev/null"
-#define SEP_CHAR               '/'
+#if !defined(HAVE_MEMMOVE) && !defined(memmove)
+#define memmove(d, s, c)               bcopy(s, d, c)
+#endif
 
-/* defines for dynamic linking on Win32 platform */
-#ifdef __CYGWIN32__
-#if __GNUC__ && ! defined (__declspec)
-#error You need egcs 1.1 or newer for compiling!
+/* no special DLL markers on most ports */
+#ifndef PGDLLIMPORT
+#define PGDLLIMPORT
 #endif
-#ifdef BUILDING_DLL
-#define DLLIMPORT __declspec (dllexport)
-#else                                                  /* not BUILDING_DLL */
-#define DLLIMPORT __declspec (dllimport)
+#ifndef PGDLLEXPORT
+#define PGDLLEXPORT
 #endif
-#else                                                  /* not CYGWIN */
-#define DLLIMPORT
+
+/*
+ * The following is used as the arg list for signal handlers.  Any ports
+ * that take something other than an int argument should override this in
+ * their pg_config_os.h file.  Note that variable names are required
+ * because it is used in both the prototypes as well as the definitions.
+ * Note also the long name.  We expect that this won't collide with
+ * other names causing compiler warnings.
+ */
+
+#ifndef SIGNAL_ARGS
+#define SIGNAL_ARGS  int postgres_signal_arg
 #endif
 
-/* Provide prototypes for routines not present in a particular machine's
- * standard C library. It'd be better to put these in config.h, but
- * in config.h we haven't yet included anything that defines size_t...
+/*
+ * When there is no sigsetjmp, its functionality is provided by plain
+ * setjmp. Incidentally, nothing provides setjmp's functionality in
+ * that case.
  */
+#ifndef HAVE_SIGSETJMP
+#define sigjmp_buf jmp_buf
+#define sigsetjmp(x,y) setjmp(x)
+#define siglongjmp longjmp
+#endif
 
-#ifndef HAVE_SNPRINTF_DECL
-extern int     snprintf(char *str, size_t count, const char *fmt,...);
+#if defined(HAVE_FDATASYNC) && !HAVE_DECL_FDATASYNC
+extern int     fdatasync(int fildes);
 #endif
 
-#ifndef HAVE_VSNPRINTF_DECL
-extern int     vsnprintf(char *str, size_t count, const char *fmt, va_list args);
+/* If strtoq() exists, rename it to the more standard strtoll() */
+#if defined(HAVE_LONG_LONG_INT_64) && !defined(HAVE_STRTOLL) && defined(HAVE_STRTOQ)
+#define strtoll strtoq
+#define HAVE_STRTOLL 1
 #endif
 
-#ifndef HAVE_MEMMOVE
-#include <regex/utils.h>
+/* If strtouq() exists, rename it to the more standard strtoull() */
+#if defined(HAVE_LONG_LONG_INT_64) && !defined(HAVE_STRTOULL) && defined(HAVE_STRTOUQ)
+#define strtoull strtouq
+#define HAVE_STRTOULL 1
 #endif
 
-/* ----------------
- *             end of c.h
- * ----------------
+/*
+ * We assume if we have these two functions, we have their friends too, and
+ * can use the wide-character functions.
  */
-#endif  /* C_H */
+#if defined(HAVE_WCSTOMBS) && defined(HAVE_TOWLOWER)
+#define USE_WIDE_UPPER_LOWER
+#endif
+
+/* EXEC_BACKEND defines */
+#ifdef EXEC_BACKEND
+#define NON_EXEC_STATIC
+#else
+#define NON_EXEC_STATIC static
+#endif
+
+/* /port compatibility functions */
+#include "port.h"
+
+#endif   /* C_H */