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

Generated by: LCOV version 2.1-beta