]> git.lizzy.rs Git - rust.git/blob - src/libstd/sys/unix/stdio.rs
Rollup merge of #35962 - regexident:compiler-plugin-docs, r=steveklabnik
[rust.git] / src / libstd / sys / unix / stdio.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 use io;
12 use libc;
13 use sys::fd::FileDesc;
14
15 pub struct Stdin(());
16 pub struct Stdout(());
17 pub struct Stderr(());
18
19 impl Stdin {
20     pub fn new() -> io::Result<Stdin> { Ok(Stdin(())) }
21
22     pub fn read(&self, data: &mut [u8]) -> io::Result<usize> {
23         let fd = FileDesc::new(libc::STDIN_FILENO);
24         let ret = fd.read(data);
25         fd.into_raw();
26         ret
27     }
28
29     pub fn read_to_end(&self, buf: &mut Vec<u8>) -> io::Result<usize> {
30         let fd = FileDesc::new(libc::STDIN_FILENO);
31         let ret = fd.read_to_end(buf);
32         fd.into_raw();
33         ret
34     }
35 }
36
37 impl Stdout {
38     pub fn new() -> io::Result<Stdout> { Ok(Stdout(())) }
39
40     pub fn write(&self, data: &[u8]) -> io::Result<usize> {
41         let fd = FileDesc::new(libc::STDOUT_FILENO);
42         let ret = fd.write(data);
43         fd.into_raw();
44         ret
45     }
46 }
47
48 impl Stderr {
49     pub fn new() -> io::Result<Stderr> { Ok(Stderr(())) }
50
51     pub fn write(&self, data: &[u8]) -> io::Result<usize> {
52         let fd = FileDesc::new(libc::STDERR_FILENO);
53         let ret = fd.write(data);
54         fd.into_raw();
55         ret
56     }
57 }
58
59 // FIXME: right now this raw stderr handle is used in a few places because
60 //        std::io::stderr_raw isn't exposed, but once that's exposed this impl
61 //        should go away
62 impl io::Write for Stderr {
63     fn write(&mut self, data: &[u8]) -> io::Result<usize> {
64         Stderr::write(self, data)
65     }
66     fn flush(&mut self) -> io::Result<()> { Ok(()) }
67 }