New header varatt.h split off from postgres.h
authorPeter Eisentraut <peter@eisentraut.org>
Tue, 10 Jan 2023 04:48:59 +0000 (05:48 +0100)
committerPeter Eisentraut <peter@eisentraut.org>
Tue, 10 Jan 2023 04:54:36 +0000 (05:54 +0100)
This new header contains all the variable-length data types support
(TOAST support) from postgres.h, which isn't needed by large parts of
the backend code.

Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: https://www.postgresql.org/message-id/flat/ddcce239-0f29-6e62-4b47-1f8ca742addf%40enterprisedb.com

50 files changed:
contrib/citext/citext.c
contrib/cube/cubeparse.y
contrib/fuzzystrmatch/fuzzystrmatch.c
contrib/ltree/ltree_io.c
contrib/ltree/ltxtquery_io.c
contrib/pg_trgm/trgm_gin.c
contrib/pg_trgm/trgm_gist.c
contrib/pg_trgm/trgm_regexp.c
contrib/pgcrypto/pgcrypto.c
contrib/uuid-ossp/uuid-ossp.c
doc/src/sgml/xfunc.sgml
src/backend/access/common/toast_compression.c
src/backend/access/hash/hashfunc.c
src/backend/access/spgist/spgtextproc.c
src/backend/access/table/toast_helper.c
src/backend/libpq/be-fsstubs.c
src/backend/libpq/pqformat.c
src/backend/tsearch/ts_parse.c
src/backend/tsearch/ts_typanalyze.c
src/backend/utils/adt/ascii.c
src/backend/utils/adt/char.c
src/backend/utils/adt/cryptohashfuncs.c
src/backend/utils/adt/encode.c
src/backend/utils/adt/formatting.c
src/backend/utils/adt/geo_ops.c
src/backend/utils/adt/like.c
src/backend/utils/adt/network_gist.c
src/backend/utils/adt/network_spgist.c
src/backend/utils/adt/oracle_compat.c
src/backend/utils/adt/quote.c
src/backend/utils/adt/rangetypes.c
src/backend/utils/adt/rangetypes_typanalyze.c
src/backend/utils/adt/tsginidx.c
src/backend/utils/adt/tsquery.c
src/backend/utils/adt/tsquery_cleanup.c
src/backend/utils/adt/tsquery_op.c
src/backend/utils/adt/tsquery_util.c
src/backend/utils/adt/tsvector.c
src/backend/utils/cache/attoptcache.c
src/backend/utils/cache/spccache.c
src/backend/utils/mb/mbutils.c
src/include/access/htup_details.h
src/include/meson.build
src/include/postgres.h
src/include/utils/expandeddatum.h
src/include/varatt.h [new file with mode: 0644]
src/pl/plperl/Util.xs
src/test/modules/spgist_name_ops/spgist_name_ops.c
src/test/modules/test_custom_rmgrs/test_custom_rmgrs.c
src/test/modules/test_shm_mq/test.c

index df139462a65da4557b583599e44d19e53eb965e3..976c578e1ce5635252c7ccf98b07caea6e39e817 100644 (file)
@@ -8,6 +8,7 @@
 #include "utils/builtins.h"
 #include "utils/formatting.h"
 #include "utils/varlena.h"
+#include "varatt.h"
 
 PG_MODULE_MAGIC;
 
index 44450d102747160e30fc1734606795f58325f9b3..b39fbe63e6b9519fc5b2dd4797531c8dbea1d91f 100644 (file)
@@ -9,6 +9,7 @@
 #include "cubedata.h"
 #include "nodes/miscnodes.h"
 #include "utils/float.h"
+#include "varatt.h"
 
 /* All grammar constructs return strings */
 #define YYSTYPE char *
index 2a7e61c94c4b60564113a37b05fc9e1f3fbf015f..e1222714e4a50ee2fceb10181118aed736c9e44a 100644 (file)
@@ -43,6 +43,7 @@
 #include "mb/pg_wchar.h"
 #include "utils/builtins.h"
 #include "utils/varlena.h"
+#include "varatt.h"
 
 PG_MODULE_MAGIC;
 
index 56533172e320eab83efc3425871c1399968247b4..5dce70bd1a6a45bcb9b5249927d8e09b42b69143 100644 (file)
@@ -11,6 +11,7 @@
 #include "libpq/pqformat.h"
 #include "ltree.h"
 #include "utils/memutils.h"
+#include "varatt.h"
 
 
 typedef struct
index c95f94df810e5f22f4c7577f4a9f0f5f4ab3b4d0..d9910e6c99268a082c47c81ecf132fde634d4834 100644 (file)
@@ -12,6 +12,7 @@
 #include "ltree.h"
 #include "miscadmin.h"
 #include "nodes/miscnodes.h"
+#include "varatt.h"
 
 
 /* parser's states */
index 32fafef203f503ba69d34d6e8edea1023395b470..29a52eac7afa45f1656af0ce8c22cf6a1493a9f7 100644 (file)
@@ -7,6 +7,7 @@
 #include "access/stratnum.h"
 #include "fmgr.h"
 #include "trgm.h"
+#include "varatt.h"
 
 PG_FUNCTION_INFO_V1(gin_extract_trgm);
 PG_FUNCTION_INFO_V1(gin_extract_value_trgm);
index 3d74a1463a6d9ec3095b06964a8ebae203638680..ef5d8cca784bb6b822278f29088b6d7a2e24741e 100644 (file)
@@ -8,6 +8,7 @@
 #include "fmgr.h"
 #include "port/pg_bitutils.h"
 #include "trgm.h"
+#include "varatt.h"
 
 /* gist_trgm_ops opclass options */
 typedef struct
index 35ea9dbb544b7246d025dd37cb49df9f5b609104..9a00564ae4fc9ade3e2acb58c6b2ae55294144d6 100644 (file)
 #include "tsearch/ts_locale.h"
 #include "utils/hsearch.h"
 #include "utils/memutils.h"
+#include "varatt.h"
 
 /*
  * Uncomment (or use -DTRGM_REGEXP_DEBUG) to print debug info,
index 8f882f4c68454acc45675446a7ad61d920c75c8c..96447c57577614949cd56bbd31a59fbaf3111139 100644 (file)
@@ -39,6 +39,7 @@
 #include "px.h"
 #include "utils/builtins.h"
 #include "utils/uuid.h"
+#include "varatt.h"
 
 PG_MODULE_MAGIC;
 
index 3f0e379a9b73ee224791440f5023d63b57398996..6399baf2571d5ab8de294e2a93245905acb433ae 100644 (file)
@@ -19,6 +19,7 @@
 #include "port/pg_bswap.h"
 #include "utils/builtins.h"
 #include "utils/uuid.h"
+#include "varatt.h"
 
 /*
  * It's possible that there's more than one uuid.h header file present.
index c19131b3996511910985371f37d161641eb65631..52e5aa17bf31f1bd6fdada2e0d9fbd09973003cd 100644 (file)
@@ -2390,6 +2390,7 @@ PG_FUNCTION_INFO_V1(funcname);
 #include <string.h>
 #include "fmgr.h"
 #include "utils/geo_decls.h"
+#include "varatt.h"
 
 PG_MODULE_MAGIC;
 
index 797cfd8c6e9072f4f2d4198f23ec19858cc8fabe..4cf956a759c3ec266e56bf0bf352ad3e2c61b1f9 100644 (file)
@@ -22,6 +22,7 @@
 #include "common/pg_lzcompress.h"
 #include "fmgr.h"
 #include "utils/builtins.h"
+#include "varatt.h"
 
 /* GUC */
 int            default_toast_compression = TOAST_PGLZ_COMPRESSION;
