1 /*-------------------------------------------------------------------------
4 * Declarations for PostgreSQL large objects. POSTGRES 4.2 supported
5 * zillions of large objects (internal, external, jaquith, inversion).
6 * Now we only support inversion.
8 * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
9 * Portions Copyright (c) 1994, Regents of the University of California
11 * src/include/storage/large_object.h
13 *-------------------------------------------------------------------------
15 #ifndef LARGE_OBJECT_H
16 #define LARGE_OBJECT_H
18 #include "utils/snapshot.h"
22 * Data about a currently-open large object.
24 * id is the logical OID of the large object
25 * snapshot is the snapshot to use for read/write operations
26 * subid is the subtransaction that opened the desc (or currently owns it)
27 * offset is the current seek offset within the LO
28 * flags contains some flag bits
30 * NOTE: as of v11, permission checks are made when the large object is
31 * opened; therefore IFS_RDLOCK/IFS_WRLOCK indicate that read or write mode
32 * has been requested *and* the corresponding permission has been checked.
34 * NOTE: before 7.1, we also had to store references to the separate table
35 * and index of a specific large object. Now they all live in pg_largeobject
36 * and are accessed via a common relation descriptor.
39 typedef struct LargeObjectDesc
41 Oid id
; /* LO's identifier */
42 Snapshot snapshot
; /* snapshot to use */
43 SubTransactionId subid
; /* owning subtransaction ID */
44 uint64 offset
; /* current seek pointer */
45 int flags
; /* see flag bits below */
48 #define IFS_RDLOCK (1 << 0) /* LO was opened for reading */
49 #define IFS_WRLOCK (1 << 1) /* LO was opened for writing */
55 * Each "page" (tuple) of a large object can hold this much data
57 * We could set this as high as BLCKSZ less some overhead, but it seems
58 * better to make it a smaller value, so that not as much space is used
59 * up when a page-tuple is updated. Note that the value is deliberately
60 * chosen large enough to trigger the tuple toaster, so that we will
61 * attempt to compress page tuples in-line. (But they won't be moved off
62 * unless the user creates a toast-table for pg_largeobject...)
64 * Also, it seems to be a smart move to make the page size be a power of 2,
65 * since clients will often be written to send data in power-of-2 blocks.
66 * This avoids unnecessary tuple updates caused by partial-page writes.
68 * NB: Changing LOBLKSIZE requires an initdb.
70 #define LOBLKSIZE (BLCKSZ / 4)
73 * Maximum length in bytes for a large object. To make this larger, we'd
74 * have to widen pg_largeobject.pageno as well as various internal variables.
76 #define MAX_LARGE_OBJECT_SIZE ((int64) INT_MAX * LOBLKSIZE)
80 * GUC: backwards-compatibility flag to suppress LO permission checks
82 extern PGDLLIMPORT
bool lo_compat_privileges
;
85 * Function definitions...
88 /* inversion stuff in inv_api.c */
89 extern void close_lo_relation(bool isCommit
);
90 extern Oid
inv_create(Oid lobjId
);
91 extern LargeObjectDesc
*inv_open(Oid lobjId
, int flags
, MemoryContext mcxt
);
92 extern void inv_close(LargeObjectDesc
*obj_desc
);
93 extern int inv_drop(Oid lobjId
);
94 extern int64
inv_seek(LargeObjectDesc
*obj_desc
, int64 offset
, int whence
);
95 extern int64
inv_tell(LargeObjectDesc
*obj_desc
);
96 extern int inv_read(LargeObjectDesc
*obj_desc
, char *buf
, int nbytes
);
97 extern int inv_write(LargeObjectDesc
*obj_desc
, const char *buf
, int nbytes
);
98 extern void inv_truncate(LargeObjectDesc
*obj_desc
, int64 len
);
100 #endif /* LARGE_OBJECT_H */