LCOV - code coverage report
Current view: top level - safekeeper/tests/walproposer_sim - walproposer_api.rs (source / functions) Coverage Total Hit
Test: 7179b4db0d82ca8088cc95c44c4be4232078509c.info Lines: 95.5 % 486 464
Test Date: 2024-11-21 16:46:58 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        25245 :     pub fn new(host: String, port: String) -> Self {
      44        25245 :         // port number is the same as NodeId
      45        25245 :         let port_num = port.parse::<u32>().unwrap();
      46        25245 :         Self {
      47        25245 :             host,
      48        25245 :             port,
      49        25245 :             node_id: port_num,
      50        25245 :             socket: None,
      51        25245 :             is_connecting: false,
      52        25245 :             is_start_wal_push: false,
      53        25245 :             raw_ptr: std::ptr::null_mut(),
      54        25245 :         }
      55        25245 :     }
      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         8415 :     pub fn new(os: NodeOs) -> Self {
      72         8415 :         let node_events = os.node_events();
      73         8415 :         Self {
      74         8415 :             os,
      75         8415 :             chans: vec![Box::new(node_events)],
      76         8415 :             sk_ptrs: vec![std::ptr::null_mut()],
      77         8415 :             masks: vec![WL_SOCKET_READABLE],
      78         8415 :         }
      79         8415 :     }
      80              : 
      81              :     /// Leaves all readable channels at the beginning of the array.
      82        26647 :     fn sort_readable(&mut self) -> usize {
      83        26647 :         let mut cnt = 1;
      84        61901 :         for i in 1..self.chans.len() {
      85        61901 :             if self.masks[i] & WL_SOCKET_READABLE != 0 {
      86        61901 :                 self.chans.swap(i, cnt);
      87        61901 :                 self.sk_ptrs.swap(i, cnt);
      88        61901 :                 self.masks.swap(i, cnt);
      89        61901 :                 cnt += 1;
      90        61901 :             }
      91              :         }
      92        26647 :         cnt
      93        26647 :     }
      94              : 
      95        62046 :     fn update_event_set(&mut self, conn: &SafekeeperConn, event_mask: u32) {
      96        62046 :         let index = self
      97        62046 :             .sk_ptrs
      98        62046 :             .iter()
      99       234358 :             .position(|&ptr| ptr == conn.raw_ptr)
     100        62046 :             .expect("safekeeper should exist in event set");
     101        62046 :         self.masks[index] = event_mask;
     102        62046 :     }
     103              : 
     104        56290 :     fn add_safekeeper(&mut self, sk: &SafekeeperConn, event_mask: u32) {
     105       136183 :         for ptr in self.sk_ptrs.iter() {
     106       136183 :             assert!(*ptr != sk.raw_ptr);
     107              :         }
     108              : 
     109        56290 :         self.chans.push(Box::new(
     110        56290 :             sk.socket
     111        56290 :                 .as_ref()
     112        56290 :                 .expect("socket should not be closed")
     113        56290 :                 .recv_chan(),
     114        56290 :         ));
     115        56290 :         self.sk_ptrs.push(sk.raw_ptr);
     116        56290 :         self.masks.push(event_mask);
     117        56290 :     }
     118              : 
     119        36063 :     fn remove_safekeeper(&mut self, sk: &SafekeeperConn) {
     120        76525 :         let index = self.sk_ptrs.iter().position(|&ptr| ptr == sk.raw_ptr);
     121        36063 :         if index.is_none() {
     122            3 :             debug!("remove_safekeeper: sk={:?} not found", sk.raw_ptr);
     123            3 :             return;
     124        36060 :         }
     125        36060 :         let index = index.unwrap();
     126        36060 : 
     127        36060 :         self.chans.remove(index);
     128        36060 :         self.sk_ptrs.remove(index);
     129        36060 :         self.masks.remove(index);
     130        36060 : 
     131        36060 :         // to simulate the actual behaviour
     132        36060 :         self.refresh_event_set();
     133        36063 :     }
     134              : 
     135              :     /// Updates all masks to match the result of a SafekeeperStateDesiredEvents.
     136        41539 :     fn refresh_event_set(&mut self) {
     137       116550 :         for (i, mask) in self.masks.iter_mut().enumerate() {
     138       116550 :             if i == 0 {
     139        41539 :                 continue;
     140        75011 :             }
     141        75011 : 
     142        75011 :             let mut mask_sk: u32 = 0;
     143        75011 :             let mut mask_nwr: u32 = 0;
     144        75011 :             unsafe { SafekeeperStateDesiredEvents(self.sk_ptrs[i], &mut mask_sk, &mut mask_nwr) };
     145        75011 : 
     146        75011 :             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        75011 :             }
     153              :         }
     154        41539 :     }
     155              : 
     156              :     /// Wait for events on all channels.
     157        26647 :     fn wait(&mut self, timeout_millis: i64) -> walproposer::walproposer::WaitResult {
     158              :         // all channels are always writeable
     159        88548 :         for (i, mask) in self.masks.iter().enumerate() {
     160        88548 :             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        88548 :             }
     166              :         }
     167              : 
     168        26647 :         let cnt = self.sort_readable();
     169        26647 : 
     170        26647 :         let slice = &self.chans[0..cnt];
     171        26647 :         match executor::epoll_chans(slice, timeout_millis) {
     172        10622 :             None => walproposer::walproposer::WaitResult::Timeout,
     173              :             Some(0) => {
     174          470 :                 let msg = self.os.node_events().must_recv();
     175          470 :                 match msg {
     176          470 :                     NodeEvent::Internal(AnyMessage::Just32(0)) => {
     177          470 :                         // got a notification about new WAL available
     178          470 :                     }
     179            0 :                     NodeEvent::Internal(_) => unreachable!(),
     180            0 :                     NodeEvent::Accept(_) => unreachable!(),
     181              :                 }
     182          470 :                 walproposer::walproposer::WaitResult::Latch
     183              :             }
     184        15555 :             Some(index) => walproposer::walproposer::WaitResult::Network(
     185        15555 :                 self.sk_ptrs[index],
     186        15555 :                 WL_SOCKET_READABLE,
     187        15555 :             ),
     188              :         }
     189        26647 :     }
     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         8415 :     pub fn new(args: Args) -> Self {
     213         8415 :         // initialize connection state for each safekeeper
     214         8415 :         let sk_conns = args
     215         8415 :             .config
     216         8415 :             .safekeepers_list
     217         8415 :             .iter()
     218        25245 :             .map(|s| {
     219        25245 :                 SafekeeperConn::new(
     220        25245 :                     s.split(':').next().unwrap().to_string(),
     221        25245 :                     s.split(':').nth(1).unwrap().to_string(),
     222        25245 :                 )
     223        25245 :             })
     224         8415 :             .collect::<Vec<_>>();
     225         8415 : 
     226         8415 :         Self {
     227         8415 :             os: args.os,
     228         8415 :             safekeepers: RefCell::new(sk_conns),
     229         8415 :             disk: args.disk,
     230         8415 :             redo_start_lsn: args.redo_start_lsn,
     231         8415 :             last_logged_commit_lsn: 0,
     232         8415 :             shmem: UnsafeCell::new(walproposer::api_bindings::empty_shmem()),
     233         8415 :             config: args.config,
     234         8415 :             event_set: RefCell::new(None),
     235         8415 :         }
     236         8415 :     }
     237              : 
     238              :     /// Get SafekeeperConn for the given Safekeeper.
     239       278324 :     fn get_conn(&self, sk: &mut walproposer::bindings::Safekeeper) -> RefMut<'_, SafekeeperConn> {
     240       278324 :         let sk_port = unsafe { CStr::from_ptr(sk.port).to_str().unwrap() };
     241       278324 :         let state = self.safekeepers.borrow_mut();
     242       278324 :         RefMut::map(state, |v| {
     243       278324 :             v.iter_mut()
     244       555545 :                 .find(|conn| conn.port == sk_port)
     245       278324 :                 .expect("safekeeper conn not found by port")
     246       278324 :         })
     247       278324 :     }
     248              : }
     249              : 
     250              : impl ApiImpl for SimulationApi {
     251       297387 :     fn get_current_timestamp(&self) -> i64 {
     252       297387 :         debug!("get_current_timestamp");
     253              :         // PG TimestampTZ is microseconds, but simulation unit is assumed to be
     254              :         // milliseconds, so add 10^3
     255       297387 :         self.os.now() as i64 * 1000
     256       297387 :     }
     257              : 
     258          816 :     fn update_donor(&self, donor: &mut walproposer::bindings::Safekeeper, donor_lsn: u64) {
     259          816 :         let mut shmem = unsafe { *self.get_shmem_state() };
     260          816 :         shmem.propEpochStartLsn.value = donor_lsn;
     261          816 :         shmem.donor_conninfo = donor.conninfo;
     262          816 :     }
     263              : 
     264        31249 :     fn conn_status(
     265        31249 :         &self,
     266        31249 :         _: &mut walproposer::bindings::Safekeeper,
     267        31249 :     ) -> walproposer::bindings::WalProposerConnStatusType {
     268        31249 :         debug!("conn_status");
     269              :         // break the connection with a 10% chance
     270        31249 :         if self.os.random(100) < 10 {
     271         3104 :             walproposer::bindings::WalProposerConnStatusType_WP_CONNECTION_BAD
     272              :         } else {
     273        28145 :             walproposer::bindings::WalProposerConnStatusType_WP_CONNECTION_OK
     274              :         }
     275        31249 :     }
     276              : 
     277        31249 :     fn conn_connect_start(&self, sk: &mut walproposer::bindings::Safekeeper) {
     278        31249 :         debug!("conn_connect_start");
     279        31249 :         let mut conn = self.get_conn(sk);
     280        31249 : 
     281        31249 :         assert!(conn.socket.is_none());
     282        31249 :         let socket = self.os.open_tcp(conn.node_id);
     283        31249 :         conn.socket = Some(socket);
     284        31249 :         conn.raw_ptr = sk;
     285        31249 :         conn.is_connecting = true;
     286        31249 :     }
     287              : 
     288        28145 :     fn conn_connect_poll(
     289        28145 :         &self,
     290        28145 :         _: &mut walproposer::bindings::Safekeeper,
     291        28145 :     ) -> walproposer::bindings::WalProposerConnectPollStatusType {
     292        28145 :         debug!("conn_connect_poll");
     293              :         // TODO: break the connection here
     294        28145 :         walproposer::bindings::WalProposerConnectPollStatusType_WP_CONN_POLLING_OK
     295        28145 :     }
     296              : 
     297        28145 :     fn conn_send_query(&self, sk: &mut walproposer::bindings::Safekeeper, query: &str) -> bool {
     298        28145 :         debug!("conn_send_query: {}", query);
     299        28145 :         self.get_conn(sk).is_start_wal_push = true;
     300        28145 :         true
     301        28145 :     }
     302              : 
     303        28145 :     fn conn_get_query_result(
     304        28145 :         &self,
     305        28145 :         _: &mut walproposer::bindings::Safekeeper,
     306        28145 :     ) -> walproposer::bindings::WalProposerExecStatusType {
     307        28145 :         debug!("conn_get_query_result");
     308              :         // TODO: break the connection here
     309        28145 :         walproposer::bindings::WalProposerExecStatusType_WP_EXEC_SUCCESS_COPYBOTH
     310        28145 :     }
     311              : 
     312        17310 :     fn conn_async_read(
     313        17310 :         &self,
     314        17310 :         sk: &mut walproposer::bindings::Safekeeper,
     315        17310 :         vec: &mut Vec<u8>,
     316        17310 :     ) -> walproposer::bindings::PGAsyncReadResult {
     317        17310 :         debug!("conn_async_read");
     318        17310 :         let mut conn = self.get_conn(sk);
     319              : 
     320        17310 :         let socket = if let Some(socket) = conn.socket.as_mut() {
     321        17310 :             socket
     322              :         } else {
     323              :             // socket is already closed
     324            0 :             return walproposer::bindings::PGAsyncReadResult_PG_ASYNC_READ_FAIL;
     325              :         };
     326              : 
     327        17310 :         let msg = socket.recv_chan().try_recv();
     328              : 
     329        15428 :         match msg {
     330              :             None => {
     331              :                 // no message is ready
     332         1882 :                 walproposer::bindings::PGAsyncReadResult_PG_ASYNC_READ_TRY_AGAIN
     333              :             }
     334              :             Some(NetEvent::Closed) => {
     335              :                 // connection is closed
     336         7692 :                 debug!("conn_async_read: connection is closed");
     337         7692 :                 conn.socket = None;
     338         7692 :                 walproposer::bindings::PGAsyncReadResult_PG_ASYNC_READ_FAIL
     339              :             }
     340         7736 :             Some(NetEvent::Message(msg)) => {
     341              :                 // got a message
     342         7736 :                 let b = match msg {
     343         7736 :                     desim::proto::AnyMessage::Bytes(b) => b,
     344            0 :                     _ => unreachable!(),
     345              :                 };
     346         7736 :                 vec.extend_from_slice(&b);
     347         7736 :                 walproposer::bindings::PGAsyncReadResult_PG_ASYNC_READ_SUCCESS
     348              :             }
     349              :         }
     350        17310 :     }
     351              : 
     352        31475 :     fn conn_blocking_write(&self, sk: &mut walproposer::bindings::Safekeeper, buf: &[u8]) -> bool {
     353        31475 :         let mut conn = self.get_conn(sk);
     354        31475 :         debug!("conn_blocking_write to {}: {:?}", conn.node_id, buf);
     355        31475 :         let socket = conn.socket.as_mut().unwrap();
     356        31475 :         socket.send(desim::proto::AnyMessage::Bytes(Bytes::copy_from_slice(buf)));
     357        31475 :         true
     358        31475 :     }
     359              : 
     360         4464 :     fn conn_async_write(
     361         4464 :         &self,
     362         4464 :         sk: &mut walproposer::bindings::Safekeeper,
     363         4464 :         buf: &[u8],
     364         4464 :     ) -> walproposer::bindings::PGAsyncWriteResult {
     365         4464 :         let mut conn = self.get_conn(sk);
     366         4464 :         debug!("conn_async_write to {}: {:?}", conn.node_id, buf);
     367         4464 :         if let Some(socket) = conn.socket.as_mut() {
     368         4464 :             socket.send(desim::proto::AnyMessage::Bytes(Bytes::copy_from_slice(buf)));
     369         4464 :         } 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         4464 :         walproposer::bindings::PGAsyncWriteResult_PG_ASYNC_WRITE_SUCCESS
     375         4464 :     }
     376              : 
     377          867 :     fn wal_reader_allocate(&self, _: &mut walproposer::bindings::Safekeeper) -> NeonWALReadResult {
     378          867 :         debug!("wal_reader_allocate");
     379          867 :         walproposer::bindings::NeonWALReadResult_NEON_WALREAD_SUCCESS
     380          867 :     }
     381              : 
     382          864 :     fn wal_read(
     383          864 :         &self,
     384          864 :         _sk: &mut walproposer::bindings::Safekeeper,
     385          864 :         buf: &mut [u8],
     386          864 :         startpos: u64,
     387          864 :     ) -> NeonWALReadResult {
     388          864 :         self.disk.lock().read(startpos, buf);
     389          864 :         walproposer::bindings::NeonWALReadResult_NEON_WALREAD_SUCCESS
     390          864 :     }
     391              : 
     392         8415 :     fn init_event_set(&self, _: &mut walproposer::bindings::WalProposer) {
     393         8415 :         debug!("init_event_set");
     394         8415 :         let new_event_set = EventSet::new(self.os.clone());
     395         8415 :         let old_event_set = self.event_set.replace(Some(new_event_set));
     396         8415 :         assert!(old_event_set.is_none());
     397         8415 :     }
     398              : 
     399        62046 :     fn update_event_set(&self, sk: &mut walproposer::bindings::Safekeeper, event_mask: u32) {
     400        62046 :         debug!(
     401            0 :             "update_event_set, sk={:?}, events_mask={:#b}",
     402            0 :             sk as *mut walproposer::bindings::Safekeeper, event_mask
     403              :         );
     404        62046 :         let conn = self.get_conn(sk);
     405        62046 : 
     406        62046 :         self.event_set
     407        62046 :             .borrow_mut()
     408        62046 :             .as_mut()
     409        62046 :             .unwrap()
     410        62046 :             .update_event_set(&conn, event_mask);
     411        62046 :     }
     412              : 
     413        56290 :     fn add_safekeeper_event_set(
     414        56290 :         &self,
     415        56290 :         sk: &mut walproposer::bindings::Safekeeper,
     416        56290 :         event_mask: u32,
     417        56290 :     ) {
     418        56290 :         debug!(
     419            0 :             "add_safekeeper_event_set, sk={:?}, events_mask={:#b}",
     420            0 :             sk as *mut walproposer::bindings::Safekeeper, event_mask
     421              :         );
     422              : 
     423        56290 :         self.event_set
     424        56290 :             .borrow_mut()
     425        56290 :             .as_mut()
     426        56290 :             .unwrap()
     427        56290 :             .add_safekeeper(&self.get_conn(sk), event_mask);
     428        56290 :     }
     429              : 
     430        36063 :     fn rm_safekeeper_event_set(&self, sk: &mut walproposer::bindings::Safekeeper) {
     431        36063 :         debug!(
     432            0 :             "rm_safekeeper_event_set, sk={:?}",
     433            0 :             sk as *mut walproposer::bindings::Safekeeper,
     434              :         );
     435              : 
     436        36063 :         self.event_set
     437        36063 :             .borrow_mut()
     438        36063 :             .as_mut()
     439        36063 :             .unwrap()
     440        36063 :             .remove_safekeeper(&self.get_conn(sk));
     441        36063 :     }
     442              : 
     443         5479 :     fn active_state_update_event_set(&self, sk: &mut walproposer::bindings::Safekeeper) {
     444         5479 :         debug!("active_state_update_event_set");
     445              : 
     446         5479 :         assert!(sk.state == walproposer::bindings::SafekeeperState_SS_ACTIVE);
     447         5479 :         self.event_set
     448         5479 :             .borrow_mut()
     449         5479 :             .as_mut()
     450         5479 :             .unwrap()
     451         5479 :             .refresh_event_set();
     452         5479 :     }
     453              : 
     454        15024 :     fn wal_reader_events(&self, _sk: &mut walproposer::bindings::Safekeeper) -> u32 {
     455        15024 :         0
     456        15024 :     }
     457              : 
     458        82937 :     fn wait_event_set(
     459        82937 :         &self,
     460        82937 :         _: &mut walproposer::bindings::WalProposer,
     461        82937 :         timeout_millis: i64,
     462        82937 :     ) -> walproposer::walproposer::WaitResult {
     463        82937 :         // TODO: handle multiple stages as part of the simulation (e.g. connect, start_wal_push, etc)
     464        82937 :         let mut conns = self.safekeepers.borrow_mut();
     465       192539 :         for conn in conns.iter_mut() {
     466       192539 :             if conn.socket.is_some() && conn.is_connecting {
     467        28145 :                 conn.is_connecting = false;
     468        28145 :                 debug!("wait_event_set, connecting to {}:{}", conn.host, conn.port);
     469        28145 :                 return walproposer::walproposer::WaitResult::Network(
     470        28145 :                     conn.raw_ptr,
     471        28145 :                     WL_SOCKET_READABLE | WL_SOCKET_WRITEABLE,
     472        28145 :                 );
     473       164394 :             }
     474       164394 :             if conn.socket.is_some() && conn.is_start_wal_push {
     475        28145 :                 conn.is_start_wal_push = false;
     476        28145 :                 debug!(
     477            0 :                     "wait_event_set, start wal push to {}:{}",
     478              :                     conn.host, conn.port
     479              :                 );
     480        28145 :                 return walproposer::walproposer::WaitResult::Network(
     481        28145 :                     conn.raw_ptr,
     482        28145 :                     WL_SOCKET_READABLE,
     483        28145 :                 );
     484       136249 :             }
     485              :         }
     486        26647 :         drop(conns);
     487        26647 : 
     488        26647 :         let res = self
     489        26647 :             .event_set
     490        26647 :             .borrow_mut()
     491        26647 :             .as_mut()
     492        26647 :             .unwrap()
     493        26647 :             .wait(timeout_millis);
     494        26647 : 
     495        26647 :         debug!(
     496            0 :             "wait_event_set, timeout_millis={}, res={:?}",
     497              :             timeout_millis, res,
     498              :         );
     499        18693 :         res
     500        74983 :     }
     501              : 
     502         8415 :     fn strong_random(&self, buf: &mut [u8]) -> bool {
     503         8415 :         debug!("strong_random");
     504         8415 :         buf.fill(0);
     505         8415 :         true
     506         8415 :     }
     507              : 
     508          325 :     fn finish_sync_safekeepers(&self, lsn: u64) {
     509          325 :         debug!("finish_sync_safekeepers, lsn={}", lsn);
     510          325 :         executor::exit(0, Lsn(lsn).to_string());
     511          325 :     }
     512              : 
     513        85277 :     fn log_internal(&self, _wp: &mut walproposer::bindings::WalProposer, level: Level, msg: &str) {
     514        85277 :         debug!("wp_log[{}] {}", level, msg);
     515        85277 :         if level == Level::Fatal || level == Level::Panic {
     516           66 :             if msg.contains("rejects our connection request with term") {
     517           35 :                 // collected quorum with lower term, then got rejected by next connected safekeeper
     518           35 :                 executor::exit(1, msg.to_owned());
     519           35 :             }
     520           66 :             if msg.contains("collected propEpochStartLsn") && msg.contains(", but basebackup LSN ")
     521            7 :             {
     522            7 :                 // sync-safekeepers collected wrong quorum, walproposer collected another quorum
     523            7 :                 executor::exit(1, msg.to_owned());
     524           59 :             }
     525           66 :             if msg.contains("failed to download WAL for logical replicaiton") {
     526           17 :                 // Recovery connection broken and recovery was failed
     527           17 :                 executor::exit(1, msg.to_owned());
     528           49 :             }
     529           66 :             if msg.contains("missing majority of votes, collected") {
     530            7 :                 // Voting bug when safekeeper disconnects after voting
     531            7 :                 executor::exit(1, msg.to_owned());
     532           59 :             }
     533           66 :             panic!("unknown FATAL error from walproposer: {}", msg);
     534        85211 :         }
     535        85211 :     }
     536              : 
     537          660 :     fn after_election(&self, wp: &mut walproposer::bindings::WalProposer) {
     538          660 :         let prop_lsn = wp.propEpochStartLsn;
     539          660 :         let prop_term = wp.propTerm;
     540          660 : 
     541          660 :         let mut prev_lsn: u64 = 0;
     542          660 :         let mut prev_term: u64 = 0;
     543          660 : 
     544          660 :         unsafe {
     545          660 :             let history = wp.propTermHistory.entries;
     546          660 :             let len = wp.propTermHistory.n_entries as usize;
     547          660 :             if len > 1 {
     548          433 :                 let entry = *history.wrapping_add(len - 2);
     549          433 :                 prev_lsn = entry.lsn;
     550          433 :                 prev_term = entry.term;
     551          433 :             }
     552              :         }
     553              : 
     554          660 :         let msg = format!(
     555          660 :             "prop_elected;{};{};{};{}",
     556          660 :             prop_lsn, prop_term, prev_lsn, prev_term
     557          660 :         );
     558          660 : 
     559          660 :         debug!(msg);
     560          660 :         self.os.log_event(msg);
     561          660 :     }
     562              : 
     563          263 :     fn get_redo_start_lsn(&self) -> u64 {
     564          263 :         debug!("get_redo_start_lsn -> {:?}", self.redo_start_lsn);
     565          263 :         self.redo_start_lsn.expect("redo_start_lsn is not set").0
     566          263 :     }
     567              : 
     568         2150 :     fn get_shmem_state(&self) -> *mut walproposer::bindings::WalproposerShmemState {
     569         2150 :         self.shmem.get()
     570         2150 :     }
     571              : 
     572          143 :     fn start_streaming(
     573          143 :         &self,
     574          143 :         startpos: u64,
     575          143 :         callback: &walproposer::walproposer::StreamingCallback,
     576          143 :     ) {
     577          143 :         let disk = &self.disk;
     578          143 :         let disk_lsn = disk.lock().flush_rec_ptr().0;
     579          143 :         debug!("start_streaming at {} (disk_lsn={})", startpos, disk_lsn);
     580          143 :         if startpos < disk_lsn {
     581           48 :             debug!("startpos < disk_lsn, it means we wrote some transaction even before streaming started");
     582           95 :         }
     583          143 :         assert!(startpos <= disk_lsn);
     584          143 :         let mut broadcasted = Lsn(startpos);
     585              : 
     586              :         loop {
     587          592 :             let available = disk.lock().flush_rec_ptr();
     588          592 :             assert!(available >= broadcasted);
     589          449 :             callback.broadcast(broadcasted, available);
     590          449 :             broadcasted = available;
     591          449 :             callback.poll();
     592              :         }
     593              :     }
     594              : 
     595         2039 :     fn process_safekeeper_feedback(
     596         2039 :         &mut self,
     597         2039 :         wp: &mut walproposer::bindings::WalProposer,
     598         2039 :         _sk: &mut walproposer::bindings::Safekeeper,
     599         2039 :     ) {
     600         2039 :         debug!("process_safekeeper_feedback, commit_lsn={}", wp.commitLsn);
     601         2039 :         if wp.commitLsn > self.last_logged_commit_lsn {
     602          483 :             self.os.log_event(format!("commit_lsn;{}", wp.commitLsn));
     603          483 :             self.last_logged_commit_lsn = wp.commitLsn;
     604         1556 :         }
     605         2039 :     }
     606              : 
     607           85 :     fn get_flush_rec_ptr(&self) -> u64 {
     608           85 :         let lsn = self.disk.lock().flush_rec_ptr();
     609           85 :         debug!("get_flush_rec_ptr: {}", lsn);
     610           85 :         lsn.0
     611           85 :     }
     612              : 
     613          660 :     fn recovery_download(
     614          660 :         &self,
     615          660 :         wp: &mut walproposer::bindings::WalProposer,
     616          660 :         sk: &mut walproposer::bindings::Safekeeper,
     617          660 :     ) -> bool {
     618          660 :         let mut startpos = wp.truncateLsn;
     619          660 :         let endpos = wp.propEpochStartLsn;
     620          660 : 
     621          660 :         if startpos == endpos {
     622          400 :             debug!("recovery_download: nothing to download");
     623          400 :             return true;
     624          260 :         }
     625          260 : 
     626          260 :         debug!("recovery_download from {} to {}", startpos, endpos,);
     627              : 
     628          260 :         let replication_prompt = format!(
     629          260 :             "START_REPLICATION {} {} {} {}",
     630          260 :             self.config.ttid.tenant_id, self.config.ttid.timeline_id, startpos, endpos,
     631          260 :         );
     632          260 :         let async_conn = self.get_conn(sk);
     633          260 : 
     634          260 :         let conn = self.os.open_tcp(async_conn.node_id);
     635          260 :         conn.send(desim::proto::AnyMessage::Bytes(replication_prompt.into()));
     636          260 : 
     637          260 :         let chan = conn.recv_chan();
     638          433 :         while startpos < endpos {
     639          260 :             let event = chan.recv();
     640          243 :             match event {
     641              :                 NetEvent::Closed => {
     642           17 :                     debug!("connection closed in recovery");
     643           17 :                     break;
     644              :                 }
     645          243 :                 NetEvent::Message(AnyMessage::Bytes(b)) => {
     646          243 :                     debug!("got recovery bytes from safekeeper");
     647          173 :                     self.disk.lock().write(startpos, &b);
     648          173 :                     startpos += b.len() as u64;
     649              :                 }
     650            0 :                 NetEvent::Message(_) => unreachable!(),
     651              :             }
     652              :         }
     653              : 
     654          190 :         debug!("recovery finished at {}", startpos);
     655              : 
     656          190 :         startpos == endpos
     657          590 :     }
     658              : 
     659        11022 :     fn conn_finish(&self, sk: &mut walproposer::bindings::Safekeeper) {
     660        11022 :         let mut conn = self.get_conn(sk);
     661        11022 :         debug!("conn_finish to {}", conn.node_id);
     662        11022 :         if let Some(socket) = conn.socket.as_mut() {
     663         3327 :             socket.close();
     664         7695 :         } else {
     665         7695 :             // connection is already closed
     666         7695 :         }
     667        11022 :         conn.socket = None;
     668        11022 :     }
     669              : 
     670        10796 :     fn conn_error_message(&self, _sk: &mut walproposer::bindings::Safekeeper) -> String {
     671        10796 :         "connection is closed, probably".into()
     672        10796 :     }
     673              : }
        

Generated by: LCOV version 2.1-beta