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

Generated by: LCOV version 2.1-beta