index 8e60a6f1617b55fb8c0d3ee81d633ccc99556de2..e3e40d6c21aaa219714f6123d5a26b8f2caa2edc 100644 (file)
@@ -32,6 +32,7 @@
 #include "utils/builtins.h"
 #include "utils/float.h"
 #include "utils/pg_locale.h"
+#include "varatt.h"
 
 /*
  * Datatype-specific hash functions.
index 5d2aefb84561343cb98ac30a4738b4b9ab1c632f..03a7afdbabcd70ba72ae8dd6b455dc851f271bc2 100644 (file)
@@ -46,6 +46,7 @@
 #include "utils/datum.h"
 #include "utils/pg_locale.h"
 #include "utils/varlena.h"
+#include "varatt.h"
 
 
 /*
index 7052e2ae995a1bc70cadd099e07d18bc291719b2..b5cfeb21aab020abaa18dbd199a6fea49b331853 100644 (file)
@@ -19,6 +19,7 @@
 #include "access/toast_helper.h"
 #include "access/toast_internals.h"
 #include "catalog/pg_type_d.h"
+#include "varatt.h"
 
 
 /*
index 3471aa5ccfd95c8609d40ec019d467699d76fb3e..d189044a4fc2cc916178963011112209ba9a8d9e 100644 (file)
@@ -53,6 +53,7 @@
 #include "utils/builtins.h"
 #include "utils/memutils.h"
 #include "utils/snapmgr.h"
+#include "varatt.h"
 
 /* define this to enable debug logging */
 /* #define FSDB 1 */
index 418f83cb45f81dd4864afd316d97eeaac1079c4f..b7e2c7b6c90fa70839055bff8a6911d48897031c 100644 (file)
@@ -77,6 +77,7 @@
 #include "libpq/pqformat.h"
 #include "mb/pg_wchar.h"
 #include "port/pg_bswap.h"
+#include "varatt.h"
 
 
 /* --------------------------------
index 0742967189f8a019432728c8308d7b7955e346f1..9b6d934958aa8d3af0b37bffb5854d31c4bcbb77 100644 (file)
@@ -16,6 +16,7 @@
 
 #include "tsearch/ts_cache.h"
 #include "tsearch/ts_utils.h"
+#include "varatt.h"
 
 #define IGNORE_LONGLEXEME  1
 
index 04221b22351b477aedf4175af6cc41a5ac09a62e..ae4b5d10f298b88afe8ce5f960f70585e8970b79 100644 (file)
@@ -19,6 +19,7 @@
 #include "common/hashfn.h"
 #include "tsearch/ts_type.h"
 #include "utils/builtins.h"
+#include "varatt.h"
 
 
 /* A hash key for lexemes */
index 47b313b447f39c4675207bdd6e0e37051fd11793..b6944d80934d869acc023733df0bc798bf10453a 100644 (file)
@@ -14,6 +14,7 @@
 #include "mb/pg_wchar.h"
 #include "utils/ascii.h"
 #include "utils/builtins.h"
+#include "varatt.h"
 
 static void pg_to_ascii(unsigned char *src, unsigned char *src_end,
                        unsigned char *dest, int enc);
index 476c59d8caad3cee492daf7810a6e154357323e4..33662595398bfac9443f6e662eabc46b87a016af 100644 (file)
@@ -19,6 +19,7 @@
 
 #include "libpq/pqformat.h"
 #include "utils/builtins.h"
+#include "varatt.h"
 
 #define ISOCTAL(c)   (((c) >= '0') && ((c) <= '7'))
 #define TOOCTAL(c)   ((c) + '0')
index 546890e9711532c5c30a451dd12c7c6cfad2424a..f9603279581d1b193be12b83e7cd816a5dca35ac 100644 (file)
@@ -17,6 +17,7 @@
 #include "common/md5.h"
 #include "common/sha2.h"
 #include "utils/builtins.h"
+#include "varatt.h"
 
 
 /*
index 7bfdc25245d95df293cd12fc0b4889237a9c50ad..b92191de81e14e25ad09bff127cd7377568bcf16 100644 (file)
@@ -18,6 +18,7 @@
 #include "mb/pg_wchar.h"
 #include "utils/builtins.h"
 #include "utils/memutils.h"
+#include "varatt.h"
 
 
 /*
index 56b865547b01a8205d30cca625b4256ee62b6898..a4b524ea3acf3862970c8f2433422171b0e97351 100644 (file)
@@ -88,6 +88,7 @@
 #include "utils/memutils.h"
 #include "utils/numeric.h"
 #include "utils/pg_locale.h"
+#include "varatt.h"
 
 
 /* ----------
index bd78b8f878ffaf194eb4dd368841f4fb3f1768d8..53ee4b6f9cb6e5ad6b769d9edf39a2cf103fd9f9 100644 (file)
@@ -35,6 +35,7 @@
 #include "utils/float.h"
 #include "utils/fmgrprotos.h"
 #include "utils/geo_decls.h"
+#include "varatt.h"
 
 /*
  * * Type constructors have this form:
index 70c42c387688bb647b21297c16dafe2da9fa29fc..fc6cb7f5b75cc6eb2a599e5bb3e685721a40a3ce 100644 (file)
@@ -24,6 +24,7 @@
 #include "miscadmin.h"
 #include "utils/builtins.h"
 #include "utils/pg_locale.h"
+#include "varatt.h"
 
 
 #define LIKE_TRUE                      1
index 243efa308d6e11f336358fedd8e9ac3766383fe1..32cde28f00ea636d56ee52a4d413ca632a4b873f 100644 (file)
@@ -51,6 +51,7 @@
 #include "access/stratnum.h"
 #include "utils/builtins.h"
 #include "utils/inet.h"
+#include "varatt.h"
 
 /*
  * Operator strategy numbers used in the GiST inet_ops opclass
index 0fe8b8340769c043fb08912cc2036ec340a0a97e..5d3697306c04cb65966911298dcd09ed166e8f77 100644 (file)
@@ -37,6 +37,7 @@
 #include "catalog/pg_type.h"
 #include "utils/builtins.h"
 #include "utils/inet.h"
+#include "varatt.h"
 
 
 static int inet_spg_node_number(const inet *val, int commonbits);
index f4e6983e91d186bce6d1a080398c12113baf4554..5f1bc59d8788021b609b3eecf85e72e8bb2179d8 100644 (file)
@@ -21,6 +21,7 @@
 #include "utils/builtins.h"
 #include "utils/formatting.h"
 #include "utils/memutils.h"
+#include "varatt.h"
 
 
 static text *dotrim(const char *string, int stringlen,
index a9ec96bb0da28e562b8fbf7f6bb3d3372c9dcc81..f2f633befac7b95ae1def04e958acc63b875c185 100644 (file)
@@ -14,6 +14,7 @@
 #include "postgres.h"
 
 #include "utils/builtins.h"
+#include "varatt.h"
 
 
 /*
index ee6fe67bc461807cdf9e6ddf66e32c86037cb1c8..d65e5625c739a8f6f30be6f4af4d1dfde65de086 100644 (file)
@@ -42,6 +42,7 @@
 #include "utils/lsyscache.h"
 #include "utils/rangetypes.h"
 #include "utils/timestamp.h"
+#include "varatt.h"
 
 
 /* fn_extra cache entry for one of the range I/O functions */
index d7a947b48a726846ce971e044b7a7bd6d6091679..86810a1a6e6158591688638b890ac064658239f1 100644 (file)
@@ -31,6 +31,7 @@
 #include "utils/lsyscache.h"
 #include "utils/rangetypes.h"
 #include "utils/multirangetypes.h"
+#include "varatt.h"
 
 static int float8_qsort_cmp(const void *a1, const void *a2, void *arg);
 static int range_bound_qsort_cmp(const void *a1, const void *a2, void *arg);
