PostgreSQL Source Code git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
lo.c
Go to the documentation of this file.
1/*
2 * PostgreSQL definitions for managed Large Objects.
3 *
4 * contrib/lo/lo.c
5 *
6 */
7
8#include "postgres.h"
9
10#include "commands/trigger.h"
11#include "executor/spi.h"
12#include "utils/fmgrprotos.h"
13#include "utils/rel.h"
14
16 .name = "lo",
17 .version = PG_VERSION
18);
19
20
21/*
22 * This is the trigger that protects us from orphaned large objects
23 */
25
28{
29 TriggerData *trigdata = (TriggerData *) fcinfo->context;
30 int attnum; /* attribute number to monitor */
31 char **args; /* Args containing attr name */
32 TupleDesc tupdesc; /* Tuple Descriptor */
33 HeapTuple rettuple; /* Tuple to be returned */
34 bool isdelete; /* are we deleting? */
35 HeapTuple newtuple; /* The new value for tuple */
36 HeapTuple trigtuple; /* The original value of tuple */
37
38 if (!CALLED_AS_TRIGGER(fcinfo)) /* internal error */
39 elog(ERROR, "lo_manage: not fired by trigger manager");
40
41 if (!TRIGGER_FIRED_FOR_ROW(trigdata->tg_event)) /* internal error */
42 elog(ERROR, "%s: must be fired for row",
43 trigdata->tg_trigger->tgname);
44
45 /*
46 * Fetch some values from trigdata
47 */
48 newtuple = trigdata->tg_newtuple;
49 trigtuple = trigdata->tg_trigtuple;
50 tupdesc = trigdata->tg_relation->rd_att;
51 args = trigdata->tg_trigger->tgargs;
52
53 if (args == NULL) /* internal error */
54 elog(ERROR, "%s: no column name provided in the trigger definition",
55 trigdata->tg_trigger->tgname);
56
57 /* tuple to return to Executor */
58 if (TRIGGER_FIRED_BY_UPDATE(trigdata->tg_event))
59 rettuple = newtuple;
60 else
61 rettuple = trigtuple;
62
63 /* Are we deleting the row? */
64 isdelete = TRIGGER_FIRED_BY_DELETE(trigdata->tg_event);
65
66 /* Get the column we're interested in */
67 attnum = SPI_fnumber(tupdesc, args[0]);
68
69 if (attnum <= 0)
70 elog(ERROR, "%s: column \"%s\" does not exist",
71 trigdata->tg_trigger->tgname, args[0]);
72
73 /*
74 * Handle updates
75 *
76 * Here, if the value of the monitored attribute changes, then the large
77 * object associated with the original value is unlinked.
78 */
79 if (newtuple != NULL &&
81 {
82 char *orig = SPI_getvalue(trigtuple, tupdesc, attnum);
83 char *newv = SPI_getvalue(newtuple, tupdesc, attnum);
84
85 if (orig != NULL && (newv == NULL || strcmp(orig, newv) != 0))
88
89 if (newv)
90 pfree(newv);
91 if (orig)
92 pfree(orig);
93 }
94
95 /*
96 * Handle deleting of rows
97 *
98 * Here, we unlink the large object associated with the managed attribute
99 */
100 if (isdelete)
101 {
102 char *orig = SPI_getvalue(trigtuple, tupdesc, attnum);
103
104 if (orig != NULL)
105 {
107 ObjectIdGetDatum(atooid(orig)));
108
109 pfree(orig);
110 }
111 }
112
113 return PointerGetDatum(rettuple);
114}
Datum be_lo_unlink(PG_FUNCTION_ARGS)
Definition: be-fsstubs.c:314
bool bms_is_member(int x, const Bitmapset *a)
Definition: bitmapset.c:510
#define ERROR
Definition: elog.h:39
#define elog(elevel,...)
Definition: elog.h:225
#define DirectFunctionCall1(func, arg1)
Definition: fmgr.h:682
#define PG_FUNCTION_ARGS
Definition: fmgr.h:193
if(TABLE==NULL||TABLE_index==NULL)
Definition: isn.c:81
PG_MODULE_MAGIC_EXT(.name="lo",.version=PG_VERSION)
Datum lo_manage(PG_FUNCTION_ARGS)
Definition: lo.c:27
PG_FUNCTION_INFO_V1(lo_manage)
void pfree(void *pointer)
Definition: mcxt.c:2150
int16 attnum
Definition: pg_attribute.h:74
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:327
uintptr_t Datum
Definition: postgres.h:69
static Datum ObjectIdGetDatum(Oid X)
Definition: postgres.h:257
#define atooid(x)
Definition: postgres_ext.h:41
int SPI_fnumber(TupleDesc tupdesc, const char *fname)
Definition: spi.c:1176
char * SPI_getvalue(HeapTuple tuple, TupleDesc tupdesc, int fnumber)
Definition: spi.c:1221
TupleDesc rd_att
Definition: rel.h:112
Relation tg_relation
Definition: trigger.h:35
const Bitmapset * tg_updatedcols
Definition: trigger.h:43
TriggerEvent tg_event
Definition: trigger.h:34
HeapTuple tg_newtuple
Definition: trigger.h:37
Trigger * tg_trigger
Definition: trigger.h:38
HeapTuple tg_trigtuple
Definition: trigger.h:36
char * tgname
Definition: reltrigger.h:27
char ** tgargs
Definition: reltrigger.h:41
#define FirstLowInvalidHeapAttributeNumber
Definition: sysattr.h:27
#define TRIGGER_FIRED_BY_DELETE(event)
Definition: trigger.h:113
#define CALLED_AS_TRIGGER(fcinfo)
Definition: trigger.h:26
#define TRIGGER_FIRED_FOR_ROW(event)
Definition: trigger.h:122
#define TRIGGER_FIRED_BY_UPDATE(event)
Definition: trigger.h:116
const char * name