PostgreSQL Source Code git master
Loading...
Searching...
No Matches
shippable.c File Reference
#include "postgres.h"
#include "access/transam.h"
#include "catalog/dependency.h"
#include "postgres_fdw.h"
#include "utils/hsearch.h"
#include "utils/inval.h"
#include "utils/syscache.h"
Include dependency graph for shippable.c:

Go to the source code of this file.

Data Structures

struct  ShippableCacheKey
 
struct  ShippableCacheEntry
 

Functions

static void InvalidateShippableCacheCallback (Datum arg, SysCacheIdentifier cacheid, uint32 hashvalue)
 
static void InitializeShippableCache (void)
 
static bool lookup_shippable (Oid objectId, Oid classId, PgFdwRelationInfo *fpinfo)
 
bool is_builtin (Oid objectId)
 
bool is_shippable (Oid objectId, Oid classId, PgFdwRelationInfo *fpinfo)
 

Variables

static HTABShippableCacheHash = NULL
 

Function Documentation

◆ InitializeShippableCache()

static void InitializeShippableCache ( void  )
static

Definition at line 92 of file shippable.c.

93{
95
96 /* Create the hash table. */
98 ctl.entrysize = sizeof(ShippableCacheEntry);
100 hash_create("Shippability cache", 256, &ctl, HASH_ELEM | HASH_BLOBS);
101
102 /* Set up invalidation callback on pg_foreign_server. */
105 (Datum) 0);
106}
HTAB * hash_create(const char *tabname, int64 nelem, const HASHCTL *info, int flags)
Definition dynahash.c:358
#define HASH_ELEM
Definition hsearch.h:95
#define HASH_BLOBS
Definition hsearch.h:97
void CacheRegisterSyscacheCallback(SysCacheIdentifier cacheid, SyscacheCallbackFunction func, Datum arg)
Definition inval.c:1816
uint64_t Datum
Definition postgres.h:70
static int fb(int x)
tree ctl
Definition radixtree.h:1838
static HTAB * ShippableCacheHash
Definition shippable.c:34
static void InvalidateShippableCacheCallback(Datum arg, SysCacheIdentifier cacheid, uint32 hashvalue)
Definition shippable.c:65
Size keysize
Definition hsearch.h:75

References CacheRegisterSyscacheCallback(), ctl, fb(), HASH_BLOBS, hash_create(), HASH_ELEM, InvalidateShippableCacheCallback(), HASHCTL::keysize, and ShippableCacheHash.

Referenced by is_shippable().

◆ InvalidateShippableCacheCallback()

static void InvalidateShippableCacheCallback ( Datum  arg,
SysCacheIdentifier  cacheid,
uint32  hashvalue 
)
static

Definition at line 65 of file shippable.c.

67{
68 HASH_SEQ_STATUS status;
70
71 /*
72 * In principle we could flush only cache entries relating to the
73 * pg_foreign_server entry being outdated; but that would be more
74 * complicated, and it's probably not worth the trouble. So for now, just
75 * flush all entries.
76 */
78 while ((entry = (ShippableCacheEntry *) hash_seq_search(&status)) != NULL)
79 {
81 &entry->key,
83 NULL) == NULL)
84 elog(ERROR, "hash table corrupted");
85 }
86}
void * hash_search(HTAB *hashp, const void *keyPtr, HASHACTION action, bool *foundPtr)
Definition dynahash.c:952
void * hash_seq_search(HASH_SEQ_STATUS *status)
Definition dynahash.c:1415
void hash_seq_init(HASH_SEQ_STATUS *status, HTAB *hashp)
Definition dynahash.c:1380
#define ERROR
Definition elog.h:39
#define elog(elevel,...)
Definition elog.h:226
@ HASH_REMOVE
Definition hsearch.h:115
ShippableCacheKey key
Definition shippable.c:51

References elog, ERROR, fb(), HASH_REMOVE, hash_search(), hash_seq_init(), hash_seq_search(), ShippableCacheEntry::key, and ShippableCacheHash.

Referenced by InitializeShippableCache().

◆ is_builtin()

bool is_builtin ( Oid  objectId)

Definition at line 153 of file shippable.c.

154{
155 return (objectId < FirstGenbkiObjectId);
156}
#define FirstGenbkiObjectId
Definition transam.h:195

References FirstGenbkiObjectId.

Referenced by deparse_type_name(), and is_shippable().

◆ is_shippable()

bool is_shippable ( Oid  objectId,
Oid  classId,
PgFdwRelationInfo fpinfo 
)

Definition at line 163 of file shippable.c.

164{
166 ShippableCacheEntry *entry;
167
168 /* Built-in objects are presumed shippable. */
169 if (is_builtin(objectId))
170 return true;
171
172 /* Otherwise, give up if user hasn't specified any shippable extensions. */
173 if (fpinfo->shippable_extensions == NIL)
174 return false;
175
176 /* Initialize cache if first time through. */
179
180 /* Set up cache hash key */
181 key.objid = objectId;
182 key.classid = classId;
183 key.serverid = fpinfo->server->serverid;
184
185 /* See if we already cached the result. */
186 entry = (ShippableCacheEntry *)
188
189 if (!entry)
190 {
191 /* Not found in cache, so perform shippability lookup. */
192 bool shippable = lookup_shippable(objectId, classId, fpinfo);
193
194 /*
195 * Don't create a new hash entry until *after* we have the shippable
196 * result in hand, as the underlying catalog lookups might trigger a
197 * cache invalidation.
198 */
199 entry = (ShippableCacheEntry *)
201
202 entry->shippable = shippable;
203 }
204
205 return entry->shippable;
206}
@ HASH_FIND
Definition hsearch.h:113
@ HASH_ENTER
Definition hsearch.h:114
#define NIL
Definition pg_list.h:68
static bool lookup_shippable(Oid objectId, Oid classId, PgFdwRelationInfo *fpinfo)
Definition shippable.c:117
bool is_builtin(Oid objectId)
Definition shippable.c:153
static void InitializeShippableCache(void)
Definition shippable.c:92

References fb(), HASH_ENTER, HASH_FIND, hash_search(), InitializeShippableCache(), is_builtin(), lookup_shippable(), NIL, ShippableCacheEntry::shippable, and ShippableCacheHash.

Referenced by add_foreign_ordered_paths(), foreign_expr_walker(), get_useful_pathkeys_for_relation(), and is_foreign_pathkey().

◆ lookup_shippable()

static bool lookup_shippable ( Oid  objectId,
Oid  classId,
PgFdwRelationInfo fpinfo 
)
static

Definition at line 117 of file shippable.c.

118{
120
121 /*
122 * Is object a member of some extension? (Note: this is a fairly
123 * expensive lookup, which is why we try to cache the results.)
124 */
125 extensionOid = getExtensionOfObject(classId, objectId);
126
127 /* If so, is that extension in fpinfo->shippable_extensions? */
129 list_member_oid(fpinfo->shippable_extensions, extensionOid))
130 return true;
131
132 return false;
133}
#define OidIsValid(objectId)
Definition c.h:842
bool list_member_oid(const List *list, Oid datum)
Definition list.c:722
Oid getExtensionOfObject(Oid classId, Oid objectId)
Definition pg_depend.c:734
unsigned int Oid

References fb(), getExtensionOfObject(), list_member_oid(), and OidIsValid.

Referenced by is_shippable().

Variable Documentation

◆ ShippableCacheHash

HTAB* ShippableCacheHash = NULL
static