Age Owner Branch data TLA Line data Source code
1 : : /*-------------------------------------------------------------------------
2 : : *
3 : : * smgrdesc.c
4 : : * rmgr descriptor routines for catalog/storage.c
5 : : *
6 : : * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
7 : : * Portions Copyright (c) 1994, Regents of the University of California
8 : : *
9 : : *
10 : : * IDENTIFICATION
11 : : * src/backend/access/rmgrdesc/smgrdesc.c
12 : : *
13 : : *-------------------------------------------------------------------------
14 : : */
15 : : #include "postgres.h"
16 : :
17 : : #include "catalog/storage_xlog.h"
18 : :
19 : :
20 : : void
3433 heikki.linnakangas@i 21 :CBC 1994 : smgr_desc(StringInfo buf, XLogReaderState *record)
22 : : {
3592 23 : 1994 : char *rec = XLogRecGetData(record);
3433 24 : 1994 : uint8 info = XLogRecGetInfo(record) & ~XLR_INFO_MASK;
25 : :
4155 alvherre@alvh.no-ip. 26 [ + + ]: 1994 : if (info == XLOG_SMGR_CREATE)
27 : : {
28 : 1988 : xl_smgr_create *xlrec = (xl_smgr_create *) rec;
648 rhaas@postgresql.org 29 : 1988 : char *path = relpathperm(xlrec->rlocator, xlrec->forkNum);
30 : :
3261 peter_e@gmx.net 31 : 1988 : appendStringInfoString(buf, path);
4155 alvherre@alvh.no-ip. 32 : 1988 : pfree(path);
33 : : }
4155 alvherre@alvh.no-ip. 34 [ + - ]:GBC 6 : else if (info == XLOG_SMGR_TRUNCATE)
35 : : {
36 : 6 : xl_smgr_truncate *xlrec = (xl_smgr_truncate *) rec;
648 rhaas@postgresql.org 37 : 6 : char *path = relpathperm(xlrec->rlocator, MAIN_FORKNUM);
38 : :
2858 39 : 6 : appendStringInfo(buf, "%s to %u blocks flags %d", path,
40 : : xlrec->blkno, xlrec->flags);
4155 alvherre@alvh.no-ip. 41 : 6 : pfree(path);
42 : : }
3495 andres@anarazel.de 43 :CBC 1994 : }
44 : :
45 : : const char *
46 : 1996 : smgr_identify(uint8 info)
47 : : {
48 : 1996 : const char *id = NULL;
49 : :
3492 50 [ + + - ]: 1996 : switch (info & ~XLR_INFO_MASK)
51 : : {
3495 52 : 1989 : case XLOG_SMGR_CREATE:
53 : 1989 : id = "CREATE";
54 : 1989 : break;
3495 andres@anarazel.de 55 :GBC 7 : case XLOG_SMGR_TRUNCATE:
56 : 7 : id = "TRUNCATE";
57 : 7 : break;
58 : : }
59 : :
3495 andres@anarazel.de 60 :CBC 1996 : return id;
61 : : }
|