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

Generated by: LCOV version 2.1-beta