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

Generated by: LCOV version 2.1-beta