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
//
// imag - the personal information management suite for the commandline
// Copyright (C) 2015-2020 Matthias Beyer <mail@beyermatthias.de> and contributors
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; version
// 2.1 of the License.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
//

//! Proxy objects for std::io::Stdin, std::io::Stdout, std::io::Stderr

use std::fmt::Debug;
use std::io::Write;

/// Proxy object for output
///
/// This is returned by `Runtime::stdout()` does implement `Write`. So you can
/// `write!(rt.stdout(), "some things")` and it just works.
///
/// The `Runtime` has to decide whether the OutputProxy should write to stdout, stderr or simply be
/// a "sink" which does not write to either.
///
pub enum OutputProxy {
    Out(::std::io::Stdout),
    Err(::std::io::Stderr),
    Sink,
}

impl Write for OutputProxy {
    fn write(&mut self, buf: &[u8]) -> ::std::io::Result<usize> {
        match *self {
            OutputProxy::Out(ref mut r) => r.write(buf),
            OutputProxy::Err(ref mut r) => r.write(buf),
            OutputProxy::Sink => Ok(0),
        }
    }

    fn flush(&mut self) -> ::std::io::Result<()> {
        match *self {
            OutputProxy::Out(ref mut r) => r.flush(),
            OutputProxy::Err(ref mut r) => r.flush(),
            OutputProxy::Sink => Ok(()),
        }
    }

}

impl Debug for OutputProxy {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> Result<(), ::std::fmt::Error> {
        match *self {
            OutputProxy::Out(..) => write!(f, "OutputProxy(Stdout)"),
            OutputProxy::Err(..) => write!(f, "OutputProxy(Stderr)"),
            OutputProxy::Sink    => write!(f, "OutputProxy(Sink)"),
        }
    }
}

impl OutputProxy {
    pub fn lock(&self) -> LockedOutputProxy {
        match *self {
            OutputProxy::Out(ref r) => LockedOutputProxy::Out(r.lock()),
            OutputProxy::Err(ref r) => LockedOutputProxy::Err(r.lock()),
            OutputProxy::Sink       => LockedOutputProxy::Sink,
        }
    }
}

pub enum LockedOutputProxy<'a> {
    Out(::std::io::StdoutLock<'a>),
    Err(::std::io::StderrLock<'a>),
    Sink,
}

impl<'a> Write for LockedOutputProxy<'a> {
    fn write(&mut self, buf: &[u8]) -> ::std::io::Result<usize> {
        match *self {
            LockedOutputProxy::Out(ref mut r) => r.write(buf),
            LockedOutputProxy::Err(ref mut r) => r.write(buf),
            LockedOutputProxy::Sink   => Ok(0),
        }
    }

    fn flush(&mut self) -> ::std::io::Result<()> {
        match *self {
            LockedOutputProxy::Out(ref mut r) => r.flush(),
            LockedOutputProxy::Err(ref mut r) => r.flush(),
            LockedOutputProxy::Sink   => Ok(()),
        }
    }

}

impl<'a> Debug for LockedOutputProxy<'a> {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> Result<(), ::std::fmt::Error> {
        match *self {
            LockedOutputProxy::Out(..) => write!(f, "LockedOutputProxy(Stdout)"),
            LockedOutputProxy::Err(..) => write!(f, "LockedOutputProxy(Stderr)"),
            LockedOutputProxy::Sink    => write!(f, "LockedOutputProxy(Sink)"),
        }
    }
}