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 62202 : #[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 61996 : fn default() -> Self {
15 61996 : match super::io_engine::get() {
16 0 : IoEngine::NotSet => panic!("io engine not set"),
17 61002 : IoEngine::StdFs => Self::StdFs(std::fs::OpenOptions::new()),
18 : #[cfg(target_os = "linux")]
19 : IoEngine::TokioEpollUring => {
20 994 : Self::TokioEpollUring(tokio_epoll_uring::ops::open_at::OpenOptions::new())
21 : }
22 : }
23 61996 : }
24 : }
25 :
26 : impl OpenOptions {
27 61996 : pub fn new() -> OpenOptions {
28 61996 : Self::default()
29 61996 : }
30 :
31 39660 : pub fn read(&mut self, read: bool) -> &mut OpenOptions {
32 39660 : match self {
33 38900 : OpenOptions::StdFs(x) => {
34 38900 : let _ = x.read(read);
35 38900 : }
36 : #[cfg(target_os = "linux")]
37 760 : OpenOptions::TokioEpollUring(x) => {
38 760 : let _ = x.read(read);
39 760 : }
40 : }
41 39660 : self
42 39660 : }
43 :
44 27982 : pub fn write(&mut self, write: bool) -> &mut OpenOptions {
45 27982 : match self {
46 27475 : OpenOptions::StdFs(x) => {
47 27475 : let _ = x.write(write);
48 27475 : }
49 : #[cfg(target_os = "linux")]
50 507 : OpenOptions::TokioEpollUring(x) => {
51 507 : let _ = x.write(write);
52 507 : }
53 : }
54 27982 : self
55 27982 : }
56 :
57 83297 : pub fn create(&mut self, create: bool) -> &mut OpenOptions {
58 83297 : match self {
59 81934 : OpenOptions::StdFs(x) => {
60 81934 : let _ = x.create(create);
61 81934 : }
62 : #[cfg(target_os = "linux")]
63 1363 : OpenOptions::TokioEpollUring(x) => {
64 1363 : let _ = x.create(create);
65 1363 : }
66 : }
67 83297 : self
68 83297 : }
69 :
70 68265 : pub fn create_new(&mut self, create_new: bool) -> &mut OpenOptions {
71 68265 : match self {
72 67339 : OpenOptions::StdFs(x) => {
73 67339 : let _ = x.create_new(create_new);
74 67339 : }
75 : #[cfg(target_os = "linux")]
76 926 : OpenOptions::TokioEpollUring(x) => {
77 926 : let _ = x.create_new(create_new);
78 926 : }
79 : }
80 68265 : self
81 68265 : }
82 :
83 77655 : pub fn truncate(&mut self, truncate: bool) -> &mut OpenOptions {
84 77655 : match self {
85 76563 : OpenOptions::StdFs(x) => {
86 76563 : let _ = x.truncate(truncate);
87 76563 : }
88 : #[cfg(target_os = "linux")]
89 1092 : OpenOptions::TokioEpollUring(x) => {
90 1092 : let _ = x.truncate(truncate);
91 1092 : }
92 : }
93 77655 : self
94 77655 : }
95 :
96 259678 : pub(in crate::virtual_file) async fn open(&self, path: &Path) -> std::io::Result<OwnedFd> {
97 259678 : match self {
98 164403 : OpenOptions::StdFs(x) => x.open(path).map(|file| file.into()),
99 : #[cfg(target_os = "linux")]
100 95275 : OpenOptions::TokioEpollUring(x) => {
101 95275 : let system = tokio_epoll_uring::thread_local_system().await;
102 95277 : 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 95275 : })
108 : }
109 : }
110 259678 : }
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 : }
|