using System.Collections.Generic; using System.IO; using System.Linq; #if NET462_OR_GREATER || NETCOREAPP using Microsoft.Management.Infrastructure; using Microsoft.Management.Infrastructure.Generic; #endif using SabreTools.RedumpLib.Data; namespace MPF.Frontend { /// /// Represents information for a single drive /// /// /// TODO: Can the Aaru models be used instead of the ones I've created here? /// public class Drive { #region Fields /// /// Represents drive type /// public InternalDriveType? InternalDriveType { get; set; } /// /// Drive partition format /// public string? DriveFormat { get; private set; } = null; /// /// Windows drive path /// public string? Name { get; private set; } = null; /// /// Represents if Windows has marked the drive as active /// public bool MarkedActive { get; private set; } = false; /// /// Represents the total size of the drive /// public long TotalSize { get; private set; } = default; /// /// Media label as read by Windows /// /// The try/catch is needed because Windows will throw an exception if the drive is not marked as active public string? VolumeLabel { get; private set; } = null; #endregion #region Derived Fields /// /// Read-only access to the drive letter /// /// Should only be used in UI applications public char? Letter => Name?[0] ?? '\0'; #endregion /// /// Protected constructor /// protected Drive() { } /// /// Create a new Drive object from a drive type and device path /// /// InternalDriveType value representing the drive type /// Path to the device according to the local machine public static Drive? Create(InternalDriveType? driveType, string devicePath) { // Create a new, empty drive object var drive = new Drive() { InternalDriveType = driveType, }; // If we have an invalid device path, return null if (string.IsNullOrEmpty(devicePath)) return null; // Sanitize a Windows-formatted long device path if (devicePath.StartsWith("\\\\.\\")) devicePath = devicePath.Substring("\\\\.\\".Length); // Create and validate the drive info object var driveInfo = new DriveInfo(devicePath); if (driveInfo == null || driveInfo == default) return null; // Fill in the rest of the data drive.PopulateFromDriveInfo(driveInfo); return drive; } /// /// Populate all fields from a DriveInfo object /// /// DriveInfo object to populate from private void PopulateFromDriveInfo(DriveInfo? driveInfo) { // If we have an invalid DriveInfo, just return if (driveInfo == null || driveInfo == default) return; // Populate the data fields Name = driveInfo.Name; MarkedActive = driveInfo.IsReady; if (MarkedActive) { DriveFormat = driveInfo.DriveFormat; TotalSize = driveInfo.TotalSize; VolumeLabel = driveInfo.VolumeLabel; } else { DriveFormat = string.Empty; TotalSize = default; VolumeLabel = string.Empty; } } #region Public Functionality /// /// Create a list of active drives matched to their volume labels /// /// True to ignore fixed drives from population, false otherwise /// Active drives, matched to labels, if possible public static List CreateListOfDrives(bool ignoreFixedDrives) { var drives = GetDriveList(ignoreFixedDrives); drives = [.. drives.OrderBy(i => i == null ? "\0" : i.Name)]; return drives; } /// /// Get the current media type from drive letter /// /// /// public (MediaType?, string?) GetMediaType(RedumpSystem? system) { // Take care of the non-optical stuff first switch (InternalDriveType) { case Frontend.InternalDriveType.Floppy: return (MediaType.FloppyDisk, null); case Frontend.InternalDriveType.HardDisk: return (MediaType.HardDisk, null); case Frontend.InternalDriveType.Removable: return (MediaType.FlashDrive, null); } // Some systems should default to certain media types switch (system) { // CD case RedumpSystem.Panasonic3DOInteractiveMultiplayer: case RedumpSystem.PhilipsCDi: case RedumpSystem.SegaDreamcast: case RedumpSystem.SegaSaturn: case RedumpSystem.SonyPlayStation: case RedumpSystem.VideoCD: return (MediaType.CDROM, null); // DVD case RedumpSystem.DVDAudio: case RedumpSystem.DVDVideo: case RedumpSystem.MicrosoftXbox: case RedumpSystem.MicrosoftXbox360: return (MediaType.DVD, null); // HD-DVD case RedumpSystem.HDDVDVideo: return (MediaType.HDDVD, null); // Blu-ray case RedumpSystem.BDVideo: case RedumpSystem.MicrosoftXboxOne: case RedumpSystem.MicrosoftXboxSeriesXS: case RedumpSystem.SonyPlayStation3: case RedumpSystem.SonyPlayStation4: case RedumpSystem.SonyPlayStation5: return (MediaType.BluRay, null); // GameCube case RedumpSystem.NintendoGameCube: return (MediaType.NintendoGameCubeGameDisc, null); // Wii case RedumpSystem.NintendoWii: return (MediaType.NintendoWiiOpticalDisc, null); // WiiU case RedumpSystem.NintendoWiiU: return (MediaType.NintendoWiiUOpticalDisc, null); // PSP case RedumpSystem.SonyPlayStationPortable: return (MediaType.UMD, null); } // Handle optical media by size and filesystem if (TotalSize >= 0 && TotalSize <= 800_000_000 && (DriveFormat == "CDFS" || DriveFormat == "UDF")) return (MediaType.CDROM, null); else if (TotalSize > 800_000_000 && TotalSize <= 8_540_000_000 && (DriveFormat == "CDFS" || DriveFormat == "UDF")) return (MediaType.DVD, null); else if (TotalSize > 8_540_000_000) return (MediaType.BluRay, null); return (null, "Could not determine media type!"); } /// /// Refresh the current drive information based on path /// public void RefreshDrive() { var driveInfo = DriveInfo.GetDrives().FirstOrDefault(d => d?.Name == Name); PopulateFromDriveInfo(driveInfo); } #endregion #region Helpers /// /// Get all current attached Drives /// /// True to ignore fixed drives from population, false otherwise /// List of drives, null on error /// /// https://stackoverflow.com/questions/3060796/how-to-distinguish-between-usb-and-floppy-devices?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa /// https://msdn.microsoft.com/en-us/library/aa394173(v=vs.85).aspx /// private static List GetDriveList(bool ignoreFixedDrives) { var desiredDriveTypes = new List() { DriveType.CDRom }; if (!ignoreFixedDrives) { desiredDriveTypes.Add(DriveType.Fixed); desiredDriveTypes.Add(DriveType.Removable); } // TODO: Reduce reliance on `DriveInfo` // https://github.com/aaru-dps/Aaru/blob/5164a154e2145941472f2ee0aeb2eff3338ecbb3/Aaru.Devices/Windows/ListDevices.cs#L66 // Create an output drive list var drives = new List(); // Get all standard supported drive types try { drives = DriveInfo.GetDrives() .Where(d => desiredDriveTypes.Contains(d.DriveType)) .Select(d => Create(ToInternalDriveType(d.DriveType), d.Name) ?? new Drive()) .ToList(); } catch { return drives; } // Find and update all floppy drives #if NET462_OR_GREATER || NETCOREAPP try { CimSession session = CimSession.Create(null); var collection = session.QueryInstances("root\\CIMV2", "WQL", "SELECT * FROM Win32_LogicalDisk"); foreach (CimInstance instance in collection) { CimKeyedCollection properties = instance.CimInstanceProperties; uint? mediaType = properties["MediaType"]?.Value as uint?; if (mediaType != null && ((mediaType > 0 && mediaType < 11) || (mediaType > 12 && mediaType < 22))) { char devId = (properties["Caption"].Value as string ?? string.Empty)[0]; drives.ForEach(d => { if (d?.Name != null && d.Name[0] == devId) { d.InternalDriveType = Frontend.InternalDriveType.Floppy; } }); } } } catch { // No-op } #endif return drives; } /// /// Convert drive type to internal version, if possible /// /// DriveType value to check /// InternalDriveType, if possible, null on error internal static InternalDriveType? ToInternalDriveType(DriveType driveType) { return driveType switch { DriveType.CDRom => (InternalDriveType?)Frontend.InternalDriveType.Optical, DriveType.Fixed => (InternalDriveType?)Frontend.InternalDriveType.HardDisk, DriveType.Removable => (InternalDriveType?)Frontend.InternalDriveType.Removable, _ => null, }; } #endregion } }