rel.h 12.2 KB
Newer Older
1 2
/*-------------------------------------------------------------------------
 *
3
 * rel.h
4
 *	  POSTGRES relation descriptor (a/k/a relcache entry) definitions.
5 6
 *
 *
7
 * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
B
Add:  
Bruce Momjian 已提交
8
 * Portions Copyright (c) 1994, Regents of the University of California
9
 *
10
 * $PostgreSQL: pgsql/src/include/utils/rel.h,v 1.121 2010/02/04 00:09:14 tgl Exp $
11 12 13
 *
 *-------------------------------------------------------------------------
 */
14
#ifndef REL_H
15 16
#define REL_H

17
#include "access/tupdesc.h"
B
Bruce Momjian 已提交
18 19
#include "catalog/pg_am.h"
#include "catalog/pg_class.h"
20
#include "catalog/pg_index.h"
21
#include "fmgr.h"
22
#include "nodes/bitmapset.h"
23
#include "rewrite/prs2lock.h"
24 25
#include "storage/block.h"
#include "storage/relfilenode.h"
26
#include "utils/relcache.h"
27

28

29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
/*
 * LockRelId and LockInfo really belong to lmgr.h, but it's more convenient
 * to declare them here so we can have a LockInfoData field in a Relation.
 */

typedef struct LockRelId
{
	Oid			relId;			/* a relation identifier */
	Oid			dbId;			/* a database identifier */
} LockRelId;

typedef struct LockInfoData
{
	LockRelId	lockRelId;
} LockInfoData;

typedef LockInfoData *LockInfo;

47 48 49 50
/*
 * Likewise, this struct really belongs to trigger.h, but for convenience
 * we put it here.
 */
51 52
typedef struct Trigger
{
53 54
	Oid			tgoid;			/* OID of trigger (pg_trigger row) */
	/* Remaining fields are copied from pg_trigger, see pg_trigger.h */
55 56 57
	char	   *tgname;
	Oid			tgfoid;
	int16		tgtype;
58
	char		tgenabled;
59
	bool		tgisinternal;
60
	Oid			tgconstrrelid;
61
	Oid			tgconstrindid;
62
	Oid			tgconstraint;
63 64
	bool		tgdeferrable;
	bool		tginitdeferred;
65
	int16		tgnargs;
66 67
	int16		tgnattr;
	int16	   *tgattr;
68
	char	  **tgargs;
69
	char	   *tgqual;
70
} Trigger;
71 72 73

typedef struct TriggerDesc
{
74
	/*
B
Bruce Momjian 已提交
75 76
	 * Index data to identify which triggers are which.  Since each trigger
	 * can appear in more than one class, for each class we provide a list of
77 78
	 * integer indexes into the triggers array.  The class codes are defined
	 * by TRIGGER_EVENT_xxx macros in commands/trigger.h.
79
	 */
80
#define TRIGGER_NUM_EVENT_CLASSES  4
81 82 83 84 85 86 87 88 89 90 91

	uint16		n_before_statement[TRIGGER_NUM_EVENT_CLASSES];
	uint16		n_before_row[TRIGGER_NUM_EVENT_CLASSES];
	uint16		n_after_row[TRIGGER_NUM_EVENT_CLASSES];
	uint16		n_after_statement[TRIGGER_NUM_EVENT_CLASSES];
	int		   *tg_before_statement[TRIGGER_NUM_EVENT_CLASSES];
	int		   *tg_before_row[TRIGGER_NUM_EVENT_CLASSES];
	int		   *tg_after_row[TRIGGER_NUM_EVENT_CLASSES];
	int		   *tg_after_statement[TRIGGER_NUM_EVENT_CLASSES];

	/* The actual array of triggers is here */
92
	Trigger    *triggers;
93
	int			numtriggers;
94
} TriggerDesc;
95

96

97 98 99 100 101 102 103 104 105
/*
 * Cached lookup information for the index access method functions defined
 * by the pg_am row associated with an index relation.
 */
typedef struct RelationAmInfo
{
	FmgrInfo	aminsert;
	FmgrInfo	ambeginscan;
	FmgrInfo	amgettuple;
106
	FmgrInfo	amgetbitmap;
107 108 109 110 111 112 113 114
	FmgrInfo	amrescan;
	FmgrInfo	amendscan;
	FmgrInfo	ammarkpos;
	FmgrInfo	amrestrpos;
	FmgrInfo	ambuild;
	FmgrInfo	ambulkdelete;
	FmgrInfo	amvacuumcleanup;
	FmgrInfo	amcostestimate;
115
	FmgrInfo	amoptions;
116 117 118
} RelationAmInfo;


