async-rt 0.2.0

A small library designed to utilize async executors through an common API while extending features.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
use super::{
    FileRead, FileSeek, FileSystem, FileSystemDirectories, FileSystemMetadata,
    FileSystemOpenOptions, FileSystemPermissions, FileType, FileWrite, Metadata, OpenOptions,
    Permissions,
};
use crate::{ExecutorBlocking, JoinError};
use parking_lot::Mutex;
use std::ffi::OsString;
use std::fmt::{Debug, Formatter};
use std::future::Future;
use std::io;
use std::io::SeekFrom;
use std::path::{Path, PathBuf};
use std::sync::Arc;

/// A filesystem that performs operations through an executor's blocking pool.
#[derive(Clone, Copy, Debug, Default)]
pub struct BlockingFileSystem<E> {
    executor: E,
}

impl<E> BlockingFileSystem<E> {
    /// Creates a filesystem using the supplied executor.
    pub fn new(executor: E) -> Self {
        Self { executor }
    }

    /// Returns the executor used for filesystem operations.
    pub fn executor(&self) -> &E {
        &self.executor
    }
}

impl<E> FileSystem for BlockingFileSystem<E>
where
    E: ExecutorBlocking + Clone + Send + Sync + 'static,
{
    type File = BlockingFile<E>;

    fn open<P: AsRef<Path>>(&self, path: P) -> impl Future<Output = io::Result<Self::File>> {
        let path = path.as_ref().to_owned();
        let executor = self.executor.clone();
        async move {
            let file = executor
                .spawn_blocking(move || std::fs::File::open(path))
                .await
                .map_err(join_error)??;
            Ok(BlockingFile::new(file, executor))
        }
    }

    fn create<P: AsRef<Path>>(&self, path: P) -> impl Future<Output = io::Result<Self::File>> {
        let path = path.as_ref().to_owned();
        let executor = self.executor.clone();
        async move {
            let file = executor
                .spawn_blocking(move || std::fs::File::create(path))
                .await
                .map_err(join_error)??;
            Ok(BlockingFile::new(file, executor))
        }
    }

    fn read<P: AsRef<Path>>(&self, path: P) -> impl Future<Output = io::Result<Vec<u8>>> {
        let path = path.as_ref().to_owned();
        let executor = self.executor.clone();
        async move {
            executor
                .spawn_blocking(move || std::fs::read(path))
                .await
                .map_err(join_error)?
        }
    }

    fn read_to_string<P: AsRef<Path>>(&self, path: P) -> impl Future<Output = io::Result<String>> {
        let path = path.as_ref().to_owned();
        let executor = self.executor.clone();
        async move {
            executor
                .spawn_blocking(move || std::fs::read_to_string(path))
                .await
                .map_err(join_error)?
        }
    }

    fn write<P: AsRef<Path>, C: AsRef<[u8]>>(
        &self,
        path: P,
        contents: C,
    ) -> impl Future<Output = io::Result<()>> {
        let path = path.as_ref().to_owned();
        let contents = contents.as_ref().to_owned();
        let executor = self.executor.clone();
        async move {
            executor
                .spawn_blocking(move || std::fs::write(path, contents))
                .await
                .map_err(join_error)?
        }
    }
}

impl<E> FileSystemOpenOptions for BlockingFileSystem<E>
where
    E: ExecutorBlocking + Clone + Send + Sync + 'static,
{
    fn open_with<P: AsRef<Path>>(
        &self,
        options: &OpenOptions,
        path: P,
    ) -> impl Future<Output = io::Result<Self::File>> {
        let path = path.as_ref().to_owned();
        let options = options.clone();
        let executor = self.executor.clone();
        async move {
            let file = executor
                .spawn_blocking(move || {
                    let mut inner = std::fs::OpenOptions::new();
                    inner
                        .read(options.read)
                        .write(options.write)
                        .append(options.append)
                        .truncate(options.truncate)
                        .create(options.create)
                        .create_new(options.create_new);
                    inner.open(path)
                })
                .await
                .map_err(join_error)??;
            Ok(BlockingFile::new(file, executor))
        }
    }
}

