1//! This module contain the error from the VirtIO socket driver.
23use core::{fmt, result};
45/// The error type of VirtIO socket driver.
6#[derive(Copy, Clone, Debug, Eq, PartialEq)]
7pub enum SocketError {
8/// There is an existing connection.
9ConnectionExists,
10/// Failed to establish the connection.
11ConnectionFailed,
12/// The device is not connected to any peer.
13NotConnected,
14/// Peer socket is shutdown.
15PeerSocketShutdown,
16/// No response received.
17NoResponseReceived,
18/// The given buffer is shorter than expected.
19BufferTooShort,
20/// The given buffer for output is shorter than expected.
21OutputBufferTooShort(usize),
22/// The given buffer has exceeded the maximum buffer size.
23BufferTooLong(usize, usize),
24/// Unknown operation.
25UnknownOperation(u16),
26/// Invalid operation,
27InvalidOperation,
28/// Invalid number.
29InvalidNumber,
30/// Unexpected data in packet.
31UnexpectedDataInPacket,
32/// Peer has insufficient buffer space, try again later.
33InsufficientBufferSpaceInPeer,
34/// Recycled a wrong buffer.
35RecycledWrongBuffer,
36}
3738impl fmt::Display for SocketError {
39fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
40match self {
41Self::ConnectionExists => write!(
42 f,
43"There is an existing connection. Please close the current connection before attempting to connect again."),
44Self::ConnectionFailed => write!(
45 f, "Failed to establish the connection. The packet sent may have an unknown type value"
46),
47Self::NotConnected => write!(f, "The device is not connected to any peer. Please connect it to a peer first."),
48Self::PeerSocketShutdown => write!(f, "The peer socket is shutdown."),
49Self::NoResponseReceived => write!(f, "No response received"),
50Self::BufferTooShort => write!(f, "The given buffer is shorter than expected"),
51Self::BufferTooLong(actual, max) => {
52write!(f, "The given buffer length '{actual}' has exceeded the maximum allowed buffer length '{max}'")
53 }
54Self::OutputBufferTooShort(expected) => {
55write!(f, "The given output buffer is too short. '{expected}' bytes is needed for the output buffer.")
56 }
57Self::UnknownOperation(op) => {
58write!(f, "The operation code '{op}' is unknown")
59 }
60Self::InvalidOperation => write!(f, "Invalid operation"),
61Self::InvalidNumber => write!(f, "Invalid number"),
62Self::UnexpectedDataInPacket => write!(f, "No data is expected in the packet"),
63Self::InsufficientBufferSpaceInPeer => write!(f, "Peer has insufficient buffer space, try again later"),
64Self::RecycledWrongBuffer => write!(f, "Recycled a wrong buffer"),
65 }
66 }
67}
6869pub type Result<T> = result::Result<T, SocketError>;