LCOV - code coverage report
Current view: top level - pageserver/src/virtual_file - open_options.rs (source / functions) Coverage Total Hit
Test: 02e8c57acd6e2b986849f552ca30280d54699b79.info Lines: 73.3 % 90 66
Test Date: 2024-06-26 17:13:54 Functions: 76.9 % 13 10

            Line data    Source code
       1              : //! Enum-dispatch to the `OpenOptions` type of the respective [`super::IoEngineKind`];
       2              : 
       3              : use super::io_engine::IoEngine;
       4              : use std::{os::fd::OwnedFd, path::Path};
       5              : 
       6              : #[derive(Debug, Clone)]
       7              : pub enum OpenOptions {
       8              :     StdFs(std::fs::OpenOptions),
       9              :     #[cfg(target_os = "linux")]
      10              :     TokioEpollUring(tokio_epoll_uring::ops::open_at::OpenOptions),
      11              : }
      12              : 
      13              : impl Default for OpenOptions {
      14         5733 :     fn default() -> Self {
      15         5733 :         match super::io_engine::get() {
      16            0 :             IoEngine::NotSet => panic!("io engine not set"),
      17         2863 :             IoEngine::StdFs => Self::StdFs(std::fs::OpenOptions::new()),
      18              :             #[cfg(target_os = "linux")]
      19              :             IoEngine::TokioEpollUring => {
      20         2870 :                 Self::TokioEpollUring(tokio_epoll_uring::ops::open_at::OpenOptions::new())
      21              :             }
      22              :         }
      23         5733 :     }
      24              : }
      25              : 
      26              : impl OpenOptions {
      27         5733 :     pub fn new() -> OpenOptions {
      28         5733 :         Self::default()
      29         5733 :     }
      30              : 
      31         4132 :     pub fn read(&mut self, read: bool) -> &mut OpenOptions {
      32         4132 :         match self {
      33         2065 :             OpenOptions::StdFs(x) => {
      34         2065 :                 let _ = x.read(read);
      35         2065 :             }
      36              :             #[cfg(target_os = "linux")]
      37         2067 :             OpenOptions::TokioEpollUring(x) => {
      38         2067 :                 let _ = x.read(read);
      39         2067 :             }
      40              :         }
      41         4132 :         self
      42         4132 :     }
      43              : 
      44         2850 :     pub fn write(&mut self, write: bool) -> &mut OpenOptions {
      45         2850 :         match self {
      46         1422 :             OpenOptions::StdFs(x) => {
      47         1422 :                 let _ = x.write(write);
      48         1422 :             }
      49              :             #[cfg(target_os = "linux")]
      50         1428 :             OpenOptions::TokioEpollUring(x) => {
      51         1428 :                 let _ = x.write(write);
      52         1428 :             }
      53              :         }
      54         2850 :         self
      55         2850 :     }
      56              : 
      57         8133 :     pub fn create(&mut self, create: bool) -> &mut OpenOptions {
      58         8133 :         match self {
      59         4061 :             OpenOptions::StdFs(x) => {
      60         4061 :                 let _ = x.create(create);
      61         4061 :             }
      62              :             #[cfg(target_os = "linux")]
      63         4072 :             OpenOptions::TokioEpollUring(x) => {
      64         4072 :                 let _ = x.create(create);
      65         4072 :             }
      66              :         }
      67         8133 :         self
      68         8133 :     }
      69              : 
      70         5771 :     pub fn create_new(&mut self, create_new: bool) -> &mut OpenOptions {
      71         5771 :         match self {
      72         2881 :             OpenOptions::StdFs(x) => {
      73         2881 :                 let _ = x.create_new(create_new);
      74         2881 :             }
      75              :             #[cfg(target_os = "linux")]
      76         2890 :             OpenOptions::TokioEpollUring(x) => {
      77         2890 :                 let _ = x.create_new(create_new);
      78         2890 :             }
      79              :         }
      80         5771 :         self
      81         5771 :     }
      82              : 
      83         6888 :     pub fn truncate(&mut self, truncate: bool) -> &mut OpenOptions {
      84         6888 :         match self {
      85         3439 :             OpenOptions::StdFs(x) => {
      86         3439 :                 let _ = x.truncate(truncate);
      87         3439 :             }
      88              :             #[cfg(target_os = "linux")]
      89         3449 :             OpenOptions::TokioEpollUring(x) => {
      90         3449 :                 let _ = x.truncate(truncate);
      91         3449 :             }
      92              :         }
      93         6888 :         self
      94         6888 :     }
      95              : 
      96       190234 :     pub(in crate::virtual_file) async fn open(&self, path: &Path) -> std::io::Result<OwnedFd> {
      97       190234 :         match self {
      98        97416 :             OpenOptions::StdFs(x) => x.open(path).map(|file| file.into()),
      99              :             #[cfg(target_os = "linux")]
     100        92818 :             OpenOptions::TokioEpollUring(x) => {
     101        92818 :                 let system = super::io_engine::tokio_epoll_uring_ext::thread_local_system().await;
     102        92818 :                 system.open(path, x).await.map_err(|e| match e {
     103            0 :                     tokio_epoll_uring::Error::Op(e) => e,
     104            0 :                     tokio_epoll_uring::Error::System(system) => {
     105            0 :                         std::io::Error::new(std::io::ErrorKind::Other, system)
     106              :                     }
     107        92818 :                 })
     108              :             }
     109              :         }
     110       190234 :     }
     111              : }
     112              : 
     113              : impl std::os::unix::prelude::OpenOptionsExt for OpenOptions {
     114            0 :     fn mode(&mut self, mode: u32) -> &mut OpenOptions {
     115            0 :         match self {
     116            0 :             OpenOptions::StdFs(x) => {
     117            0 :                 let _ = x.mode(mode);
     118            0 :             }
     119              :             #[cfg(target_os = "linux")]
     120            0 :             OpenOptions::TokioEpollUring(x) => {
     121            0 :                 let _ = x.mode(mode);
     122            0 :             }
     123              :         }
     124            0 :         self
     125            0 :     }
     126              : 
     127            0 :     fn custom_flags(&mut self, flags: i32) -> &mut OpenOptions {
     128            0 :         match self {
     129            0 :             OpenOptions::StdFs(x) => {
     130            0 :                 let _ = x.custom_flags(flags);
     131            0 :             }
     132              :             #[cfg(target_os = "linux")]
     133            0 :             OpenOptions::TokioEpollUring(x) => {
     134            0 :                 let _ = x.custom_flags(flags);
     135            0 :             }
     136              :         }
     137            0 :         self
     138            0 :     }
     139              : }
        

Generated by: LCOV version 2.1-beta