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

Generated by: LCOV version 2.1-beta