2005-03-12 18:36:24 +03:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* pg_buffercache_pages.c
|
2005-10-15 06:49:52 +04:00
|
|
|
* display some contents of the buffer cache
|
2005-03-12 18:36:24 +03:00
|
|
|
*
|
2006-10-22 21:49:21 +04:00
|
|
|
* $PostgreSQL: pgsql/contrib/pg_buffercache/pg_buffercache_pages.c,v 1.11 2006/10/22 17:49:21 tgl Exp $
|
2005-03-12 18:36:24 +03:00
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
#include "postgres.h"
|
2006-10-22 21:49:21 +04:00
|
|
|
|
|
|
|
#include "access/heapam.h"
|
2005-03-12 18:36:24 +03:00
|
|
|
#include "catalog/pg_type.h"
|
2006-10-22 21:49:21 +04:00
|
|
|
#include "funcapi.h"
|
2005-03-12 18:36:24 +03:00
|
|
|
#include "storage/buf_internals.h"
|
|
|
|
#include "storage/bufmgr.h"
|
|
|
|
#include "utils/relcache.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define NUM_BUFFERCACHE_PAGES_ELEM 6
|
|
|
|
|
2006-05-31 02:12:16 +04:00
|
|
|
PG_MODULE_MAGIC;
|
|
|
|
|
2005-10-15 06:49:52 +04:00
|
|
|
Datum pg_buffercache_pages(PG_FUNCTION_ARGS);
|
2005-04-01 12:41:19 +04:00
|
|
|
|
2005-03-12 18:36:24 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Record structure holding the to be exposed cache data.
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
uint32 bufferid;
|
|
|
|
Oid relfilenode;
|
|
|
|
Oid reltablespace;
|
|
|
|
Oid reldatabase;
|
2005-10-15 06:49:52 +04:00
|
|
|
BlockNumber blocknum;
|
2005-03-12 18:36:24 +03:00
|
|
|
bool isvalid;
|
|
|
|
bool isdirty;
|
2005-10-15 06:49:52 +04:00
|
|
|
} BufferCachePagesRec;
|
2005-03-12 18:36:24 +03:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Function context for data persisting over repeated calls.
|
|
|
|
*/
|
2005-10-15 06:49:52 +04:00
|
|
|
typedef struct
|
2005-03-12 18:36:24 +03:00
|
|
|
{
|
2006-10-22 21:49:21 +04:00
|
|
|
TupleDesc tupdesc;
|
2005-10-15 06:49:52 +04:00
|
|
|
BufferCachePagesRec *record;
|
|
|
|
} BufferCachePagesContext;
|
2005-03-12 18:36:24 +03:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Function returning data from the shared buffer cache - buffer number,
|
|
|
|
* relation node/tablespace/database/blocknum and dirty indicator.
|
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(pg_buffercache_pages);
|
2006-10-22 21:49:21 +04:00
|
|
|
|
2005-03-12 18:36:24 +03:00
|
|
|
Datum
|
|
|
|
pg_buffercache_pages(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2005-10-15 06:49:52 +04:00
|
|
|
FuncCallContext *funcctx;
|
|
|
|
Datum result;
|
|
|
|
MemoryContext oldcontext;
|
|
|
|
BufferCachePagesContext *fctx; /* User function context. */
|
|
|
|
TupleDesc tupledesc;
|
|
|
|
HeapTuple tuple;
|
2005-03-12 18:36:24 +03:00
|
|
|
|
|
|
|
if (SRF_IS_FIRSTCALL())
|
|
|
|
{
|
2006-10-04 04:30:14 +04:00
|
|
|
int i;
|
2005-10-15 06:49:52 +04:00
|
|
|
volatile BufferDesc *bufHdr;
|
2005-03-12 18:36:24 +03:00
|
|
|
|
|
|
|
funcctx = SRF_FIRSTCALL_INIT();
|
|
|
|
|
|
|
|
/* Switch context when allocating stuff to be used in later calls */
|
|
|
|
oldcontext = MemoryContextSwitchTo(funcctx->multi_call_memory_ctx);
|
2005-10-15 06:49:52 +04:00
|
|
|
|
2006-10-22 21:49:21 +04:00
|
|
|
/* Create a user function context for cross-call persistence */
|
|
|
|
fctx = (BufferCachePagesContext *) palloc(sizeof(BufferCachePagesContext));
|
|
|
|
|
|
|
|
/* Construct a tuple descriptor for the result rows. */
|
2005-03-12 18:36:24 +03:00
|
|
|
tupledesc = CreateTemplateTupleDesc(NUM_BUFFERCACHE_PAGES_ELEM, false);
|
|
|
|
TupleDescInitEntry(tupledesc, (AttrNumber) 1, "bufferid",
|
2005-10-15 06:49:52 +04:00
|
|
|
INT4OID, -1, 0);
|
2005-03-12 18:36:24 +03:00
|
|
|
TupleDescInitEntry(tupledesc, (AttrNumber) 2, "relfilenode",
|
2005-10-15 06:49:52 +04:00
|
|
|
OIDOID, -1, 0);
|
2005-03-12 18:36:24 +03:00
|
|
|
TupleDescInitEntry(tupledesc, (AttrNumber) 3, "reltablespace",
|
2005-10-15 06:49:52 +04:00
|
|
|
OIDOID, -1, 0);
|
2005-03-12 18:36:24 +03:00
|
|
|
TupleDescInitEntry(tupledesc, (AttrNumber) 4, "reldatabase",
|
2005-10-15 06:49:52 +04:00
|
|
|
OIDOID, -1, 0);
|
2005-05-31 04:07:47 +04:00
|
|
|
TupleDescInitEntry(tupledesc, (AttrNumber) 5, "relblocknumber",
|
2005-10-15 06:49:52 +04:00
|
|
|
INT8OID, -1, 0);
|
2005-03-12 18:36:24 +03:00
|
|
|
TupleDescInitEntry(tupledesc, (AttrNumber) 6, "isdirty",
|
2005-10-15 06:49:52 +04:00
|
|
|
BOOLOID, -1, 0);
|
2005-03-12 18:36:24 +03:00
|
|
|
|
2006-10-22 21:49:21 +04:00
|
|
|
fctx->tupdesc = BlessTupleDesc(tupledesc);
|
2005-03-12 18:36:24 +03:00
|
|
|
|
|
|
|
/* Allocate NBuffers worth of BufferCachePagesRec records. */
|
|
|
|
fctx->record = (BufferCachePagesRec *) palloc(sizeof(BufferCachePagesRec) * NBuffers);
|
|
|
|
|
2006-10-22 21:49:21 +04:00
|
|
|
/* Set max calls and remember the user function context. */
|
|
|
|
funcctx->max_calls = NBuffers;
|
|
|
|
funcctx->user_fctx = fctx;
|
2005-03-12 18:36:24 +03:00
|
|
|
|
|
|
|
/* Return to original context when allocating transient memory */
|
|
|
|
MemoryContextSwitchTo(oldcontext);
|
|
|
|
|
2005-10-15 06:49:52 +04:00
|
|
|
/*
|
2006-10-04 04:30:14 +04:00
|
|
|
* To get a consistent picture of the buffer state, we must lock all
|
|
|
|
* partitions of the buffer map. Needless to say, this is horrible
|
|
|
|
* for concurrency...
|
2005-03-12 18:36:24 +03:00
|
|
|
*/
|
2006-07-23 07:07:58 +04:00
|
|
|
for (i = 0; i < NUM_BUFFER_PARTITIONS; i++)
|
|
|
|
LWLockAcquire(FirstBufMappingLock + i, LW_SHARED);
|
2005-03-12 18:36:24 +03:00
|
|
|
|
2006-07-23 07:07:58 +04:00
|
|
|
/*
|
|
|
|
* Scan though all the buffers, saving the relevant fields in the
|
|
|
|
* fctx->record structure.
|
|
|
|
*/
|
2005-03-12 18:36:24 +03:00
|
|
|
for (i = 0, bufHdr = BufferDescriptors; i < NBuffers; i++, bufHdr++)
|
|
|
|
{
|
|
|
|
/* Lock each buffer header before inspecting. */
|
|
|
|
LockBufHdr(bufHdr);
|
|
|
|
|
|
|
|
fctx->record[i].bufferid = BufferDescriptorGetBuffer(bufHdr);
|
2005-10-12 20:45:14 +04:00
|
|
|
fctx->record[i].relfilenode = bufHdr->tag.rnode.relNode;
|
|
|
|
fctx->record[i].reltablespace = bufHdr->tag.rnode.spcNode;
|
|
|
|
fctx->record[i].reldatabase = bufHdr->tag.rnode.dbNode;
|
2005-03-12 18:36:24 +03:00
|
|
|
fctx->record[i].blocknum = bufHdr->tag.blockNum;
|
|
|
|
|
2005-10-15 06:49:52 +04:00
|
|
|
if (bufHdr->flags & BM_DIRTY)
|
2005-03-12 18:36:24 +03:00
|
|
|
fctx->record[i].isdirty = true;
|
|
|
|
else
|
|
|
|
fctx->record[i].isdirty = false;
|
|
|
|
|
|
|
|
/* Note if the buffer is valid, and has storage created */
|
2005-10-12 20:45:14 +04:00
|
|
|
if ((bufHdr->flags & BM_VALID) && (bufHdr->flags & BM_TAG_VALID))
|
2005-03-12 18:36:24 +03:00
|
|
|
fctx->record[i].isvalid = true;
|
|
|
|
else
|
|
|
|
fctx->record[i].isvalid = false;
|
|
|
|
|
|
|
|
UnlockBufHdr(bufHdr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Release Buffer map. */
|
2006-07-23 07:07:58 +04:00
|
|
|
for (i = 0; i < NUM_BUFFER_PARTITIONS; i++)
|
|
|
|
LWLockRelease(FirstBufMappingLock + i);
|
2005-03-12 18:36:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
funcctx = SRF_PERCALL_SETUP();
|
2005-10-15 06:49:52 +04:00
|
|
|
|
2005-03-12 18:36:24 +03:00
|
|
|
/* Get the saved state */
|
|
|
|
fctx = funcctx->user_fctx;
|
|
|
|
|
|
|
|
if (funcctx->call_cntr < funcctx->max_calls)
|
|
|
|
{
|
2005-10-15 06:49:52 +04:00
|
|
|
uint32 i = funcctx->call_cntr;
|
2006-10-22 21:49:21 +04:00
|
|
|
Datum values[NUM_BUFFERCACHE_PAGES_ELEM];
|
|
|
|
bool nulls[NUM_BUFFERCACHE_PAGES_ELEM];
|
2005-10-15 06:49:52 +04:00
|
|
|
|
2006-10-22 21:49:21 +04:00
|
|
|
values[0] = Int32GetDatum(fctx->record[i].bufferid);
|
|
|
|
nulls[0] = false;
|
2005-03-12 18:36:24 +03:00
|
|
|
|
|
|
|
/*
|
2005-10-15 06:49:52 +04:00
|
|
|
* Set all fields except the bufferid to null if the buffer is unused
|
|
|
|
* or not valid.
|
2005-03-12 18:36:24 +03:00
|
|
|
*/
|
|
|
|
if (fctx->record[i].blocknum == InvalidBlockNumber ||
|
2005-10-15 06:49:52 +04:00
|
|
|
fctx->record[i].isvalid == false)
|
2005-03-12 18:36:24 +03:00
|
|
|
{
|
2006-10-22 21:49:21 +04:00
|
|
|
nulls[1] = true;
|
|
|
|
nulls[2] = true;
|
|
|
|
nulls[3] = true;
|
|
|
|
nulls[4] = true;
|
|
|
|
nulls[5] = true;
|
2005-03-12 18:36:24 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-10-22 21:49:21 +04:00
|
|
|
values[1] = ObjectIdGetDatum(fctx->record[i].relfilenode);
|
|
|
|
nulls[1] = false;
|
|
|
|
values[2] = ObjectIdGetDatum(fctx->record[i].reltablespace);
|
|
|
|
nulls[2] = false;
|
|
|
|
values[3] = ObjectIdGetDatum(fctx->record[i].reldatabase);
|
|
|
|
nulls[3] = false;
|
|
|
|
values[4] = Int64GetDatum((int64) fctx->record[i].blocknum);
|
|
|
|
nulls[4] = false;
|
|
|
|
values[5] = BoolGetDatum(fctx->record[i].isdirty);
|
|
|
|
nulls[5] = false;
|
2005-03-12 18:36:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Build and return the tuple. */
|
2006-10-22 21:49:21 +04:00
|
|
|
tuple = heap_form_tuple(fctx->tupdesc, values, nulls);
|
2005-03-12 18:36:24 +03:00
|
|
|
result = HeapTupleGetDatum(tuple);
|
|
|
|
|
|
|
|
SRF_RETURN_NEXT(funcctx, result);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
SRF_RETURN_DONE(funcctx);
|
|
|
|
}
|