index 114f9612636b76efa276cac6b1a0559c5b68d29d..484a003827d828181a91b2d70a8fddebdb323922 100644 (file)
@@ -19,6 +19,7 @@
 #include "tsearch/ts_type.h"
 #include "tsearch/ts_utils.h"
 #include "utils/builtins.h"
+#include "varatt.h"
 
 
 Datum
index 79cf30b424d3ff656b919668c3fdbf2a4b3009e3..25150c6d16616921639b31483b84e1b9ace28121 100644 (file)
@@ -23,6 +23,7 @@
 #include "utils/builtins.h"
 #include "utils/memutils.h"
 #include "utils/pg_crc.h"
+#include "varatt.h"
 
 /* FTS operator priorities, see ts_type.h */
 const int  tsearch_op_priority[OP_COUNT] =
index 32554d67ea618b5741d1436be2fcd771c7078bf5..59b3e859c32f317b12ea420e9348bef71b58f201 100644 (file)
@@ -17,6 +17,7 @@
 
 #include "miscadmin.h"
 #include "tsearch/ts_utils.h"
+#include "varatt.h"
 
 typedef struct NODE
 {
index 02bd37cd7a120aba95ea05e14897ff4759a96b31..7e3bd51c1f85b09a1cac505ac85c13847a1d3025 100644 (file)
@@ -17,6 +17,7 @@
 #include "lib/qunique.h"
 #include "tsearch/ts_utils.h"
 #include "utils/builtins.h"
+#include "varatt.h"
 
 Datum
 tsquery_numnode(PG_FUNCTION_ARGS)
index 27a59f9dec923169989a9c1e6875ba1146bef0ef..f266b9f0676bf7a51f07fecce9a69269999ba39e 100644 (file)
@@ -16,6 +16,7 @@
 
 #include "miscadmin.h"
 #include "tsearch/ts_utils.h"
+#include "varatt.h"
 
 /*
  * Build QTNode tree for a tsquery given in QueryItem array format.
index 67ef08496217a0648ed39bfc6645bd3389834182..c7e20ce4ecc18793f2470d0d14c951b7cddddb46 100644 (file)
@@ -20,6 +20,7 @@
 #include "tsearch/ts_utils.h"
 #include "utils/builtins.h"
 #include "utils/memutils.h"
+#include "varatt.h"
 
 typedef struct
 {
index dbf81bdf1b1cea7f6c6c13e6355283afda23dd37..28a99f0fc42598b8fea34679b33dfe593159dd97 100644 (file)
@@ -22,6 +22,7 @@
 #include "utils/hsearch.h"
 #include "utils/inval.h"
 #include "utils/syscache.h"
+#include "varatt.h"
 
 
 /* Hash table for information about each attribute's options */
index 44c63bd47833ed6c2749b926af720cb3c8dcab28..aabe6ba64b1c4ed494f5af9e3f96b241bb2dfc11 100644 (file)
@@ -29,6 +29,7 @@
 #include "utils/inval.h"
 #include "utils/spccache.h"
 #include "utils/syscache.h"
+#include "varatt.h"
 
 
 /* Hash table for information about each tablespace */
index 2dbd2fe8cdfa657be1a2343cf45e9475b863b1b0..033647011bbe2a4a05ef40e782226dfdee0d41fa 100644 (file)
@@ -40,6 +40,7 @@
 #include "utils/builtins.h"
 #include "utils/memutils.h"
 #include "utils/syscache.h"
+#include "varatt.h"
 
 /*
  * We maintain a simple linked list caching the fmgr lookup info for the
index d590114de0123440ebf424c924b876cb3c789509..e01f4f35c8d3b002cc93dd50a7c1f63d69e12642 100644 (file)
@@ -19,6 +19,7 @@
 #include "access/tupdesc.h"
 #include "access/tupmacs.h"
 #include "storage/bufpage.h"
+#include "varatt.h"
 
 /*
  * MaxTupleAttributeNumber limits the number of (user) columns in a tuple.
index 5ecbc7323cea6239a114a491cdb63457195ccb5d..51ad06cecb7737b153f3a9cd8ec1495e30d0d584 100644 (file)
@@ -113,6 +113,7 @@ install_headers(
   'postgres.h',
   'postgres_ext.h',
   'postgres_fe.h',
+  'varatt.h',
   'windowapi.h',
   pg_config_ext,
   pg_config_os,
index c45274dc130a74472ffcdc508afee9a94b928078..8a028ff789bc857b086a3a17b02c20ffb76844c0 100644 (file)
@@ -23,9 +23,8 @@
  *
  *   section   description
  *   -------   ------------------------------------------------
- *     1)      variable-length datatypes (TOAST support)
- *     2)      Datum type + support functions
- *     3)      miscellaneous
+ *     1)      Datum type + support functions
+ *     2)      miscellaneous
  *
  *  NOTES
  *
@@ -36,8 +35,7 @@
  * postgres_fe.h.  We do that since those type definitions are needed by
  * frontend modules that want to deal with binary data transmission to or
  * from the backend.  Type definitions in this file should be for
- * representations that never escape the backend, such as Datum or
- * TOASTed varlena objects.
+ * representations that never escape the backend, such as Datum.
  *
  *----------------------------------------------------------------
  */
 #include "utils/palloc.h"
 
 /* ----------------------------------------------------------------
- *             Section 1:  variable-length datatypes (TOAST support)
- * ----------------------------------------------------------------
- */
-
-/*
- * struct varatt_external is a traditional "TOAST pointer", that is, the
- * information needed to fetch a Datum stored out-of-line in a TOAST table.
- * The data is compressed if and only if the external size stored in
- * va_extinfo is less than va_rawsize - VARHDRSZ.
- *
- * This struct must not contain any padding, because we sometimes compare
- * these pointers using memcmp.
- *
- * Note that this information is stored unaligned within actual tuples, so
- * you need to memcpy from the tuple into a local struct variable before
- * you can look at these fields!  (The reason we use memcmp is to avoid
- * having to do that just to detect equality of two TOAST pointers...)
- */
-typedef struct varatt_external
-{
-   int32       va_rawsize;     /* Original data size (includes header) */
-   uint32      va_extinfo;     /* External saved size (without header) and
-                                * compression method */
-   Oid         va_valueid;     /* Unique ID of value within TOAST table */
-   Oid         va_toastrelid;  /* RelID of TOAST table containing it */
-}          varatt_external;
-
-/*
- * These macros define the "saved size" portion of va_extinfo.  Its remaining
- * two high-order bits identify the compression method.
- */
-#define VARLENA_EXTSIZE_BITS   30
-#define VARLENA_EXTSIZE_MASK   ((1U << VARLENA_EXTSIZE_BITS) - 1)
-
-/*
- * struct varatt_indirect is a "TOAST pointer" representing an out-of-line
- * Datum that's stored in memory, not in an external toast relation.
- * The creator of such a Datum is entirely responsible that the referenced
- * storage survives for as long as referencing pointer Datums can exist.
- *
- * Note that just as for struct varatt_external, this struct is stored
- * unaligned within any containing tuple.
- */
-typedef struct varatt_indirect
-{
-   struct varlena *pointer;    /* Pointer to in-memory varlena */
-}          varatt_indirect;
-
-/*
- * struct varatt_expanded is a "TOAST pointer" representing an out-of-line
- * Datum that is stored in memory, in some type-specific, not necessarily
- * physically contiguous format that is convenient for computation not
- * storage.  APIs for this, in particular the definition of struct
- * ExpandedObjectHeader, are in src/include/utils/expandeddatum.h.
- *
- * Note that just as for struct varatt_external, this struct is stored
- * unaligned within any containing tuple.
- */
-typedef struct ExpandedObjectHeader ExpandedObjectHeader;
-
-typedef struct varatt_expanded
-{
-   ExpandedObjectHeader *eohptr;
-} varatt_expanded;
-
-/*
- * Type tag for the various sorts of "TOAST pointer" datums.  The peculiar
- * value for VARTAG_ONDISK comes from a requirement for on-disk compatibility
- * with a previous notion that the tag field was the pointer datum's length.
- */
-typedef enum vartag_external
-{
-   VARTAG_INDIRECT = 1,
-   VARTAG_EXPANDED_RO = 2,
-   VARTAG_EXPANDED_RW = 3,
-   VARTAG_ONDISK = 18
-} vartag_external;
-
-/* this test relies on the specific tag values above */
-#define VARTAG_IS_EXPANDED(tag) \
-   (((tag) & ~1) == VARTAG_EXPANDED_RO)
-
-#define VARTAG_SIZE(tag) \
-   ((tag) == VARTAG_INDIRECT ? sizeof(varatt_indirect) : \
-    VARTAG_IS_EXPANDED(tag) ? sizeof(varatt_expanded) : \
-    (tag) == VARTAG_ONDISK ? sizeof(varatt_external) : \
-    (AssertMacro(false), 0))
-
-/*
- * These structs describe the header of a varlena object that may have been
- * TOASTed.  Generally, don't reference these structs directly, but use the
- * macros below.
- *
- * We use separate structs for the aligned and unaligned cases because the
- * compiler might otherwise think it could generate code that assumes
- * alignment while touching fields of a 1-byte-header varlena.
- */
-typedef union
-{
-   struct                      /* Normal varlena (4-byte length) */
-   {
-       uint32      va_header;
-       char        va_data[FLEXIBLE_ARRAY_MEMBER];
-   }           va_4byte;
-   struct                      /* Compressed-in-line format */
-   {
-       uint32      va_header;
-       uint32      va_tcinfo;  /* Original data size (excludes header) and
-                                * compression method; see va_extinfo */
-       char        va_data[FLEXIBLE_ARRAY_MEMBER]; /* Compressed data */
-   }           va_compressed;
-} varattrib_4b;
-
-typedef struct
-{
-   uint8       va_header;
-   char        va_data[FLEXIBLE_ARRAY_MEMBER]; /* Data begins here */
-} varattrib_1b;
-
-/* TOAST pointers are a subset of varattrib_1b with an identifying tag byte */
-typedef struct
-{
-   uint8       va_header;      /* Always 0x80 or 0x01 */
-   uint8       va_tag;         /* Type of datum */
-   char        va_data[FLEXIBLE_ARRAY_MEMBER]; /* Type-specific data */
-} varattrib_1b_e;
-
-/*
- * Bit layouts for varlena headers on big-endian machines:
- *
- * 00xxxxxx 4-byte length word, aligned, uncompressed data (up to 1G)
- * 01xxxxxx 4-byte length word, aligned, *compressed* data (up to 1G)
- * 10000000 1-byte length word, unaligned, TOAST pointer
- * 1xxxxxxx 1-byte length word, unaligned, uncompressed data (up to 126b)
- *
- * Bit layouts for varlena headers on little-endian machines:
- *
- * xxxxxx00 4-byte length word, aligned, uncompressed data (up to 1G)
- * xxxxxx10 4-byte length word, aligned, *compressed* data (up to 1G)
- * 00000001 1-byte length word, unaligned, TOAST pointer
- * xxxxxxx1 1-byte length word, unaligned, uncompressed data (up to 126b)
- *
- * The "xxx" bits are the length field (which includes itself in all cases).
- * In the big-endian case we mask to extract the length, in the little-endian
- * case we shift.  Note that in both cases the flag bits are in the physically
- * first byte.  Also, it is not possible for a 1-byte length word to be zero;
- * this lets us disambiguate alignment padding bytes from the start of an
- * unaligned datum.  (We now *require* pad bytes to be filled with zero!)
- *
- * In TOAST pointers the va_tag field (see varattrib_1b_e) is used to discern
- * the specific type and length of the pointer datum.
- */
-
-/*
- * Endian-dependent macros.  These are considered internal --- use the
- * external macros below instead of using these directly.
- *
- * Note: IS_1B is true for external toast records but VARSIZE_1B will return 0
- * for such records. Hence you should usually check for IS_EXTERNAL before
- * checking for IS_1B.
- */
-
-#ifdef WORDS_BIGENDIAN
-
-#define VARATT_IS_4B(PTR) \
-   ((((varattrib_1b *) (PTR))->va_header & 0x80) == 0x00)
-#define VARATT_IS_4B_U(PTR) \
-   ((((varattrib_1b *) (PTR))->va_header & 0xC0) == 0x00)
-#define VARATT_IS_4B_C(PTR) \
-   ((((varattrib_1b *) (PTR))->va_header & 0xC0) == 0x40)
-#define VARATT_IS_1B(PTR) \
-   ((((varattrib_1b *) (PTR))->va_header & 0x80) == 0x80)
-#define VARATT_IS_1B_E(PTR) \
-   ((((varattrib_1b *) (PTR))->va_header) == 0x80)
-#define VARATT_NOT_PAD_BYTE(PTR) \
-   (*((uint8 *) (PTR)) != 0)
-
-/* VARSIZE_4B() should only be used on known-aligned data */
-#define VARSIZE_4B(PTR) \
-   (((varattrib_4b *) (PTR))->va_4byte.va_header & 0x3FFFFFFF)
-#define VARSIZE_1B(PTR) \
-   (((varattrib_1b *) (PTR))->va_header & 0x7F)
-#define VARTAG_1B_E(PTR) \
-   (((varattrib_1b_e *) (PTR))->va_tag)
-
-#define SET_VARSIZE_4B(PTR,len) \
-   (((varattrib_4b *) (PTR))->va_4byte.va_header = (len) & 0x3FFFFFFF)
-#define SET_VARSIZE_4B_C(PTR,len) \
-   (((varattrib_4b *) (PTR))->va_4byte.va_header = ((len) & 0x3FFFFFFF) | 0x40000000)
-#define SET_VARSIZE_1B(PTR,len) \
-   (((varattrib_1b *) (PTR))->va_header = (len) | 0x80)
-#define SET_VARTAG_1B_E(PTR,tag) \
-   (((varattrib_1b_e *) (PTR))->va_header = 0x80, \
-    ((varattrib_1b_e *) (PTR))->va_tag = (tag))
-
-#else                          /* !WORDS_BIGENDIAN */
-
-#define VARATT_IS_4B(PTR) \
-   ((((varattrib_1b *) (PTR))->va_header & 0x01) == 0x00)
-#define VARATT_IS_4B_U(PTR) \
-   ((((varattrib_1b *) (PTR))->va_header & 0x03) == 0x00)
-#define VARATT_IS_4B_C(PTR) \
-   ((((varattrib_1b *) (PTR))->va_header & 0x03) == 0x02)
-#define VARATT_IS_1B(PTR) \
-   ((((varattrib_1b *) (PTR))->va_header & 0x01) == 0x01)
-#define VARATT_IS_1B_E(PTR) \
-   ((((varattrib_1b *) (PTR))->va_header) == 0x01)
-#define VARATT_NOT_PAD_BYTE(PTR) \
-   (*((uint8 *) (PTR)) != 0)
-
-/* VARSIZE_4B() should only be used on known-aligned data */
-#define VARSIZE_4B(PTR) \
-   ((((varattrib_4b *) (PTR))->va_4byte.va_header >> 2) & 0x3FFFFFFF)
-#define VARSIZE_1B(PTR) \
-   ((((varattrib_1b *) (PTR))->va_header >> 1) & 0x7F)
-#define VARTAG_1B_E(PTR) \
-   (((varattrib_1b_e *) (PTR))->va_tag)
-
-#define SET_VARSIZE_4B(PTR,len) \
-   (((varattrib_4b *) (PTR))->va_4byte.va_header = (((uint32) (len)) << 2))
-#define SET_VARSIZE_4B_C(PTR,len) \
-   (((varattrib_4b *) (PTR))->va_4byte.va_header = (((uint32) (len)) << 2) | 0x02)
-#define SET_VARSIZE_1B(PTR,len) \
-   (((varattrib_1b *) (PTR))->va_header = (((uint8) (len)) << 1) | 0x01)
-#define SET_VARTAG_1B_E(PTR,tag) \
-   (((varattrib_1b_e *) (PTR))->va_header = 0x01, \
-    ((varattrib_1b_e *) (PTR))->va_tag = (tag))
-
-#endif                         /* WORDS_BIGENDIAN */
-
-#define VARDATA_4B(PTR)        (((varattrib_4b *) (PTR))->va_4byte.va_data)
-#define VARDATA_4B_C(PTR)  (((varattrib_4b *) (PTR))->va_compressed.va_data)
-#define VARDATA_1B(PTR)        (((varattrib_1b *) (PTR))->va_data)
-#define VARDATA_1B_E(PTR)  (((varattrib_1b_e *) (PTR))->va_data)
-
-/*
- * Externally visible TOAST macros begin here.
- */
-
-#define VARHDRSZ_EXTERNAL      offsetof(varattrib_1b_e, va_data)
-#define VARHDRSZ_COMPRESSED        offsetof(varattrib_4b, va_compressed.va_data)
-#define VARHDRSZ_SHORT         offsetof(varattrib_1b, va_data)
-
-#define VARATT_SHORT_MAX       0x7F
-#define VARATT_CAN_MAKE_SHORT(PTR) \
-   (VARATT_IS_4B_U(PTR) && \
-    (VARSIZE(PTR) - VARHDRSZ + VARHDRSZ_SHORT) <= VARATT_SHORT_MAX)
-#define VARATT_CONVERTED_SHORT_SIZE(PTR) \
-   (VARSIZE(PTR) - VARHDRSZ + VARHDRSZ_SHORT)
-
-/*
- * In consumers oblivious to data alignment, call PG_DETOAST_DATUM_PACKED(),
- * VARDATA_ANY(), VARSIZE_ANY() and VARSIZE_ANY_EXHDR().  Elsewhere, call
- * PG_DETOAST_DATUM(), VARDATA() and VARSIZE().  Directly fetching an int16,
- * int32 or wider field in the struct representing the datum layout requires
- * aligned data.  memcpy() is alignment-oblivious, as are most operations on
- * datatypes, such as text, whose layout struct contains only char fields.
- *
- * Code assembling a new datum should call VARDATA() and SET_VARSIZE().
- * (Datums begin life untoasted.)
- *
- * Other macros here should usually be used only by tuple assembly/disassembly
- * code and code that specifically wants to work with still-toasted Datums.
- */
-#define VARDATA(PTR)                       VARDATA_4B(PTR)
-#define VARSIZE(PTR)                       VARSIZE_4B(PTR)
-
-#define VARSIZE_SHORT(PTR)                 VARSIZE_1B(PTR)
-#define VARDATA_SHORT(PTR)                 VARDATA_1B(PTR)
-
-#define VARTAG_EXTERNAL(PTR)               VARTAG_1B_E(PTR)
-#define VARSIZE_EXTERNAL(PTR)              (VARHDRSZ_EXTERNAL + VARTAG_SIZE(VARTAG_EXTERNAL(PTR)))
-#define VARDATA_EXTERNAL(PTR)              VARDATA_1B_E(PTR)
-
-#define VARATT_IS_COMPRESSED(PTR)          VARATT_IS_4B_C(PTR)
-#define VARATT_IS_EXTERNAL(PTR)                VARATT_IS_1B_E(PTR)
-#define VARATT_IS_EXTERNAL_ONDISK(PTR) \
-   (VARATT_IS_EXTERNAL(PTR) && VARTAG_EXTERNAL(PTR) == VARTAG_ONDISK)
-#define VARATT_IS_EXTERNAL_INDIRECT(PTR) \
-   (VARATT_IS_EXTERNAL(PTR) && VARTAG_EXTERNAL(PTR) == VARTAG_INDIRECT)
-#define VARATT_IS_EXTERNAL_EXPANDED_RO(PTR) \
-   (VARATT_IS_EXTERNAL(PTR) && VARTAG_EXTERNAL(PTR) == VARTAG_EXPANDED_RO)
-#define VARATT_IS_EXTERNAL_EXPANDED_RW(PTR) \
-   (VARATT_IS_EXTERNAL(PTR) && VARTAG_EXTERNAL(PTR) == VARTAG_EXPANDED_RW)
-#define VARATT_IS_EXTERNAL_EXPANDED(PTR) \
-   (VARATT_IS_EXTERNAL(PTR) && VARTAG_IS_EXPANDED(VARTAG_EXTERNAL(PTR)))
-#define VARATT_IS_EXTERNAL_NON_EXPANDED(PTR) \
-   (VARATT_IS_EXTERNAL(PTR) && !VARTAG_IS_EXPANDED(VARTAG_EXTERNAL(PTR)))
-#define VARATT_IS_SHORT(PTR)               VARATT_IS_1B(PTR)
-#define VARATT_IS_EXTENDED(PTR)                (!VARATT_IS_4B_U(PTR))
-
-#define SET_VARSIZE(PTR, len)              SET_VARSIZE_4B(PTR, len)
-#define SET_VARSIZE_SHORT(PTR, len)            SET_VARSIZE_1B(PTR, len)
-#define SET_VARSIZE_COMPRESSED(PTR, len)   SET_VARSIZE_4B_C(PTR, len)
-
-#define SET_VARTAG_EXTERNAL(PTR, tag)      SET_VARTAG_1B_E(PTR, tag)
-
-#define VARSIZE_ANY(PTR) \
-   (VARATT_IS_1B_E(PTR) ? VARSIZE_EXTERNAL(PTR) : \
-    (VARATT_IS_1B(PTR) ? VARSIZE_1B(PTR) : \
-     VARSIZE_4B(PTR)))
-
-/* Size of a varlena data, excluding header */
-#define VARSIZE_ANY_EXHDR(PTR) \
-   (VARATT_IS_1B_E(PTR) ? VARSIZE_EXTERNAL(PTR)-VARHDRSZ_EXTERNAL : \
-    (VARATT_IS_1B(PTR) ? VARSIZE_1B(PTR)-VARHDRSZ_SHORT : \
-     VARSIZE_4B(PTR)-VARHDRSZ))
-
-/* caution: this will not work on an external or compressed-in-line Datum */
-/* caution: this will return a possibly unaligned pointer */
-#define VARDATA_ANY(PTR) \
-    (VARATT_IS_1B(PTR) ? VARDATA_1B(PTR) : VARDATA_4B(PTR))
-
-/* Decompressed size and compression method of a compressed-in-line Datum */
-#define VARDATA_COMPRESSED_GET_EXTSIZE(PTR) \
-   (((varattrib_4b *) (PTR))->va_compressed.va_tcinfo & VARLENA_EXTSIZE_MASK)
-#define VARDATA_COMPRESSED_GET_COMPRESS_METHOD(PTR) \
-   (((varattrib_4b *) (PTR))->va_compressed.va_tcinfo >> VARLENA_EXTSIZE_BITS)
-
-/* Same for external Datums; but note argument is a struct varatt_external */
-#define VARATT_EXTERNAL_GET_EXTSIZE(toast_pointer) \
-   ((toast_pointer).va_extinfo & VARLENA_EXTSIZE_MASK)
-#define VARATT_EXTERNAL_GET_COMPRESS_METHOD(toast_pointer) \
-   ((toast_pointer).va_extinfo >> VARLENA_EXTSIZE_BITS)
-
-#define VARATT_EXTERNAL_SET_SIZE_AND_COMPRESS_METHOD(toast_pointer, len, cm) \
-   do { \
-       Assert((cm) == TOAST_PGLZ_COMPRESSION_ID || \
-              (cm) == TOAST_LZ4_COMPRESSION_ID); \
-       ((toast_pointer).va_extinfo = \
-           (len) | ((uint32) (cm) << VARLENA_EXTSIZE_BITS)); \
-   } while (0)
-
-/*
- * Testing whether an externally-stored value is compressed now requires
- * comparing size stored in va_extinfo (the actual length of the external data)
- * to rawsize (the original uncompressed datum's size).  The latter includes
- * VARHDRSZ overhead, the former doesn't.  We never use compression unless it
- * actually saves space, so we expect either equality or less-than.
- */
-#define VARATT_EXTERNAL_IS_COMPRESSED(toast_pointer) \
-   (VARATT_EXTERNAL_GET_EXTSIZE(toast_pointer) < \
-    (toast_pointer).va_rawsize - VARHDRSZ)
-
-
-/* ----------------------------------------------------------------
- *             Section 2:  Datum type + support functions
+ *             Section 1:  Datum type + support functions
  * ----------------------------------------------------------------
  */
 
@@ -907,7 +559,7 @@ extern Datum Float8GetDatum(float8 X);
 
 
 /* ----------------------------------------------------------------
- *             Section 3:  miscellaneous
+ *             Section 2:  miscellaneous
  * ----------------------------------------------------------------
  */
 
index eefc912481027c0e9e5cd00c5d1f6726f91f63bb..a77bb7e7e9ae3817333194ae1ac67f9475ad1cf4 100644 (file)
@@ -44,6 +44,8 @@
 #ifndef EXPANDEDDATUM_H
 #define EXPANDEDDATUM_H
 
+#include "varatt.h"
+
 /* Size of an EXTERNAL datum that contains a pointer to an expanded object */
 #define EXPANDED_POINTER_SIZE (VARHDRSZ_EXTERNAL + sizeof(varatt_expanded))
 
diff --git a/src/include/varatt.h b/src/include/varatt.h
new file mode 100644 (file)
index 0000000..e348705
--- /dev/null
@@ -0,0 +1,358 @@
+/*-------------------------------------------------------------------------
+ *
+ * varatt.h
+ *   variable-length datatypes (TOAST support)
+ *
+ *
+ * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1995, Regents of the University of California
+ *
+ * src/include/varatt.h
+ *
+ *-------------------------------------------------------------------------
+ */
+
+#ifndef VARATT_H
+#define VARATT_H
+
+/*
+ * struct varatt_external is a traditional "TOAST pointer", that is, the
+ * information needed to fetch a Datum stored out-of-line in a TOAST table.
+ * The data is compressed if and only if the external size stored in
+ * va_extinfo is less than va_rawsize - VARHDRSZ.
+ *
+ * This struct must not contain any padding, because we sometimes compare
+ * these pointers using memcmp.
+ *
+ * Note that this information is stored unaligned within actual tuples, so
+ * you need to memcpy from the tuple into a local struct variable before
+ * you can look at these fields!  (The reason we use memcmp is to avoid
+ * having to do that just to detect equality of two TOAST pointers...)
+ */
+typedef struct varatt_external
+{
+   int32       va_rawsize;     /* Original data size (includes header) */
+   uint32      va_extinfo;     /* External saved size (without header) and
+                                * compression method */
+   Oid         va_valueid;     /* Unique ID of value within TOAST table */
+   Oid         va_toastrelid;  /* RelID of TOAST table containing it */
+}          varatt_external;
+
+/*
+ * These macros define the "saved size" portion of va_extinfo.  Its remaining
+ * two high-order bits identify the compression method.
+ */
+#define VARLENA_EXTSIZE_BITS   30
+#define VARLENA_EXTSIZE_MASK   ((1U << VARLENA_EXTSIZE_BITS) - 1)
+
+/*
+ * struct varatt_indirect is a "TOAST pointer" representing an out-of-line
+ * Datum that's stored in memory, not in an external toast relation.
+ * The creator of such a Datum is entirely responsible that the referenced
+ * storage survives for as long as referencing pointer Datums can exist.
+ *
+ * Note that just as for struct varatt_external, this struct is stored
+ * unaligned within any containing tuple.
+ */
+typedef struct varatt_indirect
+{
+   struct varlena *pointer;    /* Pointer to in-memory varlena */
+}          varatt_indirect;
+
+/*
+ * struct varatt_expanded is a "TOAST pointer" representing an out-of-line
+ * Datum that is stored in memory, in some type-specific, not necessarily
+ * physically contiguous format that is convenient for computation not
+ * storage.  APIs for this, in particular the definition of struct
+ * ExpandedObjectHeader, are in src/include/utils/expandeddatum.h.
+ *
+ * Note that just as for struct varatt_external, this struct is stored
+ * unaligned within any containing tuple.
+ */
+typedef struct ExpandedObjectHeader ExpandedObjectHeader;
+
+typedef struct varatt_expanded
+{
+   ExpandedObjectHeader *eohptr;
+} varatt_expanded;
+
+/*
+ * Type tag for the various sorts of "TOAST pointer" datums.  The peculiar
+ * value for VARTAG_ONDISK comes from a requirement for on-disk compatibility
+ * with a previous notion that the tag field was the pointer datum's length.
+ */
+typedef enum vartag_external
+{
+   VARTAG_INDIRECT = 1,
+   VARTAG_EXPANDED_RO = 2,
+   VARTAG_EXPANDED_RW = 3,
+   VARTAG_ONDISK = 18
+} vartag_external;
+
+/* this test relies on the specific tag values above */
+#define VARTAG_IS_EXPANDED(tag) \
+   (((tag) & ~1) == VARTAG_EXPANDED_RO)
+
+#define VARTAG_SIZE(tag) \
+   ((tag) == VARTAG_INDIRECT ? sizeof(varatt_indirect) : \
+    VARTAG_IS_EXPANDED(tag) ? sizeof(varatt_expanded) : \
+    (tag) == VARTAG_ONDISK ? sizeof(varatt_external) : \
+    (AssertMacro(false), 0))
+
+/*
+ * These structs describe the header of a varlena object that may have been
+ * TOASTed.  Generally, don't reference these structs directly, but use the
+ * macros below.
+ *
+ * We use separate structs for the aligned and unaligned cases because the
+ * compiler might otherwise think it could generate code that assumes
+ * alignment while touching fields of a 1-byte-header varlena.
+ */
+typedef union
+{
+   struct                      /* Normal varlena (4-byte length) */
+   {
+       uint32      va_header;
+       char        va_data[FLEXIBLE_ARRAY_MEMBER];
+   }           va_4byte;
+   struct                      /* Compressed-in-line format */
+   {
+       uint32      va_header;
+       uint32      va_tcinfo;  /* Original data size (excludes header) and
+                                * compression method; see va_extinfo */
+       char        va_data[FLEXIBLE_ARRAY_MEMBER]; /* Compressed data */
+   }           va_compressed;
+} varattrib_4b;
+
+typedef struct
+{
+   uint8       va_header;
+   char        va_data[FLEXIBLE_ARRAY_MEMBER]; /* Data begins here */
+} varattrib_1b;
+
+/* TOAST pointers are a subset of varattrib_1b with an identifying tag byte */
+typedef struct
+{
+   uint8       va_header;      /* Always 0x80 or 0x01 */
+   uint8       va_tag;         /* Type of datum */
+   char        va_data[FLEXIBLE_ARRAY_MEMBER]; /* Type-specific data */
+} varattrib_1b_e;
+
+/*
+ * Bit layouts for varlena headers on big-endian machines:
+ *
+ * 00xxxxxx 4-byte length word, aligned, uncompressed data (up to 1G)
+ * 01xxxxxx 4-byte length word, aligned, *compressed* data (up to 1G)
+ * 10000000 1-byte length word, unaligned, TOAST pointer
+ * 1xxxxxxx 1-byte length word, unaligned, uncompressed data (up to 126b)
+ *
+ * Bit layouts for varlena headers on little-endian machines:
+ *
+ * xxxxxx00 4-byte length word, aligned, uncompressed data (up to 1G)
+ * xxxxxx10 4-byte length word, aligned, *compressed* data (up to 1G)
+ * 00000001 1-byte length word, unaligned, TOAST pointer
+ * xxxxxxx1 1-byte length word, unaligned, uncompressed data (up to 126b)
+ *
+ * The "xxx" bits are the length field (which includes itself in all cases).
+ * In the big-endian case we mask to extract the length, in the little-endian
+ * case we shift.  Note that in both cases the flag bits are in the physically
+ * first byte.  Also, it is not possible for a 1-byte length word to be zero;
+ * this lets us disambiguate alignment padding bytes from the start of an
+ * unaligned datum.  (We now *require* pad bytes to be filled with zero!)
+ *
+ * In TOAST pointers the va_tag field (see varattrib_1b_e) is used to discern
+ * the specific type and length of the pointer datum.
+ */
+
+/*
+ * Endian-dependent macros.  These are considered internal --- use the
+ * external macros below instead of using these directly.
+ *
+ * Note: IS_1B is true for external toast records but VARSIZE_1B will return 0
+ * for such records. Hence you should usually check for IS_EXTERNAL before
+ * checking for IS_1B.
+ */
+
+#ifdef WORDS_BIGENDIAN
+
+#define VARATT_IS_4B(PTR) \
+   ((((varattrib_1b *) (PTR))->va_header & 0x80) == 0x00)
+#define VARATT_IS_4B_U(PTR) \
+   ((((varattrib_1b *) (PTR))->va_header & 0xC0) == 0x00)
+#define VARATT_IS_4B_C(PTR) \
+   ((((varattrib_1b *) (PTR))->va_header & 0xC0) == 0x40)
+#define VARATT_IS_1B(PTR) \
+   ((((varattrib_1b *) (PTR))->va_header & 0x80) == 0x80)
+#define VARATT_IS_1B_E(PTR) \
+   ((((varattrib_1b *) (PTR))->va_header) == 0x80)
+#define VARATT_NOT_PAD_BYTE(PTR) \
+   (*((uint8 *) (PTR)) != 0)
+
+/* VARSIZE_4B() should only be used on known-aligned data */
+#define VARSIZE_4B(PTR) \
+   (((varattrib_4b *) (PTR))->va_4byte.va_header & 0x3FFFFFFF)
+#define VARSIZE_1B(PTR) \
+   (((varattrib_1b *) (PTR))->va_header & 0x7F)
+#define VARTAG_1B_E(PTR) \
+   (((varattrib_1b_e *) (PTR))->va_tag)
+
+#define SET_VARSIZE_4B(PTR,len) \
+   (((varattrib_4b *) (PTR))->va_4byte.va_header = (len) & 0x3FFFFFFF)
+#define SET_VARSIZE_4B_C(PTR,len) \
+   (((varattrib_4b *) (PTR))->va_4byte.va_header = ((len) & 0x3FFFFFFF) | 0x40000000)
+#define SET_VARSIZE_1B(PTR,len) \
+   (((varattrib_1b *) (PTR))->va_header = (len) | 0x80)
+#define SET_VARTAG_1B_E(PTR,tag) \
+   (((varattrib_1b_e *) (PTR))->va_header = 0x80, \
+    ((varattrib_1b_e *) (PTR))->va_tag = (tag))
+
+#else                          /* !WORDS_BIGENDIAN */
+
+#define VARATT_IS_4B(PTR) \
+   ((((varattrib_1b *) (PTR))->va_header & 0x01) == 0x00)
+#define VARATT_IS_4B_U(PTR) \
+   ((((varattrib_1b *) (PTR))->va_header & 0x03) == 0x00)
+#define VARATT_IS_4B_C(PTR) \
+   ((((varattrib_1b *) (PTR))->va_header & 0x03) == 0x02)
+#define VARATT_IS_1B(PTR) \
+   ((((varattrib_1b *) (PTR))->va_header & 0x01) == 0x01)
+#define VARATT_IS_1B_E(PTR) \
+   ((((varattrib_1b *) (PTR))->va_header) == 0x01)
+#define VARATT_NOT_PAD_BYTE(PTR) \
+   (*((uint8 *) (PTR)) != 0)
+
+/* VARSIZE_4B() should only be used on known-aligned data */
+#define VARSIZE_4B(PTR) \
+   ((((varattrib_4b *) (PTR))->va_4byte.va_header >> 2) & 0x3FFFFFFF)
+#define VARSIZE_1B(PTR) \
+   ((((varattrib_1b *) (PTR))->va_header >> 1) & 0x7F)
+#define VARTAG_1B_E(PTR) \
+   (((varattrib_1b_e *) (PTR))->va_tag)
+
+#define SET_VARSIZE_4B(PTR,len) \
+   (((varattrib_4b *) (PTR))->va_4byte.va_header = (((uint32) (len)) << 2))
+#define SET_VARSIZE_4B_C(PTR,len) \
+   (((varattrib_4b *) (PTR))->va_4byte.va_header = (((uint32) (len)) << 2) | 0x02)
+#define SET_VARSIZE_1B(PTR,len) \
+   (((varattrib_1b *) (PTR))->va_header = (((uint8) (len)) << 1) | 0x01)
+#define SET_VARTAG_1B_E(PTR,tag) \
+   (((varattrib_1b_e *) (PTR))->va_header = 0x01, \
+    ((varattrib_1b_e *) (PTR))->va_tag = (tag))
+
+#endif                         /* WORDS_BIGENDIAN */
+
+#define VARDATA_4B(PTR)        (((varattrib_4b *) (PTR))->va_4byte.va_data)
+#define VARDATA_4B_C(PTR)  (((varattrib_4b *) (PTR))->va_compressed.va_data)
+#define VARDATA_1B(PTR)        (((varattrib_1b *) (PTR))->va_data)
+#define VARDATA_1B_E(PTR)  (((varattrib_1b_e *) (PTR))->va_data)
+
+/*
+ * Externally visible TOAST macros begin here.
+ */
+
+#define VARHDRSZ_EXTERNAL      offsetof(varattrib_1b_e, va_data)
+#define VARHDRSZ_COMPRESSED        offsetof(varattrib_4b, va_compressed.va_data)
+#define VARHDRSZ_SHORT         offsetof(varattrib_1b, va_data)
+
+#define VARATT_SHORT_MAX       0x7F
+#define VARATT_CAN_MAKE_SHORT(PTR) \
+   (VARATT_IS_4B_U(PTR) && \
+    (VARSIZE(PTR) - VARHDRSZ + VARHDRSZ_SHORT) <= VARATT_SHORT_MAX)
+#define VARATT_CONVERTED_SHORT_SIZE(PTR) \
+   (VARSIZE(PTR) - VARHDRSZ + VARHDRSZ_SHORT)
+
+/*
+ * In consumers oblivious to data alignment, call PG_DETOAST_DATUM_PACKED(),
+ * VARDATA_ANY(), VARSIZE_ANY() and VARSIZE_ANY_EXHDR().  Elsewhere, call
+ * PG_DETOAST_DATUM(), VARDATA() and VARSIZE().  Directly fetching an int16,
+ * int32 or wider field in the struct representing the datum layout requires
+ * aligned data.  memcpy() is alignment-oblivious, as are most operations on
+ * datatypes, such as text, whose layout struct contains only char fields.
+ *
+ * Code assembling a new datum should call VARDATA() and SET_VARSIZE().
+ * (Datums begin life untoasted.)
+ *
+ * Other macros here should usually be used only by tuple assembly/disassembly
+ * code and code that specifically wants to work with still-toasted Datums.
+ */
+#define VARDATA(PTR)                       VARDATA_4B(PTR)
+#define VARSIZE(PTR)                       VARSIZE_4B(PTR)
+
+#define VARSIZE_SHORT(PTR)                 VARSIZE_1B(PTR)
+#define VARDATA_SHORT(PTR)                 VARDATA_1B(PTR)
+
+#define VARTAG_EXTERNAL(PTR)               VARTAG_1B_E(PTR)
+#define VARSIZE_EXTERNAL(PTR)              (VARHDRSZ_EXTERNAL + VARTAG_SIZE(VARTAG_EXTERNAL(PTR)))
+#define VARDATA_EXTERNAL(PTR)              VARDATA_1B_E(PTR)
+
+#define VARATT_IS_COMPRESSED(PTR)          VARATT_IS_4B_C(PTR)
+#define VARATT_IS_EXTERNAL(PTR)                VARATT_IS_1B_E(PTR)
+#define VARATT_IS_EXTERNAL_ONDISK(PTR) \
+   (VARATT_IS_EXTERNAL(PTR) && VARTAG_EXTERNAL(PTR) == VARTAG_ONDISK)
+#define VARATT_IS_EXTERNAL_INDIRECT(PTR) \
+   (VARATT_IS_EXTERNAL(PTR) && VARTAG_EXTERNAL(PTR) == VARTAG_INDIRECT)
+#define VARATT_IS_EXTERNAL_EXPANDED_RO(PTR) \
+   (VARATT_IS_EXTERNAL(PTR) && VARTAG_EXTERNAL(PTR) == VARTAG_EXPANDED_RO)
+#define VARATT_IS_EXTERNAL_EXPANDED_RW(PTR) \
+   (VARATT_IS_EXTERNAL(PTR) && VARTAG_EXTERNAL(PTR) == VARTAG_EXPANDED_RW)
+#define VARATT_IS_EXTERNAL_EXPANDED(PTR) \
+   (VARATT_IS_EXTERNAL(PTR) && VARTAG_IS_EXPANDED(VARTAG_EXTERNAL(PTR)))
+#define VARATT_IS_EXTERNAL_NON_EXPANDED(PTR) \
+   (VARATT_IS_EXTERNAL(PTR) && !VARTAG_IS_EXPANDED(VARTAG_EXTERNAL(PTR)))
+#define VARATT_IS_SHORT(PTR)               VARATT_IS_1B(PTR)
+#define VARATT_IS_EXTENDED(PTR)                (!VARATT_IS_4B_U(PTR))
+
+#define SET_VARSIZE(PTR, len)              SET_VARSIZE_4B(PTR, len)
+#define SET_VARSIZE_SHORT(PTR, len)            SET_VARSIZE_1B(PTR, len)
+#define SET_VARSIZE_COMPRESSED(PTR, len)   SET_VARSIZE_4B_C(PTR, len)
+
+#define SET_VARTAG_EXTERNAL(PTR, tag)      SET_VARTAG_1B_E(PTR, tag)
+
+#define VARSIZE_ANY(PTR) \
+   (VARATT_IS_1B_E(PTR) ? VARSIZE_EXTERNAL(PTR) : \
+    (VARATT_IS_1B(PTR) ? VARSIZE_1B(PTR) : \
+     VARSIZE_4B(PTR)))
+
+/* Size of a varlena data, excluding header */
+#define VARSIZE_ANY_EXHDR(PTR) \
+   (VARATT_IS_1B_E(PTR) ? VARSIZE_EXTERNAL(PTR)-VARHDRSZ_EXTERNAL : \
+    (VARATT_IS_1B(PTR) ? VARSIZE_1B(PTR)-VARHDRSZ_SHORT : \
+     VARSIZE_4B(PTR)-VARHDRSZ))
+
+/* caution: this will not work on an external or compressed-in-line Datum */
+/* caution: this will return a possibly unaligned pointer */
+#define VARDATA_ANY(PTR) \
+    (VARATT_IS_1B(PTR) ? VARDATA_1B(PTR) : VARDATA_4B(PTR))
+
+/* Decompressed size and compression method of a compressed-in-line Datum */
+#define VARDATA_COMPRESSED_GET_EXTSIZE(PTR) \
+   (((varattrib_4b *) (PTR))->va_compressed.va_tcinfo & VARLENA_EXTSIZE_MASK)
+#define VARDATA_COMPRESSED_GET_COMPRESS_METHOD(PTR) \
+   (((varattrib_4b *) (PTR))->va_compressed.va_tcinfo >> VARLENA_EXTSIZE_BITS)
+
+/* Same for external Datums; but note argument is a struct varatt_external */
+#define VARATT_EXTERNAL_GET_EXTSIZE(toast_pointer) \
+   ((toast_pointer).va_extinfo & VARLENA_EXTSIZE_MASK)
+#define VARATT_EXTERNAL_GET_COMPRESS_METHOD(toast_pointer) \
+   ((toast_pointer).va_extinfo >> VARLENA_EXTSIZE_BITS)
+
+#define VARATT_EXTERNAL_SET_SIZE_AND_COMPRESS_METHOD(toast_pointer, len, cm) \
+   do { \
+       Assert((cm) == TOAST_PGLZ_COMPRESSION_ID || \
+              (cm) == TOAST_LZ4_COMPRESSION_ID); \
+       ((toast_pointer).va_extinfo = \
+           (len) | ((uint32) (cm) << VARLENA_EXTSIZE_BITS)); \
+   } while (0)
+
+/*
+ * Testing whether an externally-stored value is compressed now requires
+ * comparing size stored in va_extinfo (the actual length of the external data)
+ * to rawsize (the original uncompressed datum's size).  The latter includes
+ * VARHDRSZ overhead, the former doesn't.  We never use compression unless it
+ * actually saves space, so we expect either equality or less-than.
+ */
+#define VARATT_EXTERNAL_IS_COMPRESSED(toast_pointer) \
+   (VARATT_EXTERNAL_GET_EXTSIZE(toast_pointer) < \
+    (toast_pointer).va_rawsize - VARHDRSZ)
+
+#endif
index bb4580ebfa096e7a4c019261fed93db3e0af2f2c..0ecb87fe33adc994c7071697b5e14d7127ba4b88 100644 (file)
@@ -16,6 +16,7 @@
 #include "fmgr.h"
 #include "utils/builtins.h"
 #include "utils/bytea.h"       /* for byteain & byteaout */
+#include "varatt.h"
 
 /* perl stuff */
 #define PG_NEED_PERL_XSUB_H
index 1ff40d8012583e17c4b244afb9cada1ab0979269..99f9267df973f0bcbe880dd53926e6cf78e32ce0 100644 (file)
@@ -24,6 +24,7 @@
 #include "access/spgist.h"
 #include "catalog/pg_type.h"
 #include "utils/datum.h"
+#include "varatt.h"
 
 PG_MODULE_MAGIC;
 
index a06a31404a987d5b9d3a04c3c590734e9342b154..1727910ce7e98c3c9913db580937babcf24334a5 100644 (file)
@@ -22,6 +22,7 @@
 #include "access/xloginsert.h"
 #include "fmgr.h"
 #include "utils/pg_lsn.h"
+#include "varatt.h"
 
 PG_MODULE_MAGIC;
 
index cfe3af66311aea231e9314f6b54fee19c8e28860..906e943e2d95d9fc668789f0d356a0cbb5fb3e2d 100644 (file)
@@ -16,6 +16,7 @@
 #include "fmgr.h"
 #include "miscadmin.h"
 #include "pgstat.h"
+#include "varatt.h"
 
 #include "test_shm_mq.h"