00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef OBJECTACCESS_H
00011 #define OBJECTACCESS_H
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 typedef enum ObjectAccessType
00043 {
00044 OAT_POST_CREATE,
00045 OAT_DROP,
00046 OAT_POST_ALTER,
00047 OAT_NAMESPACE_SEARCH,
00048 OAT_FUNCTION_EXECUTE,
00049 } ObjectAccessType;
00050
00051
00052
00053
00054 typedef struct
00055 {
00056
00057
00058
00059
00060
00061 bool is_internal;
00062 } ObjectAccessPostCreate;
00063
00064
00065
00066
00067 typedef struct
00068 {
00069
00070
00071
00072
00073 int dropflags;
00074 } ObjectAccessDrop;
00075
00076
00077
00078
00079 typedef struct
00080 {
00081
00082
00083
00084
00085
00086
00087
00088 Oid auxiliary_id;
00089
00090
00091
00092
00093
00094
00095
00096 bool is_internal;
00097 } ObjectAccessPostAlter;
00098
00099
00100
00101
00102 typedef struct
00103 {
00104
00105
00106
00107
00108 bool ereport_on_violation;
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118 bool result;
00119 } ObjectAccessNamespaceSearch;
00120
00121
00122 typedef void (*object_access_hook_type) (ObjectAccessType access,
00123 Oid classId,
00124 Oid objectId,
00125 int subId,
00126 void *arg);
00127
00128
00129 extern PGDLLIMPORT object_access_hook_type object_access_hook;
00130
00131
00132 extern void RunObjectPostCreateHook(Oid classId, Oid objectId, int subId,
00133 bool is_internal);
00134 extern void RunObjectDropHook(Oid classId, Oid objectId, int subId,
00135 int dropflags);
00136 extern void RunObjectPostAlterHook(Oid classId, Oid objectId, int subId,
00137 Oid auxiliaryId, bool is_internal);
00138 extern bool RunNamespaceSearchHook(Oid objectId, bool ereport_on_volation);
00139 extern void RunFunctionExecuteHook(Oid objectId);
00140
00141
00142
00143
00144
00145
00146
00147 #define InvokeObjectPostCreateHook(classId,objectId,subId) \
00148 InvokeObjectPostCreateHookArg((classId),(objectId),(subId),false)
00149 #define InvokeObjectPostCreateHookArg(classId,objectId,subId,is_internal) \
00150 do { \
00151 if (object_access_hook) \
00152 RunObjectPostCreateHook((classId),(objectId),(subId), \
00153 (is_internal)); \
00154 } while(0)
00155
00156 #define InvokeObjectDropHook(classId,objectId,subId) \
00157 InvokeObjectDropHookArg((classId),(objectId),(subId),0)
00158 #define InvokeObjectDropHookArg(classId,objectId,subId,dropflags) \
00159 do { \
00160 if (object_access_hook) \
00161 RunObjectDropHook((classId),(objectId),(subId), \
00162 (dropflags)); \
00163 } while(0)
00164
00165 #define InvokeObjectPostAlterHook(classId,objectId,subId) \
00166 InvokeObjectPostAlterHookArg((classId),(objectId),(subId), \
00167 InvalidOid,false)
00168 #define InvokeObjectPostAlterHookArg(classId,objectId,subId, \
00169 auxiliaryId,is_internal) \
00170 do { \
00171 if (object_access_hook) \
00172 RunObjectPostAlterHook((classId),(objectId),(subId), \
00173 (auxiliaryId),(is_internal)); \
00174 } while(0)
00175
00176 #define InvokeNamespaceSearchHook(objectId, ereport_on_violation) \
00177 (!object_access_hook \
00178 ? true \
00179 : RunNamespaceSearchHook((objectId), (ereport_on_violation)))
00180
00181 #define InvokeFunctionExecuteHook(objectId) \
00182 do { \
00183 if (object_access_hook) \
00184 RunFunctionExecuteHook(objectId); \
00185 } while(0)
00186
00187 #endif