LCOV - code coverage report
Current view: top level - pageserver/src - walrecord.rs (source / functions) Coverage Total Hit
Test: 322b88762cba8ea666f63cda880cccab6936bf37.info Lines: 37.8 % 601 227
Test Date: 2024-02-29 11:57:12 Functions: 18.3 % 104 19

            Line data    Source code
       1              : //!
       2              : //! Functions for parsing WAL records.
       3              : //!
       4              : 
       5              : use anyhow::Result;
       6              : use bytes::{Buf, Bytes};
       7              : use postgres_ffi::dispatch_pgversion;
       8              : use postgres_ffi::pg_constants;
       9              : use postgres_ffi::BLCKSZ;
      10              : use postgres_ffi::{BlockNumber, TimestampTz};
      11              : use postgres_ffi::{MultiXactId, MultiXactOffset, MultiXactStatus, Oid, TransactionId};
      12              : use postgres_ffi::{XLogRecord, XLOG_SIZE_OF_XLOG_RECORD};
      13              : use serde::{Deserialize, Serialize};
      14              : use tracing::*;
      15              : use utils::bin_ser::DeserializeError;
      16              : 
      17              : /// Each update to a page is represented by a NeonWalRecord. It can be a wrapper
      18              : /// around a PostgreSQL WAL record, or a custom neon-specific "record".
      19       145648 : #[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
      20              : pub enum NeonWalRecord {
      21              :     /// Native PostgreSQL WAL record
      22              :     Postgres { will_init: bool, rec: Bytes },
      23              : 
      24              :     /// Clear bits in heap visibility map. ('flags' is bitmap of bits to clear)
      25              :     ClearVisibilityMapFlags {
      26              :         new_heap_blkno: Option<u32>,
      27              :         old_heap_blkno: Option<u32>,
      28              :         flags: u8,
      29              :     },
      30              :     /// Mark transaction IDs as committed on a CLOG page
      31              :     ClogSetCommitted {
      32              :         xids: Vec<TransactionId>,
      33              :         timestamp: TimestampTz,
      34              :     },
      35              :     /// Mark transaction IDs as aborted on a CLOG page
      36              :     ClogSetAborted { xids: Vec<TransactionId> },
      37              :     /// Extend multixact offsets SLRU
      38              :     MultixactOffsetCreate {
      39              :         mid: MultiXactId,
      40              :         moff: MultiXactOffset,
      41              :     },
      42              :     /// Extend multixact members SLRU.
      43              :     MultixactMembersCreate {
      44              :         moff: MultiXactOffset,
      45              :         members: Vec<MultiXactMember>,
      46              :     },
      47              :     /// Update the map of AUX files, either writing or dropping an entry
      48              :     AuxFile {
      49              :         file_path: String,
      50              :         content: Option<Bytes>,
      51              :     },
      52              : }
      53              : 
      54              : impl NeonWalRecord {
      55              :     /// Does replaying this WAL record initialize the page from scratch, or does
      56              :     /// it need to be applied over the previous image of the page?
      57           10 :     pub fn will_init(&self) -> bool {
      58           10 :         match self {
      59            0 :             NeonWalRecord::Postgres { will_init, rec: _ } => *will_init,
      60              : 
      61              :             // None of the special neon record types currently initialize the page
      62           10 :             _ => false,
      63              :         }
      64           10 :     }
      65              : }
      66              : 
      67              : /// DecodedBkpBlock represents per-page data contained in a WAL record.
      68       145642 : #[derive(Default)]
      69              : pub struct DecodedBkpBlock {
      70              :     /* Is this block ref in use? */
      71              :     //in_use: bool,
      72              : 
      73              :     /* Identify the block this refers to */
      74              :     pub rnode_spcnode: u32,
      75              :     pub rnode_dbnode: u32,
      76              :     pub rnode_relnode: u32,
      77              :     // Note that we have a few special forknum values for non-rel files.
      78              :     pub forknum: u8,
      79              :     pub blkno: u32,
      80              : 
      81              :     /* copy of the fork_flags field from the XLogRecordBlockHeader */
      82              :     pub flags: u8,
      83              : 
      84              :     /* Information on full-page image, if any */
      85              :     pub has_image: bool,
      86              :     /* has image, even for consistency checking */
      87              :     pub apply_image: bool,
      88              :     /* has image that should be restored */
      89              :     pub will_init: bool,
      90              :     /* record doesn't need previous page version to apply */
      91              :     //char         *bkp_image;
      92              :     pub hole_offset: u16,
      93              :     pub hole_length: u16,
      94              :     pub bimg_offset: u32,
      95              :     pub bimg_len: u16,
      96              :     pub bimg_info: u8,
      97              : 
      98              :     /* Buffer holding the rmgr-specific data associated with this block */
      99              :     has_data: bool,
     100              :     data_len: u16,
     101              : }
     102              : 
     103              : impl DecodedBkpBlock {
     104       145642 :     pub fn new() -> DecodedBkpBlock {
     105       145642 :         Default::default()
     106       145642 :     }
     107              : }
     108              : 
     109            4 : #[derive(Default)]
     110              : pub struct DecodedWALRecord {
     111              :     pub xl_xid: TransactionId,
     112              :     pub xl_info: u8,
     113              :     pub xl_rmid: u8,
     114              :     pub record: Bytes, // raw XLogRecord
     115              : 
     116              :     pub blocks: Vec<DecodedBkpBlock>,
     117              :     pub main_data_offset: usize,
     118              : }
     119              : 
     120              : #[repr(C)]
     121            0 : #[derive(Debug, Clone, Copy)]
     122              : pub struct RelFileNode {
     123              :     pub spcnode: Oid, /* tablespace */
     124              :     pub dbnode: Oid,  /* database */
     125              :     pub relnode: Oid, /* relation */
     126              : }
     127              : 
     128              : #[repr(C)]
     129            0 : #[derive(Debug)]
     130              : pub struct XlRelmapUpdate {
     131              :     pub dbid: Oid,   /* database ID, or 0 for shared map */
     132              :     pub tsid: Oid,   /* database's tablespace, or pg_global */
     133              :     pub nbytes: i32, /* size of relmap data */
     134              : }
     135              : 
     136              : impl XlRelmapUpdate {
     137            0 :     pub fn decode(buf: &mut Bytes) -> XlRelmapUpdate {
     138            0 :         XlRelmapUpdate {
     139            0 :             dbid: buf.get_u32_le(),
     140            0 :             tsid: buf.get_u32_le(),
     141            0 :             nbytes: buf.get_i32_le(),
     142            0 :         }
     143            0 :     }
     144              : }
     145              : 
     146              : pub mod v14 {
     147              :     use bytes::{Buf, Bytes};
     148              :     use postgres_ffi::{OffsetNumber, TransactionId};
     149              : 
     150              :     #[repr(C)]
     151            0 :     #[derive(Debug)]
     152              :     pub struct XlHeapInsert {
     153              :         pub offnum: OffsetNumber,
     154              :         pub flags: u8,
     155              :     }
     156              : 
     157              :     impl XlHeapInsert {
     158       145276 :         pub fn decode(buf: &mut Bytes) -> XlHeapInsert {
     159       145276 :             XlHeapInsert {
     160       145276 :                 offnum: buf.get_u16_le(),
     161       145276 :                 flags: buf.get_u8(),
     162       145276 :             }
     163       145276 :         }
     164              :     }
     165              : 
     166              :     #[repr(C)]
     167            0 :     #[derive(Debug)]
     168              :     pub struct XlHeapMultiInsert {
     169              :         pub flags: u8,
     170              :         pub _padding: u8,
     171              :         pub ntuples: u16,
     172              :     }
     173              : 
     174              :     impl XlHeapMultiInsert {
     175           42 :         pub fn decode(buf: &mut Bytes) -> XlHeapMultiInsert {
     176           42 :             XlHeapMultiInsert {
     177           42 :                 flags: buf.get_u8(),
     178           42 :                 _padding: buf.get_u8(),
     179           42 :                 ntuples: buf.get_u16_le(),
     180           42 :             }
     181           42 :         }
     182              :     }
     183              : 
     184              :     #[repr(C)]
     185            0 :     #[derive(Debug)]
     186              :     pub struct XlHeapDelete {
     187              :         pub xmax: TransactionId,
     188              :         pub offnum: OffsetNumber,
     189              :         pub _padding: u16,
     190              :         pub t_cid: u32,
     191              :         pub infobits_set: u8,
     192              :         pub flags: u8,
     193              :     }
     194              : 
     195              :     impl XlHeapDelete {
     196            0 :         pub fn decode(buf: &mut Bytes) -> XlHeapDelete {
     197            0 :             XlHeapDelete {
     198            0 :                 xmax: buf.get_u32_le(),
     199            0 :                 offnum: buf.get_u16_le(),
     200            0 :                 _padding: buf.get_u16_le(),
     201            0 :                 t_cid: buf.get_u32_le(),
     202            0 :                 infobits_set: buf.get_u8(),
     203            0 :                 flags: buf.get_u8(),
     204            0 :             }
     205            0 :         }
     206              :     }
     207              : 
     208              :     #[repr(C)]
     209            0 :     #[derive(Debug)]
     210              :     pub struct XlHeapUpdate {
     211              :         pub old_xmax: TransactionId,
     212              :         pub old_offnum: OffsetNumber,
     213              :         pub old_infobits_set: u8,
     214              :         pub flags: u8,
     215              :         pub t_cid: u32,
     216              :         pub new_xmax: TransactionId,
     217              :         pub new_offnum: OffsetNumber,
     218              :     }
     219              : 
     220              :     impl XlHeapUpdate {
     221            8 :         pub fn decode(buf: &mut Bytes) -> XlHeapUpdate {
     222            8 :             XlHeapUpdate {
     223            8 :                 old_xmax: buf.get_u32_le(),
     224            8 :                 old_offnum: buf.get_u16_le(),
     225            8 :                 old_infobits_set: buf.get_u8(),
     226            8 :                 flags: buf.get_u8(),
     227            8 :                 t_cid: buf.get_u32_le(),
     228            8 :                 new_xmax: buf.get_u32_le(),
     229            8 :                 new_offnum: buf.get_u16_le(),
     230            8 :             }
     231            8 :         }
     232              :     }
     233              : 
     234              :     #[repr(C)]
     235            0 :     #[derive(Debug)]
     236              :     pub struct XlHeapLock {
     237              :         pub locking_xid: TransactionId,
     238              :         pub offnum: OffsetNumber,
     239              :         pub _padding: u16,
     240              :         pub t_cid: u32,
     241              :         pub infobits_set: u8,
     242              :         pub flags: u8,
     243              :     }
     244              : 
     245              :     impl XlHeapLock {
     246            0 :         pub fn decode(buf: &mut Bytes) -> XlHeapLock {
     247            0 :             XlHeapLock {
     248            0 :                 locking_xid: buf.get_u32_le(),
     249            0 :                 offnum: buf.get_u16_le(),
     250            0 :                 _padding: buf.get_u16_le(),
     251            0 :                 t_cid: buf.get_u32_le(),
     252            0 :                 infobits_set: buf.get_u8(),
     253            0 :                 flags: buf.get_u8(),
     254            0 :             }
     255            0 :         }
     256              :     }
     257              : 
     258              :     #[repr(C)]
     259            0 :     #[derive(Debug)]
     260              :     pub struct XlHeapLockUpdated {
     261              :         pub xmax: TransactionId,
     262              :         pub offnum: OffsetNumber,
     263              :         pub infobits_set: u8,
     264              :         pub flags: u8,
     265              :     }
     266              : 
     267              :     impl XlHeapLockUpdated {
     268            0 :         pub fn decode(buf: &mut Bytes) -> XlHeapLockUpdated {
     269            0 :             XlHeapLockUpdated {
     270            0 :                 xmax: buf.get_u32_le(),
     271            0 :                 offnum: buf.get_u16_le(),
     272            0 :                 infobits_set: buf.get_u8(),
     273            0 :                 flags: buf.get_u8(),
     274            0 :             }
     275            0 :         }
     276              :     }
     277              : }
     278              : 
     279              : pub mod v15 {
     280              :     pub use super::v14::{
     281              :         XlHeapDelete, XlHeapInsert, XlHeapLock, XlHeapLockUpdated, XlHeapMultiInsert, XlHeapUpdate,
     282              :     };
     283              : }
     284              : 
     285              : pub mod v16 {
     286              :     pub use super::v14::{XlHeapInsert, XlHeapLockUpdated, XlHeapMultiInsert};
     287              :     use bytes::{Buf, Bytes};
     288              :     use postgres_ffi::{OffsetNumber, TransactionId};
     289              : 
     290              :     pub struct XlHeapDelete {
     291              :         pub xmax: TransactionId,
     292              :         pub offnum: OffsetNumber,
     293              :         pub infobits_set: u8,
     294              :         pub flags: u8,
     295              :     }
     296              : 
     297              :     impl XlHeapDelete {
     298            0 :         pub fn decode(buf: &mut Bytes) -> XlHeapDelete {
     299            0 :             XlHeapDelete {
     300            0 :                 xmax: buf.get_u32_le(),
     301            0 :                 offnum: buf.get_u16_le(),
     302            0 :                 infobits_set: buf.get_u8(),
     303            0 :                 flags: buf.get_u8(),
     304            0 :             }
     305            0 :         }
     306              :     }
     307              : 
     308              :     #[repr(C)]
     309            0 :     #[derive(Debug)]
     310              :     pub struct XlHeapUpdate {
     311              :         pub old_xmax: TransactionId,
     312              :         pub old_offnum: OffsetNumber,
     313              :         pub old_infobits_set: u8,
     314              :         pub flags: u8,
     315              :         pub new_xmax: TransactionId,
     316              :         pub new_offnum: OffsetNumber,
     317              :     }
     318              : 
     319              :     impl XlHeapUpdate {
     320            0 :         pub fn decode(buf: &mut Bytes) -> XlHeapUpdate {
     321            0 :             XlHeapUpdate {
     322            0 :                 old_xmax: buf.get_u32_le(),
     323            0 :                 old_offnum: buf.get_u16_le(),
     324            0 :                 old_infobits_set: buf.get_u8(),
     325            0 :                 flags: buf.get_u8(),
     326            0 :                 new_xmax: buf.get_u32_le(),
     327            0 :                 new_offnum: buf.get_u16_le(),
     328            0 :             }
     329            0 :         }
     330              :     }
     331              : 
     332              :     #[repr(C)]
     333            0 :     #[derive(Debug)]
     334              :     pub struct XlHeapLock {
     335              :         pub locking_xid: TransactionId,
     336              :         pub offnum: OffsetNumber,
     337              :         pub infobits_set: u8,
     338              :         pub flags: u8,
     339              :     }
     340              : 
     341              :     impl XlHeapLock {
     342            0 :         pub fn decode(buf: &mut Bytes) -> XlHeapLock {
     343            0 :             XlHeapLock {
     344            0 :                 locking_xid: buf.get_u32_le(),
     345            0 :                 offnum: buf.get_u16_le(),
     346            0 :                 infobits_set: buf.get_u8(),
     347            0 :                 flags: buf.get_u8(),
     348            0 :             }
     349            0 :         }
     350              :     }
     351              : 
     352              :     /* Since PG16, we have the Neon RMGR (RM_NEON_ID) to manage Neon-flavored WAL. */
     353              :     pub mod rm_neon {
     354              :         use bytes::{Buf, Bytes};
     355              :         use postgres_ffi::{OffsetNumber, TransactionId};
     356              : 
     357              :         #[repr(C)]
     358            0 :         #[derive(Debug)]
     359              :         pub struct XlNeonHeapInsert {
     360              :             pub offnum: OffsetNumber,
     361              :             pub flags: u8,
     362              :         }
     363              : 
     364              :         impl XlNeonHeapInsert {
     365            0 :             pub fn decode(buf: &mut Bytes) -> XlNeonHeapInsert {
     366            0 :                 XlNeonHeapInsert {
     367            0 :                     offnum: buf.get_u16_le(),
     368            0 :                     flags: buf.get_u8(),
     369            0 :                 }
     370            0 :             }
     371              :         }
     372              : 
     373              :         #[repr(C)]
     374            0 :         #[derive(Debug)]
     375              :         pub struct XlNeonHeapMultiInsert {
     376              :             pub flags: u8,
     377              :             pub _padding: u8,
     378              :             pub ntuples: u16,
     379              :             pub t_cid: u32,
     380              :         }
     381              : 
     382              :         impl XlNeonHeapMultiInsert {
     383            0 :             pub fn decode(buf: &mut Bytes) -> XlNeonHeapMultiInsert {
     384            0 :                 XlNeonHeapMultiInsert {
     385            0 :                     flags: buf.get_u8(),
     386            0 :                     _padding: buf.get_u8(),
     387            0 :                     ntuples: buf.get_u16_le(),
     388            0 :                     t_cid: buf.get_u32_le(),
     389            0 :                 }
     390            0 :             }
     391              :         }
     392              : 
     393              :         #[repr(C)]
     394            0 :         #[derive(Debug)]
     395              :         pub struct XlNeonHeapDelete {
     396              :             pub xmax: TransactionId,
     397              :             pub offnum: OffsetNumber,
     398              :             pub infobits_set: u8,
     399              :             pub flags: u8,
     400              :             pub t_cid: u32,
     401              :         }
     402              : 
     403              :         impl XlNeonHeapDelete {
     404            0 :             pub fn decode(buf: &mut Bytes) -> XlNeonHeapDelete {
     405            0 :                 XlNeonHeapDelete {
     406            0 :                     xmax: buf.get_u32_le(),
     407            0 :                     offnum: buf.get_u16_le(),
     408            0 :                     infobits_set: buf.get_u8(),
     409            0 :                     flags: buf.get_u8(),
     410            0 :                     t_cid: buf.get_u32_le(),
     411            0 :                 }
     412            0 :             }
     413              :         }
     414              : 
     415              :         #[repr(C)]
     416            0 :         #[derive(Debug)]
     417              :         pub struct XlNeonHeapUpdate {
     418              :             pub old_xmax: TransactionId,
     419              :             pub old_offnum: OffsetNumber,
     420              :             pub old_infobits_set: u8,
     421              :             pub flags: u8,
     422              :             pub t_cid: u32,
     423              :             pub new_xmax: TransactionId,
     424              :             pub new_offnum: OffsetNumber,
     425              :         }
     426              : 
     427              :         impl XlNeonHeapUpdate {
     428            0 :             pub fn decode(buf: &mut Bytes) -> XlNeonHeapUpdate {
     429            0 :                 XlNeonHeapUpdate {
     430            0 :                     old_xmax: buf.get_u32_le(),
     431            0 :                     old_offnum: buf.get_u16_le(),
     432            0 :                     old_infobits_set: buf.get_u8(),
     433            0 :                     flags: buf.get_u8(),
     434            0 :                     t_cid: buf.get_u32(),
     435            0 :                     new_xmax: buf.get_u32_le(),
     436            0 :                     new_offnum: buf.get_u16_le(),
     437            0 :                 }
     438            0 :             }
     439              :         }
     440              : 
     441              :         #[repr(C)]
     442            0 :         #[derive(Debug)]
     443              :         pub struct XlNeonHeapLock {
     444              :             pub locking_xid: TransactionId,
     445              :             pub t_cid: u32,
     446              :             pub offnum: OffsetNumber,
     447              :             pub infobits_set: u8,
     448              :             pub flags: u8,
     449              :         }
     450              : 
     451              :         impl XlNeonHeapLock {
     452            0 :             pub fn decode(buf: &mut Bytes) -> XlNeonHeapLock {
     453            0 :                 XlNeonHeapLock {
     454            0 :                     locking_xid: buf.get_u32_le(),
     455            0 :                     t_cid: buf.get_u32_le(),
     456            0 :                     offnum: buf.get_u16_le(),
     457            0 :                     infobits_set: buf.get_u8(),
     458            0 :                     flags: buf.get_u8(),
     459            0 :                 }
     460            0 :             }
     461              :         }
     462              :     }
     463              : }
     464              : 
     465              : #[repr(C)]
     466            0 : #[derive(Debug)]
     467              : pub struct XlSmgrCreate {
     468              :     pub rnode: RelFileNode,
     469              :     // FIXME: This is ForkNumber in storage_xlog.h. That's an enum. Does it have
     470              :     // well-defined size?
     471              :     pub forknum: u8,
     472              : }
     473              : 
     474              : impl XlSmgrCreate {
     475           16 :     pub fn decode(buf: &mut Bytes) -> XlSmgrCreate {
     476           16 :         XlSmgrCreate {
     477           16 :             rnode: RelFileNode {
     478           16 :                 spcnode: buf.get_u32_le(), /* tablespace */
     479           16 :                 dbnode: buf.get_u32_le(),  /* database */
     480           16 :                 relnode: buf.get_u32_le(), /* relation */
     481           16 :             },
     482           16 :             forknum: buf.get_u32_le() as u8,
     483           16 :         }
     484           16 :     }
     485              : }
     486              : 
     487              : #[repr(C)]
     488            0 : #[derive(Debug)]
     489              : pub struct XlSmgrTruncate {
     490              :     pub blkno: BlockNumber,
     491              :     pub rnode: RelFileNode,
     492              :     pub flags: u32,
     493              : }
     494              : 
     495              : impl XlSmgrTruncate {
     496            0 :     pub fn decode(buf: &mut Bytes) -> XlSmgrTruncate {
     497            0 :         XlSmgrTruncate {
     498            0 :             blkno: buf.get_u32_le(),
     499            0 :             rnode: RelFileNode {
     500            0 :                 spcnode: buf.get_u32_le(), /* tablespace */
     501            0 :                 dbnode: buf.get_u32_le(),  /* database */
     502            0 :                 relnode: buf.get_u32_le(), /* relation */
     503            0 :             },
     504            0 :             flags: buf.get_u32_le(),
     505            0 :         }
     506            0 :     }
     507              : }
     508              : 
     509              : #[repr(C)]
     510            0 : #[derive(Debug)]
     511              : pub struct XlCreateDatabase {
     512              :     pub db_id: Oid,
     513              :     pub tablespace_id: Oid,
     514              :     pub src_db_id: Oid,
     515              :     pub src_tablespace_id: Oid,
     516              : }
     517              : 
     518              : impl XlCreateDatabase {
     519            0 :     pub fn decode(buf: &mut Bytes) -> XlCreateDatabase {
     520            0 :         XlCreateDatabase {
     521            0 :             db_id: buf.get_u32_le(),
     522            0 :             tablespace_id: buf.get_u32_le(),
     523            0 :             src_db_id: buf.get_u32_le(),
     524            0 :             src_tablespace_id: buf.get_u32_le(),
     525            0 :         }
     526            0 :     }
     527              : }
     528              : 
     529              : #[repr(C)]
     530            0 : #[derive(Debug)]
     531              : pub struct XlDropDatabase {
     532              :     pub db_id: Oid,
     533              :     pub n_tablespaces: Oid, /* number of tablespace IDs */
     534              :     pub tablespace_ids: Vec<Oid>,
     535              : }
     536              : 
     537              : impl XlDropDatabase {
     538            0 :     pub fn decode(buf: &mut Bytes) -> XlDropDatabase {
     539            0 :         let mut rec = XlDropDatabase {
     540            0 :             db_id: buf.get_u32_le(),
     541            0 :             n_tablespaces: buf.get_u32_le(),
     542            0 :             tablespace_ids: Vec::<Oid>::new(),
     543            0 :         };
     544              : 
     545            0 :         for _i in 0..rec.n_tablespaces {
     546            0 :             let id = buf.get_u32_le();
     547            0 :             rec.tablespace_ids.push(id);
     548            0 :         }
     549              : 
     550            0 :         rec
     551            0 :     }
     552              : }
     553              : 
     554              : ///
     555              : /// Note: Parsing some fields is missing, because they're not needed.
     556              : ///
     557              : /// This is similar to the xl_xact_parsed_commit and
     558              : /// xl_xact_parsed_abort structs in PostgreSQL, but we use the same
     559              : /// struct for commits and aborts.
     560              : ///
     561            0 : #[derive(Debug)]
     562              : pub struct XlXactParsedRecord {
     563              :     pub xid: TransactionId,
     564              :     pub info: u8,
     565              :     pub xact_time: TimestampTz,
     566              :     pub xinfo: u32,
     567              : 
     568              :     pub db_id: Oid,
     569              :     /* MyDatabaseId */
     570              :     pub ts_id: Oid,
     571              :     /* MyDatabaseTableSpace */
     572              :     pub subxacts: Vec<TransactionId>,
     573              : 
     574              :     pub xnodes: Vec<RelFileNode>,
     575              : }
     576              : 
     577              : impl XlXactParsedRecord {
     578              :     /// Decode a XLOG_XACT_COMMIT/ABORT/COMMIT_PREPARED/ABORT_PREPARED
     579              :     /// record. This should agree with the ParseCommitRecord and ParseAbortRecord
     580              :     /// functions in PostgreSQL (in src/backend/access/rmgr/xactdesc.c)
     581            8 :     pub fn decode(buf: &mut Bytes, mut xid: TransactionId, xl_info: u8) -> XlXactParsedRecord {
     582            8 :         let info = xl_info & pg_constants::XLOG_XACT_OPMASK;
     583            8 :         // The record starts with time of commit/abort
     584            8 :         let xact_time = buf.get_i64_le();
     585            8 :         let xinfo = if xl_info & pg_constants::XLOG_XACT_HAS_INFO != 0 {
     586            8 :             buf.get_u32_le()
     587              :         } else {
     588            0 :             0
     589              :         };
     590              :         let db_id;
     591              :         let ts_id;
     592            8 :         if xinfo & pg_constants::XACT_XINFO_HAS_DBINFO != 0 {
     593            8 :             db_id = buf.get_u32_le();
     594            8 :             ts_id = buf.get_u32_le();
     595            8 :         } else {
     596            0 :             db_id = 0;
     597            0 :             ts_id = 0;
     598            0 :         }
     599            8 :         let mut subxacts = Vec::<TransactionId>::new();
     600            8 :         if xinfo & pg_constants::XACT_XINFO_HAS_SUBXACTS != 0 {
     601            0 :             let nsubxacts = buf.get_i32_le();
     602            0 :             for _i in 0..nsubxacts {
     603            0 :                 let subxact = buf.get_u32_le();
     604            0 :                 subxacts.push(subxact);
     605            0 :             }
     606            8 :         }
     607            8 :         let mut xnodes = Vec::<RelFileNode>::new();
     608            8 :         if xinfo & pg_constants::XACT_XINFO_HAS_RELFILENODES != 0 {
     609            0 :             let nrels = buf.get_i32_le();
     610            0 :             for _i in 0..nrels {
     611            0 :                 let spcnode = buf.get_u32_le();
     612            0 :                 let dbnode = buf.get_u32_le();
     613            0 :                 let relnode = buf.get_u32_le();
     614            0 :                 trace!(
     615            0 :                     "XLOG_XACT_COMMIT relfilenode {}/{}/{}",
     616            0 :                     spcnode,
     617            0 :                     dbnode,
     618            0 :                     relnode
     619            0 :                 );
     620            0 :                 xnodes.push(RelFileNode {
     621            0 :                     spcnode,
     622            0 :                     dbnode,
     623            0 :                     relnode,
     624            0 :                 });
     625              :             }
     626            8 :         }
     627              : 
     628            8 :         if xinfo & postgres_ffi::v15::bindings::XACT_XINFO_HAS_DROPPED_STATS != 0 {
     629            0 :             let nitems = buf.get_i32_le();
     630            0 :             debug!(
     631            0 :                 "XLOG_XACT_COMMIT-XACT_XINFO_HAS_DROPPED_STAT nitems {}",
     632            0 :                 nitems
     633            0 :             );
     634            0 :             let sizeof_xl_xact_stats_item = 12;
     635            0 :             buf.advance((nitems * sizeof_xl_xact_stats_item).try_into().unwrap());
     636            8 :         }
     637              : 
     638            8 :         if xinfo & pg_constants::XACT_XINFO_HAS_INVALS != 0 {
     639            8 :             let nmsgs = buf.get_i32_le();
     640            8 :             let sizeof_shared_invalidation_message = 16;
     641            8 :             buf.advance(
     642            8 :                 (nmsgs * sizeof_shared_invalidation_message)
     643            8 :                     .try_into()
     644            8 :                     .unwrap(),
     645            8 :             );
     646            8 :         }
     647              : 
     648            8 :         if xinfo & pg_constants::XACT_XINFO_HAS_TWOPHASE != 0 {
     649            0 :             xid = buf.get_u32_le();
     650            0 :             debug!("XLOG_XACT_COMMIT-XACT_XINFO_HAS_TWOPHASE xid {}", xid);
     651            8 :         }
     652              : 
     653            8 :         XlXactParsedRecord {
     654            8 :             xid,
     655            8 :             info,
     656            8 :             xact_time,
     657            8 :             xinfo,
     658            8 :             db_id,
     659            8 :             ts_id,
     660            8 :             subxacts,
     661            8 :             xnodes,
     662            8 :         }
     663            8 :     }
     664              : }
     665              : 
     666              : #[repr(C)]
     667            0 : #[derive(Debug)]
     668              : pub struct XlClogTruncate {
     669              :     pub pageno: u32,
     670              :     pub oldest_xid: TransactionId,
     671              :     pub oldest_xid_db: Oid,
     672              : }
     673              : 
     674              : impl XlClogTruncate {
     675            0 :     pub fn decode(buf: &mut Bytes) -> XlClogTruncate {
     676            0 :         XlClogTruncate {
     677            0 :             pageno: buf.get_u32_le(),
     678            0 :             oldest_xid: buf.get_u32_le(),
     679            0 :             oldest_xid_db: buf.get_u32_le(),
     680            0 :         }
     681            0 :     }
     682              : }
     683              : 
     684              : #[repr(C)]
     685            0 : #[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
     686              : pub struct MultiXactMember {
     687              :     pub xid: TransactionId,
     688              :     pub status: MultiXactStatus,
     689              : }
     690              : 
     691              : impl MultiXactMember {
     692            0 :     pub fn decode(buf: &mut Bytes) -> MultiXactMember {
     693            0 :         MultiXactMember {
     694            0 :             xid: buf.get_u32_le(),
     695            0 :             status: buf.get_u32_le(),
     696            0 :         }
     697            0 :     }
     698              : }
     699              : 
     700              : #[repr(C)]
     701            0 : #[derive(Debug)]
     702              : pub struct XlMultiXactCreate {
     703              :     pub mid: MultiXactId,
     704              :     /* new MultiXact's ID */
     705              :     pub moff: MultiXactOffset,
     706              :     /* its starting offset in members file */
     707              :     pub nmembers: u32,
     708              :     /* number of member XIDs */
     709              :     pub members: Vec<MultiXactMember>,
     710              : }
     711              : 
     712              : impl XlMultiXactCreate {
     713            0 :     pub fn decode(buf: &mut Bytes) -> XlMultiXactCreate {
     714            0 :         let mid = buf.get_u32_le();
     715            0 :         let moff = buf.get_u32_le();
     716            0 :         let nmembers = buf.get_u32_le();
     717            0 :         let mut members = Vec::new();
     718            0 :         for _ in 0..nmembers {
     719            0 :             members.push(MultiXactMember::decode(buf));
     720            0 :         }
     721            0 :         XlMultiXactCreate {
     722            0 :             mid,
     723            0 :             moff,
     724            0 :             nmembers,
     725            0 :             members,
     726            0 :         }
     727            0 :     }
     728              : }
     729              : 
     730              : #[repr(C)]
     731            0 : #[derive(Debug)]
     732              : pub struct XlMultiXactTruncate {
     733              :     pub oldest_multi_db: Oid,
     734              :     /* to-be-truncated range of multixact offsets */
     735              :     pub start_trunc_off: MultiXactId,
     736              :     /* just for completeness' sake */
     737              :     pub end_trunc_off: MultiXactId,
     738              : 
     739              :     /* to-be-truncated range of multixact members */
     740              :     pub start_trunc_memb: MultiXactOffset,
     741              :     pub end_trunc_memb: MultiXactOffset,
     742              : }
     743              : 
     744              : impl XlMultiXactTruncate {
     745            0 :     pub fn decode(buf: &mut Bytes) -> XlMultiXactTruncate {
     746            0 :         XlMultiXactTruncate {
     747            0 :             oldest_multi_db: buf.get_u32_le(),
     748            0 :             start_trunc_off: buf.get_u32_le(),
     749            0 :             end_trunc_off: buf.get_u32_le(),
     750            0 :             start_trunc_memb: buf.get_u32_le(),
     751            0 :             end_trunc_memb: buf.get_u32_le(),
     752            0 :         }
     753            0 :     }
     754              : }
     755              : 
     756              : #[repr(C)]
     757            0 : #[derive(Debug)]
     758              : pub struct XlLogicalMessage {
     759              :     pub db_id: Oid,
     760              :     pub transactional: bool,
     761              :     pub prefix_size: usize,
     762              :     pub message_size: usize,
     763              : }
     764              : 
     765              : impl XlLogicalMessage {
     766            0 :     pub fn decode(buf: &mut Bytes) -> XlLogicalMessage {
     767            0 :         XlLogicalMessage {
     768            0 :             db_id: buf.get_u32_le(),
     769            0 :             transactional: buf.get_u32_le() != 0, // 4-bytes alignment
     770            0 :             prefix_size: buf.get_u64_le() as usize,
     771            0 :             message_size: buf.get_u64_le() as usize,
     772            0 :         }
     773            0 :     }
     774              : }
     775              : 
     776              : #[repr(C)]
     777            0 : #[derive(Debug)]
     778              : pub struct XlRunningXacts {
     779              :     pub xcnt: u32,
     780              :     pub subxcnt: u32,
     781              :     pub subxid_overflow: bool,
     782              :     pub next_xid: TransactionId,
     783              :     pub oldest_running_xid: TransactionId,
     784              :     pub latest_completed_xid: TransactionId,
     785              :     pub xids: Vec<TransactionId>,
     786              : }
     787              : 
     788              : impl XlRunningXacts {
     789            0 :     pub fn decode(buf: &mut Bytes) -> XlRunningXacts {
     790            0 :         let xcnt = buf.get_u32_le();
     791            0 :         let subxcnt = buf.get_u32_le();
     792            0 :         let subxid_overflow = buf.get_u32_le() != 0;
     793            0 :         let next_xid = buf.get_u32_le();
     794            0 :         let oldest_running_xid = buf.get_u32_le();
     795            0 :         let latest_completed_xid = buf.get_u32_le();
     796            0 :         let mut xids = Vec::new();
     797            0 :         for _ in 0..(xcnt + subxcnt) {
     798            0 :             xids.push(buf.get_u32_le());
     799            0 :         }
     800            0 :         XlRunningXacts {
     801            0 :             xcnt,
     802            0 :             subxcnt,
     803            0 :             subxid_overflow,
     804            0 :             next_xid,
     805            0 :             oldest_running_xid,
     806            0 :             latest_completed_xid,
     807            0 :             xids,
     808            0 :         }
     809            0 :     }
     810              : }
     811              : 
     812              : /// Main routine to decode a WAL record and figure out which blocks are modified
     813              : //
     814              : // See xlogrecord.h for details
     815              : // The overall layout of an XLOG record is:
     816              : //              Fixed-size header (XLogRecord struct)
     817              : //      XLogRecordBlockHeader struct
     818              : //          If pg_constants::BKPBLOCK_HAS_IMAGE, an XLogRecordBlockImageHeader struct follows
     819              : //                 If pg_constants::BKPIMAGE_HAS_HOLE and pg_constants::BKPIMAGE_IS_COMPRESSED, an
     820              : //                 XLogRecordBlockCompressHeader struct follows.
     821              : //          If pg_constants::BKPBLOCK_SAME_REL is not set, a RelFileNode follows
     822              : //          BlockNumber follows
     823              : //      XLogRecordBlockHeader struct
     824              : //      ...
     825              : //      XLogRecordDataHeader[Short|Long] struct
     826              : //      block data
     827              : //      block data
     828              : //      ...
     829              : //      main data
     830              : //
     831              : //
     832              : // For performance reasons, the caller provides the DecodedWALRecord struct and the function just fills it in.
     833              : // It would be more natural for this function to return a DecodedWALRecord as return value,
     834              : // but reusing the caller-supplied struct avoids an allocation.
     835              : // This code is in the hot path for digesting incoming WAL, and is very performance sensitive.
     836              : //
     837       145852 : pub fn decode_wal_record(
     838       145852 :     record: Bytes,
     839       145852 :     decoded: &mut DecodedWALRecord,
     840       145852 :     pg_version: u32,
     841       145852 : ) -> Result<()> {
     842       145852 :     let mut rnode_spcnode: u32 = 0;
     843       145852 :     let mut rnode_dbnode: u32 = 0;
     844       145852 :     let mut rnode_relnode: u32 = 0;
     845       145852 :     let mut got_rnode = false;
     846       145852 : 
     847       145852 :     let mut buf = record.clone();
     848              : 
     849              :     // 1. Parse XLogRecord struct
     850              : 
     851              :     // FIXME: assume little-endian here
     852       145852 :     let xlogrec = XLogRecord::from_bytes(&mut buf)?;
     853              : 
     854       145852 :     trace!(
     855            0 :         "decode_wal_record xl_rmid = {} xl_info = {}",
     856            0 :         xlogrec.xl_rmid,
     857            0 :         xlogrec.xl_info
     858            0 :     );
     859              : 
     860       145852 :     let remaining: usize = xlogrec.xl_tot_len as usize - XLOG_SIZE_OF_XLOG_RECORD;
     861       145852 : 
     862       145852 :     if buf.remaining() != remaining {
     863            0 :         //TODO error
     864       145852 :     }
     865              : 
     866       145852 :     let mut max_block_id = 0;
     867       145852 :     let mut blocks_total_len: u32 = 0;
     868       145852 :     let mut main_data_len = 0;
     869       145852 :     let mut datatotal: u32 = 0;
     870       145852 :     decoded.blocks.clear();
     871              : 
     872              :     // 2. Decode the headers.
     873              :     // XLogRecordBlockHeaders if any,
     874              :     // XLogRecordDataHeader[Short|Long]
     875       437322 :     while buf.remaining() > datatotal as usize {
     876       291470 :         let block_id = buf.get_u8();
     877       291470 : 
     878       291470 :         match block_id {
     879       145812 :             pg_constants::XLR_BLOCK_ID_DATA_SHORT => {
     880       145812 :                 /* XLogRecordDataHeaderShort */
     881       145812 :                 main_data_len = buf.get_u8() as u32;
     882       145812 :                 datatotal += main_data_len;
     883       145812 :             }
     884              : 
     885           16 :             pg_constants::XLR_BLOCK_ID_DATA_LONG => {
     886           16 :                 /* XLogRecordDataHeaderLong */
     887           16 :                 main_data_len = buf.get_u32_le();
     888           16 :                 datatotal += main_data_len;
     889           16 :             }
     890              : 
     891            0 :             pg_constants::XLR_BLOCK_ID_ORIGIN => {
     892            0 :                 // RepOriginId is uint16
     893            0 :                 buf.advance(2);
     894            0 :             }
     895              : 
     896            0 :             pg_constants::XLR_BLOCK_ID_TOPLEVEL_XID => {
     897            0 :                 // TransactionId is uint32
     898            0 :                 buf.advance(4);
     899            0 :             }
     900              : 
     901       145642 :             0..=pg_constants::XLR_MAX_BLOCK_ID => {
     902              :                 /* XLogRecordBlockHeader */
     903       145642 :                 let mut blk = DecodedBkpBlock::new();
     904       145642 : 
     905       145642 :                 if block_id <= max_block_id {
     906       145642 :                     // TODO
     907       145642 :                     //report_invalid_record(state,
     908       145642 :                     //                    "out-of-order block_id %u at %X/%X",
     909       145642 :                     //                    block_id,
     910       145642 :                     //                    (uint32) (state->ReadRecPtr >> 32),
     911       145642 :                     //                    (uint32) state->ReadRecPtr);
     912       145642 :                     //    goto err;
     913       145642 :                 }
     914       145642 :                 max_block_id = block_id;
     915       145642 : 
     916       145642 :                 let fork_flags: u8 = buf.get_u8();
     917       145642 :                 blk.forknum = fork_flags & pg_constants::BKPBLOCK_FORK_MASK;
     918       145642 :                 blk.flags = fork_flags;
     919       145642 :                 blk.has_image = (fork_flags & pg_constants::BKPBLOCK_HAS_IMAGE) != 0;
     920       145642 :                 blk.has_data = (fork_flags & pg_constants::BKPBLOCK_HAS_DATA) != 0;
     921       145642 :                 blk.will_init = (fork_flags & pg_constants::BKPBLOCK_WILL_INIT) != 0;
     922       145642 :                 blk.data_len = buf.get_u16_le();
     923       145642 : 
     924       145642 :                 /* TODO cross-check that the HAS_DATA flag is set iff data_length > 0 */
     925       145642 : 
     926       145642 :                 datatotal += blk.data_len as u32;
     927       145642 :                 blocks_total_len += blk.data_len as u32;
     928       145642 : 
     929       145642 :                 if blk.has_image {
     930           60 :                     blk.bimg_len = buf.get_u16_le();
     931           60 :                     blk.hole_offset = buf.get_u16_le();
     932           60 :                     blk.bimg_info = buf.get_u8();
     933              : 
     934            0 :                     blk.apply_image = dispatch_pgversion!(
     935           60 :                         pg_version,
     936           60 :                         (blk.bimg_info & pgv::bindings::BKPIMAGE_APPLY) != 0
     937              :                     );
     938              : 
     939           60 :                     let blk_img_is_compressed =
     940           60 :                         postgres_ffi::bkpimage_is_compressed(blk.bimg_info, pg_version)?;
     941              : 
     942           60 :                     if blk_img_is_compressed {
     943            0 :                         debug!("compressed block image , pg_version = {}", pg_version);
     944           60 :                     }
     945              : 
     946           60 :                     if blk_img_is_compressed {
     947            0 :                         if blk.bimg_info & pg_constants::BKPIMAGE_HAS_HOLE != 0 {
     948            0 :                             blk.hole_length = buf.get_u16_le();
     949            0 :                         } else {
     950            0 :                             blk.hole_length = 0;
     951            0 :                         }
     952           60 :                     } else {
     953           60 :                         blk.hole_length = BLCKSZ - blk.bimg_len;
     954           60 :                     }
     955           60 :                     datatotal += blk.bimg_len as u32;
     956           60 :                     blocks_total_len += blk.bimg_len as u32;
     957           60 : 
     958           60 :                     /*
     959           60 :                      * cross-check that hole_offset > 0, hole_length > 0 and
     960           60 :                      * bimg_len < BLCKSZ if the HAS_HOLE flag is set.
     961           60 :                      */
     962           60 :                     if blk.bimg_info & pg_constants::BKPIMAGE_HAS_HOLE != 0
     963           36 :                         && (blk.hole_offset == 0 || blk.hole_length == 0 || blk.bimg_len == BLCKSZ)
     964            0 :                     {
     965            0 :                         // TODO
     966            0 :                         /*
     967            0 :                         report_invalid_record(state,
     968            0 :                                       "pg_constants::BKPIMAGE_HAS_HOLE set, but hole offset %u length %u block image length %u at %X/%X",
     969            0 :                                       (unsigned int) blk->hole_offset,
     970            0 :                                       (unsigned int) blk->hole_length,
     971            0 :                                       (unsigned int) blk->bimg_len,
     972            0 :                                       (uint32) (state->ReadRecPtr >> 32), (uint32) state->ReadRecPtr);
     973            0 :                         goto err;
     974            0 :                                      */
     975           60 :                     }
     976              : 
     977              :                     /*
     978              :                      * cross-check that hole_offset == 0 and hole_length == 0 if
     979              :                      * the HAS_HOLE flag is not set.
     980              :                      */
     981           60 :                     if blk.bimg_info & pg_constants::BKPIMAGE_HAS_HOLE == 0
     982           24 :                         && (blk.hole_offset != 0 || blk.hole_length != 0)
     983            0 :                     {
     984            0 :                         // TODO
     985            0 :                         /*
     986            0 :                         report_invalid_record(state,
     987            0 :                                       "pg_constants::BKPIMAGE_HAS_HOLE not set, but hole offset %u length %u at %X/%X",
     988            0 :                                       (unsigned int) blk->hole_offset,
     989            0 :                                       (unsigned int) blk->hole_length,
     990            0 :                                       (uint32) (state->ReadRecPtr >> 32), (uint32) state->ReadRecPtr);
     991            0 :                         goto err;
     992            0 :                                      */
     993           60 :                     }
     994              : 
     995              :                     /*
     996              :                      * cross-check that bimg_len < BLCKSZ if the IS_COMPRESSED
     997              :                      * flag is set.
     998              :                      */
     999           60 :                     if !blk_img_is_compressed && blk.bimg_len == BLCKSZ {
    1000           24 :                         // TODO
    1001           24 :                         /*
    1002           24 :                         report_invalid_record(state,
    1003           24 :                                       "pg_constants::BKPIMAGE_IS_COMPRESSED set, but block image length %u at %X/%X",
    1004           24 :                                       (unsigned int) blk->bimg_len,
    1005           24 :                                       (uint32) (state->ReadRecPtr >> 32), (uint32) state->ReadRecPtr);
    1006           24 :                         goto err;
    1007           24 :                                      */
    1008           36 :                     }
    1009              : 
    1010              :                     /*
    1011              :                      * cross-check that bimg_len = BLCKSZ if neither HAS_HOLE nor
    1012              :                      * IS_COMPRESSED flag is set.
    1013              :                      */
    1014           60 :                     if blk.bimg_info & pg_constants::BKPIMAGE_HAS_HOLE == 0
    1015           24 :                         && !blk_img_is_compressed
    1016           24 :                         && blk.bimg_len != BLCKSZ
    1017            0 :                     {
    1018            0 :                         // TODO
    1019            0 :                         /*
    1020            0 :                         report_invalid_record(state,
    1021            0 :                                       "neither pg_constants::BKPIMAGE_HAS_HOLE nor pg_constants::BKPIMAGE_IS_COMPRESSED set, but block image length is %u at %X/%X",
    1022            0 :                                       (unsigned int) blk->data_len,
    1023            0 :                                       (uint32) (state->ReadRecPtr >> 32), (uint32) state->ReadRecPtr);
    1024            0 :                         goto err;
    1025            0 :                                      */
    1026           60 :                     }
    1027       145582 :                 }
    1028       145642 :                 if fork_flags & pg_constants::BKPBLOCK_SAME_REL == 0 {
    1029       145642 :                     rnode_spcnode = buf.get_u32_le();
    1030       145642 :                     rnode_dbnode = buf.get_u32_le();
    1031       145642 :                     rnode_relnode = buf.get_u32_le();
    1032       145642 :                     got_rnode = true;
    1033       145642 :                 } else if !got_rnode {
    1034            0 :                     // TODO
    1035            0 :                     /*
    1036            0 :                     report_invalid_record(state,
    1037            0 :                                     "pg_constants::BKPBLOCK_SAME_REL set but no previous rel at %X/%X",
    1038            0 :                                     (uint32) (state->ReadRecPtr >> 32), (uint32) state->ReadRecPtr);
    1039            0 :                     goto err;           */
    1040            0 :                 }
    1041              : 
    1042       145642 :                 blk.rnode_spcnode = rnode_spcnode;
    1043       145642 :                 blk.rnode_dbnode = rnode_dbnode;
    1044       145642 :                 blk.rnode_relnode = rnode_relnode;
    1045       145642 : 
    1046       145642 :                 blk.blkno = buf.get_u32_le();
    1047       145642 :                 trace!(
    1048            0 :                     "this record affects {}/{}/{} blk {}",
    1049            0 :                     rnode_spcnode,
    1050            0 :                     rnode_dbnode,
    1051            0 :                     rnode_relnode,
    1052            0 :                     blk.blkno
    1053            0 :                 );
    1054              : 
    1055       145642 :                 decoded.blocks.push(blk);
    1056              :             }
    1057              : 
    1058            0 :             _ => {
    1059            0 :                 // TODO: invalid block_id
    1060            0 :             }
    1061              :         }
    1062              :     }
    1063              : 
    1064              :     // 3. Decode blocks.
    1065       145852 :     let mut ptr = record.len() - buf.remaining();
    1066       145852 :     for blk in decoded.blocks.iter_mut() {
    1067       145642 :         if blk.has_image {
    1068           60 :             blk.bimg_offset = ptr as u32;
    1069           60 :             ptr += blk.bimg_len as usize;
    1070       145582 :         }
    1071       145642 :         if blk.has_data {
    1072       145582 :             ptr += blk.data_len as usize;
    1073       145582 :         }
    1074              :     }
    1075              :     // We don't need them, so just skip blocks_total_len bytes
    1076       145852 :     buf.advance(blocks_total_len as usize);
    1077       145852 :     assert_eq!(ptr, record.len() - buf.remaining());
    1078              : 
    1079       145852 :     let main_data_offset = (xlogrec.xl_tot_len - main_data_len) as usize;
    1080       145852 : 
    1081       145852 :     // 4. Decode main_data
    1082       145852 :     if main_data_len > 0 {
    1083       145828 :         assert_eq!(buf.remaining(), main_data_len as usize);
    1084           24 :     }
    1085              : 
    1086       145852 :     decoded.xl_xid = xlogrec.xl_xid;
    1087       145852 :     decoded.xl_info = xlogrec.xl_info;
    1088       145852 :     decoded.xl_rmid = xlogrec.xl_rmid;
    1089       145852 :     decoded.record = record;
    1090       145852 :     decoded.main_data_offset = main_data_offset;
    1091       145852 : 
    1092       145852 :     Ok(())
    1093       145852 : }
    1094              : 
    1095              : ///
    1096              : /// Build a human-readable string to describe a WAL record
    1097              : ///
    1098              : /// For debugging purposes
    1099            0 : pub fn describe_wal_record(rec: &NeonWalRecord) -> Result<String, DeserializeError> {
    1100            0 :     match rec {
    1101            0 :         NeonWalRecord::Postgres { will_init, rec } => Ok(format!(
    1102            0 :             "will_init: {}, {}",
    1103            0 :             will_init,
    1104            0 :             describe_postgres_wal_record(rec)?
    1105              :         )),
    1106            0 :         _ => Ok(format!("{:?}", rec)),
    1107              :     }
    1108            0 : }
    1109              : 
    1110            0 : fn describe_postgres_wal_record(record: &Bytes) -> Result<String, DeserializeError> {
    1111            0 :     // TODO: It would be nice to use the PostgreSQL rmgrdesc infrastructure for this.
    1112            0 :     // Maybe use the postgres wal redo process, the same used for replaying WAL records?
    1113            0 :     // Or could we compile the rmgrdesc routines into the dump_layer_file() binary directly,
    1114            0 :     // without worrying about security?
    1115            0 :     //
    1116            0 :     // But for now, we have a hand-written code for a few common WAL record types here.
    1117            0 : 
    1118            0 :     let mut buf = record.clone();
    1119              : 
    1120              :     // 1. Parse XLogRecord struct
    1121              : 
    1122              :     // FIXME: assume little-endian here
    1123            0 :     let xlogrec = XLogRecord::from_bytes(&mut buf)?;
    1124              : 
    1125              :     let unknown_str: String;
    1126              : 
    1127            0 :     let result: &str = match xlogrec.xl_rmid {
    1128              :         pg_constants::RM_HEAP2_ID => {
    1129            0 :             let info = xlogrec.xl_info & pg_constants::XLOG_HEAP_OPMASK;
    1130            0 :             match info {
    1131            0 :                 pg_constants::XLOG_HEAP2_MULTI_INSERT => "HEAP2 MULTI_INSERT",
    1132            0 :                 pg_constants::XLOG_HEAP2_VISIBLE => "HEAP2 VISIBLE",
    1133              :                 _ => {
    1134            0 :                     unknown_str = format!("HEAP2 UNKNOWN_0x{:02x}", info);
    1135            0 :                     &unknown_str
    1136              :                 }
    1137              :             }
    1138              :         }
    1139              :         pg_constants::RM_HEAP_ID => {
    1140            0 :             let info = xlogrec.xl_info & pg_constants::XLOG_HEAP_OPMASK;
    1141            0 :             match info {
    1142            0 :                 pg_constants::XLOG_HEAP_INSERT => "HEAP INSERT",
    1143            0 :                 pg_constants::XLOG_HEAP_DELETE => "HEAP DELETE",
    1144            0 :                 pg_constants::XLOG_HEAP_UPDATE => "HEAP UPDATE",
    1145            0 :                 pg_constants::XLOG_HEAP_HOT_UPDATE => "HEAP HOT_UPDATE",
    1146              :                 _ => {
    1147            0 :                     unknown_str = format!("HEAP2 UNKNOWN_0x{:02x}", info);
    1148            0 :                     &unknown_str
    1149              :                 }
    1150              :             }
    1151              :         }
    1152              :         pg_constants::RM_XLOG_ID => {
    1153            0 :             let info = xlogrec.xl_info & pg_constants::XLR_RMGR_INFO_MASK;
    1154            0 :             match info {
    1155            0 :                 pg_constants::XLOG_FPI => "XLOG FPI",
    1156            0 :                 pg_constants::XLOG_FPI_FOR_HINT => "XLOG FPI_FOR_HINT",
    1157              :                 _ => {
    1158            0 :                     unknown_str = format!("XLOG UNKNOWN_0x{:02x}", info);
    1159            0 :                     &unknown_str
    1160              :                 }
    1161              :             }
    1162              :         }
    1163            0 :         rmid => {
    1164            0 :             let info = xlogrec.xl_info & pg_constants::XLR_RMGR_INFO_MASK;
    1165            0 : 
    1166            0 :             unknown_str = format!("UNKNOWN_RM_{} INFO_0x{:02x}", rmid, info);
    1167            0 :             &unknown_str
    1168              :         }
    1169              :     };
    1170              : 
    1171            0 :     Ok(String::from(result))
    1172            0 : }
        

Generated by: LCOV version 2.1-beta