LCOV - differential code coverage report
Current view: top level - src/backend/replication - walreceiverfuncs.c (source / functions) Coverage Total Hit UNC UBC GBC GIC GNC CBC ECB DUB DCB
Current: 380a8b2ea024c33a35e7abc8628e7c4f52f9f9f9 vs db5ed03217b9c238703df8b4b286115d6e940488 Lines: 88.8 % 152 135 17 2 1 20 112 1 1 15
Current Date: 2026-05-29 21:51:00 -0400 Functions: 100.0 % 11 11 7 4 2
Baseline: lcov-20260530-034037-baseline Branches: 68.8 % 77 53 7 17 9 44 19 15
Baseline Date: 2026-05-29 14:39:03 -0700 Line coverage date bins:
Legend: Lines:     hit not hit
Branches: + taken - not taken # not executed
(1,7] days: 66.7 % 3 2 1 2
(7,30] days: 100.0 % 2 2 2
(30,360] days: 100.0 % 18 18 18
(360..) days: 87.6 % 129 113 16 2 1 110 1
Function coverage date bins:
(30,360] days: 100.0 % 3 3 3
(360..) days: 100.0 % 8 8 4 4
Branch coverage date bins:
(1,7] days: 50.0 % 2 1 1 1
(30,360] days: 56.2 % 16 9 7 9
(360..) days: 72.9 % 59 43 16 43

 Age         Owner                    Branch data    TLA  Line data    Source code
                                  1                 :                : /*-------------------------------------------------------------------------
                                  2                 :                :  *
                                  3                 :                :  * walreceiverfuncs.c
                                  4                 :                :  *
                                  5                 :                :  * This file contains functions used by the startup process to communicate
                                  6                 :                :  * with the walreceiver process. Functions implementing walreceiver itself
                                  7                 :                :  * are in walreceiver.c.
                                  8                 :                :  *
                                  9                 :                :  * Portions Copyright (c) 2010-2026, PostgreSQL Global Development Group
                                 10                 :                :  *
                                 11                 :                :  *
                                 12                 :                :  * IDENTIFICATION
                                 13                 :                :  *    src/backend/replication/walreceiverfuncs.c
                                 14                 :                :  *
                                 15                 :                :  *-------------------------------------------------------------------------
                                 16                 :                :  */
                                 17                 :                : #include "postgres.h"
                                 18                 :                : 
                                 19                 :                : #include <sys/stat.h>
                                 20                 :                : #include <sys/time.h>
                                 21                 :                : #include <time.h>
                                 22                 :                : #include <unistd.h>
                                 23                 :                : #include <signal.h>
                                 24                 :                : 
                                 25                 :                : #include "access/xlog_internal.h"
                                 26                 :                : #include "access/xlogrecovery.h"
                                 27                 :                : #include "pgstat.h"
                                 28                 :                : #include "replication/walreceiver.h"
                                 29                 :                : #include "storage/pmsignal.h"
                                 30                 :                : #include "storage/proc.h"
                                 31                 :                : #include "storage/shmem.h"
                                 32                 :                : #include "storage/subsystems.h"
                                 33                 :                : #include "utils/timestamp.h"
                                 34                 :                : #include "utils/wait_event.h"
                                 35                 :                : 
                                 36                 :                : WalRcvData *WalRcv = NULL;
                                 37                 :                : 
                                 38                 :                : static void WalRcvShmemRequest(void *arg);
                                 39                 :                : static void WalRcvShmemInit(void *arg);
                                 40                 :                : 
                                 41                 :                : const ShmemCallbacks WalRcvShmemCallbacks = {
                                 42                 :                :     .request_fn = WalRcvShmemRequest,
                                 43                 :                :     .init_fn = WalRcvShmemInit,
                                 44                 :                : };
                                 45                 :                : 
                                 46                 :                : /*
                                 47                 :                :  * How long to wait for walreceiver to start up after requesting
                                 48                 :                :  * postmaster to launch it. In seconds.
                                 49                 :                :  */
                                 50                 :                : #define WALRCV_STARTUP_TIMEOUT 10
                                 51                 :                : 
                                 52                 :                : /* Register shared memory space needed by walreceiver */
                                 53                 :                : static void
   54 heikki.linnakangas@i       54                 :GNC        1251 : WalRcvShmemRequest(void *arg)
                                 55                 :                : {
                                 56                 :           1251 :     ShmemRequestStruct(.name = "Wal Receiver Ctl",
                                 57                 :                :                        .size = sizeof(WalRcvData),
                                 58                 :                :                        .ptr = (void **) &WalRcv,
                                 59                 :                :         );
 5979 heikki.linnakangas@i       60                 :GIC        1251 : }
                                 61                 :                : 
                                 62                 :                : /* Initialize walreceiver-related shared memory */
                                 63                 :                : static void
   54 heikki.linnakangas@i       64                 :GNC        1248 : WalRcvShmemInit(void *arg)
                                 65                 :                : {
                                 66   [ +  -  +  -  :           1248 :     MemSet(WalRcv, 0, sizeof(WalRcvData));
                                     +  -  -  +  -  
                                                 - ]
                                 67                 :           1248 :     WalRcv->walRcvState = WALRCV_STOPPED;
                                 68                 :           1248 :     ConditionVariableInit(&WalRcv->walRcvStoppedCV);
                                 69                 :           1248 :     SpinLockInit(&WalRcv->mutex);
                                 70                 :           1248 :     pg_atomic_init_u64(&WalRcv->writtenUpto, 0);
                                 71                 :           1248 :     WalRcv->procno = INVALID_PROC_NUMBER;
 5979 heikki.linnakangas@i       72                 :CBC        1248 : }
                                 73                 :                : 
                                 74                 :                : /* Is walreceiver running (or starting up)? */
                                 75                 :                : bool
 4916                            76                 :           1131 : WalRcvRunning(void)
                                 77                 :                : {
 3889 rhaas@postgresql.org       78                 :           1131 :     WalRcvData *walrcv = WalRcv;
                                 79                 :                :     WalRcvState state;
                                 80                 :                :     pg_time_t   startTime;
                                 81                 :                : 
 5979 heikki.linnakangas@i       82         [ -  + ]:           1131 :     SpinLockAcquire(&walrcv->mutex);
                                 83                 :                : 
 5967                            84                 :           1131 :     state = walrcv->walRcvState;
                                 85                 :           1131 :     startTime = walrcv->startTime;
                                 86                 :                : 
                                 87                 :           1131 :     SpinLockRelease(&walrcv->mutex);
                                 88                 :                : 
                                 89                 :                :     /*
                                 90                 :                :      * If it has taken too long for walreceiver to start up, give up. Setting
                                 91                 :                :      * the state to STOPPED ensures that if walreceiver later does start up
                                 92                 :                :      * after all, it will see that it's not supposed to be running and die
                                 93                 :                :      * without doing anything.
                                 94                 :                :      */
                                 95         [ +  + ]:           1131 :     if (state == WALRCV_STARTING)
                                 96                 :                :     {
 5937 bruce@momjian.us           97                 :              1 :         pg_time_t   now = (pg_time_t) time(NULL);
                                 98                 :                : 
 5967 heikki.linnakangas@i       99         [ -  + ]:              1 :         if ((now - startTime) > WALRCV_STARTUP_TIMEOUT)
                                100                 :                :         {
 1905 tmunro@postgresql.or      101                 :UBC           0 :             bool        stopped = false;
                                102                 :                : 
                                103         [ #  # ]:              0 :             SpinLockAcquire(&walrcv->mutex);
 5967 heikki.linnakangas@i      104         [ #  # ]:              0 :             if (walrcv->walRcvState == WALRCV_STARTING)
                                105                 :                :             {
                                106                 :              0 :                 state = walrcv->walRcvState = WALRCV_STOPPED;
 1905 tmunro@postgresql.or      107                 :              0 :                 stopped = true;
                                108                 :                :             }
 5967 heikki.linnakangas@i      109                 :              0 :             SpinLockRelease(&walrcv->mutex);
                                110                 :                : 
 1905 tmunro@postgresql.or      111         [ #  # ]:              0 :             if (stopped)
                                112                 :              0 :                 ConditionVariableBroadcast(&walrcv->walRcvStoppedCV);
                                113                 :                :         }
                                114                 :                :     }
                                115                 :                : 
 5967 heikki.linnakangas@i      116         [ +  + ]:CBC        1131 :     if (state != WALRCV_STOPPED)
                                117                 :             44 :         return true;
                                118                 :                :     else
                                119                 :           1087 :         return false;
                                120                 :                : }
                                121                 :                : 
                                122                 :                : /* Return the state of the walreceiver. */
                                123                 :                : WalRcvState
  207 michael@paquier.xyz       124                 :GNC         152 : WalRcvGetState(void)
                                125                 :                : {
                                126                 :            152 :     WalRcvData *walrcv = WalRcv;
                                127                 :                :     WalRcvState state;
                                128                 :                : 
                                129                 :            152 :     SpinLockAcquire(&walrcv->mutex);
                                130                 :            152 :     state = walrcv->walRcvState;
                                131                 :            152 :     SpinLockRelease(&walrcv->mutex);
                                132                 :                : 
                                133                 :            152 :     return state;
                                134                 :                : }
                                135                 :                : 
                                136                 :                : /*
                                137                 :                :  * Is walreceiver running and streaming (or at least attempting to connect,
                                138                 :                :  * or starting up)?
                                139                 :                :  */
                                140                 :                : bool
 4916 heikki.linnakangas@i      141                 :CBC       41171 : WalRcvStreaming(void)
                                142                 :                : {
 3889 rhaas@postgresql.org      143                 :          41171 :     WalRcvData *walrcv = WalRcv;
                                144                 :                :     WalRcvState state;
                                145                 :                :     pg_time_t   startTime;
                                146                 :                : 
 4916 heikki.linnakangas@i      147         [ -  + ]:          41171 :     SpinLockAcquire(&walrcv->mutex);
                                148                 :                : 
                                149                 :          41171 :     state = walrcv->walRcvState;
                                150                 :          41171 :     startTime = walrcv->startTime;
                                151                 :                : 
                                152                 :          41171 :     SpinLockRelease(&walrcv->mutex);
                                153                 :                : 
                                154                 :                :     /*
                                155                 :                :      * If it has taken too long for walreceiver to start up, give up. Setting
                                156                 :                :      * the state to STOPPED ensures that if walreceiver later does start up
                                157                 :                :      * after all, it will see that it's not supposed to be running and die
                                158                 :                :      * without doing anything.
                                159                 :                :      */
                                160         [ +  + ]:          41171 :     if (state == WALRCV_STARTING)
                                161                 :                :     {
                                162                 :            306 :         pg_time_t   now = (pg_time_t) time(NULL);
                                163                 :                : 
                                164         [ -  + ]:            306 :         if ((now - startTime) > WALRCV_STARTUP_TIMEOUT)
                                165                 :                :         {
 1905 tmunro@postgresql.or      166                 :UBC           0 :             bool        stopped = false;
                                167                 :                : 
                                168         [ #  # ]:              0 :             SpinLockAcquire(&walrcv->mutex);
 4916 heikki.linnakangas@i      169         [ #  # ]:              0 :             if (walrcv->walRcvState == WALRCV_STARTING)
                                170                 :                :             {
                                171                 :              0 :                 state = walrcv->walRcvState = WALRCV_STOPPED;
 1905 tmunro@postgresql.or      172                 :              0 :                 stopped = true;
                                173                 :                :             }
 4916 heikki.linnakangas@i      174                 :              0 :             SpinLockRelease(&walrcv->mutex);
                                175                 :                : 
 1905 tmunro@postgresql.or      176         [ #  # ]:              0 :             if (stopped)
                                177                 :              0 :                 ConditionVariableBroadcast(&walrcv->walRcvStoppedCV);
                                178                 :                :         }
                                179                 :                :     }
                                180                 :                : 
 4916 heikki.linnakangas@i      181   [ +  +  +  +  :CBC       41171 :     if (state == WALRCV_STREAMING || state == WALRCV_STARTING ||
                                              +  + ]
  127 michael@paquier.xyz       182         [ +  + ]:GNC        3278 :         state == WALRCV_CONNECTING || state == WALRCV_RESTARTING)
 4916 heikki.linnakangas@i      183                 :CBC       37901 :         return true;
                                184                 :                :     else
                                185                 :           3270 :         return false;
                                186                 :                : }
                                187                 :                : 
                                188                 :                : /*
                                189                 :                :  * Stop walreceiver (if running) and wait for it to die.
                                190                 :                :  * Executed by the Startup process.
                                191                 :                :  */
                                192                 :                : void
 5979                           193                 :           1082 : ShutdownWalRcv(void)
                                194                 :                : {
 3889 rhaas@postgresql.org      195                 :           1082 :     WalRcvData *walrcv = WalRcv;
 5937 bruce@momjian.us          196                 :           1082 :     pid_t       walrcvpid = 0;
 1905 tmunro@postgresql.or      197                 :           1082 :     bool        stopped = false;
                                198                 :                : 
                                199                 :                :     /*
                                200                 :                :      * Request walreceiver to stop. Walreceiver will switch to WALRCV_STOPPED
                                201                 :                :      * mode once it's finished, and will also request postmaster to not
                                202                 :                :      * restart itself.
                                203                 :                :      */
 5979 heikki.linnakangas@i      204         [ -  + ]:           1082 :     SpinLockAcquire(&walrcv->mutex);
 5937 bruce@momjian.us          205   [ +  +  +  -  :           1082 :     switch (walrcv->walRcvState)
                                                 - ]
                                206                 :                :     {
 5967 heikki.linnakangas@i      207                 :           1037 :         case WALRCV_STOPPED:
                                208                 :           1037 :             break;
                                209                 :              5 :         case WALRCV_STARTING:
                                210                 :              5 :             walrcv->walRcvState = WALRCV_STOPPED;
 1905 tmunro@postgresql.or      211                 :              5 :             stopped = true;
 5967 heikki.linnakangas@i      212                 :              5 :             break;
                                213                 :                : 
  127 michael@paquier.xyz       214                 :GNC          40 :         case WALRCV_CONNECTING:
 4916 heikki.linnakangas@i      215                 :ECB        (29) :         case WALRCV_STREAMING:
                                216                 :                :         case WALRCV_WAITING:
                                217                 :                :         case WALRCV_RESTARTING:
 5967 heikki.linnakangas@i      218                 :CBC          40 :             walrcv->walRcvState = WALRCV_STOPPING;
                                219                 :                :             pg_fallthrough;
                                220                 :             40 :         case WALRCV_STOPPING:
                                221                 :             40 :             walrcvpid = walrcv->pid;
                                222                 :             40 :             break;
                                223                 :                :     }
 5979                           224                 :           1082 :     SpinLockRelease(&walrcv->mutex);
                                225                 :                : 
                                226                 :                :     /* Unnecessary but consistent. */
 1905 tmunro@postgresql.or      227         [ +  + ]:           1082 :     if (stopped)
                                228                 :              5 :         ConditionVariableBroadcast(&walrcv->walRcvStoppedCV);
                                229                 :                : 
                                230                 :                :     /*
                                231                 :                :      * Signal walreceiver process if it was still running.
                                232                 :                :      */
 5979 heikki.linnakangas@i      233         [ +  + ]:           1082 :     if (walrcvpid != 0)
                                234                 :             40 :         kill(walrcvpid, SIGTERM);
                                235                 :                : 
                                236                 :                :     /*
                                237                 :                :      * Wait for walreceiver to acknowledge its death by setting state to
                                238                 :                :      * WALRCV_STOPPED.
                                239                 :                :      */
 1905 tmunro@postgresql.or      240                 :           1082 :     ConditionVariablePrepareToSleep(&walrcv->walRcvStoppedCV);
 4916 heikki.linnakangas@i      241         [ +  + ]:           1118 :     while (WalRcvRunning())
 1905 tmunro@postgresql.or      242                 :             36 :         ConditionVariableSleep(&walrcv->walRcvStoppedCV,
                                243                 :                :                                WAIT_EVENT_WAL_RECEIVER_EXIT);
                                244                 :           1082 :     ConditionVariableCancelSleep();
 5979 heikki.linnakangas@i      245                 :           1082 : }
                                246                 :                : 
                                247                 :                : /*
                                248                 :                :  * Request postmaster to start walreceiver.
                                249                 :                :  *
                                250                 :                :  * "recptr" indicates the position where streaming should begin.  "conninfo"
                                251                 :                :  * is a libpq connection string to use.  "slotname" is, optionally, the name
                                252                 :                :  * of a replication slot to acquire.  "create_temp_slot" indicates to create
                                253                 :                :  * a temporary slot when no "slotname" is given.
                                254                 :                :  *
                                255                 :                :  * WAL receivers do not directly load GUC parameters used for the connection
                                256                 :                :  * to the primary, and rely on the values passed down by the caller of this
                                257                 :                :  * routine instead.  Hence, the addition of any new parameters should happen
                                258                 :                :  * through this code path.
                                259                 :                :  */
                                260                 :                : void
 4502 rhaas@postgresql.org      261                 :            201 : RequestXLogStreaming(TimeLineID tli, XLogRecPtr recptr, const char *conninfo,
                                262                 :                :                      const char *slotname, bool create_temp_slot)
                                263                 :                : {
 3889                           264                 :            201 :     WalRcvData *walrcv = WalRcv;
 4916 heikki.linnakangas@i      265                 :            201 :     bool        launch = false;
 5937 bruce@momjian.us          266                 :            201 :     pg_time_t   now = (pg_time_t) time(NULL);
                                267                 :                :     ProcNumber  walrcv_proc;
                                268                 :                : 
                                269                 :                :     /*
                                270                 :                :      * We always start at the beginning of the segment. That prevents a broken
                                271                 :                :      * segment (i.e., with no records in the first half of a segment) from
                                272                 :                :      * being created by XLOG streaming, which might cause trouble later on if
                                273                 :                :      * the segment is e.g archived.
                                274                 :                :      */
 3175 andres@anarazel.de        275         [ +  - ]:            201 :     if (XLogSegmentOffset(recptr, wal_segment_size) != 0)
                                276                 :            201 :         recptr -= XLogSegmentOffset(recptr, wal_segment_size);
                                277                 :                : 
 5810 tgl@sss.pgh.pa.us         278         [ -  + ]:            201 :     SpinLockAcquire(&walrcv->mutex);
                                279                 :                : 
                                280                 :                :     /* It better be stopped if we try to restart it */
 4916 heikki.linnakangas@i      281   [ +  +  -  + ]:            201 :     Assert(walrcv->walRcvState == WALRCV_STOPPED ||
                                282                 :                :            walrcv->walRcvState == WALRCV_WAITING);
                                283                 :                : 
                                284                 :                :     /*
                                285                 :                :      * Use configured replication slot if present, and ignore the value of
                                286                 :                :      * create_temp_slot as the slot name should be persistent.  Otherwise, use
                                287                 :                :      * create_temp_slot to determine whether this WAL receiver should create a
                                288                 :                :      * temporary slot by itself and use it, or not.
                                289                 :                :      */
 2255 alvherre@alvh.no-ip.      290   [ +  -  +  + ]:            201 :     if (slotname != NULL && slotname[0] != '\0')
                                291                 :                :     {
  472 peter@eisentraut.org      292                 :             61 :         strlcpy(walrcv->slotname, slotname, NAMEDATALEN);
 2255 alvherre@alvh.no-ip.      293                 :             61 :         walrcv->is_temp_slot = false;
                                294                 :                :     }
                                295                 :                :     else
                                296                 :                :     {
 4502 rhaas@postgresql.org      297                 :            140 :         walrcv->slotname[0] = '\0';
 2255 alvherre@alvh.no-ip.      298                 :            140 :         walrcv->is_temp_slot = create_temp_slot;
                                299                 :                :     }
                                300                 :                : 
                                301                 :                :     /*
                                302                 :                :      * While waiting for instructions, the WAL receiver uses the same
                                303                 :                :      * connection, so do not clobber the user-visible conninfo already saved.
                                304                 :                :      */
 4916 heikki.linnakangas@i      305         [ +  + ]:            201 :     if (walrcv->walRcvState == WALRCV_STOPPED)
                                306                 :                :     {
                                307                 :            193 :         launch = true;
                                308                 :            193 :         walrcv->walRcvState = WALRCV_STARTING;
                                309                 :                : 
    7 michael@paquier.xyz       310         [ +  - ]:            193 :         if (conninfo != NULL)
                                311                 :            193 :             strlcpy(walrcv->conninfo, conninfo, MAXCONNINFO);
                                312                 :                :         else
    7 michael@paquier.xyz       313                 :UBC           0 :             walrcv->conninfo[0] = '\0';
                                314                 :                :     }
                                315                 :                :     else
 4916 heikki.linnakangas@i      316                 :CBC           8 :         walrcv->walRcvState = WALRCV_RESTARTING;
 5967                           317                 :            201 :     walrcv->startTime = now;
                                318                 :                : 
                                319                 :                :     /*
                                320                 :                :      * If this is the first startup of walreceiver (on this timeline),
                                321                 :                :      * initialize flushedUpto and latestChunkStart to the starting point.
                                322                 :                :      */
  205 alvherre@kurilemu.de      323   [ +  +  -  + ]:GNC         201 :     if (!XLogRecPtrIsValid(walrcv->receiveStart) || walrcv->receivedTLI != tli)
                                324                 :                :     {
 2243 tmunro@postgresql.or      325                 :CBC         115 :         walrcv->flushedUpto = recptr;
 4770 heikki.linnakangas@i      326                 :            115 :         walrcv->receivedTLI = tli;
 5569                           327                 :            115 :         walrcv->latestChunkStart = recptr;
                                328                 :                : 
                                329                 :                :         /*
                                330                 :                :          * Pairs with pg_atomic_read_membarrier_u64() in
                                331                 :                :          * GetWalRcvWriteRecPtr().
                                332                 :                :          */
   27 akorotkov@postgresql      333                 :GNC         115 :         pg_atomic_write_membarrier_u64(&walrcv->writtenUpto, recptr);
                                334                 :                :     }
 5569 heikki.linnakangas@i      335                 :CBC         201 :     walrcv->receiveStart = recptr;
 4916                           336                 :            201 :     walrcv->receiveStartTLI = tli;
                                337                 :                : 
  575                           338                 :            201 :     walrcv_proc = walrcv->procno;
                                339                 :                : 
 5979                           340                 :            201 :     SpinLockRelease(&walrcv->mutex);
                                341                 :                : 
 4916                           342         [ +  + ]:            201 :     if (launch)
                                343                 :            193 :         SendPostmasterSignal(PMSIGNAL_START_WALRECEIVER);
  575                           344         [ +  - ]:              8 :     else if (walrcv_proc != INVALID_PROC_NUMBER)
                                345                 :              8 :         SetLatch(&GetPGProcByNumber(walrcv_proc)->procLatch);
 5979                           346                 :            201 : }
                                347                 :                : 
                                348                 :                : /*
                                349                 :                :  * Returns the last+1 byte position that walreceiver has flushed.
                                350                 :                :  *
                                351                 :                :  * Optionally, returns the previous chunk start, that is the first byte
                                352                 :                :  * written in the most recent walreceiver flush cycle.  Callers not
                                353                 :                :  * interested in that value may pass NULL for latestChunkStart. Same for
                                354                 :                :  * receiveTLI.
                                355                 :                :  */
                                356                 :                : XLogRecPtr
 2243 tmunro@postgresql.or      357                 :          37481 : GetWalRcvFlushRecPtr(XLogRecPtr *latestChunkStart, TimeLineID *receiveTLI)
                                358                 :                : {
 3889 rhaas@postgresql.org      359                 :          37481 :     WalRcvData *walrcv = WalRcv;
                                360                 :                :     XLogRecPtr  recptr;
                                361                 :                : 
 5979 heikki.linnakangas@i      362         [ -  + ]:          37481 :     SpinLockAcquire(&walrcv->mutex);
 2243 tmunro@postgresql.or      363                 :          37481 :     recptr = walrcv->flushedUpto;
 5810 tgl@sss.pgh.pa.us         364         [ +  + ]:          37481 :     if (latestChunkStart)
                                365                 :          36129 :         *latestChunkStart = walrcv->latestChunkStart;
 4916 heikki.linnakangas@i      366         [ +  + ]:          37481 :     if (receiveTLI)
                                367                 :          37223 :         *receiveTLI = walrcv->receivedTLI;
 5979                           368                 :          37481 :     SpinLockRelease(&walrcv->mutex);
                                369                 :                : 
                                370                 :          37481 :     return recptr;
                                371                 :                : }
                                372                 :                : 
                                373                 :                : /*
                                374                 :                :  * Returns the last+1 byte position that walreceiver has written.
                                375                 :                :  *
                                376                 :                :  * Use pg_atomic_read_membarrier_u64() to ensure that callers see up-to-date
                                377                 :                :  * shared memory state, matching the barrier semantics provided by the
                                378                 :                :  * spinlock in GetWalRcvFlushRecPtr() and other LSN-position functions.
                                379                 :                :  */
                                380                 :                : XLogRecPtr
 2243 tmunro@postgresql.or      381                 :GBC          47 : GetWalRcvWriteRecPtr(void)
                                382                 :                : {
                                383                 :             47 :     WalRcvData *walrcv = WalRcv;
                                384                 :                : 
   27 akorotkov@postgresql      385                 :GNC          47 :     return pg_atomic_read_membarrier_u64(&walrcv->writtenUpto);
                                386                 :                : }
                                387                 :                : 
                                388                 :                : /*
                                389                 :                :  * Returns the replication apply delay in ms or -1
                                390                 :                :  * if the apply delay info is not available
                                391                 :                :  */
                                392                 :                : int
 5264 simon@2ndQuadrant.co      393                 :CBC         413 : GetReplicationApplyDelay(void)
                                394                 :                : {
 3889 rhaas@postgresql.org      395                 :            413 :     WalRcvData *walrcv = WalRcv;
                                396                 :                :     XLogRecPtr  receivePtr;
                                397                 :                :     XLogRecPtr  replayPtr;
                                398                 :                :     TimestampTz chunkReplayStartTime;
                                399                 :                : 
 5264 simon@2ndQuadrant.co      400         [ -  + ]:            413 :     SpinLockAcquire(&walrcv->mutex);
 2243 tmunro@postgresql.or      401                 :            413 :     receivePtr = walrcv->flushedUpto;
 5264 simon@2ndQuadrant.co      402                 :            413 :     SpinLockRelease(&walrcv->mutex);
                                403                 :                : 
 4909 heikki.linnakangas@i      404                 :            413 :     replayPtr = GetXLogReplayRecPtr(NULL);
                                405                 :                : 
 4901 alvherre@alvh.no-ip.      406         [ +  + ]:            413 :     if (receivePtr == replayPtr)
 5264 simon@2ndQuadrant.co      407                 :            144 :         return 0;
                                408                 :                : 
 3364 peter_e@gmx.net           409                 :            269 :     chunkReplayStartTime = GetCurrentChunkReplayStartTime();
                                410                 :                : 
                                411         [ +  + ]:            269 :     if (chunkReplayStartTime == 0)
 4095 ishii@postgresql.org      412                 :              5 :         return -1;
                                413                 :                : 
 2027 tgl@sss.pgh.pa.us         414                 :            264 :     return TimestampDifferenceMilliseconds(chunkReplayStartTime,
                                415                 :                :                                            GetCurrentTimestamp());
                                416                 :                : }
                                417                 :                : 
                                418                 :                : /*
                                419                 :                :  * Returns the network latency in ms, note that this includes any
                                420                 :                :  * difference in clock settings between the servers, as well as timezone.
                                421                 :                :  */
                                422                 :                : int
 5264 simon@2ndQuadrant.co      423                 :            413 : GetReplicationTransferLatency(void)
                                424                 :                : {
 3889 rhaas@postgresql.org      425                 :            413 :     WalRcvData *walrcv = WalRcv;
                                426                 :                :     TimestampTz lastMsgSendTime;
                                427                 :                :     TimestampTz lastMsgReceiptTime;
                                428                 :                : 
 5264 simon@2ndQuadrant.co      429         [ -  + ]:            413 :     SpinLockAcquire(&walrcv->mutex);
                                430                 :            413 :     lastMsgSendTime = walrcv->lastMsgSendTime;
                                431                 :            413 :     lastMsgReceiptTime = walrcv->lastMsgReceiptTime;
                                432                 :            413 :     SpinLockRelease(&walrcv->mutex);
                                433                 :                : 
 2027 tgl@sss.pgh.pa.us         434                 :            413 :     return TimestampDifferenceMilliseconds(lastMsgSendTime,
                                435                 :                :                                            lastMsgReceiptTime);
                                436                 :                : }
        

Generated by: LCOV version 2.5.0-beta