LCOV - differential code coverage report
Current view: top level - src/bin/pg_rewind - datapagemap.c (source / functions) Coverage Total Hit UBC CBC
Current: Differential Code Coverage 16@8cea358b128 vs 17@8cea358b128 Lines: 100.0 % 36 36 36
Current Date: 2024-04-14 14:21:10 Functions: 100.0 % 4 4 4
Baseline: 16@8cea358b128 Branches: 90.0 % 10 9 1 9
Baseline Date: 2024-04-14 14:21:09 Line coverage date bins:
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed (240..) days: 100.0 % 36 36 36
Function coverage date bins:
(240..) days: 100.0 % 4 4 4
Branch coverage date bins:
(240..) days: 90.0 % 10 9 1 9

 Age         Owner                    Branch data    TLA  Line data    Source code
                                  1                 :                : /*-------------------------------------------------------------------------
                                  2                 :                :  *
                                  3                 :                :  * datapagemap.c
                                  4                 :                :  *    A data structure for keeping track of data pages that have changed.
                                  5                 :                :  *
                                  6                 :                :  * This is a fairly simple bitmap.
                                  7                 :                :  *
                                  8                 :                :  * Copyright (c) 2013-2024, PostgreSQL Global Development Group
                                  9                 :                :  *
                                 10                 :                :  *-------------------------------------------------------------------------
                                 11                 :                :  */
                                 12                 :                : 
                                 13                 :                : #include "postgres_fe.h"
                                 14                 :                : 
                                 15                 :                : #include "common/logging.h"
                                 16                 :                : #include "datapagemap.h"
                                 17                 :                : 
                                 18                 :                : struct datapagemap_iterator
                                 19                 :                : {
                                 20                 :                :     datapagemap_t *map;
                                 21                 :                :     BlockNumber nextblkno;
                                 22                 :                : };
                                 23                 :                : 
                                 24                 :                : /*****
                                 25                 :                :  * Public functions
                                 26                 :                :  */
                                 27                 :                : 
                                 28                 :                : /*
                                 29                 :                :  * Add a block to the bitmap.
                                 30                 :                :  */
                                 31                 :                : void
 3310 heikki.linnakangas@i       32                 :CBC        2835 : datapagemap_add(datapagemap_t *map, BlockNumber blkno)
                                 33                 :                : {
                                 34                 :                :     int         offset;
                                 35                 :                :     int         bitno;
                                 36                 :                : 
                                 37                 :           2835 :     offset = blkno / 8;
                                 38                 :           2835 :     bitno = blkno % 8;
                                 39                 :                : 
                                 40                 :                :     /* enlarge or create bitmap if needed */
                                 41         [ +  + ]:           2835 :     if (map->bitmapsize <= offset)
                                 42                 :                :     {
                                 43                 :            408 :         int         oldsize = map->bitmapsize;
                                 44                 :                :         int         newsize;
                                 45                 :                : 
                                 46                 :                :         /*
                                 47                 :                :          * The minimum to hold the new bit is offset + 1. But add some
                                 48                 :                :          * headroom, so that we don't need to repeatedly enlarge the bitmap in
                                 49                 :                :          * the common case that blocks are modified in order, from beginning
                                 50                 :                :          * of a relation to the end.
                                 51                 :                :          */
                                 52                 :            408 :         newsize = offset + 1;
                                 53                 :            408 :         newsize += 10;
                                 54                 :                : 
                                 55                 :            408 :         map->bitmap = pg_realloc(map->bitmap, newsize);
                                 56                 :                : 
                                 57                 :                :         /* zero out the newly allocated region */
                                 58                 :            408 :         memset(&map->bitmap[oldsize], 0, newsize - oldsize);
                                 59                 :                : 
                                 60                 :            408 :         map->bitmapsize = newsize;
                                 61                 :                :     }
                                 62                 :                : 
                                 63                 :                :     /* Set the bit */
                                 64                 :           2835 :     map->bitmap[offset] |= (1 << bitno);
                                 65                 :           2835 : }
                                 66                 :                : 
                                 67                 :                : /*
                                 68                 :                :  * Start iterating through all entries in the page map.
                                 69                 :                :  *
                                 70                 :                :  * After datapagemap_iterate, call datapagemap_next to return the entries,
                                 71                 :                :  * until it returns false. After you're done, use pg_free() to destroy the
                                 72                 :                :  * iterator.
                                 73                 :                :  */
                                 74                 :                : datapagemap_iterator_t *
                                 75                 :            810 : datapagemap_iterate(datapagemap_t *map)
                                 76                 :                : {
                                 77                 :                :     datapagemap_iterator_t *iter;
                                 78                 :                : 
                                 79                 :            810 :     iter = pg_malloc(sizeof(datapagemap_iterator_t));
                                 80                 :            810 :     iter->map = map;
                                 81                 :            810 :     iter->nextblkno = 0;
                                 82                 :                : 
                                 83                 :            810 :     return iter;
                                 84                 :                : }
                                 85                 :                : 
                                 86                 :                : bool
                                 87                 :           4120 : datapagemap_next(datapagemap_iterator_t *iter, BlockNumber *blkno)
                                 88                 :                : {
                                 89                 :           4120 :     datapagemap_t *map = iter->map;
                                 90                 :                : 
                                 91                 :                :     for (;;)
                                 92                 :          69674 :     {
                                 93                 :          73794 :         BlockNumber blk = iter->nextblkno;
                                 94                 :          73794 :         int         nextoff = blk / 8;
                                 95                 :          73794 :         int         bitno = blk % 8;
                                 96                 :                : 
                                 97         [ +  + ]:          73794 :         if (nextoff >= map->bitmapsize)
                                 98                 :            810 :             break;
                                 99                 :                : 
                                100                 :          72984 :         iter->nextblkno++;
                                101                 :                : 
                                102         [ +  + ]:          72984 :         if (map->bitmap[nextoff] & (1 << bitno))
                                103                 :                :         {
                                104                 :           3310 :             *blkno = blk;
                                105                 :           3310 :             return true;
                                106                 :                :         }
                                107                 :                :     }
                                108                 :                : 
                                109                 :                :     /* no more set bits in this bitmap. */
                                110                 :            810 :     return false;
                                111                 :                : }
                                112                 :                : 
                                113                 :                : /*
                                114                 :                :  * A debugging aid. Prints out the contents of the page map.
                                115                 :                :  */
                                116                 :                : void
                                117                 :            406 : datapagemap_print(datapagemap_t *map)
                                118                 :                : {
                                119                 :                :     datapagemap_iterator_t *iter;
                                120                 :                :     BlockNumber blocknum;
                                121                 :                : 
                                122                 :            406 :     iter = datapagemap_iterate(map);
                                123         [ +  + ]:           2468 :     while (datapagemap_next(iter, &blocknum))
 1840 peter@eisentraut.org      124         [ +  - ]:           1656 :         pg_log_debug("block %u", blocknum);
                                125                 :                : 
 3230 fujii@postgresql.org      126                 :            406 :     pg_free(iter);
 3310 heikki.linnakangas@i      127                 :            406 : }
        

Generated by: LCOV version 2.1-beta2-3-g6141622