119 120 121
/*
 * Here are the contents of a relation cache entry.
 */
122

123 124
typedef struct RelationData
{
125 126
	RelFileNode rd_node;		/* relation physical identifier */
	/* use "struct" here to avoid needing to include smgr.h: */
B
Bruce Momjian 已提交
127
	struct SMgrRelationData *rd_smgr;	/* cached file handle, or NULL */
128 129
	BlockNumber rd_targblock;	/* current insertion target block, or
								 * InvalidBlockNumber */
130
	int			rd_refcnt;		/* reference count */
131
	bool		rd_istemp;		/* rel is a temporary relation */
132
	bool		rd_islocaltemp; /* rel is a temp rel of this session */
133 134
	bool		rd_isnailed;	/* rel is nailed in cache */
	bool		rd_isvalid;		/* relcache entry is valid */
B
Bruce Momjian 已提交
135 136
	char		rd_indexvalid;	/* state of rd_indexlist: 0 = not valid, 1 =
								 * valid, 2 = temporarily forced */
B
Bruce Momjian 已提交
137

138
	/*
139
	 * rd_createSubid is the ID of the highest subtransaction the rel has
B
Bruce Momjian 已提交
140 141 142
	 * survived into; or zero if the rel was not created in the current top
	 * transaction.  This should be relied on only for optimization purposes;
	 * it is possible for new-ness to be "forgotten" (eg, after CLUSTER).
B
Bruce Momjian 已提交
143 144 145
	 * Likewise, rd_newRelfilenodeSubid is the ID of the highest
	 * subtransaction the relfilenode change has survived into, or zero if not
	 * changed in the current transaction (or we have forgotten changing it).
146
	 */
147 148 149 150
	SubTransactionId rd_createSubid;	/* rel was created in current xact */
	SubTransactionId rd_newRelfilenodeSubid;	/* new relfilenode assigned in
												 * current xact */

151
	Form_pg_class rd_rel;		/* RELATION tuple */
152
	TupleDesc	rd_att;			/* tuple descriptor */
153
	Oid			rd_id;			/* relation's object id */
154
	List	   *rd_indexlist;	/* list of OIDs of indexes on relation */
155
	Bitmapset  *rd_indexattr;	/* identifies columns used in indexes */
156
	Oid			rd_oidindex;	/* OID of unique index on OID, if any */
157
	LockInfoData rd_lockInfo;	/* lock mgr's info for locking relation */
158
	RuleLock   *rd_rules;		/* rewrite rules */
159
	MemoryContext rd_rulescxt;	/* private memory cxt for rd_rules, if any */
160
	TriggerDesc *trigdesc;		/* Trigger info, or NULL if rel has none */
161

162 163
	/*
	 * rd_options is set whenever rd_rel is loaded into the relcache entry.
B
Bruce Momjian 已提交
164 165
	 * Note that you can NOT look into rd_rel for this data.  NULL means "use
	 * defaults".
166 167 168
	 */
	bytea	   *rd_options;		/* parsed pg_class.reloptions */

169 170
	/* These are non-NULL only for an index relation: */
	Form_pg_index rd_index;		/* pg_index tuple describing this index */
171
	/* use "struct" here to avoid needing to include htup.h: */
B
Bruce Momjian 已提交
172
	struct HeapTupleData *rd_indextuple;		/* all of pg_index tuple */
173 174
	Form_pg_am	rd_am;			/* pg_am tuple for index's AM */

175 176 177
	/*
	 * index access support info (used only for an index relation)
	 *
178
	 * Note: only default operators and support procs for each opclass are
179
	 * cached, namely those with lefttype and righttype equal to the opclass's
B
Bruce Momjian 已提交
180 181
	 * opcintype.  The arrays are indexed by strategy or support number, which
	 * is a sufficient identifier given that restriction.
182 183 184 185
	 *
	 * Note: rd_amcache is available for index AMs to cache private data about
	 * an index.  This must be just a cache since it may get reset at any time
	 * (in particular, it will get reset by a relcache inval message for the
B
Bruce Momjian 已提交
186
	 * index).	If used, it must point to a single memory chunk palloc'd in
187 188
	 * rd_indexcxt.  A relcache reset will include freeing that chunk and
	 * setting rd_amcache = NULL.
189
	 */
190
	MemoryContext rd_indexcxt;	/* private memory cxt for this stuff */
191
	RelationAmInfo *rd_aminfo;	/* lookup info for funcs found in pg_am */
192 193
	Oid		   *rd_opfamily;	/* OIDs of op families for each index col */
	Oid		   *rd_opcintype;	/* OIDs of opclass declared input data types */
194
	Oid		   *rd_operator;	/* OIDs of index operators */
195
	RegProcedure *rd_support;	/* OIDs of support procedures */
B
Bruce Momjian 已提交
196
	FmgrInfo   *rd_supportinfo; /* lookup info for support procedures */
197
	int16	   *rd_indoption;	/* per-column AM-specific flags */
198 199
	List	   *rd_indexprs;	/* index expression trees, if any */
	List	   *rd_indpred;		/* index predicate tree, if any */
200 201 202
	Oid		   *rd_exclops;		/* OIDs of exclusion operators, if any */
	Oid		   *rd_exclprocs;	/* OIDs of exclusion ops' procs, if any */
	uint16	   *rd_exclstrats;	/* exclusion ops' strategy numbers, if any */
203
	void	   *rd_amcache;		/* available for use by index AM */
204

205 206 207 208 209 210 211 212 213 214
	/*
	 * Hack for CLUSTER, rewriting ALTER TABLE, etc: when writing a new
	 * version of a table, we need to make any toast pointers inserted into it
	 * have the existing toast table's OID, not the OID of the transient toast
	 * table.  If rd_toastoid isn't InvalidOid, it is the OID to place in
	 * toast pointers inserted into this rel.  (Note it's set on the new
	 * version of the main heap, not the toast table itself.)
	 */
	Oid			rd_toastoid;	/* Real TOAST table's OID, or InvalidOid */

215 216 217 218
	/*
	 * sizes of the free space and visibility map forks, or InvalidBlockNumber
	 * if not known yet
	 */
219 220
	BlockNumber rd_fsm_nblocks;
	BlockNumber rd_vm_nblocks;
221

222
	/* use "struct" here to avoid needing to include pgstat.h: */
B
Bruce Momjian 已提交
223
	struct PgStat_TableStatus *pgstat_info;		/* statistics collection area */
224
} RelationData;
225

