2018-02-14 16:10:45 +00:00
|
|
|
//
|
|
|
|
// imag - the personal information management suite for the commandline
|
2019-01-03 01:32:07 +00:00
|
|
|
// Copyright (C) 2015-2019 the imag contributors
|
2018-02-14 16:10:45 +00:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
|
|
|
|
|
|
|
use std::io::ErrorKind;
|
|
|
|
|
2019-02-28 16:28:32 +00:00
|
|
|
use crate::exit::ExitCode;
|
2018-02-14 17:07:11 +00:00
|
|
|
|
2018-02-14 16:10:45 +00:00
|
|
|
pub enum Settings {
|
|
|
|
Ignore(ErrorKind),
|
|
|
|
IgnoreAny(Vec<ErrorKind>),
|
|
|
|
}
|
|
|
|
|
2018-02-14 16:22:15 +00:00
|
|
|
pub trait ToExitCode<T> {
|
2018-02-14 17:07:11 +00:00
|
|
|
fn to_exit_code(self) -> Result<T, ExitCode>;
|
2019-02-28 16:28:32 +00:00
|
|
|
fn to_exit_code_with(self, _: Settings) -> Result<T, ExitCode>;
|
2018-02-14 16:10:45 +00:00
|
|
|
}
|
|
|
|
|
2018-02-14 16:22:15 +00:00
|
|
|
impl<T> ToExitCode<T> for Result<T, ::std::io::Error> {
|
2018-02-14 16:10:45 +00:00
|
|
|
|
|
|
|
/// Returns an exit code of 0 if the error was a broken pipe, else 1
|
2018-02-14 17:07:11 +00:00
|
|
|
fn to_exit_code(self) -> Result<T, ExitCode> {
|
2018-02-14 16:22:15 +00:00
|
|
|
self.to_exit_code_with(Settings::Ignore(ErrorKind::BrokenPipe))
|
2018-02-14 16:10:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns an exit code depending on the settings
|
|
|
|
///
|
|
|
|
/// Via the settings, errors can be ignores (translates to exit code zero). All other errors
|
|
|
|
/// are translated into exit code 1
|
|
|
|
///
|
2018-02-14 17:07:11 +00:00
|
|
|
fn to_exit_code_with(self, settings: Settings) -> Result<T, ExitCode> {
|
2018-02-14 16:22:15 +00:00
|
|
|
self.map_err(move |e| match settings {
|
|
|
|
Settings::Ignore(kind) => if e.kind() == kind {
|
|
|
|
0
|
|
|
|
} else {
|
|
|
|
1
|
|
|
|
},
|
|
|
|
Settings::IgnoreAny(v) => if v.iter().any(|el| e.kind() == *el) {
|
|
|
|
0
|
|
|
|
} else {
|
|
|
|
1
|
|
|
|
},
|
|
|
|
})
|
2018-02-14 17:07:11 +00:00
|
|
|
.map_err(ExitCode::from)
|
2018-02-14 16:10:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|