LCOV - code coverage report
Current view: top level - safekeeper/tests/walproposer_sim - walproposer_api.rs (source / functions) Coverage Total Hit
Test: d427f6f28cacba33c85e3c88c25b596f8e14b0f1.info Lines: 95.5 % 486 464
Test Date: 2025-02-15 14:15:22 Functions: 99.3 % 138 137

            Line data    Source code
       1              : use std::{
       2              :     cell::{RefCell, RefMut, UnsafeCell},
       3              :     ffi::CStr,
       4              :     sync::Arc,
       5              : };
       6              : 
       7              : use bytes::Bytes;
       8              : use desim::{
       9              :     executor::{self, PollSome},
      10              :     network::TCP,
      11              :     node_os::NodeOs,
      12              :     proto::{AnyMessage, NetEvent, NodeEvent},
      13              :     world::NodeId,
      14              : };
      15              : use tracing::debug;
      16              : use utils::lsn::Lsn;
      17              : use walproposer::{
      18              :     api_bindings::Level,
      19              :     bindings::{
      20              :         NeonWALReadResult, SafekeeperStateDesiredEvents, WL_SOCKET_READABLE, WL_SOCKET_WRITEABLE,
      21              :     },
      22              :     walproposer::{ApiImpl, Config},
      23              : };
      24              : 
      25              : use super::walproposer_disk::DiskWalProposer;
      26              : 
      27              : /// Special state for each wp->sk connection.
      28              : struct SafekeeperConn {
      29              :     host: String,
      30              :     port: String,
      31              :     node_id: NodeId,
      32              :     // socket is Some(..) equals to connection is established
      33              :     socket: Option<TCP>,
      34              :     // connection is in progress
      35              :     is_connecting: bool,
      36              :     // START_WAL_PUSH is in progress
      37              :     is_start_wal_push: bool,
      38              :     // pointer to Safekeeper in walproposer for callbacks
      39              :     raw_ptr: *mut walproposer::bindings::Safekeeper,
      40              : }
      41              : 
      42              : impl SafekeeperConn {
      43        27609 :     pub fn new(host: String, port: String) -> Self {
      44        27609 :         // port number is the same as NodeId
      45        27609 :         let port_num = port.parse::<u32>().unwrap();
      46        27609 :         Self {
      47        27609 :             host,
      48        27609 :             port,
      49        27609 :             node_id: port_num,
      50        27609 :             socket: None,
      51        27609 :             is_connecting: false,
      52        27609 :             is_start_wal_push: false,
      53        27609 :             raw_ptr: std::ptr::null_mut(),
      54        27609 :         }
      55        27609 :     }
      56              : }
      57              : 
      58              : /// Simulation version of a postgres WaitEventSet. At pos 0 there is always
      59              : /// a special NodeEvents channel, which is used as a latch.
      60              : struct EventSet {
      61              :     os: NodeOs,
      62              :     // all pollable channels, 0 is always NodeEvent channel
      63              :     chans: Vec<Box<dyn PollSome>>,
      64              :     // 0 is always nullptr
      65              :     sk_ptrs: Vec<*mut walproposer::bindings::Safekeeper>,
      66              :     // event mask for each channel
      67              :     masks: Vec<u32>,
      68              : }
      69              : 
      70              : impl EventSet {
      71         9203 :     pub fn new(os: NodeOs) -> Self {
      72         9203 :         let node_events = os.node_events();
      73         9203 :         Self {
      74         9203 :             os,
      75         9203 :             chans: vec![Box::new(node_events)],
      76         9203 :             sk_ptrs: vec![std::ptr::null_mut()],
      77         9203 :             masks: vec![WL_SOCKET_READABLE],
      78         9203 :         }
      79         9203 :     }
      80              : 
      81              :     /// Leaves all readable channels at the beginning of the array.
      82        28618 :     fn sort_readable(&mut self) -> usize {
      83        28618 :         let mut cnt = 1;
      84        68206 :         for i in 1..self.chans.len() {
      85        68206 :             if self.masks[i] & WL_SOCKET_READABLE != 0 {
      86        68206 :                 self.chans.swap(i, cnt);
      87        68206 :                 self.sk_ptrs.swap(i, cnt);
      88        68206 :                 self.masks.swap(i, cnt);
      89        68206 :                 cnt += 1;
      90        68206 :             }
      91              :         }
      92        28618 :         cnt
      93        28618 :     }
      94              : 
      95        67773 :     fn update_event_set(&mut self, conn: &SafekeeperConn, event_mask: u32) {
      96        67773 :         let index = self
      97        67773 :             .sk_ptrs
      98        67773 :             .iter()
      99       255414 :             .position(|&ptr| ptr == conn.raw_ptr)
     100        67773 :             .expect("safekeeper should exist in event set");
     101        67773 :         self.masks[index] = event_mask;
     102        67773 :     }
     103              : 
     104        60866 :     fn add_safekeeper(&mut self, sk: &SafekeeperConn, event_mask: u32) {
     105       147316 :         for ptr in self.sk_ptrs.iter() {
     106       147316 :             assert!(*ptr != sk.raw_ptr);
     107              :         }
     108              : 
     109        60866 :         self.chans.push(Box::new(
     110        60866 :             sk.socket
     111        60866 :                 .as_ref()
     112        60866 :                 .expect("socket should not be closed")
     113        60866 :                 .recv_chan(),
     114        60866 :         ));
     115        60866 :         self.sk_ptrs.push(sk.raw_ptr);
     116        60866 :         self.masks.push(event_mask);
     117        60866 :     }
     118              : 
     119        38120 :     fn remove_safekeeper(&mut self, sk: &SafekeeperConn) {
     120        81148 :         let index = self.sk_ptrs.iter().position(|&ptr| ptr == sk.raw_ptr);
     121        38120 :         if index.is_none() {
     122            4 :             debug!("remove_safekeeper: sk={:?} not found", sk.raw_ptr);
     123            4 :             return;
     124        38116 :         }
     125        38116 :         let index = index.unwrap();
     126        38116 : 
     127        38116 :         self.chans.remove(index);
     128        38116 :         self.sk_ptrs.remove(index);
     129        38116 :         self.masks.remove(index);
     130        38116 : 
     131        38116 :         // to simulate the actual behaviour
     132        38116 :         self.refresh_event_set();
     133        38120 :     }
     134              : 
     135              :     /// Updates all masks to match the result of a SafekeeperStateDesiredEvents.
     136        44427 :     fn refresh_event_set(&mut self) {
     137       126176 :         for (i, mask) in self.masks.iter_mut().enumerate() {
     138       126176 :             if i == 0 {
     139        44427 :                 continue;
     140        81749 :             }
     141        81749 : 
     142        81749 :             let mut mask_sk: u32 = 0;
     143        81749 :             let mut mask_nwr: u32 = 0;
     144        81749 :             unsafe { SafekeeperStateDesiredEvents(self.sk_ptrs[i], &mut mask_sk, &mut mask_nwr) };
     145        81749 : 
     146        81749 :             if mask_sk != *mask {
     147            0 :                 debug!(
     148            0 :                     "refresh_event_set: sk={:?}, old_mask={:#b}, new_mask={:#b}",
     149            0 :                     self.sk_ptrs[i], *mask, mask_sk
     150              :                 );
     151            0 :                 *mask = mask_sk;
     152        81749 :             }
     153              :         }
     154        44427 :     }
     155              : 
     156              :     /// Wait for events on all channels.
     157        28618 :     fn wait(&mut self, timeout_millis: i64) -> walproposer::walproposer::WaitResult {
     158              :         // all channels are always writeable
     159        96824 :         for (i, mask) in self.masks.iter().enumerate() {
     160        96824 :             if *mask & WL_SOCKET_WRITEABLE != 0 {
     161            0 :                 return walproposer::walproposer::WaitResult::Network(
     162            0 :                     self.sk_ptrs[i],
     163            0 :                     WL_SOCKET_WRITEABLE,
     164            0 :                 );
     165        96824 :             }
     166              :         }
     167              : 
     168        28618 :         let cnt = self.sort_readable();
     169        28618 : 
     170        28618 :         let slice = &self.chans[0..cnt];
     171        28618 :         match executor::epoll_chans(slice, timeout_millis) {
     172        11377 :             None => walproposer::walproposer::WaitResult::Timeout,
     173              :             Some(0) => {
     174          536 :                 let msg = self.os.node_events().must_recv();
     175          536 :                 match msg {
     176          536 :                     NodeEvent::Internal(AnyMessage::Just32(0)) => {
     177          536 :                         // got a notification about new WAL available
     178          536 :                     }
     179            0 :                     NodeEvent::Internal(_) => unreachable!(),
     180            0 :                     NodeEvent::Accept(_) => unreachable!(),
     181              :                 }
     182          536 :                 walproposer::walproposer::WaitResult::Latch
     183              :             }
     184        16705 :             Some(index) => walproposer::walproposer::WaitResult::Network(
     185        16705 :                 self.sk_ptrs[index],
     186        16705 :                 WL_SOCKET_READABLE,
     187        16705 :             ),
     188              :         }
     189        28618 :     }
     190              : }
     191              : 
     192              : /// This struct handles all calls from walproposer into walproposer_api.
     193              : pub struct SimulationApi {
     194              :     os: NodeOs,
     195              :     safekeepers: RefCell<Vec<SafekeeperConn>>,
     196              :     disk: Arc<DiskWalProposer>,
     197              :     redo_start_lsn: Option<Lsn>,
     198              :     last_logged_commit_lsn: u64,
     199              :     shmem: UnsafeCell<walproposer::bindings::WalproposerShmemState>,
     200              :     config: Config,
     201              :     event_set: RefCell<Option<EventSet>>,
     202              : }
     203              : 
     204              : pub struct Args {
     205              :     pub os: NodeOs,
     206              :     pub config: Config,
     207              :     pub disk: Arc<DiskWalProposer>,
     208              :     pub redo_start_lsn: Option<Lsn>,
     209              : }
     210              : 
     211              : impl SimulationApi {
     212         9203 :     pub fn new(args: Args) -> Self {
     213         9203 :         // initialize connection state for each safekeeper
     214         9203 :         let sk_conns = args
     215         9203 :             .config
     216         9203 :             .safekeepers_list
     217         9203 :             .iter()
     218        27609 :             .map(|s| {
     219        27609 :                 SafekeeperConn::new(
     220        27609 :                     s.split(':').next().unwrap().to_string(),
     221        27609 :                     s.split(':').nth(1).unwrap().to_string(),
     222        27609 :                 )
     223        27609 :             })
     224         9203 :             .collect::<Vec<_>>();
     225         9203 : 
     226         9203 :         Self {
     227         9203 :             os: args.os,
     228         9203 :             safekeepers: RefCell::new(sk_conns),
     229         9203 :             disk: args.disk,
     230         9203 :             redo_start_lsn: args.redo_start_lsn,
     231         9203 :             last_logged_commit_lsn: 0,
     232         9203 :             shmem: UnsafeCell::new(walproposer::api_bindings::empty_shmem()),
     233         9203 :             config: args.config,
     234         9203 :             event_set: RefCell::new(None),
     235         9203 :         }
     236         9203 :     }
     237              : 
     238              :     /// Get SafekeeperConn for the given Safekeeper.
     239       301019 :     fn get_conn(&self, sk: &mut walproposer::bindings::Safekeeper) -> RefMut<'_, SafekeeperConn> {
     240       301019 :         let sk_port = unsafe { CStr::from_ptr(sk.port).to_str().unwrap() };
     241       301019 :         let state = self.safekeepers.borrow_mut();
     242       301019 :         RefMut::map(state, |v| {
     243       301019 :             v.iter_mut()
     244       600947 :                 .find(|conn| conn.port == sk_port)
     245       301019 :                 .expect("safekeeper conn not found by port")
     246       301019 :         })
     247       301019 :     }
     248              : }
     249              : 
     250              : impl ApiImpl for SimulationApi {
     251       321250 :     fn get_current_timestamp(&self) -> i64 {
     252       321250 :         debug!("get_current_timestamp");
     253              :         // PG TimestampTZ is microseconds, but simulation unit is assumed to be
     254              :         // milliseconds, so add 10^3
     255       321250 :         self.os.now() as i64 * 1000
     256       321250 :     }
     257              : 
     258         1043 :     fn update_donor(&self, donor: &mut walproposer::bindings::Safekeeper, donor_lsn: u64) {
     259         1043 :         let mut shmem = unsafe { *self.get_shmem_state() };
     260         1043 :         shmem.propEpochStartLsn.value = donor_lsn;
     261         1043 :         shmem.donor_conninfo = donor.conninfo;
     262         1043 :     }
     263              : 
     264        33885 :     fn conn_status(
     265        33885 :         &self,
     266        33885 :         _: &mut walproposer::bindings::Safekeeper,
     267        33885 :     ) -> walproposer::bindings::WalProposerConnStatusType {
     268        33885 :         debug!("conn_status");
     269              :         // break the connection with a 10% chance
     270        33885 :         if self.os.random(100) < 10 {
     271         3452 :             walproposer::bindings::WalProposerConnStatusType_WP_CONNECTION_BAD
     272              :         } else {
     273        30433 :             walproposer::bindings::WalProposerConnStatusType_WP_CONNECTION_OK
     274              :         }
     275        33885 :     }
     276              : 
     277        33885 :     fn conn_connect_start(&self, sk: &mut walproposer::bindings::Safekeeper) {
     278        33885 :         debug!("conn_connect_start");
     279        33885 :         let mut conn = self.get_conn(sk);
     280        33885 : 
     281        33885 :         assert!(conn.socket.is_none());
     282        33885 :         let socket = self.os.open_tcp(conn.node_id);
     283        33885 :         conn.socket = Some(socket);
     284        33885 :         conn.raw_ptr = sk;
     285        33885 :         conn.is_connecting = true;
     286        33885 :     }
     287              : 
     288        30433 :     fn conn_connect_poll(
     289        30433 :         &self,
     290        30433 :         _: &mut walproposer::bindings::Safekeeper,
     291        30433 :     ) -> walproposer::bindings::WalProposerConnectPollStatusType {
     292        30433 :         debug!("conn_connect_poll");
     293              :         // TODO: break the connection here
     294        30433 :         walproposer::bindings::WalProposerConnectPollStatusType_WP_CONN_POLLING_OK
     295        30433 :     }
     296              : 
     297        30433 :     fn conn_send_query(&self, sk: &mut walproposer::bindings::Safekeeper, query: &str) -> bool {
     298        30433 :         debug!("conn_send_query: {}", query);
     299        30433 :         self.get_conn(sk).is_start_wal_push = true;
     300        30433 :         true
     301        30433 :     }
     302              : 
     303        30433 :     fn conn_get_query_result(
     304        30433 :         &self,
     305        30433 :         _: &mut walproposer::bindings::Safekeeper,
     306        30433 :     ) -> walproposer::bindings::WalProposerExecStatusType {
     307        30433 :         debug!("conn_get_query_result");
     308              :         // TODO: break the connection here
     309        30433 :         walproposer::bindings::WalProposerExecStatusType_WP_EXEC_SUCCESS_COPYBOTH
     310        30433 :     }
     311              : 
     312        18723 :     fn conn_async_read(
     313        18723 :         &self,
     314        18723 :         sk: &mut walproposer::bindings::Safekeeper,
     315        18723 :         vec: &mut Vec<u8>,
     316        18723 :     ) -> walproposer::bindings::PGAsyncReadResult {
     317        18723 :         debug!("conn_async_read");
     318        18723 :         let mut conn = self.get_conn(sk);
     319              : 
     320        18723 :         let socket = if let Some(socket) = conn.socket.as_mut() {
     321        18723 :             socket
     322              :         } else {
     323              :             // socket is already closed
     324            0 :             return walproposer::bindings::PGAsyncReadResult_PG_ASYNC_READ_FAIL;
     325              :         };
     326              : 
     327        18723 :         let msg = socket.recv_chan().try_recv();
     328              : 
     329        16599 :         match msg {
     330              :             None => {
     331              :                 // no message is ready
     332         2124 :                 walproposer::bindings::PGAsyncReadResult_PG_ASYNC_READ_TRY_AGAIN
     333              :             }
     334              :             Some(NetEvent::Closed) => {
     335              :                 // connection is closed
     336         7446 :                 debug!("conn_async_read: connection is closed");
     337         7446 :                 conn.socket = None;
     338         7446 :                 walproposer::bindings::PGAsyncReadResult_PG_ASYNC_READ_FAIL
     339              :             }
     340         9153 :             Some(NetEvent::Message(msg)) => {
     341              :                 // got a message
     342         9153 :                 let b = match msg {
     343         9153 :                     desim::proto::AnyMessage::Bytes(b) => b,
     344            0 :                     _ => unreachable!(),
     345              :                 };
     346         9153 :                 vec.extend_from_slice(&b);
     347         9153 :                 walproposer::bindings::PGAsyncReadResult_PG_ASYNC_READ_SUCCESS
     348              :             }
     349              :         }
     350        18723 :     }
     351              : 
     352        34476 :     fn conn_blocking_write(&self, sk: &mut walproposer::bindings::Safekeeper, buf: &[u8]) -> bool {
     353        34476 :         let mut conn = self.get_conn(sk);
     354        34476 :         debug!("conn_blocking_write to {}: {:?}", conn.node_id, buf);
     355        34476 :         let socket = conn.socket.as_mut().unwrap();
     356        34476 :         socket.send(desim::proto::AnyMessage::Bytes(Bytes::copy_from_slice(buf)));
     357        34476 :         true
     358        34476 :     }
     359              : 
     360         5285 :     fn conn_async_write(
     361         5285 :         &self,
     362         5285 :         sk: &mut walproposer::bindings::Safekeeper,
     363         5285 :         buf: &[u8],
     364         5285 :     ) -> walproposer::bindings::PGAsyncWriteResult {
     365         5285 :         let mut conn = self.get_conn(sk);
     366         5285 :         debug!("conn_async_write to {}: {:?}", conn.node_id, buf);
     367         5285 :         if let Some(socket) = conn.socket.as_mut() {
     368         5285 :             socket.send(desim::proto::AnyMessage::Bytes(Bytes::copy_from_slice(buf)));
     369         5285 :         } else {
     370              :             // connection is already closed
     371            0 :             debug!("conn_async_write: writing to a closed socket!");
     372              :             // TODO: maybe we should return error here?
     373              :         }
     374         5285 :         walproposer::bindings::PGAsyncWriteResult_PG_ASYNC_WRITE_SUCCESS
     375         5285 :     }
     376              : 
     377         1098 :     fn wal_reader_allocate(&self, _: &mut walproposer::bindings::Safekeeper) -> NeonWALReadResult {
     378         1098 :         debug!("wal_reader_allocate");
     379         1098 :         walproposer::bindings::NeonWALReadResult_NEON_WALREAD_SUCCESS
     380         1098 :     }
     381              : 
     382          899 :     fn wal_read(
     383          899 :         &self,
     384          899 :         _sk: &mut walproposer::bindings::Safekeeper,
     385          899 :         buf: &mut [u8],
     386          899 :         startpos: u64,
     387          899 :     ) -> NeonWALReadResult {
     388          899 :         self.disk.lock().read(startpos, buf);
     389          899 :         walproposer::bindings::NeonWALReadResult_NEON_WALREAD_SUCCESS
     390          899 :     }
     391              : 
     392         9203 :     fn init_event_set(&self, _: &mut walproposer::bindings::WalProposer) {
     393         9203 :         debug!("init_event_set");
     394         9203 :         let new_event_set = EventSet::new(self.os.clone());
     395         9203 :         let old_event_set = self.event_set.replace(Some(new_event_set));
     396         9203 :         assert!(old_event_set.is_none());
     397         9203 :     }
     398              : 
     399        67773 :     fn update_event_set(&self, sk: &mut walproposer::bindings::Safekeeper, event_mask: u32) {
     400        67773 :         debug!(
     401            0 :             "update_event_set, sk={:?}, events_mask={:#b}",
     402            0 :             sk as *mut walproposer::bindings::Safekeeper, event_mask
     403              :         );
     404        67773 :         let conn = self.get_conn(sk);
     405        67773 : 
     406        67773 :         self.event_set
     407        67773 :             .borrow_mut()
     408        67773 :             .as_mut()
     409        67773 :             .unwrap()
     410        67773 :             .update_event_set(&conn, event_mask);
     411        67773 :     }
     412              : 
     413        60866 :     fn add_safekeeper_event_set(
     414        60866 :         &self,
     415        60866 :         sk: &mut walproposer::bindings::Safekeeper,
     416        60866 :         event_mask: u32,
     417        60866 :     ) {
     418        60866 :         debug!(
     419            0 :             "add_safekeeper_event_set, sk={:?}, events_mask={:#b}",
     420            0 :             sk as *mut walproposer::bindings::Safekeeper, event_mask
     421              :         );
     422              : 
     423        60866 :         self.event_set
     424        60866 :             .borrow_mut()
     425        60866 :             .as_mut()
     426        60866 :             .unwrap()
     427        60866 :             .add_safekeeper(&self.get_conn(sk), event_mask);
     428        60866 :     }
     429              : 
     430        38120 :     fn rm_safekeeper_event_set(&self, sk: &mut walproposer::bindings::Safekeeper) {
     431        38120 :         debug!(
     432            0 :             "rm_safekeeper_event_set, sk={:?}",
     433            0 :             sk as *mut walproposer::bindings::Safekeeper,
     434              :         );
     435              : 
     436        38120 :         self.event_set
     437        38120 :             .borrow_mut()
     438        38120 :             .as_mut()
     439        38120 :             .unwrap()
     440        38120 :             .remove_safekeeper(&self.get_conn(sk));
     441        38120 :     }
     442              : 
     443         6311 :     fn active_state_update_event_set(&self, sk: &mut walproposer::bindings::Safekeeper) {
     444         6311 :         debug!("active_state_update_event_set");
     445              : 
     446         6311 :         assert!(sk.state == walproposer::bindings::SafekeeperState_SS_ACTIVE);
     447         6311 :         self.event_set
     448         6311 :             .borrow_mut()
     449         6311 :             .as_mut()
     450         6311 :             .unwrap()
     451         6311 :             .refresh_event_set();
     452         6311 :     }
     453              : 
     454        17363 :     fn wal_reader_events(&self, _sk: &mut walproposer::bindings::Safekeeper) -> u32 {
     455        17363 :         0
     456        17363 :     }
     457              : 
     458        89484 :     fn wait_event_set(
     459        89484 :         &self,
     460        89484 :         _: &mut walproposer::bindings::WalProposer,
     461        89484 :         timeout_millis: i64,
     462        89484 :     ) -> walproposer::walproposer::WaitResult {
     463        89484 :         // TODO: handle multiple stages as part of the simulation (e.g. connect, start_wal_push, etc)
     464        89484 :         let mut conns = self.safekeepers.borrow_mut();
     465       207570 :         for conn in conns.iter_mut() {
     466       207570 :             if conn.socket.is_some() && conn.is_connecting {
     467        30433 :                 conn.is_connecting = false;
     468        30433 :                 debug!("wait_event_set, connecting to {}:{}", conn.host, conn.port);
     469        30433 :                 return walproposer::walproposer::WaitResult::Network(
     470        30433 :                     conn.raw_ptr,
     471        30433 :                     WL_SOCKET_READABLE | WL_SOCKET_WRITEABLE,
     472        30433 :                 );
     473       177137 :             }
     474       177137 :             if conn.socket.is_some() && conn.is_start_wal_push {
     475        30433 :                 conn.is_start_wal_push = false;
     476        30433 :                 debug!(
     477            0 :                     "wait_event_set, start wal push to {}:{}",
     478              :                     conn.host, conn.port
     479              :                 );
     480        30433 :                 return walproposer::walproposer::WaitResult::Network(
     481        30433 :                     conn.raw_ptr,
     482        30433 :                     WL_SOCKET_READABLE,
     483        30433 :                 );
     484       146704 :             }
     485              :         }
     486        28618 :         drop(conns);
     487        28618 : 
     488        28618 :         let res = self
     489        28618 :             .event_set
     490        28618 :             .borrow_mut()
     491        28618 :             .as_mut()
     492        28618 :             .unwrap()
     493        28618 :             .wait(timeout_millis);
     494        28618 : 
     495        28618 :         debug!(
     496            0 :             "wait_event_set, timeout_millis={}, res={:?}",
     497              :             timeout_millis, res,
     498              :         );
     499        19968 :         res
     500        80834 :     }
     501              : 
     502         9203 :     fn strong_random(&self, buf: &mut [u8]) -> bool {
     503         9203 :         debug!("strong_random");
     504         9203 :         buf.fill(0);
     505         9203 :         true
     506         9203 :     }
     507              : 
     508          403 :     fn finish_sync_safekeepers(&self, lsn: u64) {
     509          403 :         debug!("finish_sync_safekeepers, lsn={}", lsn);
     510          403 :         executor::exit(0, Lsn(lsn).to_string());
     511          403 :     }
     512              : 
     513        93442 :     fn log_internal(&self, _wp: &mut walproposer::bindings::WalProposer, level: Level, msg: &str) {
     514        93442 :         debug!("wp_log[{}] {}", level, msg);
     515        93442 :         if level == Level::Fatal || level == Level::Panic {
     516           74 :             if msg.contains("rejects our connection request with term") {
     517           37 :                 // collected quorum with lower term, then got rejected by next connected safekeeper
     518           37 :                 executor::exit(1, msg.to_owned());
     519           37 :             }
     520           74 :             if msg.contains("collected propEpochStartLsn") && msg.contains(", but basebackup LSN ")
     521            2 :             {
     522            2 :                 // sync-safekeepers collected wrong quorum, walproposer collected another quorum
     523            2 :                 executor::exit(1, msg.to_owned());
     524           72 :             }
     525           74 :             if msg.contains("failed to download WAL for logical replicaiton") {
     526           22 :                 // Recovery connection broken and recovery was failed
     527           22 :                 executor::exit(1, msg.to_owned());
     528           52 :             }
     529           74 :             if msg.contains("missing majority of votes, collected") {
     530           13 :                 // Voting bug when safekeeper disconnects after voting
     531           13 :                 executor::exit(1, msg.to_owned());
     532           61 :             }
     533           74 :             panic!("unknown FATAL error from walproposer: {}", msg);
     534        93368 :         }
     535        93368 :     }
     536              : 
     537          833 :     fn after_election(&self, wp: &mut walproposer::bindings::WalProposer) {
     538          833 :         let prop_lsn = wp.propEpochStartLsn;
     539          833 :         let prop_term = wp.propTerm;
     540          833 : 
     541          833 :         let mut prev_lsn: u64 = 0;
     542          833 :         let mut prev_term: u64 = 0;
     543          833 : 
     544          833 :         unsafe {
     545          833 :             let history = wp.propTermHistory.entries;
     546          833 :             let len = wp.propTermHistory.n_entries as usize;
     547          833 :             if len > 1 {
     548          569 :                 let entry = *history.wrapping_add(len - 2);
     549          569 :                 prev_lsn = entry.lsn;
     550          569 :                 prev_term = entry.term;
     551          569 :             }
     552              :         }
     553              : 
     554          833 :         let msg = format!(
     555          833 :             "prop_elected;{};{};{};{}",
     556          833 :             prop_lsn, prop_term, prev_lsn, prev_term
     557          833 :         );
     558          833 : 
     559          833 :         debug!(msg);
     560          833 :         self.os.log_event(msg);
     561          833 :     }
     562              : 
     563          307 :     fn get_redo_start_lsn(&self) -> u64 {
     564          307 :         debug!("get_redo_start_lsn -> {:?}", self.redo_start_lsn);
     565          307 :         self.redo_start_lsn.expect("redo_start_lsn is not set").0
     566          307 :     }
     567              : 
     568         2713 :     fn get_shmem_state(&self) -> *mut walproposer::bindings::WalproposerShmemState {
     569         2713 :         self.shmem.get()
     570         2713 :     }
     571              : 
     572          185 :     fn start_streaming(
     573          185 :         &self,
     574          185 :         startpos: u64,
     575          185 :         callback: &walproposer::walproposer::StreamingCallback,
     576          185 :     ) {
     577          185 :         let disk = &self.disk;
     578          185 :         let disk_lsn = disk.lock().flush_rec_ptr().0;
     579          185 :         debug!("start_streaming at {} (disk_lsn={})", startpos, disk_lsn);
     580          185 :         if startpos < disk_lsn {
     581           46 :             debug!("startpos < disk_lsn, it means we wrote some transaction even before streaming started");
     582          139 :         }
     583          185 :         assert!(startpos <= disk_lsn);
     584          185 :         let mut broadcasted = Lsn(startpos);
     585              : 
     586              :         loop {
     587          722 :             let available = disk.lock().flush_rec_ptr();
     588          722 :             assert!(available >= broadcasted);
     589          537 :             callback.broadcast(broadcasted, available);
     590          537 :             broadcasted = available;
     591          537 :             callback.poll();
     592              :         }
     593              :     }
     594              : 
     595         2324 :     fn process_safekeeper_feedback(
     596         2324 :         &mut self,
     597         2324 :         wp: &mut walproposer::bindings::WalProposer,
     598         2324 :         _sk: &mut walproposer::bindings::Safekeeper,
     599         2324 :     ) {
     600         2324 :         debug!("process_safekeeper_feedback, commit_lsn={}", wp.commitLsn);
     601         2324 :         if wp.commitLsn > self.last_logged_commit_lsn {
     602          538 :             self.os.log_event(format!("commit_lsn;{}", wp.commitLsn));
     603          538 :             self.last_logged_commit_lsn = wp.commitLsn;
     604         1786 :         }
     605         2324 :     }
     606              : 
     607          109 :     fn get_flush_rec_ptr(&self) -> u64 {
     608          109 :         let lsn = self.disk.lock().flush_rec_ptr();
     609          109 :         debug!("get_flush_rec_ptr: {}", lsn);
     610          109 :         lsn.0
     611          109 :     }
     612              : 
     613          833 :     fn recovery_download(
     614          833 :         &self,
     615          833 :         wp: &mut walproposer::bindings::WalProposer,
     616          833 :         sk: &mut walproposer::bindings::Safekeeper,
     617          833 :     ) -> bool {
     618          833 :         let mut startpos = wp.truncateLsn;
     619          833 :         let endpos = wp.propEpochStartLsn;
     620          833 : 
     621          833 :         if startpos == endpos {
     622          514 :             debug!("recovery_download: nothing to download");
     623          514 :             return true;
     624          319 :         }
     625          319 : 
     626          319 :         debug!("recovery_download from {} to {}", startpos, endpos,);
     627              : 
     628          319 :         let replication_prompt = format!(
     629          319 :             "START_REPLICATION {} {} {} {}",
     630          319 :             self.config.ttid.tenant_id, self.config.ttid.timeline_id, startpos, endpos,
     631          319 :         );
     632          319 :         let async_conn = self.get_conn(sk);
     633          319 : 
     634          319 :         let conn = self.os.open_tcp(async_conn.node_id);
     635          319 :         conn.send(desim::proto::AnyMessage::Bytes(replication_prompt.into()));
     636          319 : 
     637          319 :         let chan = conn.recv_chan();
     638          540 :         while startpos < endpos {
     639          319 :             let event = chan.recv();
     640          297 :             match event {
     641              :                 NetEvent::Closed => {
     642           22 :                     debug!("connection closed in recovery");
     643           22 :                     break;
     644              :                 }
     645          297 :                 NetEvent::Message(AnyMessage::Bytes(b)) => {
     646          297 :                     debug!("got recovery bytes from safekeeper");
     647          221 :                     self.disk.lock().write(startpos, &b);
     648          221 :                     startpos += b.len() as u64;
     649              :                 }
     650            0 :                 NetEvent::Message(_) => unreachable!(),
     651              :             }
     652              :         }
     653              : 
     654          243 :         debug!("recovery finished at {}", startpos);
     655              : 
     656          243 :         startpos == endpos
     657          757 :     }
     658              : 
     659        11139 :     fn conn_finish(&self, sk: &mut walproposer::bindings::Safekeeper) {
     660        11139 :         let mut conn = self.get_conn(sk);
     661        11139 :         debug!("conn_finish to {}", conn.node_id);
     662        11139 :         if let Some(socket) = conn.socket.as_mut() {
     663         3689 :             socket.close();
     664         7450 :         } else {
     665         7450 :             // connection is already closed
     666         7450 :         }
     667        11139 :         conn.socket = None;
     668        11139 :     }
     669              : 
     670        10898 :     fn conn_error_message(&self, _sk: &mut walproposer::bindings::Safekeeper) -> String {
     671        10898 :         "connection is closed, probably".into()
     672        10898 :     }
     673              : }
        

Generated by: LCOV version 2.1-beta