226 227 228 229 230 231 232 233
/*
 * StdRdOptions
 *		Standard contents of rd_options for heaps and generic indexes.
 *
 * RelationGetFillFactor() and RelationGetTargetPageFreeSpace() can only
 * be applied to relations that use this format or a superset for
 * private options data.
 */
234 235 236
 /* autovacuum-related reloptions. */
typedef struct AutoVacOpts
{
237 238 239 240 241 242 243 244 245 246
	bool		enabled;
	int			vacuum_threshold;
	int			analyze_threshold;
	int			vacuum_cost_delay;
	int			vacuum_cost_limit;
	int			freeze_min_age;
	int			freeze_max_age;
	int			freeze_table_age;
	float8		vacuum_scale_factor;
	float8		analyze_scale_factor;
247 248
} AutoVacOpts;

249 250
typedef struct StdRdOptions
{
251
	int32		vl_len_;		/* varlena header (do not touch directly!) */
B
Bruce Momjian 已提交
252
	int			fillfactor;		/* page fill factor in percent (0..100) */
253
	AutoVacOpts autovacuum;		/* autovacuum-related options */
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
} StdRdOptions;

#define HEAP_MIN_FILLFACTOR			10
#define HEAP_DEFAULT_FILLFACTOR		100

/*
 * RelationGetFillFactor
 *		Returns the relation's fillfactor.  Note multiple eval of argument!
 */
#define RelationGetFillFactor(relation, defaultff) \
	((relation)->rd_options ? \
	 ((StdRdOptions *) (relation)->rd_options)->fillfactor : (defaultff))

/*
 * RelationGetTargetPageUsage
 *		Returns the relation's desired space usage per page in bytes.
 */
#define RelationGetTargetPageUsage(relation, defaultff) \
	(BLCKSZ * RelationGetFillFactor(relation, defaultff) / 100)

