LCOV - code coverage report
Current view: top level - libs/walproposer/src - api_bindings.rs (source / functions) Coverage Total Hit
Test: f081ec316c96fa98335efd15ef501745aa4f015d.info Lines: 96.3 % 401 386
Test Date: 2024-06-25 15:11:17 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        11434 : extern "C" fn get_shmem_state(wp: *mut WalProposer) -> *mut WalproposerShmemState {
      29        11434 :     unsafe {
      30        11434 :         let callback_data = (*(*wp).config).callback_data;
      31        11434 :         let api = callback_data as *mut Box<dyn ApiImpl>;
      32        11434 :         (*api).get_shmem_state()
      33        11434 :     }
      34        11434 : }
      35              : 
      36         1277 : extern "C" fn start_streaming(wp: *mut WalProposer, startpos: XLogRecPtr) {
      37         1277 :     unsafe {
      38         1277 :         let callback_data = (*(*wp).config).callback_data;
      39         1277 :         let api = callback_data as *mut Box<dyn ApiImpl>;
      40         1277 :         let callback = StreamingCallback::new(wp);
      41         1277 :         (*api).start_streaming(startpos, &callback);
      42         1277 :     }
      43         1277 : }
      44              : 
      45          830 : extern "C" fn get_flush_rec_ptr(wp: *mut WalProposer) -> XLogRecPtr {
      46          830 :     unsafe {
      47          830 :         let callback_data = (*(*wp).config).callback_data;
      48          830 :         let api = callback_data as *mut Box<dyn ApiImpl>;
      49          830 :         (*api).get_flush_rec_ptr()
      50          830 :     }
      51          830 : }
      52              : 
      53         7527 : extern "C" fn update_donor(wp: *mut WalProposer, donor: *mut Safekeeper, donor_lsn: XLogRecPtr) {
      54         7527 :     unsafe {
      55         7527 :         let callback_data = (*(*wp).config).callback_data;
      56         7527 :         let api = callback_data as *mut Box<dyn ApiImpl>;
      57         7527 :         (*api).update_donor(&mut (*donor), donor_lsn)
      58         7527 :     }
      59         7527 : }
      60              : 
      61      2503771 : extern "C" fn get_current_timestamp(wp: *mut WalProposer) -> TimestampTz {
      62      2503771 :     unsafe {
      63      2503771 :         let callback_data = (*(*wp).config).callback_data;
      64      2503771 :         let api = callback_data as *mut Box<dyn ApiImpl>;
      65      2503771 :         (*api).get_current_timestamp()
      66      2503771 :     }
      67      2503771 : }
      68              : 
      69        87185 : extern "C" fn conn_error_message(sk: *mut Safekeeper) -> *mut ::std::os::raw::c_char {
      70        87185 :     unsafe {
      71        87185 :         let callback_data = (*(*(*sk).wp).config).callback_data;
      72        87185 :         let api = callback_data as *mut Box<dyn ApiImpl>;
      73        87185 :         let msg = (*api).conn_error_message(&mut (*sk));
      74        87185 :         let msg = CString::new(msg).unwrap();
      75        87185 :         // TODO: fix leaking error message
      76        87185 :         msg.into_raw()
      77        87185 :     }
      78        87185 : }
      79              : 
      80       265873 : extern "C" fn conn_status(sk: *mut Safekeeper) -> WalProposerConnStatusType {
      81       265873 :     unsafe {
      82       265873 :         let callback_data = (*(*(*sk).wp).config).callback_data;
      83       265873 :         let api = callback_data as *mut Box<dyn ApiImpl>;
      84       265873 :         (*api).conn_status(&mut (*sk))
      85       265873 :     }
      86       265873 : }
      87              : 
      88       265873 : extern "C" fn conn_connect_start(sk: *mut Safekeeper) {
      89       265873 :     unsafe {
      90       265873 :         let callback_data = (*(*(*sk).wp).config).callback_data;
      91       265873 :         let api = callback_data as *mut Box<dyn ApiImpl>;
      92       265873 :         (*api).conn_connect_start(&mut (*sk))
      93       265873 :     }
      94       265873 : }
      95              : 
      96       239354 : extern "C" fn conn_connect_poll(sk: *mut Safekeeper) -> WalProposerConnectPollStatusType {
      97       239354 :     unsafe {
      98       239354 :         let callback_data = (*(*(*sk).wp).config).callback_data;
      99       239354 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     100       239354 :         (*api).conn_connect_poll(&mut (*sk))
     101       239354 :     }
     102       239354 : }
     103              : 
     104       239354 : extern "C" fn conn_send_query(sk: *mut Safekeeper, query: *mut ::std::os::raw::c_char) -> bool {
     105       239354 :     let query = unsafe { CStr::from_ptr(query) };
     106       239354 :     let query = query.to_str().unwrap();
     107       239354 : 
     108       239354 :     unsafe {
     109       239354 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     110       239354 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     111       239354 :         (*api).conn_send_query(&mut (*sk), query)
     112       239354 :     }
     113       239354 : }
     114              : 
     115       239354 : extern "C" fn conn_get_query_result(sk: *mut Safekeeper) -> WalProposerExecStatusType {
     116       239354 :     unsafe {
     117       239354 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     118       239354 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     119       239354 :         (*api).conn_get_query_result(&mut (*sk))
     120       239354 :     }
     121       239354 : }
     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        89371 : extern "C" fn conn_finish(sk: *mut Safekeeper) {
     132        89371 :     unsafe {
     133        89371 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     134        89371 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     135        89371 :         (*api).conn_finish(&mut (*sk))
     136        89371 :     }
     137        89371 : }
     138              : 
     139       137320 : extern "C" fn conn_async_read(
     140       137320 :     sk: *mut Safekeeper,
     141       137320 :     buf: *mut *mut ::std::os::raw::c_char,
     142       137320 :     amount: *mut ::std::os::raw::c_int,
     143       137320 : ) -> PGAsyncReadResult {
     144       137320 :     unsafe {
     145       137320 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     146       137320 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     147       137320 : 
     148       137320 :         // This function has guarantee that returned buf will be valid until
     149       137320 :         // the next call. So we can store a Vec in each Safekeeper and reuse
     150       137320 :         // it on the next call.
     151       137320 :         let mut inbuf = take_vec_u8(&mut (*sk).inbuf).unwrap_or_default();
     152       137320 :         inbuf.clear();
     153       137320 : 
     154       137320 :         let result = (*api).conn_async_read(&mut (*sk), &mut inbuf);
     155       137320 : 
     156       137320 :         // Put a Vec back to sk->inbuf and return data ptr.
     157       137320 :         *amount = inbuf.len() as i32;
     158       137320 :         *buf = store_vec_u8(&mut (*sk).inbuf, inbuf);
     159       137320 : 
     160       137320 :         result
     161       137320 :     }
     162       137320 : }
     163              : 
     164        34710 : extern "C" fn conn_async_write(
     165        34710 :     sk: *mut Safekeeper,
     166        34710 :     buf: *const ::std::os::raw::c_void,
     167        34710 :     size: usize,
     168        34710 : ) -> PGAsyncWriteResult {
     169        34710 :     unsafe {
     170        34710 :         let buf = std::slice::from_raw_parts(buf as *const u8, size);
     171        34710 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     172        34710 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     173        34710 :         (*api).conn_async_write(&mut (*sk), buf)
     174        34710 :     }
     175        34710 : }
     176              : 
     177       268350 : extern "C" fn conn_blocking_write(
     178       268350 :     sk: *mut Safekeeper,
     179       268350 :     buf: *const ::std::os::raw::c_void,
     180       268350 :     size: usize,
     181       268350 : ) -> bool {
     182       268350 :     unsafe {
     183       268350 :         let buf = std::slice::from_raw_parts(buf as *const u8, size);
     184       268350 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     185       268350 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     186       268350 :         (*api).conn_blocking_write(&mut (*sk), buf)
     187       268350 :     }
     188       268350 : }
     189              : 
     190         5700 : extern "C" fn recovery_download(wp: *mut WalProposer, sk: *mut Safekeeper) -> bool {
     191         5700 :     unsafe {
     192         5700 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     193         5700 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     194         5700 : 
     195         5700 :         // currently `recovery_download` is always called right after election
     196         5700 :         (*api).after_election(&mut (*wp));
     197         5700 : 
     198         5700 :         (*api).recovery_download(&mut (*wp), &mut (*sk))
     199         5700 :     }
     200         5700 : }
     201              : 
     202         7895 : extern "C" fn wal_reader_allocate(sk: *mut Safekeeper) {
     203         7895 :     unsafe {
     204         7895 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     205         7895 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     206         7895 :         (*api).wal_reader_allocate(&mut (*sk));
     207         7895 :     }
     208         7895 : }
     209              : 
     210              : #[allow(clippy::unnecessary_cast)]
     211        26815 : extern "C" fn wal_read(
     212        26815 :     sk: *mut Safekeeper,
     213        26815 :     buf: *mut ::std::os::raw::c_char,
     214        26815 :     startptr: XLogRecPtr,
     215        26815 :     count: Size,
     216        26815 :     _errmsg: *mut *mut ::std::os::raw::c_char,
     217        26815 : ) -> NeonWALReadResult {
     218        26815 :     unsafe {
     219        26815 :         let buf = std::slice::from_raw_parts_mut(buf as *mut u8, count);
     220        26815 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     221        26815 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     222        26815 :         // TODO: errmsg is not forwarded
     223        26815 :         (*api).wal_read(&mut (*sk), buf, startptr)
     224        26815 :     }
     225        26815 : }
     226              : 
     227       112893 : extern "C" fn wal_reader_events(sk: *mut Safekeeper) -> uint32 {
     228       112893 :     unsafe {
     229       112893 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     230       112893 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     231       112893 :         (*api).wal_reader_events(&mut (*sk))
     232       112893 :     }
     233       112893 : }
     234              : 
     235        72172 : extern "C" fn init_event_set(wp: *mut WalProposer) {
     236        72172 :     unsafe {
     237        72172 :         let callback_data = (*(*wp).config).callback_data;
     238        72172 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     239        72172 :         (*api).init_event_set(&mut (*wp));
     240        72172 :     }
     241        72172 : }
     242              : 
     243       528714 : extern "C" fn update_event_set(sk: *mut Safekeeper, events: uint32) {
     244       528714 :     unsafe {
     245       528714 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     246       528714 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     247       528714 :         (*api).update_event_set(&mut (*sk), events);
     248       528714 :     }
     249       528714 : }
     250              : 
     251        39737 : extern "C" fn active_state_update_event_set(sk: *mut Safekeeper) {
     252        39737 :     unsafe {
     253        39737 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     254        39737 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     255        39737 :         (*api).active_state_update_event_set(&mut (*sk));
     256        39737 :     }
     257        39737 : }
     258              : 
     259       478708 : extern "C" fn add_safekeeper_event_set(sk: *mut Safekeeper, events: uint32) {
     260       478708 :     unsafe {
     261       478708 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     262       478708 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     263       478708 :         (*api).add_safekeeper_event_set(&mut (*sk), events);
     264       478708 :     }
     265       478708 : }
     266              : 
     267       302206 : extern "C" fn rm_safekeeper_event_set(sk: *mut Safekeeper) {
     268       302206 :     unsafe {
     269       302206 :         let callback_data = (*(*(*sk).wp).config).callback_data;
     270       302206 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     271       302206 :         (*api).rm_safekeeper_event_set(&mut (*sk));
     272       302206 :     }
     273       302206 : }
     274              : 
     275       697729 : extern "C" fn wait_event_set(
     276       697729 :     wp: *mut WalProposer,
     277       697729 :     timeout: ::std::os::raw::c_long,
     278       697729 :     event_sk: *mut *mut Safekeeper,
     279       697729 :     events: *mut uint32,
     280       697729 : ) -> ::std::os::raw::c_int {
     281       697729 :     unsafe {
     282       697729 :         let callback_data = (*(*wp).config).callback_data;
     283       697729 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     284       697729 :         let result = (*api).wait_event_set(&mut (*wp), timeout);
     285       697729 :         match result {
     286              :             WaitResult::Latch => {
     287        71328 :                 *event_sk = std::ptr::null_mut();
     288        71328 :                 *events = crate::bindings::WL_LATCH_SET;
     289        71328 :                 1
     290              :             }
     291              :             WaitResult::Timeout => {
     292        21658 :                 *event_sk = std::ptr::null_mut();
     293        21658 :                 // WaitEventSetWait returns 0 for timeout.
     294        21658 :                 *events = 0;
     295        21658 :                 0
     296              :             }
     297       604743 :             WaitResult::Network(sk, event_mask) => {
     298       604743 :                 *event_sk = sk;
     299       604743 :                 *events = event_mask;
     300       604743 :                 1
     301              :             }
     302              :         }
     303              :     }
     304       697729 : }
     305              : 
     306        72172 : extern "C" fn strong_random(
     307        72172 :     wp: *mut WalProposer,
     308        72172 :     buf: *mut ::std::os::raw::c_void,
     309        72172 :     len: usize,
     310        72172 : ) -> bool {
     311        72172 :     unsafe {
     312        72172 :         let buf = std::slice::from_raw_parts_mut(buf as *mut u8, len);
     313        72172 :         let callback_data = (*(*wp).config).callback_data;
     314        72172 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     315        72172 :         (*api).strong_random(buf)
     316        72172 :     }
     317        72172 : }
     318              : 
     319         2195 : extern "C" fn get_redo_start_lsn(wp: *mut WalProposer) -> XLogRecPtr {
     320         2195 :     unsafe {
     321         2195 :         let callback_data = (*(*wp).config).callback_data;
     322         2195 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     323         2195 :         (*api).get_redo_start_lsn()
     324         2195 :     }
     325         2195 : }
     326              : 
     327         2773 : extern "C" fn finish_sync_safekeepers(wp: *mut WalProposer, lsn: XLogRecPtr) {
     328         2773 :     unsafe {
     329         2773 :         let callback_data = (*(*wp).config).callback_data;
     330         2773 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     331         2773 :         (*api).finish_sync_safekeepers(lsn)
     332         2773 :     }
     333         2773 : }
     334              : 
     335        13936 : extern "C" fn process_safekeeper_feedback(wp: *mut WalProposer, sk: *mut Safekeeper) {
     336        13936 :     unsafe {
     337        13936 :         let callback_data = (*(*wp).config).callback_data;
     338        13936 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     339        13936 :         (*api).process_safekeeper_feedback(&mut (*wp), &mut (*sk));
     340        13936 :     }
     341        13936 : }
     342              : 
     343       714930 : extern "C" fn log_internal(
     344       714930 :     wp: *mut WalProposer,
     345       714930 :     level: ::std::os::raw::c_int,
     346       714930 :     line: *const ::std::os::raw::c_char,
     347       714930 : ) {
     348       714930 :     unsafe {
     349       714930 :         let callback_data = (*(*wp).config).callback_data;
     350       714930 :         let api = callback_data as *mut Box<dyn ApiImpl>;
     351       714930 :         let line = CStr::from_ptr(line);
     352       714930 :         let line = line.to_str().unwrap();
     353       714930 :         (*api).log_internal(&mut (*wp), Level::from(level as u32), line)
     354       714930 :     }
     355       714930 : }
     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       714930 :     pub fn from(elevel: u32) -> Level {
     376       714930 :         use crate::bindings::*;
     377       714930 : 
     378       714930 :         match elevel {
     379        26815 :             DEBUG5 => Level::Debug5,
     380            0 :             DEBUG4 => Level::Debug4,
     381            0 :             DEBUG3 => Level::Debug3,
     382        13936 :             DEBUG2 => Level::Debug2,
     383            0 :             DEBUG1 => Level::Debug1,
     384       583880 :             LOG => Level::Log,
     385            0 :             INFO => Level::Info,
     386            0 :             NOTICE => Level::Notice,
     387        89739 :             WARNING => Level::Warning,
     388            0 :             ERROR => Level::Error,
     389          543 :             FATAL => Level::Fatal,
     390           17 :             PANIC => Level::Panic,
     391            0 :             WPEVENT => Level::WPEvent,
     392            0 :             _ => panic!("unknown log level {}", elevel),
     393              :         }
     394       714930 :     }
     395              : }
     396              : 
     397        72172 : pub(crate) fn create_api() -> walproposer_api {
     398        72172 :     walproposer_api {
     399        72172 :         get_shmem_state: Some(get_shmem_state),
     400        72172 :         start_streaming: Some(start_streaming),
     401        72172 :         get_flush_rec_ptr: Some(get_flush_rec_ptr),
     402        72172 :         update_donor: Some(update_donor),
     403        72172 :         get_current_timestamp: Some(get_current_timestamp),
     404        72172 :         conn_error_message: Some(conn_error_message),
     405        72172 :         conn_status: Some(conn_status),
     406        72172 :         conn_connect_start: Some(conn_connect_start),
     407        72172 :         conn_connect_poll: Some(conn_connect_poll),
     408        72172 :         conn_send_query: Some(conn_send_query),
     409        72172 :         conn_get_query_result: Some(conn_get_query_result),
     410        72172 :         conn_flush: Some(conn_flush),
     411        72172 :         conn_finish: Some(conn_finish),
     412        72172 :         conn_async_read: Some(conn_async_read),
     413        72172 :         conn_async_write: Some(conn_async_write),
     414        72172 :         conn_blocking_write: Some(conn_blocking_write),
     415        72172 :         recovery_download: Some(recovery_download),
     416        72172 :         wal_reader_allocate: Some(wal_reader_allocate),
     417        72172 :         wal_read: Some(wal_read),
     418        72172 :         wal_reader_events: Some(wal_reader_events),
     419        72172 :         init_event_set: Some(init_event_set),
     420        72172 :         update_event_set: Some(update_event_set),
     421        72172 :         active_state_update_event_set: Some(active_state_update_event_set),
     422        72172 :         add_safekeeper_event_set: Some(add_safekeeper_event_set),
     423        72172 :         rm_safekeeper_event_set: Some(rm_safekeeper_event_set),
     424        72172 :         wait_event_set: Some(wait_event_set),
     425        72172 :         strong_random: Some(strong_random),
     426        72172 :         get_redo_start_lsn: Some(get_redo_start_lsn),
     427        72172 :         finish_sync_safekeepers: Some(finish_sync_safekeepers),
     428        72172 :         process_safekeeper_feedback: Some(process_safekeeper_feedback),
     429        72172 :         log_internal: Some(log_internal),
     430        72172 :     }
     431        72172 : }
     432              : 
     433        72172 : pub fn empty_shmem() -> crate::bindings::WalproposerShmemState {
     434        72172 :     let empty_feedback = crate::bindings::PageserverFeedback {
     435        72172 :         present: false,
     436        72172 :         currentClusterSize: 0,
     437        72172 :         last_received_lsn: 0,
     438        72172 :         disk_consistent_lsn: 0,
     439        72172 :         remote_consistent_lsn: 0,
     440        72172 :         replytime: 0,
     441        72172 :         shard_number: 0,
     442        72172 :     };
     443        72172 : 
     444        72172 :     crate::bindings::WalproposerShmemState {
     445        72172 :         propEpochStartLsn: crate::bindings::pg_atomic_uint64 { value: 0 },
     446        72172 :         donor_name: [0; 64],
     447        72172 :         donor_conninfo: [0; 1024],
     448        72172 :         donor_lsn: 0,
     449        72172 :         mutex: 0,
     450        72172 :         mineLastElectedTerm: crate::bindings::pg_atomic_uint64 { value: 0 },
     451        72172 :         backpressureThrottlingTime: crate::bindings::pg_atomic_uint64 { value: 0 },
     452        72172 :         currentClusterSize: crate::bindings::pg_atomic_uint64 { value: 0 },
     453        72172 :         shard_ps_feedback: [empty_feedback; 128],
     454        72172 :         num_shards: 0,
     455        72172 :         min_ps_feedback: empty_feedback,
     456        72172 :     }
     457        72172 : }
     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       353820 : pub(crate) fn take_vec_u8(pg: &mut StringInfoData) -> Option<Vec<u8>> {
     468       353820 :     if pg.data.is_null() {
     469       216510 :         return None;
     470       137310 :     }
     471       137310 : 
     472       137310 :     let ptr = pg.data as *mut u8;
     473       137310 :     let length = pg.len as usize;
     474       137310 :     let capacity = pg.maxlen as usize;
     475       137310 : 
     476       137310 :     pg.data = std::ptr::null_mut();
     477       137310 :     pg.len = 0;
     478       137310 :     pg.maxlen = 0;
     479       137310 : 
     480       137310 :     unsafe { Some(Vec::from_raw_parts(ptr, length, capacity)) }
     481       353820 : }
     482              : 
     483              : /// Store `Vec<u8>` in StringInfoData.
     484       137320 : fn store_vec_u8(pg: &mut StringInfoData, vec: Vec<u8>) -> *mut ::std::os::raw::c_char {
     485       137320 :     let ptr = vec.as_ptr() as *mut ::std::os::raw::c_char;
     486       137320 :     let length = vec.len();
     487       137320 :     let capacity = vec.capacity();
     488       137320 : 
     489       137320 :     assert!(pg.data.is_null());
     490              : 
     491       137320 :     pg.data = ptr;
     492       137320 :     pg.len = length as i32;
     493       137320 :     pg.maxlen = capacity as i32;
     494       137320 : 
     495       137320 :     std::mem::forget(vec);
     496       137320 : 
     497       137320 :     ptr
     498       137320 : }
        

Generated by: LCOV version 2.1-beta