PostgreSQL Source Code git master
fmgr.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * fmgr.h
4 * Definitions for the Postgres function manager and function-call
5 * interface.
6 *
7 * This file must be included by all Postgres modules that either define
8 * or call fmgr-callable functions.
9 *
10 *
11 * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
12 * Portions Copyright (c) 1994, Regents of the University of California
13 *
14 * src/include/fmgr.h
15 *
16 *-------------------------------------------------------------------------
17 */
18#ifndef FMGR_H
19#define FMGR_H
20
21/* We don't want to include primnodes.h here, so make some stub references */
22typedef struct Node Node;
23typedef struct Aggref Aggref;
24
25/* Likewise, avoid including execnodes.h here */
27
28/* Likewise, avoid including stringinfo.h here */
29typedef struct StringInfoData *StringInfo;
30
31
32/*
33 * All functions that can be called directly by fmgr must have this signature.
34 * (Other functions can be called by using a handler that does have this
35 * signature.)
36 */
37
39
40typedef Datum (*PGFunction) (FunctionCallInfo fcinfo);
41
42/*
43 * This struct holds the system-catalog information that must be looked up
44 * before a function can be called through fmgr. If the same function is
45 * to be called multiple times, the lookup need be done only once and the
46 * info struct saved for re-use.
47 *
48 * Note that fn_expr really is parse-time-determined information about the
49 * arguments, rather than about the function itself. But it's convenient to
50 * store it here rather than in FunctionCallInfoBaseData, where it might more
51 * logically belong.
52 *
53 * fn_extra is available for use by the called function; all other fields
54 * should be treated as read-only after the struct is created.
55 */
56typedef struct FmgrInfo
57{
58 PGFunction fn_addr; /* pointer to function or handler to be called */
59 Oid fn_oid; /* OID of function (NOT of handler, if any) */
60 short fn_nargs; /* number of input args (0..FUNC_MAX_ARGS) */
61 bool fn_strict; /* function is "strict" (NULL in => NULL out) */
62 bool fn_retset; /* function returns a set */
63 unsigned char fn_stats; /* collect stats if track_functions > this */
64 void *fn_extra; /* extra space for use by handler */
65 MemoryContext fn_mcxt; /* memory context to store fn_extra in */
66 Node *fn_expr; /* expression parse tree for call, or NULL */
68
69/*
70 * This struct is the data actually passed to an fmgr-called function.
71 *
72 * The called function is expected to set isnull, and possibly resultinfo or
73 * fields in whatever resultinfo points to. It should not change any other
74 * fields. (In particular, scribbling on the argument arrays is a bad idea,
75 * since some callers assume they can re-call with the same arguments.)
76 *
77 * Note that enough space for arguments needs to be provided, either by using
78 * SizeForFunctionCallInfo() in dynamic allocations, or by using
79 * LOCAL_FCINFO() for on-stack allocations.
80 *
81 * This struct is named *BaseData, rather than *Data, to break pre v12 code
82 * that allocated FunctionCallInfoData itself, as it'd often silently break
83 * old code due to no space for arguments being provided.
84 */
86{
87 FmgrInfo *flinfo; /* ptr to lookup info used for this call */
88 Node *context; /* pass info about context of call */
89 Node *resultinfo; /* pass or return extra info about result */
90 Oid fncollation; /* collation for function to use */
91#define FIELDNO_FUNCTIONCALLINFODATA_ISNULL 4
92 bool isnull; /* function must set true if result is NULL */
93 short nargs; /* # arguments actually passed */
94#define FIELDNO_FUNCTIONCALLINFODATA_ARGS 6
97
98/*
99 * Space needed for a FunctionCallInfoBaseData struct with sufficient space
100 * for `nargs` arguments.
101 */
102#define SizeForFunctionCallInfo(nargs) \
103 (offsetof(FunctionCallInfoBaseData, args) + \
104 sizeof(NullableDatum) * (nargs))
105
106/*
107 * This macro ensures that `name` points to a stack-allocated
108 * FunctionCallInfoBaseData struct with sufficient space for `nargs` arguments.
109 */
110#define LOCAL_FCINFO(name, nargs) \
111 /* use union with FunctionCallInfoBaseData to guarantee alignment */ \
112 union \
113 { \
114 FunctionCallInfoBaseData fcinfo; \
115 /* ensure enough space for nargs args is available */ \
116 char fcinfo_data[SizeForFunctionCallInfo(nargs)]; \
117 } name##data; \
118 FunctionCallInfo name = &name##data.fcinfo
119
120/*
121 * This routine fills a FmgrInfo struct, given the OID
122 * of the function to be called.
123 */
124extern void fmgr_info(Oid functionId, FmgrInfo *finfo);
125
126/*
127 * Same, when the FmgrInfo struct is in a memory context longer-lived than
128 * CurrentMemoryContext. The specified context will be set as fn_mcxt
129 * and used to hold all subsidiary data of finfo.
130 */
131extern void fmgr_info_cxt(Oid functionId, FmgrInfo *finfo,
132 MemoryContext mcxt);
133
134/* Convenience macro for setting the fn_expr field */
135#define fmgr_info_set_expr(expr, finfo) \
136 ((finfo)->fn_expr = (expr))
137
138/*
139 * Copy an FmgrInfo struct
140 */
141extern void fmgr_info_copy(FmgrInfo *dstinfo, FmgrInfo *srcinfo,
142 MemoryContext destcxt);
143
144extern void fmgr_symbol(Oid functionId, char **mod, char **fn);
145
146/*
147 * This macro initializes all the fields of a FunctionCallInfoBaseData except
148 * for the args[] array.
149 */
150#define InitFunctionCallInfoData(Fcinfo, Flinfo, Nargs, Collation, Context, Resultinfo) \
151 do { \
152 (Fcinfo).flinfo = (Flinfo); \
153 (Fcinfo).context = (Context); \
154 (Fcinfo).resultinfo = (Resultinfo); \
155 (Fcinfo).fncollation = (Collation); \
156 (Fcinfo).isnull = false; \
157 (Fcinfo).nargs = (Nargs); \
158 } while (0)
159
160/*
161 * This macro invokes a function given a filled-in FunctionCallInfoBaseData
162 * struct. The macro result is the returned Datum --- but note that
163 * caller must still check fcinfo->isnull! Also, if function is strict,
164 * it is caller's responsibility to verify that no null arguments are present
165 * before calling.
166 *
167 * Some code performs multiple calls without redoing InitFunctionCallInfoData,
168 * possibly altering the argument values. This is okay, but be sure to reset
169 * the fcinfo->isnull flag before each call, since callees are permitted to
170 * assume that starts out false.
171 */
172#define FunctionCallInvoke(fcinfo) ((* (fcinfo)->flinfo->fn_addr) (fcinfo))
173
174
175/*-------------------------------------------------------------------------
176 * Support macros to ease writing fmgr-compatible functions
177 *
178 * A C-coded fmgr-compatible function should be declared as
179 *
180 * Datum
181 * function_name(PG_FUNCTION_ARGS)
182 * {
183 * ...
184 * }
185 *
186 * It should access its arguments using appropriate PG_GETARG_xxx macros
187 * and should return its result using PG_RETURN_xxx.
188 *
189 *-------------------------------------------------------------------------
190 */
191
192/* Standard parameter list for fmgr-compatible functions */
193#define PG_FUNCTION_ARGS FunctionCallInfo fcinfo
194
195/*
196 * Get collation function should use.
197 */
198#define PG_GET_COLLATION() (fcinfo->fncollation)
199
200/*
201 * Get number of arguments passed to function.
202 */
203#define PG_NARGS() (fcinfo->nargs)
204
205/*
206 * If function is not marked "proisstrict" in pg_proc, it must check for
207 * null arguments using this macro. Do not try to GETARG a null argument!
208 */
209#define PG_ARGISNULL(n) (fcinfo->args[n].isnull)
210
211/*
212 * Support for fetching detoasted copies of toastable datatypes (all of
213 * which are varlena types). pg_detoast_datum() gives you either the input
214 * datum (if not toasted) or a detoasted copy allocated with palloc().
215 * pg_detoast_datum_copy() always gives you a palloc'd copy --- use it
216 * if you need a modifiable copy of the input. Caller is expected to have
217 * checked for null inputs first, if necessary.
218 *
219 * pg_detoast_datum_packed() will return packed (1-byte header) datums
220 * unmodified. It will still expand an externally toasted or compressed datum.
221 * The resulting datum can be accessed using VARSIZE_ANY() and VARDATA_ANY()
222 * (beware of multiple evaluations in those macros!)
223 *
224 * In consumers oblivious to data alignment, call PG_DETOAST_DATUM_PACKED(),
225 * VARDATA_ANY(), VARSIZE_ANY() and VARSIZE_ANY_EXHDR(). Elsewhere, call
226 * PG_DETOAST_DATUM(), VARDATA() and VARSIZE(). Directly fetching an int16,
227 * int32 or wider field in the struct representing the datum layout requires
228 * aligned data. memcpy() is alignment-oblivious, as are most operations on
229 * datatypes, such as text, whose layout struct contains only char fields.
230 *
231 * Note: it'd be nice if these could be macros, but I see no way to do that
232 * without evaluating the arguments multiple times, which is NOT acceptable.
233 */
234extern struct varlena *pg_detoast_datum(struct varlena *datum);
235extern struct varlena *pg_detoast_datum_copy(struct varlena *datum);
236extern struct varlena *pg_detoast_datum_slice(struct varlena *datum,
237 int32 first, int32 count);
238extern struct varlena *pg_detoast_datum_packed(struct varlena *datum);
239
240#define PG_DETOAST_DATUM(datum) \
241 pg_detoast_datum((struct varlena *) DatumGetPointer(datum))
242#define PG_DETOAST_DATUM_COPY(datum) \
243 pg_detoast_datum_copy((struct varlena *) DatumGetPointer(datum))
244#define PG_DETOAST_DATUM_SLICE(datum,f,c) \
245 pg_detoast_datum_slice((struct varlena *) DatumGetPointer(datum), \
246 (int32) (f), (int32) (c))
247/* WARNING -- unaligned pointer */
248#define PG_DETOAST_DATUM_PACKED(datum) \
249 pg_detoast_datum_packed((struct varlena *) DatumGetPointer(datum))
250
251/*
252 * Support for cleaning up detoasted copies of inputs. This must only
253 * be used for pass-by-ref datatypes, and normally would only be used
254 * for toastable types. If the given pointer is different from the
255 * original argument, assume it's a palloc'd detoasted copy, and pfree it.
256 * NOTE: most functions on toastable types do not have to worry about this,
257 * but we currently require that support functions for indexes not leak
258 * memory.
259 */
260#define PG_FREE_IF_COPY(ptr,n) \
261 do { \
262 if ((ptr) != PG_GETARG_POINTER(n)) \
263 pfree(ptr); \
264 } while (0)
265
266/* Macros for fetching arguments of standard types */
267
268#define PG_GETARG_DATUM(n) (fcinfo->args[n].value)
269#define PG_GETARG_INT32(n) DatumGetInt32(PG_GETARG_DATUM(n))
270#define PG_GETARG_UINT32(n) DatumGetUInt32(PG_GETARG_DATUM(n))
271#define PG_GETARG_INT16(n) DatumGetInt16(PG_GETARG_DATUM(n))
272#define PG_GETARG_UINT16(n) DatumGetUInt16(PG_GETARG_DATUM(n))
273#define PG_GETARG_CHAR(n) DatumGetChar(PG_GETARG_DATUM(n))
274#define PG_GETARG_BOOL(n) DatumGetBool(PG_GETARG_DATUM(n))
275#define PG_GETARG_OID(n) DatumGetObjectId(PG_GETARG_DATUM(n))
276#define PG_GETARG_OID8(n) DatumGetObjectId8(PG_GETARG_DATUM(n))
277#define PG_GETARG_POINTER(n) DatumGetPointer(PG_GETARG_DATUM(n))
278#define PG_GETARG_CSTRING(n) DatumGetCString(PG_GETARG_DATUM(n))
279#define PG_GETARG_NAME(n) DatumGetName(PG_GETARG_DATUM(n))
280#define PG_GETARG_TRANSACTIONID(n) DatumGetTransactionId(PG_GETARG_DATUM(n))
281/* these macros hide the pass-by-reference-ness of the datatype: */
282#define PG_GETARG_FLOAT4(n) DatumGetFloat4(PG_GETARG_DATUM(n))
283#define PG_GETARG_FLOAT8(n) DatumGetFloat8(PG_GETARG_DATUM(n))
284#define PG_GETARG_INT64(n) DatumGetInt64(PG_GETARG_DATUM(n))
285/* use this if you want the raw, possibly-toasted input datum: */
286#define PG_GETARG_RAW_VARLENA_P(n) ((struct varlena *) PG_GETARG_POINTER(n))
287/* use this if you want the input datum de-toasted: */
288#define PG_GETARG_VARLENA_P(n) PG_DETOAST_DATUM(PG_GETARG_DATUM(n))
289/* and this if you can handle 1-byte-header datums: */
290#define PG_GETARG_VARLENA_PP(n) PG_DETOAST_DATUM_PACKED(PG_GETARG_DATUM(n))
291/* DatumGetFoo macros for varlena types will typically look like this: */
292#define DatumGetByteaPP(X) ((bytea *) PG_DETOAST_DATUM_PACKED(X))
293#define DatumGetTextPP(X) ((text *) PG_DETOAST_DATUM_PACKED(X))
294#define DatumGetBpCharPP(X) ((BpChar *) PG_DETOAST_DATUM_PACKED(X))
295#define DatumGetVarCharPP(X) ((VarChar *) PG_DETOAST_DATUM_PACKED(X))
296#define DatumGetHeapTupleHeader(X) ((HeapTupleHeader) PG_DETOAST_DATUM(X))
297/* And we also offer variants that return an OK-to-write copy */
298#define DatumGetByteaPCopy(X) ((bytea *) PG_DETOAST_DATUM_COPY(X))
299#define DatumGetTextPCopy(X) ((text *) PG_DETOAST_DATUM_COPY(X))
300#define DatumGetBpCharPCopy(X) ((BpChar *) PG_DETOAST_DATUM_COPY(X))
301#define DatumGetVarCharPCopy(X) ((VarChar *) PG_DETOAST_DATUM_COPY(X))
302#define DatumGetHeapTupleHeaderCopy(X) ((HeapTupleHeader) PG_DETOAST_DATUM_COPY(X))
303/* Variants which return n bytes starting at pos. m */
304#define DatumGetByteaPSlice(X,m,n) ((bytea *) PG_DETOAST_DATUM_SLICE(X,m,n))
305#define DatumGetTextPSlice(X,m,n) ((text *) PG_DETOAST_DATUM_SLICE(X,m,n))
306#define DatumGetBpCharPSlice(X,m,n) ((BpChar *) PG_DETOAST_DATUM_SLICE(X,m,n))
307#define DatumGetVarCharPSlice(X,m,n) ((VarChar *) PG_DETOAST_DATUM_SLICE(X,m,n))
308/* GETARG macros for varlena types will typically look like this: */
309#define PG_GETARG_BYTEA_PP(n) DatumGetByteaPP(PG_GETARG_DATUM(n))
310#define PG_GETARG_TEXT_PP(n) DatumGetTextPP(PG_GETARG_DATUM(n))
311#define PG_GETARG_BPCHAR_PP(n) DatumGetBpCharPP(PG_GETARG_DATUM(n))
312#define PG_GETARG_VARCHAR_PP(n) DatumGetVarCharPP(PG_GETARG_DATUM(n))
313#define PG_GETARG_HEAPTUPLEHEADER(n) DatumGetHeapTupleHeader(PG_GETARG_DATUM(n))
314/* And we also offer variants that return an OK-to-write copy */
315#define PG_GETARG_BYTEA_P_COPY(n) DatumGetByteaPCopy(PG_GETARG_DATUM(n))
316#define PG_GETARG_TEXT_P_COPY(n) DatumGetTextPCopy(PG_GETARG_DATUM(n))
317#define PG_GETARG_BPCHAR_P_COPY(n) DatumGetBpCharPCopy(PG_GETARG_DATUM(n))
318#define PG_GETARG_VARCHAR_P_COPY(n) DatumGetVarCharPCopy(PG_GETARG_DATUM(n))
319#define PG_GETARG_HEAPTUPLEHEADER_COPY(n) DatumGetHeapTupleHeaderCopy(PG_GETARG_DATUM(n))
320/* And a b-byte slice from position a -also OK to write */
321#define PG_GETARG_BYTEA_P_SLICE(n,a,b) DatumGetByteaPSlice(PG_GETARG_DATUM(n),a,b)
322#define PG_GETARG_TEXT_P_SLICE(n,a,b) DatumGetTextPSlice(PG_GETARG_DATUM(n),a,b)
323#define PG_GETARG_BPCHAR_P_SLICE(n,a,b) DatumGetBpCharPSlice(PG_GETARG_DATUM(n),a,b)
324#define PG_GETARG_VARCHAR_P_SLICE(n,a,b) DatumGetVarCharPSlice(PG_GETARG_DATUM(n),a,b)
325/*
326 * Obsolescent variants that guarantee INT alignment for the return value.
327 * Few operations on these particular types need alignment, mainly operations
328 * that cast the VARDATA pointer to a type like int16[]. Most code should use
329 * the ...PP(X) counterpart. Nonetheless, these appear frequently in code
330 * predating the PostgreSQL 8.3 introduction of the ...PP(X) variants.
331 */
332#define DatumGetByteaP(X) ((bytea *) PG_DETOAST_DATUM(X))
333#define DatumGetTextP(X) ((text *) PG_DETOAST_DATUM(X))
334#define DatumGetBpCharP(X) ((BpChar *) PG_DETOAST_DATUM(X))
335#define DatumGetVarCharP(X) ((VarChar *) PG_DETOAST_DATUM(X))
336#define PG_GETARG_BYTEA_P(n) DatumGetByteaP(PG_GETARG_DATUM(n))
337#define PG_GETARG_TEXT_P(n) DatumGetTextP(PG_GETARG_DATUM(n))
338#define PG_GETARG_BPCHAR_P(n) DatumGetBpCharP(PG_GETARG_DATUM(n))
339#define PG_GETARG_VARCHAR_P(n) DatumGetVarCharP(PG_GETARG_DATUM(n))
340
341/* To access options from opclass support functions use this: */
342#define PG_HAS_OPCLASS_OPTIONS() has_fn_opclass_options(fcinfo->flinfo)
343#define PG_GET_OPCLASS_OPTIONS() get_fn_opclass_options(fcinfo->flinfo)
344
345/* To return a NULL do this: */
346#define PG_RETURN_NULL() \
347 do { fcinfo->isnull = true; return (Datum) 0; } while (0)
348
349/* A few internal functions return void (which is not the same as NULL!) */
350#define PG_RETURN_VOID() return (Datum) 0
351
352/* Macros for returning results of standard types */
353
354#define PG_RETURN_DATUM(x) return (x)
355#define PG_RETURN_INT32(x) return Int32GetDatum(x)
356#define PG_RETURN_UINT32(x) return UInt32GetDatum(x)
357#define PG_RETURN_INT16(x) return Int16GetDatum(x)
358#define PG_RETURN_UINT16(x) return UInt16GetDatum(x)
359#define PG_RETURN_CHAR(x) return CharGetDatum(x)
360#define PG_RETURN_BOOL(x) return BoolGetDatum(x)
361#define PG_RETURN_OID(x) return ObjectIdGetDatum(x)
362#define PG_RETURN_OID8(x) return ObjectId8GetDatum(x)
363#define PG_RETURN_POINTER(x) return PointerGetDatum(x)
364#define PG_RETURN_CSTRING(x) return CStringGetDatum(x)
365#define PG_RETURN_NAME(x) return NameGetDatum(x)
366#define PG_RETURN_TRANSACTIONID(x) return TransactionIdGetDatum(x)
367/* these macros hide the pass-by-reference-ness of the datatype: */
368#define PG_RETURN_FLOAT4(x) return Float4GetDatum(x)
369#define PG_RETURN_FLOAT8(x) return Float8GetDatum(x)
370#define PG_RETURN_INT64(x) return Int64GetDatum(x)
371#define PG_RETURN_UINT64(x) return UInt64GetDatum(x)
372/* RETURN macros for other pass-by-ref types will typically look like this: */
373#define PG_RETURN_BYTEA_P(x) PG_RETURN_POINTER(x)
374#define PG_RETURN_TEXT_P(x) PG_RETURN_POINTER(x)
375#define PG_RETURN_BPCHAR_P(x) PG_RETURN_POINTER(x)
376#define PG_RETURN_VARCHAR_P(x) PG_RETURN_POINTER(x)
377#define PG_RETURN_HEAPTUPLEHEADER(x) return HeapTupleHeaderGetDatum(x)
378
379
380/*-------------------------------------------------------------------------
381 * Support for detecting call convention of dynamically-loaded functions
382 *
383 * Dynamically loaded functions currently can only use the version-1 ("new
384 * style") calling convention. Version-0 ("old style") is not supported
385 * anymore. Version 1 is the call convention defined in this header file, and
386 * must be accompanied by the macro call
387 *
388 * PG_FUNCTION_INFO_V1(function_name);
389 *
390 * Note that internal functions do not need this decoration since they are
391 * assumed to be version-1.
392 *
393 *-------------------------------------------------------------------------
394 */
395
396typedef struct
397{
398 int api_version; /* specifies call convention version number */
399 /* More fields may be added later, for version numbers > 1. */
401
402/* Expected signature of an info function */
403typedef const Pg_finfo_record *(*PGFInfoFunction) (void);
404
405/*
406 * Macro to build an info function associated with the given function name.
407 *
408 * As a convenience, also provide an "extern" declaration for the given
409 * function name, so that writers of C functions need not write that too.
410 *
411 * On Windows, the function and info function must be exported. Our normal
412 * build processes take care of that via .DEF files or --export-all-symbols.
413 * Module authors using a different build process might need to manually
414 * declare the function PGDLLEXPORT. We do that automatically here for the
415 * info function, since authors shouldn't need to be explicitly aware of it.
416 */
417#define PG_FUNCTION_INFO_V1(funcname) \
418extern PGDLLEXPORT Datum funcname(PG_FUNCTION_ARGS); \
419extern PGDLLEXPORT const Pg_finfo_record * CppConcat(pg_finfo_,funcname)(void); \
420const Pg_finfo_record * \
421CppConcat(pg_finfo_,funcname) (void) \
422{ \
423 static const Pg_finfo_record my_finfo = { 1 }; \
424 return &my_finfo; \
425} \
426extern int no_such_variable
427
428
429/*
430 * Declare _PG_init centrally. Historically each shared library had its own
431 * declaration; but now that we want to mark these PGDLLEXPORT, using central
432 * declarations avoids each extension having to add that. Any existing
433 * declarations in extensions will continue to work if fmgr.h is included
434 * before them, otherwise compilation for Windows will fail.
435 */
436extern PGDLLEXPORT void _PG_init(void);
437
438
439/*-------------------------------------------------------------------------
440 * Support for verifying backend compatibility of loaded modules
441 *
442 * We require dynamically-loaded modules to include the macro call
443 * PG_MODULE_MAGIC;
444 * so that we can check for obvious incompatibility, such as being compiled
445 * for a different major PostgreSQL version. Alternatively, write
446 * PG_MODULE_MAGIC_EXT(...);
447 * where the optional arguments can specify module name and version, and
448 * perhaps other values in future. Note that in a multiple-source-file
449 * module, there should be exactly one such macro call.
450 *
451 * You may need an #ifdef test to verify that the version of PostgreSQL
452 * you are compiling against supports PG_MODULE_MAGIC_EXT().
453 *
454 * The specific items included in the ABI fields are intended to be ones that
455 * are custom-configurable and especially likely to break dynamically loaded
456 * modules if they were compiled with other values. Also, the length field
457 * can be used to detect definition changes.
458 *
459 * Note: we compare Pg_abi_values structs with memcmp(), so there had better
460 * not be any alignment pad bytes in them.
461 *
462 * Note: when changing the contents of Pg_abi_values, be sure to adjust the
463 * incompatible_module_error() function in dfmgr.c.
464 *-------------------------------------------------------------------------
465 */
466
467/* Definition of the values we check to verify ABI compatibility */
468typedef struct
469{
470 int version; /* PostgreSQL major version */
471 int funcmaxargs; /* FUNC_MAX_ARGS */
472 int indexmaxkeys; /* INDEX_MAX_KEYS */
473 int namedatalen; /* NAMEDATALEN */
474 int float8byval; /* FLOAT8PASSBYVAL (now vestigial) */
475 char abi_extra[32]; /* see pg_config_manual.h */
477
478/* Definition of the magic block structure */
479typedef struct
480{
481 int len; /* sizeof(this struct) */
482 Pg_abi_values abi_fields; /* see above */
483 /* Remaining fields are zero unless filled via PG_MODULE_MAGIC_EXT */
484 const char *name; /* optional module name */
485 const char *version; /* optional module version */
487
488/* Macro to fill the ABI fields */
489#define PG_MODULE_ABI_DATA \
490{ \
491 PG_VERSION_NUM / 100, \
492 FUNC_MAX_ARGS, \
493 INDEX_MAX_KEYS, \
494 NAMEDATALEN, \
495 FLOAT8PASSBYVAL, \
496 FMGR_ABI_EXTRA, \
497}
498
499/*
500 * Macro to fill a magic block. If any arguments are given, they should
501 * be field initializers.
502 */
503#define PG_MODULE_MAGIC_DATA(...) \
504{ \
505 .len = sizeof(Pg_magic_struct), \
506 .abi_fields = PG_MODULE_ABI_DATA, \
507 __VA_ARGS__ \
508}
509
510StaticAssertDecl(sizeof(FMGR_ABI_EXTRA) <= sizeof(((Pg_abi_values *) 0)->abi_extra),
511 "FMGR_ABI_EXTRA too long");
512
513/*
514 * Declare the module magic function. It needs to be a function as the dlsym
515 * in the backend is only guaranteed to work on functions, not data
516 */
517typedef const Pg_magic_struct *(*PGModuleMagicFunction) (void);
518
519#define PG_MAGIC_FUNCTION_NAME Pg_magic_func
520#define PG_MAGIC_FUNCTION_NAME_STRING "Pg_magic_func"
521
522#define PG_MODULE_MAGIC \
523extern PGDLLEXPORT const Pg_magic_struct *PG_MAGIC_FUNCTION_NAME(void); \
524const Pg_magic_struct * \
525PG_MAGIC_FUNCTION_NAME(void) \
526{ \
527 static const Pg_magic_struct Pg_magic_data = PG_MODULE_MAGIC_DATA(.name = NULL); \
528 return &Pg_magic_data; \
529} \
530extern int no_such_variable
531
532/*
533 * Alternate declaration that allows specification of additional fields.
534 * The additional values should be written as field initializers, for example
535 * PG_MODULE_MAGIC_EXT(
536 * .name = "some string",
537 * .version = "some string"
538 * );
539 */
540#define PG_MODULE_MAGIC_EXT(...) \
541extern PGDLLEXPORT const Pg_magic_struct *PG_MAGIC_FUNCTION_NAME(void); \
542const Pg_magic_struct * \
543PG_MAGIC_FUNCTION_NAME(void) \
544{ \
545 static const Pg_magic_struct Pg_magic_data = \
546 PG_MODULE_MAGIC_DATA(__VA_ARGS__); \
547 return &Pg_magic_data; \
548} \
549extern int no_such_variable
550
551
552/*-------------------------------------------------------------------------
553 * Support routines and macros for callers of fmgr-compatible functions
554 *-------------------------------------------------------------------------
555 */
556
557/* These are for invocation of a specifically named function with a
558 * directly-computed parameter list. Note that neither arguments nor result
559 * are allowed to be NULL. Also, the function cannot be one that needs to
560 * look at FmgrInfo, since there won't be any.
561 */
562extern Datum DirectFunctionCall1Coll(PGFunction func, Oid collation,
563 Datum arg1);
564extern Datum DirectFunctionCall2Coll(PGFunction func, Oid collation,
565 Datum arg1, Datum arg2);
566extern Datum DirectFunctionCall3Coll(PGFunction func, Oid collation,
567 Datum arg1, Datum arg2,
568 Datum arg3);
569extern Datum DirectFunctionCall4Coll(PGFunction func, Oid collation,
570 Datum arg1, Datum arg2,
571 Datum arg3, Datum arg4);
572extern Datum DirectFunctionCall5Coll(PGFunction func, Oid collation,
573 Datum arg1, Datum arg2,
574 Datum arg3, Datum arg4, Datum arg5);
575extern Datum DirectFunctionCall6Coll(PGFunction func, Oid collation,
576 Datum arg1, Datum arg2,
577 Datum arg3, Datum arg4, Datum arg5,
578 Datum arg6);
579extern Datum DirectFunctionCall7Coll(PGFunction func, Oid collation,
580 Datum arg1, Datum arg2,
581 Datum arg3, Datum arg4, Datum arg5,
582 Datum arg6, Datum arg7);
583extern Datum DirectFunctionCall8Coll(PGFunction func, Oid collation,
584 Datum arg1, Datum arg2,
585 Datum arg3, Datum arg4, Datum arg5,
586 Datum arg6, Datum arg7, Datum arg8);
587extern Datum DirectFunctionCall9Coll(PGFunction func, Oid collation,
588 Datum arg1, Datum arg2,
589 Datum arg3, Datum arg4, Datum arg5,
590 Datum arg6, Datum arg7, Datum arg8,
591 Datum arg9);
592
593/*
594 * These functions work like the DirectFunctionCall functions except that
595 * they use the flinfo parameter to initialise the fcinfo for the call.
596 * It's recommended that the callee only use the fn_extra and fn_mcxt
597 * fields, as other fields will typically describe the calling function
598 * not the callee. Conversely, the calling function should not have
599 * used fn_extra, unless its use is known to be compatible with the callee's.
600 */
602 Oid collation, Datum arg1);
604 Oid collation, Datum arg1, Datum arg2);
605
606/* These are for invocation of a previously-looked-up function with a
607 * directly-computed parameter list. Note that neither arguments nor result
608 * are allowed to be NULL.
609 */
610extern Datum FunctionCall0Coll(FmgrInfo *flinfo, Oid collation);
611extern Datum FunctionCall1Coll(FmgrInfo *flinfo, Oid collation,
612 Datum arg1);
613extern Datum FunctionCall2Coll(FmgrInfo *flinfo, Oid collation,
614 Datum arg1, Datum arg2);
615extern Datum FunctionCall3Coll(FmgrInfo *flinfo, Oid collation,
616 Datum arg1, Datum arg2,
617 Datum arg3);
618extern Datum FunctionCall4Coll(FmgrInfo *flinfo, Oid collation,
619 Datum arg1, Datum arg2,
620 Datum arg3, Datum arg4);
621extern Datum FunctionCall5Coll(FmgrInfo *flinfo, Oid collation,
622 Datum arg1, Datum arg2,
623 Datum arg3, Datum arg4, Datum arg5);
624extern Datum FunctionCall6Coll(FmgrInfo *flinfo, Oid collation,
625 Datum arg1, Datum arg2,
626 Datum arg3, Datum arg4, Datum arg5,
627 Datum arg6);
628extern Datum FunctionCall7Coll(FmgrInfo *flinfo, Oid collation,
629 Datum arg1, Datum arg2,
630 Datum arg3, Datum arg4, Datum arg5,
631 Datum arg6, Datum arg7);
632extern Datum FunctionCall8Coll(FmgrInfo *flinfo, Oid collation,
633 Datum arg1, Datum arg2,
634 Datum arg3, Datum arg4, Datum arg5,
635 Datum arg6, Datum arg7, Datum arg8);
636extern Datum FunctionCall9Coll(FmgrInfo *flinfo, Oid collation,
637 Datum arg1, Datum arg2,
638 Datum arg3, Datum arg4, Datum arg5,
639 Datum arg6, Datum arg7, Datum arg8,
640 Datum arg9);
641
642/* These are for invocation of a function identified by OID with a
643 * directly-computed parameter list. Note that neither arguments nor result
644 * are allowed to be NULL. These are essentially fmgr_info() followed by
645 * FunctionCallN(). If the same function is to be invoked repeatedly, do the
646 * fmgr_info() once and then use FunctionCallN().
647 */
648extern Datum OidFunctionCall0Coll(Oid functionId, Oid collation);
649extern Datum OidFunctionCall1Coll(Oid functionId, Oid collation,
650 Datum arg1);
651extern Datum OidFunctionCall2Coll(Oid functionId, Oid collation,
652 Datum arg1, Datum arg2);
653extern Datum OidFunctionCall3Coll(Oid functionId, Oid collation,
654 Datum arg1, Datum arg2,
655 Datum arg3);
656extern Datum OidFunctionCall4Coll(Oid functionId, Oid collation,
657 Datum arg1, Datum arg2,
658 Datum arg3, Datum arg4);
659extern Datum OidFunctionCall5Coll(Oid functionId, Oid collation,
660 Datum arg1, Datum arg2,
661 Datum arg3, Datum arg4, Datum arg5);
662extern Datum OidFunctionCall6Coll(Oid functionId, Oid collation,
663 Datum arg1, Datum arg2,
664 Datum arg3, Datum arg4, Datum arg5,
665 Datum arg6);
666extern Datum OidFunctionCall7Coll(Oid functionId, Oid collation,
667 Datum arg1, Datum arg2,
668 Datum arg3, Datum arg4, Datum arg5,
669 Datum arg6, Datum arg7);
670extern Datum OidFunctionCall8Coll(Oid functionId, Oid collation,
671 Datum arg1, Datum arg2,
672 Datum arg3, Datum arg4, Datum arg5,
673 Datum arg6, Datum arg7, Datum arg8);
674extern Datum OidFunctionCall9Coll(Oid functionId, Oid collation,
675 Datum arg1, Datum arg2,
676 Datum arg3, Datum arg4, Datum arg5,
677 Datum arg6, Datum arg7, Datum arg8,
678 Datum arg9);
679
680/* These macros allow the collation argument to be omitted (with a default of
681 * InvalidOid, ie, no collation). They exist mostly for backwards
682 * compatibility of source code.
683 */
684#define DirectFunctionCall1(func, arg1) \
685 DirectFunctionCall1Coll(func, InvalidOid, arg1)
686#define DirectFunctionCall2(func, arg1, arg2) \
687 DirectFunctionCall2Coll(func, InvalidOid, arg1, arg2)
688#define DirectFunctionCall3(func, arg1, arg2, arg3) \
689 DirectFunctionCall3Coll(func, InvalidOid, arg1, arg2, arg3)
690#define DirectFunctionCall4(func, arg1, arg2, arg3, arg4) \
691 DirectFunctionCall4Coll(func, InvalidOid, arg1, arg2, arg3, arg4)
692#define DirectFunctionCall5(func, arg1, arg2, arg3, arg4, arg5) \
693 DirectFunctionCall5Coll(func, InvalidOid, arg1, arg2, arg3, arg4, arg5)
694#define DirectFunctionCall6(func, arg1, arg2, arg3, arg4, arg5, arg6) \
695 DirectFunctionCall6Coll(func, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6)
696#define DirectFunctionCall7(func, arg1, arg2, arg3, arg4, arg5, arg6, arg7) \
697 DirectFunctionCall7Coll(func, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6, arg7)
698#define DirectFunctionCall8(func, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) \
699 DirectFunctionCall8Coll(func, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8)
700#define DirectFunctionCall9(func, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) \
701 DirectFunctionCall9Coll(func, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)
702#define FunctionCall1(flinfo, arg1) \
703 FunctionCall1Coll(flinfo, InvalidOid, arg1)
704#define FunctionCall2(flinfo, arg1, arg2) \
705 FunctionCall2Coll(flinfo, InvalidOid, arg1, arg2)
706#define FunctionCall3(flinfo, arg1, arg2, arg3) \
707 FunctionCall3Coll(flinfo, InvalidOid, arg1, arg2, arg3)
708#define FunctionCall4(flinfo, arg1, arg2, arg3, arg4) \
709 FunctionCall4Coll(flinfo, InvalidOid, arg1, arg2, arg3, arg4)
710#define FunctionCall5(flinfo, arg1, arg2, arg3, arg4, arg5) \
711 FunctionCall5Coll(flinfo, InvalidOid, arg1, arg2, arg3, arg4, arg5)
712#define FunctionCall6(flinfo, arg1, arg2, arg3, arg4, arg5, arg6) \
713 FunctionCall6Coll(flinfo, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6)
714#define FunctionCall7(flinfo, arg1, arg2, arg3, arg4, arg5, arg6, arg7) \
715 FunctionCall7Coll(flinfo, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6, arg7)
716#define FunctionCall8(flinfo, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) \
717 FunctionCall8Coll(flinfo, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8)
718#define FunctionCall9(flinfo, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) \
719 FunctionCall9Coll(flinfo, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)
720#define OidFunctionCall0(functionId) \
721 OidFunctionCall0Coll(functionId, InvalidOid)
722#define OidFunctionCall1(functionId, arg1) \
723 OidFunctionCall1Coll(functionId, InvalidOid, arg1)
724#define OidFunctionCall2(functionId, arg1, arg2) \
725 OidFunctionCall2Coll(functionId, InvalidOid, arg1, arg2)
726#define OidFunctionCall3(functionId, arg1, arg2, arg3) \
727 OidFunctionCall3Coll(functionId, InvalidOid, arg1, arg2, arg3)
728#define OidFunctionCall4(functionId, arg1, arg2, arg3, arg4) \
729 OidFunctionCall4Coll(functionId, InvalidOid, arg1, arg2, arg3, arg4)
730#define OidFunctionCall5(functionId, arg1, arg2, arg3, arg4, arg5) \
731 OidFunctionCall5Coll(functionId, InvalidOid, arg1, arg2, arg3, arg4, arg5)
732#define OidFunctionCall6(functionId, arg1, arg2, arg3, arg4, arg5, arg6) \
733 OidFunctionCall6Coll(functionId, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6)
734#define OidFunctionCall7(functionId, arg1, arg2, arg3, arg4, arg5, arg6, arg7) \
735 OidFunctionCall7Coll(functionId, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6, arg7)
736#define OidFunctionCall8(functionId, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) \
737 OidFunctionCall8Coll(functionId, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8)
738#define OidFunctionCall9(functionId, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) \
739 OidFunctionCall9Coll(functionId, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)
740
741
742/* Special cases for convenient invocation of datatype I/O functions. */
743extern Datum InputFunctionCall(FmgrInfo *flinfo, char *str,
744 Oid typioparam, int32 typmod);
745extern bool InputFunctionCallSafe(FmgrInfo *flinfo, char *str,
746 Oid typioparam, int32 typmod,
747 Node *escontext,
748 Datum *result);
749extern bool DirectInputFunctionCallSafe(PGFunction func, char *str,
750 Oid typioparam, int32 typmod,
751 Node *escontext,
752 Datum *result);
753extern Datum OidInputFunctionCall(Oid functionId, char *str,
754 Oid typioparam, int32 typmod);
755extern char *OutputFunctionCall(FmgrInfo *flinfo, Datum val);
756extern char *OidOutputFunctionCall(Oid functionId, Datum val);
758 Oid typioparam, int32 typmod);
760 Oid typioparam, int32 typmod);
761extern bytea *SendFunctionCall(FmgrInfo *flinfo, Datum val);
762extern bytea *OidSendFunctionCall(Oid functionId, Datum val);
763
764
765/*
766 * Routines in fmgr.c
767 */
768extern const Pg_finfo_record *fetch_finfo_record(void *filehandle, const char *funcname);
769extern Oid fmgr_internal_function(const char *proname);
770extern Oid get_fn_expr_rettype(FmgrInfo *flinfo);
771extern Oid get_fn_expr_argtype(FmgrInfo *flinfo, int argnum);
772extern Oid get_call_expr_argtype(Node *expr, int argnum);
773extern bool get_fn_expr_arg_stable(FmgrInfo *flinfo, int argnum);
774extern bool get_call_expr_arg_stable(Node *expr, int argnum);
775extern bool get_fn_expr_variadic(FmgrInfo *flinfo);
776extern bytea *get_fn_opclass_options(FmgrInfo *flinfo);
777extern bool has_fn_opclass_options(FmgrInfo *flinfo);
778extern void set_fn_opclass_options(FmgrInfo *flinfo, bytea *options);
779extern bool CheckFunctionValidatorAccess(Oid validatorOid, Oid functionOid);
780
781/*
782 * Routines in dfmgr.c
783 */
784typedef struct DynamicFileList DynamicFileList; /* opaque outside dfmgr.c */
785
787
788extern char *substitute_path_macro(const char *str, const char *macro, const char *value);
789extern char *find_in_path(const char *basename, const char *path, const char *path_param,
790 const char *macro, const char *macro_val);
791extern void *load_external_function(const char *filename, const char *funcname,
792 bool signalNotFound, void **filehandle);
793extern void *lookup_external_function(void *filehandle, const char *funcname);
794extern void load_file(const char *filename, bool restricted);
798 const char **library_path,
799 const char **module_name,
800 const char **module_version);
801extern void **find_rendezvous_variable(const char *varName);
803extern void SerializeLibraryState(Size maxsize, char *start_address);
804extern void RestoreLibraryState(char *start_address);
805
806/*
807 * Support for aggregate functions
808 *
809 * These are actually in executor/nodeAgg.c, but we declare them here since
810 * the whole point is for callers to not be overly friendly with nodeAgg.
811 */
812
813/* AggCheckCallContext can return one of the following codes, or 0: */
814#define AGG_CONTEXT_AGGREGATE 1 /* regular aggregate */
815#define AGG_CONTEXT_WINDOW 2 /* window function */
816
817extern int AggCheckCallContext(FunctionCallInfo fcinfo,
818 MemoryContext *aggcontext);
819extern Aggref *AggGetAggref(FunctionCallInfo fcinfo);
821extern bool AggStateIsShared(FunctionCallInfo fcinfo);
822extern void AggRegisterCallback(FunctionCallInfo fcinfo,
824 Datum arg);
825
826/*
827 * We allow plugin modules to hook function entry/exit. This is intended
828 * as support for loadable security policy modules, which may want to
829 * perform additional privilege checks on function entry or exit, or to do
830 * other internal bookkeeping. To make this possible, such modules must be
831 * able not only to support normal function entry and exit, but also to trap
832 * the case where we bail out due to an error; and they must also be able to
833 * prevent inlining.
834 */
836{
841
842typedef bool (*needs_fmgr_hook_type) (Oid fn_oid);
843
844typedef void (*fmgr_hook_type) (FmgrHookEventType event,
845 FmgrInfo *flinfo, Datum *arg);
846
849
850#define FmgrHookIsNeeded(fn_oid) \
851 (!needs_fmgr_hook ? false : (*needs_fmgr_hook)(fn_oid))
852
853#endif /* FMGR_H */
#define PGDLLIMPORT
Definition: c.h:1305
#define PGDLLEXPORT
Definition: c.h:1320
#define FLEXIBLE_ARRAY_MEMBER
Definition: c.h:486
int32_t int32
Definition: c.h:548
size_t Size
Definition: c.h:625
static bool restricted
Definition: command.c:199
void(* ExprContextCallbackFunction)(Datum arg)
Definition: fmgr.h:26
Datum FunctionCall4Coll(FmgrInfo *flinfo, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4)
Definition: fmgr.c:1197
Datum OidFunctionCall2Coll(Oid functionId, Oid collation, Datum arg1, Datum arg2)
Definition: fmgr.c:1422
void set_fn_opclass_options(FmgrInfo *flinfo, bytea *options)
Definition: fmgr.c:2035
Oid fmgr_internal_function(const char *proname)
Definition: fmgr.c:596
StaticAssertDecl(sizeof(FMGR_ABI_EXTRA)<=sizeof(((Pg_abi_values *) 0) ->abi_extra), "FMGR_ABI_EXTRA too long")
Datum OidFunctionCall9Coll(Oid functionId, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4, Datum arg5, Datum arg6, Datum arg7, Datum arg8, Datum arg9)
Definition: fmgr.c:1504
bool get_fn_expr_arg_stable(FmgrInfo *flinfo, int argnum)
Definition: fmgr.c:1940
struct varlena * pg_detoast_datum_copy(struct varlena *datum)
Definition: fmgr.c:1806
struct varlena * pg_detoast_datum_slice(struct varlena *datum, int32 first, int32 count)
Definition: fmgr.c:1822
Datum OidFunctionCall6Coll(Oid functionId, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4, Datum arg5, Datum arg6)
Definition: fmgr.c:1465
Datum FunctionCall6Coll(FmgrInfo *flinfo, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4, Datum arg5, Datum arg6)
Definition: fmgr.c:1253
Datum OidFunctionCall5Coll(Oid functionId, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4, Datum arg5)
Definition: fmgr.c:1454
Datum FunctionCall8Coll(FmgrInfo *flinfo, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4, Datum arg5, Datum arg6, Datum arg7, Datum arg8)
Definition: fmgr.c:1319
bool CheckFunctionValidatorAccess(Oid validatorOid, Oid functionOid)
Definition: fmgr.c:2110
void RestoreLibraryState(char *start_address)
Definition: dfmgr.c:741
Datum OidReceiveFunctionCall(Oid functionId, StringInfo buf, Oid typioparam, int32 typmod)
Definition: fmgr.c:1772
bool(* needs_fmgr_hook_type)(Oid fn_oid)
Definition: fmgr.h:842
Datum InputFunctionCall(FmgrInfo *flinfo, char *str, Oid typioparam, int32 typmod)
Definition: fmgr.c:1531
void AggRegisterCallback(FunctionCallInfo fcinfo, ExprContextCallbackFunction func, Datum arg)
Definition: nodeAgg.c:4750
Datum FunctionCall2Coll(FmgrInfo *flinfo, Oid collation, Datum arg1, Datum arg2)
Definition: fmgr.c:1150
void fmgr_info(Oid functionId, FmgrInfo *finfo)
Definition: fmgr.c:128
struct FmgrInfo FmgrInfo
Datum OidInputFunctionCall(Oid functionId, char *str, Oid typioparam, int32 typmod)
Definition: fmgr.c:1754
Aggref * AggGetAggref(FunctionCallInfo fcinfo)
Definition: nodeAgg.c:4651
PGDLLIMPORT needs_fmgr_hook_type needs_fmgr_hook
Definition: fmgr.c:40
Datum DirectFunctionCall2Coll(PGFunction func, Oid collation, Datum arg1, Datum arg2)
Definition: fmgr.c:813
bool DirectInputFunctionCallSafe(PGFunction func, char *str, Oid typioparam, int32 typmod, Node *escontext, Datum *result)
Definition: fmgr.c:1640
char * find_in_path(const char *basename, const char *path, const char *path_param, const char *macro, const char *macro_val)
Definition: dfmgr.c:574
struct varlena * pg_detoast_datum_packed(struct varlena *datum)
Definition: fmgr.c:1829
char * OidOutputFunctionCall(Oid functionId, Datum val)
Definition: fmgr.c:1763
Datum FunctionCall5Coll(FmgrInfo *flinfo, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4, Datum arg5)
Definition: fmgr.c:1224
FmgrHookEventType
Definition: fmgr.h:836
@ FHET_END
Definition: fmgr.h:838
@ FHET_ABORT
Definition: fmgr.h:839
@ FHET_START
Definition: fmgr.h:837
const Pg_finfo_record * fetch_finfo_record(void *filehandle, const char *funcname)
Definition: fmgr.c:456
struct varlena * pg_detoast_datum(struct varlena *datum)
Definition: fmgr.c:1797
Datum OidFunctionCall3Coll(Oid functionId, Oid collation, Datum arg1, Datum arg2, Datum arg3)
Definition: fmgr.c:1432
struct FunctionCallInfoBaseData * FunctionCallInfo
Definition: fmgr.h:38
void fmgr_info_cxt(Oid functionId, FmgrInfo *finfo, MemoryContext mcxt)
Definition: fmgr.c:138
Datum OidFunctionCall8Coll(Oid functionId, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4, Datum arg5, Datum arg6, Datum arg7, Datum arg8)
Definition: fmgr.c:1491
bytea * SendFunctionCall(FmgrInfo *flinfo, Datum val)
Definition: fmgr.c:1744
Datum OidFunctionCall4Coll(Oid functionId, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4)
Definition: fmgr.c:1443
void SerializeLibraryState(Size maxsize, char *start_address)
Definition: dfmgr.c:719
DynamicFileList * get_next_loaded_module(DynamicFileList *dfptr)
Definition: dfmgr.c:431
Datum DirectFunctionCall4Coll(PGFunction func, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4)
Definition: fmgr.c:860
void load_file(const char *filename, bool restricted)
Definition: dfmgr.c:149
Datum OidFunctionCall7Coll(Oid functionId, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4, Datum arg5, Datum arg6, Datum arg7)
Definition: fmgr.c:1478
PGDLLIMPORT fmgr_hook_type fmgr_hook
Definition: fmgr.c:41
void ** find_rendezvous_variable(const char *varName)
Definition: dfmgr.c:664
PGDLLEXPORT void _PG_init(void)
Definition: auth_delay.c:55
Size EstimateLibraryStateSpace(void)
Definition: dfmgr.c:702
bool has_fn_opclass_options(FmgrInfo *flinfo)
Definition: fmgr.c:2046
void * lookup_external_function(void *filehandle, const char *funcname)
Definition: dfmgr.c:171
int AggCheckCallContext(FunctionCallInfo fcinfo, MemoryContext *aggcontext)
Definition: nodeAgg.c:4607
bool InputFunctionCallSafe(FmgrInfo *flinfo, char *str, Oid typioparam, int32 typmod, Node *escontext, Datum *result)
Definition: fmgr.c:1585
Datum CallerFInfoFunctionCall2(PGFunction func, FmgrInfo *flinfo, Oid collation, Datum arg1, Datum arg2)
Definition: fmgr.c:1086
Datum CallerFInfoFunctionCall1(PGFunction func, FmgrInfo *flinfo, Oid collation, Datum arg1)
Definition: fmgr.c:1066
Datum DirectFunctionCall6Coll(PGFunction func, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4, Datum arg5, Datum arg6)
Definition: fmgr.c:916
struct StringInfoData * StringInfo
Definition: fmgr.h:29
Datum DirectFunctionCall5Coll(PGFunction func, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4, Datum arg5)
Definition: fmgr.c:887
PGDLLIMPORT char * Dynamic_library_path
Definition: dfmgr.c:69
Datum OidFunctionCall1Coll(Oid functionId, Oid collation, Datum arg1)
Definition: fmgr.c:1412
char * OutputFunctionCall(FmgrInfo *flinfo, Datum val)
Definition: fmgr.c:1683
bool AggStateIsShared(FunctionCallInfo fcinfo)
Definition: nodeAgg.c:4711
bool get_fn_expr_variadic(FmgrInfo *flinfo)
Definition: fmgr.c:2009
Datum DirectFunctionCall1Coll(PGFunction func, Oid collation, Datum arg1)
Definition: fmgr.c:793
DynamicFileList * get_first_loaded_module(void)
Definition: dfmgr.c:425
bytea * get_fn_opclass_options(FmgrInfo *flinfo)
Definition: fmgr.c:2062
Datum FunctionCall3Coll(FmgrInfo *flinfo, Oid collation, Datum arg1, Datum arg2, Datum arg3)
Definition: fmgr.c:1172
void(* fmgr_hook_type)(FmgrHookEventType event, FmgrInfo *flinfo, Datum *arg)
Definition: fmgr.h:844
Datum DirectFunctionCall3Coll(PGFunction func, Oid collation, Datum arg1, Datum arg2, Datum arg3)
Definition: fmgr.c:835
Datum(* PGFunction)(FunctionCallInfo fcinfo)
Definition: fmgr.h:40
Oid get_call_expr_argtype(Node *expr, int argnum)
Definition: fmgr.c:1894
Datum FunctionCall7Coll(FmgrInfo *flinfo, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4, Datum arg5, Datum arg6, Datum arg7)
Definition: fmgr.c:1285
Oid get_fn_expr_argtype(FmgrInfo *flinfo, int argnum)
Definition: fmgr.c:1875
void * load_external_function(const char *filename, const char *funcname, bool signalNotFound, void **filehandle)
Definition: dfmgr.c:95
Datum OidFunctionCall0Coll(Oid functionId, Oid collation)
Definition: fmgr.c:1402
void fmgr_symbol(Oid functionId, char **mod, char **fn)
Definition: fmgr.c:282
Datum DirectFunctionCall9Coll(PGFunction func, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4, Datum arg5, Datum arg6, Datum arg7, Datum arg8, Datum arg9)
Definition: fmgr.c:1018
void get_loaded_module_details(DynamicFileList *dfptr, const char **library_path, const char **module_name, const char **module_version)
Definition: dfmgr.c:445
bytea * OidSendFunctionCall(Oid functionId, Datum val)
Definition: fmgr.c:1782
Datum FunctionCall1Coll(FmgrInfo *flinfo, Oid collation, Datum arg1)
Definition: fmgr.c:1130
Oid get_fn_expr_rettype(FmgrInfo *flinfo)
Definition: fmgr.c:1853
struct FunctionCallInfoBaseData FunctionCallInfoBaseData
void fmgr_info_copy(FmgrInfo *dstinfo, FmgrInfo *srcinfo, MemoryContext destcxt)
Definition: fmgr.c:581
Datum FunctionCall0Coll(FmgrInfo *flinfo, Oid collation)
Definition: fmgr.c:1113
Datum FunctionCall9Coll(FmgrInfo *flinfo, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4, Datum arg5, Datum arg6, Datum arg7, Datum arg8, Datum arg9)
Definition: fmgr.c:1355
Datum DirectFunctionCall7Coll(PGFunction func, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4, Datum arg5, Datum arg6, Datum arg7)
Definition: fmgr.c:948
char * substitute_path_macro(const char *str, const char *macro, const char *value)
Definition: dfmgr.c:536
MemoryContext AggGetTempMemoryContext(FunctionCallInfo fcinfo)
Definition: nodeAgg.c:4685
bool get_call_expr_arg_stable(Node *expr, int argnum)
Definition: fmgr.c:1959
Datum ReceiveFunctionCall(FmgrInfo *flinfo, StringInfo buf, Oid typioparam, int32 typmod)
Definition: fmgr.c:1697
Datum DirectFunctionCall8Coll(PGFunction func, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4, Datum arg5, Datum arg6, Datum arg7, Datum arg8)
Definition: fmgr.c:982
const char * str
#define funcname
Definition: indent_codes.h:69
long val
Definition: informix.c:689
static struct @171 value
void * arg
#define FMGR_ABI_EXTRA
static char * filename
Definition: pg_dumpall.c:120
NameData proname
Definition: pg_proc.h:35
static char buf[DEFAULT_XLOG_SEG_SIZE]
Definition: pg_test_fsync.c:71
uint64_t Datum
Definition: postgres.h:70
unsigned int Oid
Definition: postgres_ext.h:32
Definition: fmgr.h:57
void * fn_extra
Definition: fmgr.h:64
short fn_nargs
Definition: fmgr.h:60
PGFunction fn_addr
Definition: fmgr.h:58
Node * fn_expr
Definition: fmgr.h:66
unsigned char fn_stats
Definition: fmgr.h:63
MemoryContext fn_mcxt
Definition: fmgr.h:65
Oid fn_oid
Definition: fmgr.h:59
bool fn_retset
Definition: fmgr.h:62
bool fn_strict
Definition: fmgr.h:61
FmgrInfo * flinfo
Definition: fmgr.h:87
NullableDatum args[FLEXIBLE_ARRAY_MEMBER]
Definition: fmgr.h:95
Definition: nodes.h:135
int funcmaxargs
Definition: fmgr.h:471
int version
Definition: fmgr.h:470
int float8byval
Definition: fmgr.h:474
int indexmaxkeys
Definition: fmgr.h:472
int namedatalen
Definition: fmgr.h:473
int api_version
Definition: fmgr.h:398
const char * name
Definition: fmgr.h:484
Pg_abi_values abi_fields
Definition: fmgr.h:482
const char * version
Definition: fmgr.h:485
Definition: c.h:712
static void * fn(void *arg)
Definition: thread-alloc.c:119