PostgreSQL Source Code git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
amapi.c
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * amapi.c
4 * Support routines for API for Postgres index access methods.
5 *
6 * Copyright (c) 2015-2025, PostgreSQL Global Development Group
7 *
8 *
9 * IDENTIFICATION
10 * src/backend/access/index/amapi.c
11 *
12 *-------------------------------------------------------------------------
13 */
14#include "postgres.h"
15
16#include "access/amapi.h"
17#include "access/htup_details.h"
18#include "catalog/pg_am.h"
19#include "catalog/pg_opclass.h"
20#include "utils/fmgrprotos.h"
21#include "utils/syscache.h"
22
23
24/*
25 * GetIndexAmRoutine - call the specified access method handler routine to get
26 * its IndexAmRoutine struct, which will be palloc'd in the caller's context.
27 *
28 * Note that if the amhandler function is built-in, this will not involve
29 * any catalog access. It's therefore safe to use this while bootstrapping
30 * indexes for the system catalogs. relcache.c relies on that.
31 */
34{
35 Datum datum;
36 IndexAmRoutine *routine;
37
38 datum = OidFunctionCall0(amhandler);
39 routine = (IndexAmRoutine *) DatumGetPointer(datum);
40
41 if (routine == NULL || !IsA(routine, IndexAmRoutine))
42 elog(ERROR, "index access method handler function %u did not return an IndexAmRoutine struct",
43 amhandler);
44
45 return routine;
46}
47
48/*
49 * GetIndexAmRoutineByAmId - look up the handler of the index access method
50 * with the given OID, and get its IndexAmRoutine struct.
51 *
52 * If the given OID isn't a valid index access method, returns NULL if
53 * noerror is true, else throws error.
54 */
56GetIndexAmRoutineByAmId(Oid amoid, bool noerror)
57{
58 HeapTuple tuple;
59 Form_pg_am amform;
60 regproc amhandler;
61
62 /* Get handler function OID for the access method */
63 tuple = SearchSysCache1(AMOID, ObjectIdGetDatum(amoid));
64 if (!HeapTupleIsValid(tuple))
65 {
66 if (noerror)
67 return NULL;
68 elog(ERROR, "cache lookup failed for access method %u",
69 amoid);
70 }
71 amform = (Form_pg_am) GETSTRUCT(tuple);
72
73 /* Check if it's an index access method as opposed to some other AM */
74 if (amform->amtype != AMTYPE_INDEX)
75 {
76 if (noerror)
77 {
78 ReleaseSysCache(tuple);
79 return NULL;
80 }
82 (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
83 errmsg("access method \"%s\" is not of type %s",
84 NameStr(amform->amname), "INDEX")));
85 }
86
87 amhandler = amform->amhandler;
88
89 /* Complain if handler OID is invalid */
90 if (!RegProcedureIsValid(amhandler))
91 {
92 if (noerror)
93 {
94 ReleaseSysCache(tuple);
95 return NULL;
96 }
98 (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
99 errmsg("index access method \"%s\" does not have a handler",
100 NameStr(amform->amname))));
101 }
102
103 ReleaseSysCache(tuple);
104
105 /* And finally, call the handler function to get the API struct. */
106 return GetIndexAmRoutine(amhandler);
107}
108
109
110/*
111 * IndexAmTranslateStrategy - given an access method and strategy, get the
112 * corresponding compare type.
113 *
114 * If missing_ok is false, throw an error if no compare type is found. If
115 * true, just return COMPARE_INVALID.
116 */
118IndexAmTranslateStrategy(StrategyNumber strategy, Oid amoid, Oid opfamily, bool missing_ok)
119{
120 CompareType result;
121 IndexAmRoutine *amroutine;
122
123 /* shortcut for common case */
124 if (amoid == BTREE_AM_OID &&
125 (strategy > InvalidStrategy && strategy <= BTMaxStrategyNumber))
126 return (CompareType) strategy;
127
128 amroutine = GetIndexAmRoutineByAmId(amoid, false);
129 if (amroutine->amtranslatestrategy)
130 result = amroutine->amtranslatestrategy(strategy, opfamily);
131 else
132 result = COMPARE_INVALID;
133
134 if (!missing_ok && result == COMPARE_INVALID)
135 elog(ERROR, "could not translate strategy number %d for index AM %u", strategy, amoid);
136
137 return result;
138}
139
140/*
141 * IndexAmTranslateCompareType - given an access method and compare type, get
142 * the corresponding strategy number.
143 *
144 * If missing_ok is false, throw an error if no strategy is found correlating
145 * to the given cmptype. If true, just return InvalidStrategy.
146 */
148IndexAmTranslateCompareType(CompareType cmptype, Oid amoid, Oid opfamily, bool missing_ok)
149{
150 StrategyNumber result;
151 IndexAmRoutine *amroutine;
152
153 /* shortcut for common case */
154 if (amoid == BTREE_AM_OID &&
155 (cmptype > COMPARE_INVALID && cmptype <= COMPARE_GT))
156 return (StrategyNumber) cmptype;
157
158 amroutine = GetIndexAmRoutineByAmId(amoid, false);
159 if (amroutine->amtranslatecmptype)
160 result = amroutine->amtranslatecmptype(cmptype, opfamily);
161 else
162 result = InvalidStrategy;
163
164 if (!missing_ok && result == InvalidStrategy)
165 elog(ERROR, "could not translate compare type %u for index AM %u", cmptype, amoid);
166
167 return result;
168}
169
170/*
171 * Ask appropriate access method to validate the specified opclass.
172 */
173Datum
175{
176 Oid opclassoid = PG_GETARG_OID(0);
177 bool result;
178 HeapTuple classtup;
179 Form_pg_opclass classform;
180 Oid amoid;
181 IndexAmRoutine *amroutine;
182
183 classtup = SearchSysCache1(CLAOID, ObjectIdGetDatum(opclassoid));
184 if (!HeapTupleIsValid(classtup))
185 elog(ERROR, "cache lookup failed for operator class %u", opclassoid);
186 classform = (Form_pg_opclass) GETSTRUCT(classtup);
187
188 amoid = classform->opcmethod;
189
190 ReleaseSysCache(classtup);
191
192 amroutine = GetIndexAmRoutineByAmId(amoid, false);
193
194 if (amroutine->amvalidate == NULL)
195 elog(ERROR, "function amvalidate is not defined for index access method %u",
196 amoid);
197
198 result = amroutine->amvalidate(opclassoid);
199
200 pfree(amroutine);
201
202 PG_RETURN_BOOL(result);
203}
IndexAmRoutine * GetIndexAmRoutine(Oid amhandler)
Definition: amapi.c:33
StrategyNumber IndexAmTranslateCompareType(CompareType cmptype, Oid amoid, Oid opfamily, bool missing_ok)
Definition: amapi.c:148
Datum amvalidate(PG_FUNCTION_ARGS)
Definition: amapi.c:174
CompareType IndexAmTranslateStrategy(StrategyNumber strategy, Oid amoid, Oid opfamily, bool missing_ok)
Definition: amapi.c:118
IndexAmRoutine * GetIndexAmRoutineByAmId(Oid amoid, bool noerror)
Definition: amapi.c:56
#define NameStr(name)
Definition: c.h:717
#define RegProcedureIsValid(p)
Definition: c.h:748
Oid regproc
Definition: c.h:620
CompareType
Definition: cmptype.h:32
@ COMPARE_INVALID
Definition: cmptype.h:33
@ COMPARE_GT
Definition: cmptype.h:38
int errcode(int sqlerrcode)
Definition: elog.c:854
int errmsg(const char *fmt,...)
Definition: elog.c:1071
#define ERROR
Definition: elog.h:39
#define elog(elevel,...)
Definition: elog.h:226
#define ereport(elevel,...)
Definition: elog.h:149
#define PG_GETARG_OID(n)
Definition: fmgr.h:275
#define OidFunctionCall0(functionId)
Definition: fmgr.h:718
#define PG_FUNCTION_ARGS
Definition: fmgr.h:193
#define PG_RETURN_BOOL(x)
Definition: fmgr.h:359
#define HeapTupleIsValid(tuple)
Definition: htup.h:78
static void * GETSTRUCT(const HeapTupleData *tuple)
Definition: htup_details.h:728
void pfree(void *pointer)
Definition: mcxt.c:2146
#define IsA(nodeptr, _type_)
Definition: nodes.h:164
FormData_pg_am * Form_pg_am
Definition: pg_am.h:48
FormData_pg_opclass * Form_pg_opclass
Definition: pg_opclass.h:83
uintptr_t Datum
Definition: postgres.h:69
static Datum ObjectIdGetDatum(Oid X)
Definition: postgres.h:257
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:317
unsigned int Oid
Definition: postgres_ext.h:30
uint16 StrategyNumber
Definition: stratnum.h:22
#define InvalidStrategy
Definition: stratnum.h:24
#define BTMaxStrategyNumber
Definition: stratnum.h:35
amtranslate_strategy_function amtranslatestrategy
Definition: amapi.h:321
amtranslate_cmptype_function amtranslatecmptype
Definition: amapi.h:322
amvalidate_function amvalidate
Definition: amapi.h:305
void ReleaseSysCache(HeapTuple tuple)
Definition: syscache.c:269
HeapTuple SearchSysCache1(int cacheId, Datum key1)
Definition: syscache.c:221