#![forbid(unsafe_code)]
use guid::Guid;
use mesh::MeshPayload;
use mesh::payload::Protobuf;
use mesh::rpc::FailableRpc;
use vm_resource::Resource;
use vm_resource::ResourceId;
use vm_resource::kind::ScsiDeviceHandleKind;
use vm_resource::kind::VmbusDeviceHandleKind;
#[derive(Debug, Default, Copy, Clone, Eq, PartialEq, Hash, Protobuf)]
#[cfg_attr(feature = "arbitrary", derive(arbitrary::Arbitrary))]
pub struct ScsiPath {
pub path: u8,
pub target: u8,
pub lun: u8,
}
impl std::fmt::Display for ScsiPath {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}:{}:{}", self.path, self.target, self.lun)
}
}
#[derive(MeshPayload)]
pub struct ScsiControllerHandle {
pub instance_id: Guid,
pub io_queue_depth: Option<u32>,
pub max_sub_channel_count: u16,
pub devices: Vec<ScsiDeviceAndPath>,
pub requests: Option<mesh::Receiver<ScsiControllerRequest>>,
}
impl ResourceId<VmbusDeviceHandleKind> for ScsiControllerHandle {
const ID: &'static str = "scsi";
}
#[derive(MeshPayload)]
pub struct ScsiDeviceAndPath {
pub path: ScsiPath,
pub device: Resource<ScsiDeviceHandleKind>,
}
#[derive(MeshPayload)]
pub enum ScsiControllerRequest {
AddDevice(FailableRpc<ScsiDeviceAndPath, ()>),
RemoveDevice(FailableRpc<ScsiPath, ()>),
}