Don't repeatedly register cache callbacks in pgoutput plugin.
[pgsql.git] / src / include / funcapi.h
bloba8bac0f8359e12df53c30c6b6240a39a8df225c8
1 /*-------------------------------------------------------------------------
3 * funcapi.h
4 * Definitions for functions which return composite type and/or sets
5 * or work on VARIADIC inputs.
7 * This file must be included by all Postgres modules that either define
8 * or call FUNCAPI-callable functions or macros.
11 * Copyright (c) 2002-2019, PostgreSQL Global Development Group
13 * src/include/funcapi.h
15 *-------------------------------------------------------------------------
17 #ifndef FUNCAPI_H
18 #define FUNCAPI_H
20 #include "fmgr.h"
21 #include "access/tupdesc.h"
22 #include "executor/executor.h"
23 #include "executor/tuptable.h"
26 /*-------------------------------------------------------------------------
27 * Support to ease writing Functions returning composite types
28 *-------------------------------------------------------------------------
30 * This struct holds arrays of individual attribute information
31 * needed to create a tuple from raw C strings. It also requires
32 * a copy of the TupleDesc. The information carried here
33 * is derived from the TupleDesc, but it is stored here to
34 * avoid redundant cpu cycles on each call to an SRF.
36 typedef struct AttInMetadata
38 /* full TupleDesc */
39 TupleDesc tupdesc;
41 /* array of attribute type input function finfo */
42 FmgrInfo *attinfuncs;
44 /* array of attribute type i/o parameter OIDs */
45 Oid *attioparams;
47 /* array of attribute typmod */
48 int32 *atttypmods;
49 } AttInMetadata;
51 /*-------------------------------------------------------------------------
52 * Support struct to ease writing Set Returning Functions (SRFs)
53 *-------------------------------------------------------------------------
55 * This struct holds function context for Set Returning Functions.
56 * Use fn_extra to hold a pointer to it across calls
58 typedef struct FuncCallContext
61 * Number of times we've been called before
63 * call_cntr is initialized to 0 for you by SRF_FIRSTCALL_INIT(), and
64 * incremented for you every time SRF_RETURN_NEXT() is called.
66 uint64 call_cntr;
69 * OPTIONAL maximum number of calls
71 * max_calls is here for convenience only and setting it is optional. If
72 * not set, you must provide alternative means to know when the function
73 * is done.
75 uint64 max_calls;
78 * OPTIONAL pointer to miscellaneous user-provided context information
80 * user_fctx is for use as a pointer to your own struct to retain
81 * arbitrary context information between calls of your function.
83 void *user_fctx;
86 * OPTIONAL pointer to struct containing attribute type input metadata
88 * attinmeta is for use when returning tuples (i.e. composite data types)
89 * and is not used when returning base data types. It is only needed if
90 * you intend to use BuildTupleFromCStrings() to create the return tuple.
92 AttInMetadata *attinmeta;
95 * memory context used for structures that must live for multiple calls
97 * multi_call_memory_ctx is set by SRF_FIRSTCALL_INIT() for you, and used
98 * by SRF_RETURN_DONE() for cleanup. It is the most appropriate memory
99 * context for any memory that is to be reused across multiple calls of
100 * the SRF.
102 MemoryContext multi_call_memory_ctx;
105 * OPTIONAL pointer to struct containing tuple description
107 * tuple_desc is for use when returning tuples (i.e. composite data types)
108 * and is only needed if you are going to build the tuples with
109 * heap_form_tuple() rather than with BuildTupleFromCStrings(). Note that
110 * the TupleDesc pointer stored here should usually have been run through
111 * BlessTupleDesc() first.
113 TupleDesc tuple_desc;
115 } FuncCallContext;
117 /*----------
118 * Support to ease writing functions returning composite types
120 * External declarations:
121 * get_call_result_type:
122 * Given a function's call info record, determine the kind of datatype
123 * it is supposed to return. If resultTypeId isn't NULL, *resultTypeId
124 * receives the actual datatype OID (this is mainly useful for scalar
125 * result types). If resultTupleDesc isn't NULL, *resultTupleDesc
126 * receives a pointer to a TupleDesc when the result is of a composite
127 * type, or NULL when it's a scalar result or the rowtype could not be
128 * determined. NB: the tupledesc should be copied if it is to be
129 * accessed over a long period.
130 * get_expr_result_type:
131 * Given an expression node, return the same info as for
132 * get_call_result_type. Note: the cases in which rowtypes cannot be
133 * determined are different from the cases for get_call_result_type.
134 * get_func_result_type:
135 * Given only a function's OID, return the same info as for
136 * get_call_result_type. Note: the cases in which rowtypes cannot be
137 * determined are different from the cases for get_call_result_type.
138 * Do *not* use this if you can use one of the others.
140 * See also get_expr_result_tupdesc(), which is a convenient wrapper around
141 * get_expr_result_type() for use when the caller only cares about
142 * determinable-rowtype cases.
143 *----------
146 /* Type categories for get_call_result_type and siblings */
147 typedef enum TypeFuncClass
149 TYPEFUNC_SCALAR, /* scalar result type */
150 TYPEFUNC_COMPOSITE, /* determinable rowtype result */
151 TYPEFUNC_COMPOSITE_DOMAIN, /* domain over determinable rowtype result */
152 TYPEFUNC_RECORD, /* indeterminate rowtype result */
153 TYPEFUNC_OTHER /* bogus type, eg pseudotype */
154 } TypeFuncClass;
156 extern TypeFuncClass get_call_result_type(FunctionCallInfo fcinfo,
157 Oid *resultTypeId,
158 TupleDesc *resultTupleDesc);
159 extern TypeFuncClass get_expr_result_type(Node *expr,
160 Oid *resultTypeId,
161 TupleDesc *resultTupleDesc);
162 extern TypeFuncClass get_func_result_type(Oid functionId,
163 Oid *resultTypeId,
164 TupleDesc *resultTupleDesc);
166 extern TupleDesc get_expr_result_tupdesc(Node *expr, bool noError);
168 extern bool resolve_polymorphic_argtypes(int numargs, Oid *argtypes,
169 char *argmodes,
170 Node *call_expr);
172 extern int get_func_arg_info(HeapTuple procTup,
173 Oid **p_argtypes, char ***p_argnames,
174 char **p_argmodes);
176 extern int get_func_input_arg_names(Datum proargnames, Datum proargmodes,
177 char ***arg_names);
179 extern int get_func_trftypes(HeapTuple procTup, Oid **p_trftypes);
180 extern char *get_func_result_name(Oid functionId);
182 extern TupleDesc build_function_result_tupdesc_d(char prokind,
183 Datum proallargtypes,
184 Datum proargmodes,
185 Datum proargnames);
186 extern TupleDesc build_function_result_tupdesc_t(HeapTuple procTuple);
189 /*----------
190 * Support to ease writing functions returning composite types
192 * External declarations:
193 * TupleDesc BlessTupleDesc(TupleDesc tupdesc) - "Bless" a completed tuple
194 * descriptor so that it can be used to return properly labeled tuples.
195 * You need to call this if you are going to use heap_form_tuple directly.
196 * TupleDescGetAttInMetadata does it for you, however, so no need to call
197 * it if you call TupleDescGetAttInMetadata.
198 * AttInMetadata *TupleDescGetAttInMetadata(TupleDesc tupdesc) - Build an
199 * AttInMetadata struct based on the given TupleDesc. AttInMetadata can
200 * be used in conjunction with C strings to produce a properly formed
201 * tuple.
202 * HeapTuple BuildTupleFromCStrings(AttInMetadata *attinmeta, char **values) -
203 * build a HeapTuple given user data in C string form. values is an array
204 * of C strings, one for each attribute of the return tuple.
205 * Datum HeapTupleHeaderGetDatum(HeapTupleHeader tuple) - convert a
206 * HeapTupleHeader to a Datum.
208 * Macro declarations:
209 * HeapTupleGetDatum(HeapTuple tuple) - convert a HeapTuple to a Datum.
211 * Obsolete routines and macros:
212 * TupleDesc RelationNameGetTupleDesc(const char *relname) - Use to get a
213 * TupleDesc based on a named relation.
214 * TupleDesc TypeGetTupleDesc(Oid typeoid, List *colaliases) - Use to get a
215 * TupleDesc based on a type OID.
216 * TupleGetDatum(TupleTableSlot *slot, HeapTuple tuple) - get a Datum
217 * given a tuple and a slot.
218 *----------
221 #define HeapTupleGetDatum(tuple) HeapTupleHeaderGetDatum((tuple)->t_data)
222 /* obsolete version of above */
223 #define TupleGetDatum(_slot, _tuple) HeapTupleGetDatum(_tuple)
225 extern TupleDesc RelationNameGetTupleDesc(const char *relname);
226 extern TupleDesc TypeGetTupleDesc(Oid typeoid, List *colaliases);
228 /* from execTuples.c */
229 extern TupleDesc BlessTupleDesc(TupleDesc tupdesc);
230 extern AttInMetadata *TupleDescGetAttInMetadata(TupleDesc tupdesc);
231 extern HeapTuple BuildTupleFromCStrings(AttInMetadata *attinmeta, char **values);
232 extern Datum HeapTupleHeaderGetDatum(HeapTupleHeader tuple);
235 /*----------
236 * Support for Set Returning Functions (SRFs)
238 * The basic API for SRFs using ValuePerCall mode looks something like this:
240 * Datum
241 * my_Set_Returning_Function(PG_FUNCTION_ARGS)
243 * FuncCallContext *funcctx;
244 * Datum result;
245 * MemoryContext oldcontext;
246 * <user defined declarations>
248 * if (SRF_IS_FIRSTCALL())
250 * funcctx = SRF_FIRSTCALL_INIT();
251 * // switch context when allocating stuff to be used in later calls
252 * oldcontext = MemoryContextSwitchTo(funcctx->multi_call_memory_ctx);
253 * <user defined code>
254 * <if returning composite>
255 * <build TupleDesc, and perhaps AttInMetadata>
256 * <endif returning composite>
257 * <user defined code>
258 * // return to original context when allocating transient memory
259 * MemoryContextSwitchTo(oldcontext);
261 * <user defined code>
262 * funcctx = SRF_PERCALL_SETUP();
263 * <user defined code>
265 * if (funcctx->call_cntr < funcctx->max_calls)
267 * <user defined code>
268 * <obtain result Datum>
269 * SRF_RETURN_NEXT(funcctx, result);
271 * else
272 * SRF_RETURN_DONE(funcctx);
275 * NOTE: there is no guarantee that a SRF using ValuePerCall mode will be
276 * run to completion; for example, a query with LIMIT might stop short of
277 * fetching all the rows. Therefore, do not expect that you can do resource
278 * cleanup just before SRF_RETURN_DONE(). You need not worry about releasing
279 * memory allocated in multi_call_memory_ctx, but holding file descriptors or
280 * other non-memory resources open across calls is a bug. SRFs that need
281 * such resources should not use these macros, but instead populate a
282 * tuplestore during a single call, and return that using SFRM_Materialize
283 * mode (see fmgr/README). Alternatively, set up a callback to release
284 * resources at query shutdown, using RegisterExprContextCallback().
286 *----------
289 /* from funcapi.c */
290 extern FuncCallContext *init_MultiFuncCall(PG_FUNCTION_ARGS);
291 extern FuncCallContext *per_MultiFuncCall(PG_FUNCTION_ARGS);
292 extern void end_MultiFuncCall(PG_FUNCTION_ARGS, FuncCallContext *funcctx);
294 #define SRF_IS_FIRSTCALL() (fcinfo->flinfo->fn_extra == NULL)
296 #define SRF_FIRSTCALL_INIT() init_MultiFuncCall(fcinfo)
298 #define SRF_PERCALL_SETUP() per_MultiFuncCall(fcinfo)
300 #define SRF_RETURN_NEXT(_funcctx, _result) \
301 do { \
302 ReturnSetInfo *rsi; \
303 (_funcctx)->call_cntr++; \
304 rsi = (ReturnSetInfo *) fcinfo->resultinfo; \
305 rsi->isDone = ExprMultipleResult; \
306 PG_RETURN_DATUM(_result); \
307 } while (0)
309 #define SRF_RETURN_NEXT_NULL(_funcctx) \
310 do { \
311 ReturnSetInfo *rsi; \
312 (_funcctx)->call_cntr++; \
313 rsi = (ReturnSetInfo *) fcinfo->resultinfo; \
314 rsi->isDone = ExprMultipleResult; \
315 PG_RETURN_NULL(); \
316 } while (0)
318 #define SRF_RETURN_DONE(_funcctx) \
319 do { \
320 ReturnSetInfo *rsi; \
321 end_MultiFuncCall(fcinfo, _funcctx); \
322 rsi = (ReturnSetInfo *) fcinfo->resultinfo; \
323 rsi->isDone = ExprEndResult; \
324 PG_RETURN_NULL(); \
325 } while (0)
327 /*----------
328 * Support to ease writing of functions dealing with VARIADIC inputs
329 *----------
331 * This function extracts a set of argument values, types and NULL markers
332 * for a given input function. This returns a set of data:
333 * - **values includes the set of Datum values extracted.
334 * - **types the data type OID for each element.
335 * - **nulls tracks if an element is NULL.
337 * variadic_start indicates the argument number where the VARIADIC argument
338 * starts.
339 * convert_unknown set to true will enforce the conversion of arguments
340 * with unknown data type to text.
342 * The return result is the number of elements stored, or -1 in the case of
343 * "VARIADIC NULL".
345 extern int extract_variadic_args(FunctionCallInfo fcinfo, int variadic_start,
346 bool convert_unknown, Datum **values,
347 Oid **types, bool **nulls);
349 #endif /* FUNCAPI_H */