impl<E> FileSystemMetadata for BlockingFileSystem<E>
where
    E: ExecutorBlocking + Clone + Send + Sync + 'static,
{
    fn metadata<P: AsRef<Path>>(&self, path: P) -> impl Future<Output = io::Result<Metadata>> {
        let path = path.as_ref().to_owned();
        let executor = self.executor.clone();
        async move {
            executor
                .spawn_blocking(move || std::fs::metadata(path).map(Metadata::from_native))
                .await
                .map_err(join_error)?
        }
    }

    fn symlink_metadata<P: AsRef<Path>>(
        &self,
        path: P,
    ) -> impl Future<Output = io::Result<Metadata>> {
        let path = path.as_ref().to_owned();
        let executor = self.executor.clone();
        async move {
            executor
                .spawn_blocking(move || std::fs::symlink_metadata(path).map(Metadata::from_native))
                .await
                .map_err(join_error)?
        }
    }
}

impl<E> FileSystemPermissions for BlockingFileSystem<E>
where
    E: ExecutorBlocking + Clone + Send + Sync + 'static,
{
    fn set_permissions<P: AsRef<Path>>(
        &self,
        path: P,
        permissions: Permissions,
    ) -> impl Future<Output = io::Result<()>> {
        let path = path.as_ref().to_owned();
        let executor = self.executor.clone();
        async move {
            executor
                .spawn_blocking(move || {
                    let mut native = std::fs::metadata(&path)?.permissions();
                    native.set_readonly(permissions.readonly());
                    std::fs::set_permissions(path, native)
                })
                .await
                .map_err(join_error)?
        }
    }
}

impl<E> FileSystemDirectories for BlockingFileSystem<E>
where
    E: ExecutorBlocking + Clone + Send + Sync + 'static,
{
    type ReadDir = BlockingReadDir<E>;

    fn create_dir<P: AsRef<Path>>(&self, path: P) -> impl Future<Output = io::Result<()>> {
        self.run_path(path, std::fs::create_dir)
    }

    fn create_dir_all<P: AsRef<Path>>(&self, path: P) -> impl Future<Output = io::Result<()>> {
        self.run_path(path, std::fs::create_dir_all)
    }

    fn read_dir<P: AsRef<Path>>(&self, path: P) -> impl Future<Output = io::Result<Self::ReadDir>> {
        let path = path.as_ref().to_owned();
        let executor = self.executor.clone();
        async move {
            let read_dir = executor
                .spawn_blocking(move || std::fs::read_dir(path))
                .await
                .map_err(join_error)??;
            Ok(BlockingReadDir::new(read_dir, executor))
        }
    }

    fn remove_dir<P: AsRef<Path>>(&self, path: P) -> impl Future<Output = io::Result<()>> {
        self.run_path(path, std::fs::remove_dir)
    }

    fn remove_dir_all<P: AsRef<Path>>(&self, path: P) -> impl Future<Output = io::Result<()>> {
        self.run_path(path, std::fs::remove_dir_all)
    }

    fn remove_file<P: AsRef<Path>>(&self, path: P) -> impl Future<Output = io::Result<()>> {
        self.run_path(path, std::fs::remove_file)
    }

    fn rename<P: AsRef<Path>, Q: AsRef<Path>>(
        &self,
        from: P,
        to: Q,
    ) -> impl Future<Output = io::Result<()>> {
        let from = from.as_ref().to_owned();
        let to = to.as_ref().to_owned();
        let executor = self.executor.clone();
        async move {
            executor
                .spawn_blocking(move || std::fs::rename(from, to))
                .await
                .map_err(join_error)?
        }
    }

    fn copy<P: AsRef<Path>, Q: AsRef<Path>>(
        &self,
        from: P,
        to: Q,
    ) -> impl Future<Output = io::Result<u64>> {
        let from = from.as_ref().to_owned();
        let to = to.as_ref().to_owned();
        let executor = self.executor.clone();
        async move {
            executor
                .spawn_blocking(move || std::fs::copy(from, to))
                .await
                .map_err(join_error)?
        }
    }

    fn canonicalize<P: AsRef<Path>>(&self, path: P) -> impl Future<Output = io::Result<PathBuf>> {
        let path = path.as_ref().to_owned();
        let executor = self.executor.clone();
        async move {
            executor
                .spawn_blocking(move || std::fs::canonicalize(path))
                .await
                .map_err(join_error)?
        }
    }

    fn try_exists<P: AsRef<Path>>(&self, path: P) -> impl Future<Output = io::Result<bool>> {
        let path = path.as_ref().to_owned();
        let executor = self.executor.clone();
        async move {
            executor
                .spawn_blocking(move || path.try_exists())
                .await
                .map_err(join_error)?
        }
    }
}

