aboutsummaryrefslogtreecommitdiffstats
path: root/src/rw.rs
blob: 96031cc7e432324cf71c6cea3c60982e9874cd87 (plain) (blame)
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
use core::fmt;
use std::{
    fs::File,
    io::{self, PipeReader, PipeWriter, Read, Write},
    os::fd::{AsFd, BorrowedFd},
    process::Stdio,
    sync::{
        Arc,
        atomic::{AtomicBool, Ordering::SeqCst},
    },
};

use nix::poll::{PollFd, PollFlags};

pub enum Input {
    Stdin,
    Pipe(PipeReader),
    File(File),
}

pub enum Output {
    Stdout,
    Pipe(PipeWriter),
    File(File),
}

impl From<Input> for Stdio {
    fn from(value: Input) -> Self {
        match value {
            Input::Stdin => Stdio::inherit(),
            Input::Pipe(reader) => reader.into(),
            Input::File(file) => file.into(),
        }
    }
}

impl From<Output> for Stdio {
    fn from(value: Output) -> Stdio {
        match value {
            Output::Stdout => Stdio::inherit(),
            Output::Pipe(writer) => writer.into(),
            Output::File(file) => file.into(),
        }
    }
}

impl Input {
    pub fn try_clone(&self) -> io::Result<Self> {
        Ok(match self {
            Input::Stdin => Input::Stdin,
            Input::Pipe(pr) => Input::Pipe(pr.try_clone()?),
            Input::File(f) => Input::File(f.try_clone()?),
        })
    }
}

impl Output {
    pub fn try_clone(&self) -> io::Result<Self> {
        Ok(match self {
            Output::Stdout => Output::Stdout,
            Output::Pipe(pw) => Output::Pipe(pw.try_clone()?),
            Output::File(f) => Output::File(f.try_clone()?),
        })
    }
}

pub struct Canceler {
    tx: PipeWriter,
}

impl Canceler {
    pub fn cancel(&mut self) {
        let _ = self.tx.write(b".");
    }
}

pub struct InputReader {
    input: Input,
    cancel: PipeReader,
    canceled: Arc<AtomicBool>,
}

impl InputReader {
    pub fn new(input: Input) -> (InputReader, Canceler) {
        let (cancel, tx) = std::io::pipe().unwrap();
        (
            Self {
                input,
                cancel,
                canceled: Arc::new(AtomicBool::new(false)),
            },
            Canceler { tx },
        )
    }

    pub fn try_clone(&self) -> io::Result<Self> {
        let input = self.input.try_clone()?;
        let cancel = self.cancel.try_clone()?;
        let canceled = self.canceled.clone();
        Ok(Self {
            input,
            cancel,
            canceled,
        })
    }
}

const TIMEOUT_MS: u16 = 1000;

enum PollStatus {
    Cancel,
    Ready,
    Wait,
}

fn check<'a>(
    canceled: &AtomicBool,
    cancel: &PipeReader,
    fd: BorrowedFd<'a>,
    flags: PollFlags,
) -> PollStatus {
    if canceled.load(SeqCst) {
        return PollStatus::Cancel;
    }

    let mut poll_fds = [
        PollFd::new(cancel.as_fd(), PollFlags::POLLIN),
        PollFd::new(fd, flags),
    ];

    if nix::poll::poll(&mut poll_fds, TIMEOUT_MS).is_err() {
        canceled.store(true, SeqCst);
        return PollStatus::Cancel;
    };

    if let Some(event) = poll_fds[0].revents() {
        if event.contains(PollFlags::POLLIN) {
            canceled.store(true, SeqCst);
            return PollStatus::Cancel;
        }
    }

    if let Some(event) = poll_fds[1].revents() {
        if event.contains(flags) {
            return PollStatus::Ready;
        }
    }

    PollStatus::Wait
}

impl InputReader {
    fn poll(&mut self) -> PollStatus {
        let stdin = io::stdin();
        let read_fd = match &self.input {
            Input::Stdin => stdin.as_fd(),
            Input::Pipe(pipe) => pipe.as_fd(),
            Input::File(file) => file.as_fd(),
        };
        check(&*self.canceled, &self.cancel, read_fd, PollFlags::POLLIN)
    }
}

#[derive(Debug, Clone, Copy)]
struct Canceled;

impl fmt::Display for Canceled {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "canceled")
    }
}

impl std::error::Error for Canceled {}

impl Read for InputReader {
    fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
        loop {
            match self.poll() {
                PollStatus::Cancel => return Err(io::Error::new(io::ErrorKind::Other, Canceled)),
                PollStatus::Ready => (),
                PollStatus::Wait => continue,
            }
            return match &mut self.input {
                Input::Stdin => io::stdin().read(buf),
                Input::Pipe(reader) => reader.read(buf),
                Input::File(file) => file.read(buf),
            };
        }
    }
}

pub struct OutputWriter {
    output: Output,
    cancel: PipeReader,
    canceled: Arc<AtomicBool>,
}

impl OutputWriter {
    pub fn new(output: Output) -> (Self, Canceler) {
        let (cancel, tx) = std::io::pipe().unwrap();
        (
            Self {
                output,
                cancel,
                canceled: Arc::new(AtomicBool::new(false)),
            },
            Canceler { tx },
        )
    }
    fn poll(&mut self) -> PollStatus {
        let stdout = io::stdout();
        let write_fd = match &self.output {
            Output::Stdout => stdout.as_fd(),
            Output::Pipe(pipe) => pipe.as_fd(),
            Output::File(file) => file.as_fd(),
        };
        check(
            &mut self.canceled,
            &self.cancel,
            write_fd,
            PollFlags::POLLOUT,
        )
    }
    pub fn try_clone(&self) -> io::Result<Self> {
        let output = self.output.try_clone()?;
        let cancel = self.cancel.try_clone()?;
        let canceled = self.canceled.clone();
        Ok(Self {
            output,
            cancel,
            canceled,
        })
    }
}

impl Write for OutputWriter {
    fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
        loop {
            match self.poll() {
                PollStatus::Cancel => return Err(io::Error::new(io::ErrorKind::Other, Canceled)),
                PollStatus::Ready => (),
                PollStatus::Wait => continue,
            }
            return match &mut self.output {
                Output::Stdout => io::stdout().write(buf),
                Output::Pipe(writer) => writer.write(buf),
                Output::File(file) => file.write(buf),
            };
        }
    }

    fn flush(&mut self) -> io::Result<()> {
        match &mut self.output {
            Output::Stdout => io::stdout().flush(),
            Output::Pipe(writer) => writer.flush(),
            Output::File(file) => file.flush(),
        }
    }
}

impl From<InputReader> for Input {
    fn from(value: InputReader) -> Self {
        value.input
    }
}

impl From<OutputWriter> for Output {
    fn from(value: OutputWriter) -> Self {
        value.output
    }
}