gecko-dev/remote/error.rs

61 строка
1.6 KiB
Rust

// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
use std::num;
use failure::Fail;
use http;
use nserror::{nsresult, NS_ERROR_INVALID_ARG, NS_ERROR_NOT_AVAILABLE};
#[derive(Debug, Fail)]
pub enum RemoteAgentError {
#[fail(display = "expected address syntax [<host>]:<port>: {}", _0)]
AddressSpec(http::uri::InvalidUri),
#[fail(display = "conflicting flags --remote-debugger and --remote-debugging-port")]
FlagConflict,
#[fail(display = "invalid port: {}", _0)]
InvalidPort(num::ParseIntError),
#[fail(display = "missing port number")]
MissingPort,
#[fail(display = "unavailable")]
Unavailable,
#[fail(display = "error result {}", _0)]
XpCom(nsresult),
}
impl From<RemoteAgentError> for nsresult {
fn from(err: RemoteAgentError) -> nsresult {
use RemoteAgentError::*;
match err {
AddressSpec(_) | InvalidPort(_) => NS_ERROR_INVALID_ARG,
MissingPort | FlagConflict => NS_ERROR_INVALID_ARG,
Unavailable => NS_ERROR_NOT_AVAILABLE,
XpCom(result) => result,
}
}
}
impl From<num::ParseIntError> for RemoteAgentError {
fn from(err: num::ParseIntError) -> Self {
RemoteAgentError::InvalidPort(err)
}
}
impl From<http::uri::InvalidUri> for RemoteAgentError {
fn from(err: http::uri::InvalidUri) -> Self {
RemoteAgentError::AddressSpec(err)
}
}
impl From<nsresult> for RemoteAgentError {
fn from(result: nsresult) -> Self {
RemoteAgentError::XpCom(result)
}
}