impl<E> BlockingFileSystem<E>
where
    E: ExecutorBlocking + Clone + Send + Sync + 'static,
{
    async fn run_path<P, F>(&self, path: P, operation: F) -> io::Result<()>
    where
        P: AsRef<Path>,
        F: FnOnce(PathBuf) -> io::Result<()> + Send + 'static,
    {
        let path = path.as_ref().to_owned();
        self.executor
            .spawn_blocking(move || operation(path))
            .await
            .map_err(join_error)?
    }
}

/// An iterator over directory entries read through a blocking pool.
pub struct BlockingReadDir<E> {
    inner: Arc<Mutex<std::fs::ReadDir>>,
    executor: E,
}

impl<E> BlockingReadDir<E> {
    fn new(read_dir: std::fs::ReadDir, executor: E) -> Self {
        Self {
            inner: Arc::new(Mutex::new(read_dir)),
            executor,
        }
    }
}

impl<E> BlockingReadDir<E>
where
    E: ExecutorBlocking + Clone + Send + Sync + 'static,
{
    /// Returns the next entry in the directory.
    pub async fn next_entry(&mut self) -> io::Result<Option<BlockingDirEntry<E>>> {
        let read_dir = self.inner.clone();
        let executor = self.executor.clone();
        let entry = executor
            .spawn_blocking(move || read_dir.lock().next().transpose())
            .await
            .map_err(join_error)??;
        Ok(entry.map(|entry| BlockingDirEntry::new(entry, executor)))
    }
}

impl<E> Debug for BlockingReadDir<E> {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("BlockingReadDir").finish()
    }
}

/// A directory entry read through a blocking pool.
pub struct BlockingDirEntry<E> {
    inner: Arc<std::fs::DirEntry>,
    executor: E,
}

impl<E> BlockingDirEntry<E> {
    fn new(entry: std::fs::DirEntry, executor: E) -> Self {
        Self {
            inner: Arc::new(entry),
            executor,
        }
    }

    /// Returns the full path for this entry.
    pub fn path(&self) -> PathBuf {
        self.inner.path()
    }

    /// Returns the file name for this entry.
    pub fn file_name(&self) -> OsString {
        self.inner.file_name()
    }
}

impl<E> BlockingDirEntry<E>
where
    E: ExecutorBlocking + Clone + Send + Sync + 'static,
{
    /// Reads metadata for this entry.
    pub async fn metadata(&self) -> io::Result<Metadata> {
        let entry = self.inner.clone();
        self.executor
            .spawn_blocking(move || entry.metadata().map(Metadata::from_native))
            .await
            .map_err(join_error)?
    }

    /// Returns the file type for this entry.
    pub async fn file_type(&self) -> io::Result<FileType> {
        let entry = self.inner.clone();
        self.executor
            .spawn_blocking(move || entry.file_type().map(FileType::from_native))
            .await
            .map_err(join_error)?
    }
}

impl<E> Debug for BlockingDirEntry<E> {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("BlockingDirEntry")
            .field("path", &self.path())
            .finish()
    }
}