/*
 * RelationGetTargetPageFreeSpace
 *		Returns the relation's desired freespace per page in bytes.
 */
#define RelationGetTargetPageFreeSpace(relation, defaultff) \
	(BLCKSZ * (100 - RelationGetFillFactor(relation, defaultff)) / 100)

281
/*
B
Bruce Momjian 已提交
282
 * RelationIsValid
283
 *		True iff relation descriptor is valid.
284
 */
285
#define RelationIsValid(relation) PointerIsValid(relation)
286

287 288
#define InvalidRelation ((Relation) NULL)

289
/*
B
Bruce Momjian 已提交
290
 * RelationHasReferenceCountZero
291
 *		True iff relation reference count is zero.
292 293
 *
 * Note:
294
 *		Assumes relation descriptor is valid.
295 296
 */
#define RelationHasReferenceCountZero(relation) \
297
		((bool)((relation)->rd_refcnt == 0))
298 299

/*
B
Bruce Momjian 已提交
300
 * RelationGetForm
301
 *		Returns pg_class tuple for a relation.
302 303
 *
 * Note:
304
 *		Assumes relation descriptor is valid.
305
 */
306
#define RelationGetForm(relation) ((relation)->rd_rel)
307

308
/*
B
Bruce Momjian 已提交
309
 * RelationGetRelid
N
Neil Conway 已提交
310
 *		Returns the OID of the relation
311
 */
312
#define RelationGetRelid(relation) ((relation)->rd_id)
313 314

/*
315
 * RelationGetNumberOfAttributes
N
Neil Conway 已提交
316
 *		Returns the number of attributes in a relation.
317 318 319 320
 */
#define RelationGetNumberOfAttributes(relation) ((relation)->rd_rel->relnatts)

/*
B
Bruce Momjian 已提交
321
 * RelationGetDescr
322
 *		Returns tuple descriptor for a relation.
323
 */
324
#define RelationGetDescr(relation) ((relation)->rd_att)
325

326 327
/*
 * RelationGetRelationName
N
Neil Conway 已提交
328
 *		Returns the rel's name.
329
 *
330
 * Note that the name is only unique within the containing namespace.
331 332
 */
#define RelationGetRelationName(relation) \
333
	(NameStr((relation)->rd_rel->relname))
334

335 336
/*
 * RelationGetNamespace
N
Neil Conway 已提交
337
 *		Returns the rel's namespace OID.
338 339 340 341
 */
#define RelationGetNamespace(relation) \
	((relation)->rd_rel->relnamespace)

342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
/*
 * RelationOpenSmgr
 *		Open the relation at the smgr level, if not already done.
 */
#define RelationOpenSmgr(relation) \
	do { \
		if ((relation)->rd_smgr == NULL) \
			smgrsetowner(&((relation)->rd_smgr), smgropen((relation)->rd_node)); \
	} while (0)

/*
 * RelationCloseSmgr
 *		Close the relation at the smgr level, if not already done.
 *
 * Note: smgrclose should unhook from owner pointer, hence the Assert.
 */
#define RelationCloseSmgr(relation) \
	do { \
		if ((relation)->rd_smgr != NULL) \
		{ \
			smgrclose((relation)->rd_smgr); \
			Assert((relation)->rd_smgr == NULL); \
		} \
	} while (0)

367 368 369 370 371 372 373 374
/*
 * RELATION_IS_LOCAL
 *		If a rel is either temp or newly created in the current transaction,
 *		it can be assumed to be visible only to the current backend.
 *
 * Beware of multiple eval of argument
 */
#define RELATION_IS_LOCAL(relation) \
375
	((relation)->rd_islocaltemp || \
376
	 (relation)->rd_createSubid != InvalidSubTransactionId)
377

378 379 380 381 382 383 384 385 386
/*
 * RELATION_IS_OTHER_TEMP
 *		Test for a temporary relation that belongs to some other session.
 *
 * Beware of multiple eval of argument
 */
#define RELATION_IS_OTHER_TEMP(relation) \
	((relation)->rd_istemp && !(relation)->rd_islocaltemp)

387 388 389 390
/* routines in utils/cache/relcache.c */
extern void RelationIncrementReferenceCount(Relation rel);
extern void RelationDecrementReferenceCount(Relation rel);

391
#endif   /* REL_H */