LCOV - code coverage report
Current view: top level - libs/walproposer/src - api_bindings.rs (source / functions) Coverage Total Hit
Test: 792183ae0ef4f1f8b22e9ac7e8748740ab73f873.info Lines: 96.3 % 401 386
Test Date: 2024-06-26 01:04:33 Functions: 97.3 % 37 36

            Line data    Source code
       1              : //! A C-Rust shim: defines implementation of C walproposer API, assuming wp
       2              : //! callback_data stores Box to some Rust implementation.
       3              : 
       4              : #![allow(dead_code)]
       5              : 
       6              : use std::ffi::CStr;
       7              : use std::ffi::CString;
       8              : 
       9              : use crate::bindings::uint32;
      10              : use crate::bindings::walproposer_api;
      11              : use crate::bindings::NeonWALReadResult;
      12              : use crate::bindings::PGAsyncReadResult;
      13              : use crate::bindings::PGAsyncWriteResult;
      14              : use crate::bindings::Safekeeper;
      15              : use crate::bindings::Size;
      16              : use crate::bindings::StringInfoData;
      17              : use crate::bindings::TimestampTz;
      18              : use crate::bindings::WalProposer;
      19              : use crate::bindings::WalProposerConnStatusType;
      20              : use crate::bindings::WalProposerConnectPollStatusType;
      21              : use crate::bindings::WalProposerExecStatusType;
      22              : use crate::bindings::WalproposerShmemState;
      23              : use crate::bindings::XLogRecPtr;
      24              : use crate::walproposer::ApiImpl;
      25              : use crate::walproposer::StreamingCallback;
      26              : use crate::walproposer::WaitResult;
      27              : 
      28        10986 : extern "C" fn get_shmem_state(wp: *mut WalProposer) -> *mut WalproposerShmemState {
      29        10986 :     unsafe {
      30        10986 :         let callback_data = (*(*wp).config).callback_data;
      31        10986 :         let api = callback_data as *mut Box<dyn ApiImpl>;
      32        10986 :         (*api).get_shmem_state()
      33        10986 :     }
      34        10986 : }
      35              : 
      36         1218 : extern "C" fn start_streaming(wp: *mut WalProposer, startpos: XLogRecPtr) {
      37         1218 :     unsafe {
      38         1218 :         let callback_data = (*(*wp).config).callback_data;
      39         1218 :         let api = callback_data as *mut Box<dyn ApiImpl>;
      40         1218 :         let callback = StreamingCallback::new(wp);
      41         1218 :         (*api).start_streaming(startpos, &callback);
      42         1218 :     }
      43         1218 : }
      44              : 
      45          789 : extern "C" fn get_flush_rec_ptr(wp: *mut WalProposer) -> XLogRecPtr {
      46          789 :     unsafe {
      47          789 :         let callback_data = (*(*wp).config).callback_data;
      48          789 :         let api = callback_data as *mut Box<dyn ApiImpl>;
      49          789 :         (*api).get_flush_rec_ptr()
      50          789 :     }
      51          789 : }
      52              : 
      53         6822 : extern "C" fn update_donor(wp: *mut WalProposer, donor: *mut Safekeeper, donor_lsn: XLogRecPtr) {
      54         6822 :     unsafe {
      55         6822 :         let callback_data = (*(*wp).config).callback_data;
      56         6822 :         let api = callback_data as *mut Box<dyn ApiImpl>;
      57         6822 :         (*api).update_donor(&mut (*donor), donor_lsn)
      58         6822 :     }
      59         6822 : }
      60              : 
      61      2492614 : extern "C" fn get_current_timestamp(wp: *mut WalProposer) -> TimestampTz {
      62      2492614 :     unsafe {
      63      2492614 :         let callback_data = (*(*wp).config).callback_data;
      64      2492614 :         let api = callback_data as *mut Box<dyn ApiImpl>;
      65      2492614 :         (*api).get_current_timestamp()
      66      2492614 :     }
      67      2492614 : }
      68              : 
      69        85734 : extern "C" fn conn_error_message(sk: *mut Safekeeper) -> *mut ::std::os::raw::c_char {
      70        85734 :     unsafe {
      71        85734 :         let callback_data = (*(*(*sk).wp).config).callback_data;
      72        85734 :         let api = callback_data as *mut Box<dyn ApiImpl>;
      73        85734 :         let msg = (*api).conn_error_message(&mut (*sk));
      74        85734 :         let msg = CString::new(msg).unwrap();
      75        85734 :         // TODO: fix leaking error message
      76        85734 :         msg.into_raw()
      77        85734 :     }
      78        85734 : }
      79              : 
      80       266702 : extern "C" fn conn_status(sk: *mut Safekeeper) -> WalProposerConnStatusType {
      81       266702 :     unsafe {
      82       266702 :         let callback_data = (*(*(*sk).wp).config).callback_data;
      83       266702 :         let api = callback_data as *mut Box<dyn ApiImpl>;
      84       266702 :         (*api).conn_status(&mut (*sk))
      85       266702 :     }
      86       266702 : }
      87              : 
      88       266702 : extern "C" fn conn_connect_start(sk: *mut Safekeeper) {
      89       266702 :     unsafe {
      90       266702 :         let callback_data = (*(*(*sk).wp).config).callback_data;
      91       266702 :         let api = callback_data as *mut Box<dyn ApiImpl>;
      92       266702 :         (*api).conn_connect_start(&mut (*sk))
      93       266702 :     }
      94       266702 : }
      95              : 
      96       239824 : extern "C" fn conn_connect_poll(sk: *mut Safekeeper) -> WalProposerConnectPollStatusType {
      97       239824 :     unsafe {
      98       239824 :         let callback_data = (*(*(*sk).wp).config).callback_data;
      99       239824 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     100       239824 :         (*api).conn_connect_poll(&mut (*sk))
     101       239824 :     }
     102       239824 : }
     103              : 
     104       239824 : extern "C" fn conn_send_query(sk: *mut Safekeeper, query: *mut ::std::os::raw::c_char) -> bool {
     105       239824 :     let query = unsafe { CStr::from_ptr(query) };
     106       239824 :     let query = query.to_str().unwrap();
     107       239824 : 
     108       239824 :     unsafe {
     109       239824 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     110       239824 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     111       239824 :         (*api).conn_send_query(&mut (*sk), query)
     112       239824 :     }
     113       239824 : }
     114              : 
     115       239824 : extern "C" fn conn_get_query_result(sk: *mut Safekeeper) -> WalProposerExecStatusType {
     116       239824 :     unsafe {
     117       239824 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     118       239824 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     119       239824 :         (*api).conn_get_query_result(&mut (*sk))
     120       239824 :     }
     121       239824 : }
     122              : 
     123            0 : extern "C" fn conn_flush(sk: *mut Safekeeper) -> ::std::os::raw::c_int {
     124            0 :     unsafe {
     125            0 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     126            0 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     127            0 :         (*api).conn_flush(&mut (*sk))
     128            0 :     }
     129            0 : }
     130              : 
     131        87735 : extern "C" fn conn_finish(sk: *mut Safekeeper) {
     132        87735 :     unsafe {
     133        87735 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     134        87735 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     135        87735 :         (*api).conn_finish(&mut (*sk))
     136        87735 :     }
     137        87735 : }
     138              : 
     139       131958 : extern "C" fn conn_async_read(
     140       131958 :     sk: *mut Safekeeper,
     141       131958 :     buf: *mut *mut ::std::os::raw::c_char,
     142       131958 :     amount: *mut ::std::os::raw::c_int,
     143       131958 : ) -> PGAsyncReadResult {
     144       131958 :     unsafe {
     145       131958 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     146       131958 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     147       131958 : 
     148       131958 :         // This function has guarantee that returned buf will be valid until
     149       131958 :         // the next call. So we can store a Vec in each Safekeeper and reuse
     150       131958 :         // it on the next call.
     151       131958 :         let mut inbuf = take_vec_u8(&mut (*sk).inbuf).unwrap_or_default();
     152       131958 :         inbuf.clear();
     153       131958 : 
     154       131958 :         let result = (*api).conn_async_read(&mut (*sk), &mut inbuf);
     155       131958 : 
     156       131958 :         // Put a Vec back to sk->inbuf and return data ptr.
     157       131958 :         *amount = inbuf.len() as i32;
     158       131958 :         *buf = store_vec_u8(&mut (*sk).inbuf, inbuf);
     159       131958 : 
     160       131958 :         result
     161       131958 :     }
     162       131958 : }
     163              : 
     164        32502 : extern "C" fn conn_async_write(
     165        32502 :     sk: *mut Safekeeper,
     166        32502 :     buf: *const ::std::os::raw::c_void,
     167        32502 :     size: usize,
     168        32502 : ) -> PGAsyncWriteResult {
     169        32502 :     unsafe {
     170        32502 :         let buf = std::slice::from_raw_parts(buf as *const u8, size);
     171        32502 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     172        32502 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     173        32502 :         (*api).conn_async_write(&mut (*sk), buf)
     174        32502 :     }
     175        32502 : }
     176              : 
     177       267736 : extern "C" fn conn_blocking_write(
     178       267736 :     sk: *mut Safekeeper,
     179       267736 :     buf: *const ::std::os::raw::c_void,
     180       267736 :     size: usize,
     181       267736 : ) -> bool {
     182       267736 :     unsafe {
     183       267736 :         let buf = std::slice::from_raw_parts(buf as *const u8, size);
     184       267736 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     185       267736 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     186       267736 :         (*api).conn_blocking_write(&mut (*sk), buf)
     187       267736 :     }
     188       267736 : }
     189              : 
     190         5482 : extern "C" fn recovery_download(wp: *mut WalProposer, sk: *mut Safekeeper) -> bool {
     191         5482 :     unsafe {
     192         5482 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     193         5482 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     194         5482 : 
     195         5482 :         // currently `recovery_download` is always called right after election
     196         5482 :         (*api).after_election(&mut (*wp));
     197         5482 : 
     198         5482 :         (*api).recovery_download(&mut (*wp), &mut (*sk))
     199         5482 :     }
     200         5482 : }
     201              : 
     202         7217 : extern "C" fn wal_reader_allocate(sk: *mut Safekeeper) {
     203         7217 :     unsafe {
     204         7217 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     205         7217 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     206         7217 :         (*api).wal_reader_allocate(&mut (*sk));
     207         7217 :     }
     208         7217 : }
     209              : 
     210              : #[allow(clippy::unnecessary_cast)]
     211        25285 : extern "C" fn wal_read(
     212        25285 :     sk: *mut Safekeeper,
     213        25285 :     buf: *mut ::std::os::raw::c_char,
     214        25285 :     startptr: XLogRecPtr,
     215        25285 :     count: Size,
     216        25285 :     _errmsg: *mut *mut ::std::os::raw::c_char,
     217        25285 : ) -> NeonWALReadResult {
     218        25285 :     unsafe {
     219        25285 :         let buf = std::slice::from_raw_parts_mut(buf as *mut u8, count);
     220        25285 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     221        25285 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     222        25285 :         // TODO: errmsg is not forwarded
     223        25285 :         (*api).wal_read(&mut (*sk), buf, startptr)
     224        25285 :     }
     225        25285 : }
     226              : 
     227       105372 : extern "C" fn wal_reader_events(sk: *mut Safekeeper) -> uint32 {
     228       105372 :     unsafe {
     229       105372 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     230       105372 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     231       105372 :         (*api).wal_reader_events(&mut (*sk))
     232       105372 :     }
     233       105372 : }
     234              : 
     235        72320 : extern "C" fn init_event_set(wp: *mut WalProposer) {
     236        72320 :     unsafe {
     237        72320 :         let callback_data = (*(*wp).config).callback_data;
     238        72320 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     239        72320 :         (*api).init_event_set(&mut (*wp));
     240        72320 :     }
     241        72320 : }
     242              : 
     243       527915 : extern "C" fn update_event_set(sk: *mut Safekeeper, events: uint32) {
     244       527915 :     unsafe {
     245       527915 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     246       527915 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     247       527915 :         (*api).update_event_set(&mut (*sk), events);
     248       527915 :     }
     249       527915 : }
     250              : 
     251        37495 : extern "C" fn active_state_update_event_set(sk: *mut Safekeeper) {
     252        37495 :     unsafe {
     253        37495 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     254        37495 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     255        37495 :         (*api).active_state_update_event_set(&mut (*sk));
     256        37495 :     }
     257        37495 : }
     258              : 
     259       479648 : extern "C" fn add_safekeeper_event_set(sk: *mut Safekeeper, events: uint32) {
     260       479648 :     unsafe {
     261       479648 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     262       479648 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     263       479648 :         (*api).add_safekeeper_event_set(&mut (*sk), events);
     264       479648 :     }
     265       479648 : }
     266              : 
     267       300681 : extern "C" fn rm_safekeeper_event_set(sk: *mut Safekeeper) {
     268       300681 :     unsafe {
     269       300681 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     270       300681 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     271       300681 :         (*api).rm_safekeeper_event_set(&mut (*sk));
     272       300681 :     }
     273       300681 : }
     274              : 
     275       694541 : extern "C" fn wait_event_set(
     276       694541 :     wp: *mut WalProposer,
     277       694541 :     timeout: ::std::os::raw::c_long,
     278       694541 :     event_sk: *mut *mut Safekeeper,
     279       694541 :     events: *mut uint32,
     280       694541 : ) -> ::std::os::raw::c_int {
     281       694541 :     unsafe {
     282       694541 :         let callback_data = (*(*wp).config).callback_data;
     283       694541 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     284       694541 :         let result = (*api).wait_event_set(&mut (*wp), timeout);
     285       694541 :         match result {
     286              :             WaitResult::Latch => {
     287        71589 :                 *event_sk = std::ptr::null_mut();
     288        71589 :                 *events = crate::bindings::WL_LATCH_SET;
     289        71589 :                 1
     290              :             }
     291              :             WaitResult::Timeout => {
     292        22037 :                 *event_sk = std::ptr::null_mut();
     293        22037 :                 // WaitEventSetWait returns 0 for timeout.
     294        22037 :                 *events = 0;
     295        22037 :                 0
     296              :             }
     297       600915 :             WaitResult::Network(sk, event_mask) => {
     298       600915 :                 *event_sk = sk;
     299       600915 :                 *events = event_mask;
     300       600915 :                 1
     301              :             }
     302              :         }
     303              :     }
     304       694541 : }
     305              : 
     306        72320 : extern "C" fn strong_random(
     307        72320 :     wp: *mut WalProposer,
     308        72320 :     buf: *mut ::std::os::raw::c_void,
     309        72320 :     len: usize,
     310        72320 : ) -> bool {
     311        72320 :     unsafe {
     312        72320 :         let buf = std::slice::from_raw_parts_mut(buf as *mut u8, len);
     313        72320 :         let callback_data = (*(*wp).config).callback_data;
     314        72320 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     315        72320 :         (*api).strong_random(buf)
     316        72320 :     }
     317        72320 : }
     318              : 
     319         2074 : extern "C" fn get_redo_start_lsn(wp: *mut WalProposer) -> XLogRecPtr {
     320         2074 :     unsafe {
     321         2074 :         let callback_data = (*(*wp).config).callback_data;
     322         2074 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     323         2074 :         (*api).get_redo_start_lsn()
     324         2074 :     }
     325         2074 : }
     326              : 
     327         2686 : extern "C" fn finish_sync_safekeepers(wp: *mut WalProposer, lsn: XLogRecPtr) {
     328         2686 :     unsafe {
     329         2686 :         let callback_data = (*(*wp).config).callback_data;
     330         2686 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     331         2686 :         (*api).finish_sync_safekeepers(lsn)
     332         2686 :     }
     333         2686 : }
     334              : 
     335        13126 : extern "C" fn process_safekeeper_feedback(wp: *mut WalProposer, sk: *mut Safekeeper) {
     336        13126 :     unsafe {
     337        13126 :         let callback_data = (*(*wp).config).callback_data;
     338        13126 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     339        13126 :         (*api).process_safekeeper_feedback(&mut (*wp), &mut (*sk));
     340        13126 :     }
     341        13126 : }
     342              : 
     343       707404 : extern "C" fn log_internal(
     344       707404 :     wp: *mut WalProposer,
     345       707404 :     level: ::std::os::raw::c_int,
     346       707404 :     line: *const ::std::os::raw::c_char,
     347       707404 : ) {
     348       707404 :     unsafe {
     349       707404 :         let callback_data = (*(*wp).config).callback_data;
     350       707404 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     351       707404 :         let line = CStr::from_ptr(line);
     352       707404 :         let line = line.to_str().unwrap();
     353       707404 :         (*api).log_internal(&mut (*wp), Level::from(level as u32), line)
     354       707404 :     }
     355       707404 : }
     356              : 
     357              : #[derive(Debug, PartialEq)]
     358              : pub enum Level {
     359              :     Debug5,
     360              :     Debug4,
     361              :     Debug3,
     362              :     Debug2,
     363              :     Debug1,
     364              :     Log,
     365              :     Info,
     366              :     Notice,
     367              :     Warning,
     368              :     Error,
     369              :     Fatal,
     370              :     Panic,
     371              :     WPEvent,
     372              : }
     373              : 
     374              : impl Level {
     375       707404 :     pub fn from(elevel: u32) -> Level {
     376       707404 :         use crate::bindings::*;
     377       707404 : 
     378       707404 :         match elevel {
     379        25285 :             DEBUG5 => Level::Debug5,
     380            0 :             DEBUG4 => Level::Debug4,
     381            0 :             DEBUG3 => Level::Debug3,
     382        13126 :             DEBUG2 => Level::Debug2,
     383            0 :             DEBUG1 => Level::Debug1,
     384       580354 :             LOG => Level::Log,
     385            0 :             INFO => Level::Info,
     386            0 :             NOTICE => Level::Notice,
     387        88130 :             WARNING => Level::Warning,
     388            0 :             ERROR => Level::Error,
     389          498 :             FATAL => Level::Fatal,
     390           11 :             PANIC => Level::Panic,
     391            0 :             WPEVENT => Level::WPEvent,
     392            0 :             _ => panic!("unknown log level {}", elevel),
     393              :         }
     394       707404 :     }
     395              : }
     396              : 
     397        72320 : pub(crate) fn create_api() -> walproposer_api {
     398        72320 :     walproposer_api {
     399        72320 :         get_shmem_state: Some(get_shmem_state),
     400        72320 :         start_streaming: Some(start_streaming),
     401        72320 :         get_flush_rec_ptr: Some(get_flush_rec_ptr),
     402        72320 :         update_donor: Some(update_donor),
     403        72320 :         get_current_timestamp: Some(get_current_timestamp),
     404        72320 :         conn_error_message: Some(conn_error_message),
     405        72320 :         conn_status: Some(conn_status),
     406        72320 :         conn_connect_start: Some(conn_connect_start),
     407        72320 :         conn_connect_poll: Some(conn_connect_poll),
     408        72320 :         conn_send_query: Some(conn_send_query),
     409        72320 :         conn_get_query_result: Some(conn_get_query_result),
     410        72320 :         conn_flush: Some(conn_flush),
     411        72320 :         conn_finish: Some(conn_finish),
     412        72320 :         conn_async_read: Some(conn_async_read),
     413        72320 :         conn_async_write: Some(conn_async_write),
     414        72320 :         conn_blocking_write: Some(conn_blocking_write),
     415        72320 :         recovery_download: Some(recovery_download),
     416        72320 :         wal_reader_allocate: Some(wal_reader_allocate),
     417        72320 :         wal_read: Some(wal_read),
     418        72320 :         wal_reader_events: Some(wal_reader_events),
     419        72320 :         init_event_set: Some(init_event_set),
     420        72320 :         update_event_set: Some(update_event_set),
     421        72320 :         active_state_update_event_set: Some(active_state_update_event_set),
     422        72320 :         add_safekeeper_event_set: Some(add_safekeeper_event_set),
     423        72320 :         rm_safekeeper_event_set: Some(rm_safekeeper_event_set),
     424        72320 :         wait_event_set: Some(wait_event_set),
     425        72320 :         strong_random: Some(strong_random),
     426        72320 :         get_redo_start_lsn: Some(get_redo_start_lsn),
     427        72320 :         finish_sync_safekeepers: Some(finish_sync_safekeepers),
     428        72320 :         process_safekeeper_feedback: Some(process_safekeeper_feedback),
     429        72320 :         log_internal: Some(log_internal),
     430        72320 :     }
     431        72320 : }
     432              : 
     433        72320 : pub fn empty_shmem() -> crate::bindings::WalproposerShmemState {
     434        72320 :     let empty_feedback = crate::bindings::PageserverFeedback {
     435        72320 :         present: false,
     436        72320 :         currentClusterSize: 0,
     437        72320 :         last_received_lsn: 0,
     438        72320 :         disk_consistent_lsn: 0,
     439        72320 :         remote_consistent_lsn: 0,
     440        72320 :         replytime: 0,
     441        72320 :         shard_number: 0,
     442        72320 :     };
     443        72320 : 
     444        72320 :     crate::bindings::WalproposerShmemState {
     445        72320 :         propEpochStartLsn: crate::bindings::pg_atomic_uint64 { value: 0 },
     446        72320 :         donor_name: [0; 64],
     447        72320 :         donor_conninfo: [0; 1024],
     448        72320 :         donor_lsn: 0,
     449        72320 :         mutex: 0,
     450        72320 :         mineLastElectedTerm: crate::bindings::pg_atomic_uint64 { value: 0 },
     451        72320 :         backpressureThrottlingTime: crate::bindings::pg_atomic_uint64 { value: 0 },
     452        72320 :         currentClusterSize: crate::bindings::pg_atomic_uint64 { value: 0 },
     453        72320 :         shard_ps_feedback: [empty_feedback; 128],
     454        72320 :         num_shards: 0,
     455        72320 :         min_ps_feedback: empty_feedback,
     456        72320 :     }
     457        72320 : }
     458              : 
     459              : impl std::fmt::Display for Level {
     460         2296 :     fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
     461         2296 :         write!(f, "{:?}", self)
     462         2296 :     }
     463              : }
     464              : 
     465              : /// Take ownership of `Vec<u8>` from StringInfoData.
     466              : #[allow(clippy::unnecessary_cast)]
     467       348902 : pub(crate) fn take_vec_u8(pg: &mut StringInfoData) -> Option<Vec<u8>> {
     468       348902 :     if pg.data.is_null() {
     469       216954 :         return None;
     470       131948 :     }
     471       131948 : 
     472       131948 :     let ptr = pg.data as *mut u8;
     473       131948 :     let length = pg.len as usize;
     474       131948 :     let capacity = pg.maxlen as usize;
     475       131948 : 
     476       131948 :     pg.data = std::ptr::null_mut();
     477       131948 :     pg.len = 0;
     478       131948 :     pg.maxlen = 0;
     479       131948 : 
     480       131948 :     unsafe { Some(Vec::from_raw_parts(ptr, length, capacity)) }
     481       348902 : }
     482              : 
     483              : /// Store `Vec<u8>` in StringInfoData.
     484       131958 : fn store_vec_u8(pg: &mut StringInfoData, vec: Vec<u8>) -> *mut ::std::os::raw::c_char {
     485       131958 :     let ptr = vec.as_ptr() as *mut ::std::os::raw::c_char;
     486       131958 :     let length = vec.len();
     487       131958 :     let capacity = vec.capacity();
     488       131958 : 
     489       131958 :     assert!(pg.data.is_null());
     490              : 
     491       131958 :     pg.data = ptr;
     492       131958 :     pg.len = length as i32;
     493       131958 :     pg.maxlen = capacity as i32;
     494       131958 : 
     495       131958 :     std::mem::forget(vec);
     496       131958 : 
     497       131958 :     ptr
     498       131958 : }
        

Generated by: LCOV version 2.1-beta