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)
 

Functions

static XLogRecPtr DatumGetLSN (Datum X)
 
static Datum LSNGetDatum (XLogRecPtr X)
 
XLogRecPtr pg_lsn_in_internal (const char *str, bool *have_error)
 

Macro Definition Documentation

◆ PG_GETARG_LSN

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

Definition at line 33 of file pg_lsn.h.

◆ PG_RETURN_LSN

#define PG_RETURN_LSN (   x)    return LSNGetDatum(x)

Definition at line 34 of file pg_lsn.h.

Function Documentation

◆ DatumGetLSN()

static XLogRecPtr DatumGetLSN ( Datum  X)
inlinestatic

Definition at line 22 of file pg_lsn.h.

23 {
24  return (XLogRecPtr) DatumGetInt64(X);
25 }
static int64 DatumGetInt64(Datum X)
Definition: postgres.h:385
uint64 XLogRecPtr
Definition: xlogdefs.h:21

References DatumGetInt64().

Referenced by GetSubscriptionRelations(), GetSubscriptionRelState(), libpqrcv_create_slot(), and parse_subscription_options().

◆ LSNGetDatum()

◆ pg_lsn_in_internal()

XLogRecPtr pg_lsn_in_internal ( const char *  str,
bool have_error 
)

Definition at line 30 of file pg_lsn.c.

31 {
32  int len1,
33  len2;
34  uint32 id,
35  off;
36  XLogRecPtr result;
37 
38  Assert(have_error != NULL);
39  *have_error = false;
40 
41  /* Sanity check input format. */
42  len1 = strspn(str, "0123456789abcdefABCDEF");
43  if (len1 < 1 || len1 > MAXPG_LSNCOMPONENT || str[len1] != '/')
44  {
45  *have_error = true;
46  return InvalidXLogRecPtr;
47  }
48  len2 = strspn(str + len1 + 1, "0123456789abcdefABCDEF");
49  if (len2 < 1 || len2 > MAXPG_LSNCOMPONENT || str[len1 + 1 + len2] != '\0')
50  {
51  *have_error = true;
52  return InvalidXLogRecPtr;
53  }
54 
55  /* Decode result. */
56  id = (uint32) strtoul(str, NULL, 16);
57  off = (uint32) strtoul(str + len1 + 1, NULL, 16);
58  result = ((uint64) id << 32) | off;
59 
60  return result;
61 }
unsigned int uint32
Definition: c.h:490
Assert(fmt[strlen(fmt) - 1] !='\n')
#define MAXPG_LSNCOMPONENT
Definition: pg_lsn.c:23
#define InvalidXLogRecPtr
Definition: xlogdefs.h:28

References Assert(), InvalidXLogRecPtr, MAXPG_LSNCOMPONENT, and generate_unaccent_rules::str.

Referenced by check_recovery_target_lsn(), and pg_lsn_in().