/// A file opened through [`BlockingFileSystem`].
pub struct BlockingFile<E> {
    pub(super) inner: Arc<std::fs::File>,
    pub(super) executor: E,
}

impl<E> BlockingFile<E> {
    fn new(file: std::fs::File, executor: E) -> Self {
        Self {
            inner: Arc::new(file),
            executor,
        }
    }
}

impl<E> BlockingFile<E>
where
    E: ExecutorBlocking + Clone + Send + Sync + 'static,
{
    /// Reads metadata for this file.
    pub async fn metadata(&self) -> io::Result<Metadata> {
        let file = self.inner.clone();
        self.executor
            .spawn_blocking(move || file.metadata().map(Metadata::from_native))
            .await
            .map_err(join_error)?
    }

    /// Changes the size of this file.
    pub async fn set_len(&self, size: u64) -> io::Result<()> {
        let file = self.inner.clone();
        self.executor
            .spawn_blocking(move || file.set_len(size))
            .await
            .map_err(join_error)?
    }

    /// Changes the permissions for this file.
    pub async fn set_permissions(&self, permissions: Permissions) -> io::Result<()> {
        let file = self.inner.clone();
        self.executor
            .spawn_blocking(move || {
                let mut native = file.metadata()?.permissions();
                native.set_readonly(permissions.readonly());
                file.set_permissions(native)
            })
            .await
            .map_err(join_error)?
    }

    /// Synchronizes file contents and metadata to disk.
    pub async fn sync_all(&self) -> io::Result<()> {
        let file = self.inner.clone();
        self.executor
            .spawn_blocking(move || file.sync_all())
            .await
            .map_err(join_error)?
    }

    /// Synchronizes file contents to disk.
    pub async fn sync_data(&self) -> io::Result<()> {
        let file = self.inner.clone();
        self.executor
            .spawn_blocking(move || file.sync_data())
            .await
            .map_err(join_error)?
    }
}

impl<E> FileRead for BlockingFile<E>
where
    E: ExecutorBlocking + Clone + Send + Sync + 'static,
{
    async fn read(&mut self, buffer: &mut [u8]) -> io::Result<usize> {
        let file = self.inner.clone();
        let scratch = vec![0; buffer.len()];
        let (result, scratch) = self
            .executor
            .spawn_blocking(move || {
                let mut file = &*file;
                let mut scratch = scratch;
                let result = std::io::Read::read(&mut file, &mut scratch);
                (result, scratch)
            })
            .await
            .map_err(join_error)?;
        let read = result?;
        buffer[..read].copy_from_slice(&scratch[..read]);
        Ok(read)
    }
}

impl<E> FileWrite for BlockingFile<E>
where
    E: ExecutorBlocking + Clone + Send + Sync + 'static,
{
    async fn write(&mut self, buffer: &[u8]) -> io::Result<usize> {
        let file = self.inner.clone();
        let buffer = buffer.to_owned();
        self.executor
            .spawn_blocking(move || {
                let mut file = &*file;
                std::io::Write::write(&mut file, &buffer)
            })
            .await
            .map_err(join_error)?
    }

    async fn flush(&mut self) -> io::Result<()> {
        let file = self.inner.clone();
        self.executor
            .spawn_blocking(move || {
                let mut file = &*file;
                std::io::Write::flush(&mut file)
            })
            .await
            .map_err(join_error)?
    }
}

impl<E> FileSeek for BlockingFile<E>
where
    E: ExecutorBlocking + Clone + Send + Sync + 'static,
{
    async fn seek(&mut self, position: SeekFrom) -> io::Result<u64> {
        let file = self.inner.clone();
        self.executor
            .spawn_blocking(move || {
                let mut file = &*file;
                std::io::Seek::seek(&mut file, position)
            })
            .await
            .map_err(join_error)?
    }
}

impl<E> Debug for BlockingFile<E> {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("BlockingFile").finish()
    }
}

fn join_error(error: JoinError) -> io::Error {
    io::Error::other(error)
}