PostgreSQL Source Code git master
pg_lsn.h File Reference
#include "access/xlogdefs.h"
#include "fmgr.h"
Include dependency graph for pg_lsn.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define PG_GETARG_LSN(n)   DatumGetLSN(PG_GETARG_DATUM(n))
 
#define PG_RETURN_LSN(x)   return LSNGetDatum(x)
 

Typedefs

typedef struct Node Node
 

Functions

static XLogRecPtr DatumGetLSN (Datum X)
 
static Datum LSNGetDatum (XLogRecPtr X)
 
XLogRecPtr pg_lsn_in_safe (const char *str, Node *escontext)
 

Macro Definition Documentation

◆ PG_GETARG_LSN

#define PG_GETARG_LSN (   n)    DatumGetLSN(PG_GETARG_DATUM(n))

Definition at line 36 of file pg_lsn.h.

◆ PG_RETURN_LSN

#define PG_RETURN_LSN (   x)    return LSNGetDatum(x)

Definition at line 37 of file pg_lsn.h.

Typedef Documentation

◆ Node

typedef struct Node Node

Definition at line 22 of file pg_lsn.h.

Function Documentation

◆ DatumGetLSN()

static XLogRecPtr DatumGetLSN ( Datum  X)
inlinestatic

Definition at line 25 of file pg_lsn.h.

26{
27 return (XLogRecPtr) DatumGetInt64(X);
28}
static int64 DatumGetInt64(Datum X)
Definition: postgres.h:393
uint64 XLogRecPtr
Definition: xlogdefs.h:21

References DatumGetInt64().

Referenced by ExecWaitStmt(), get_and_validate_seq_info(), GetSubscriptionRelations(), GetSubscriptionRelState(), libpqrcv_create_slot(), parse_subscription_options(), and synchronize_slots().

◆ LSNGetDatum()

◆ pg_lsn_in_safe()

XLogRecPtr pg_lsn_in_safe ( const char *  str,
Node escontext 
)

Definition at line 32 of file pg_lsn.c.

33{
34 int len1,
35 len2;
36 uint32 id,
37 off;
38 XLogRecPtr result;
39
40 /* Sanity check input format. */
41 len1 = strspn(str, "0123456789abcdefABCDEF");
42 if (len1 < 1 || len1 > MAXPG_LSNCOMPONENT || str[len1] != '/')
43 goto syntax_error;
44
45 len2 = strspn(str + len1 + 1, "0123456789abcdefABCDEF");
46 if (len2 < 1 || len2 > MAXPG_LSNCOMPONENT || str[len1 + 1 + len2] != '\0')
47 goto syntax_error;
48
49 /* Decode result. */
50 id = (uint32) strtoul(str, NULL, 16);
51 off = (uint32) strtoul(str + len1 + 1, NULL, 16);
52 result = ((uint64) id << 32) | off;
53
54 return result;
55
57 ereturn(escontext, InvalidXLogRecPtr,
58 (errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
59 errmsg("invalid input syntax for type %s: \"%s\"",
60 "pg_lsn", str)));
61}
uint64_t uint64
Definition: c.h:542
uint32_t uint32
Definition: c.h:541
int errcode(int sqlerrcode)
Definition: elog.c:863
int errmsg(const char *fmt,...)
Definition: elog.c:1080
#define ereturn(context, dummy_value,...)
Definition: elog.h:278
const char * str
#define MAXPG_LSNCOMPONENT
Definition: pg_lsn.c:22
void syntax_error(const char *source, int lineno, const char *line, const char *command, const char *msg, const char *more, int column)
Definition: pgbench.c:5581
#define InvalidXLogRecPtr
Definition: xlogdefs.h:28

References ereturn, errcode(), errmsg(), InvalidXLogRecPtr, MAXPG_LSNCOMPONENT, str, and syntax_error().

Referenced by check_recovery_target_lsn(), and pg_lsn_in().