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

Generated by: LCOV version 2.1-beta