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

Generated by: LCOV version 2.1-beta