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

Generated by: LCOV version 2.1-beta