2015-10-12 19:55:00 +01:00
|
|
|
|
// /***************************************************************************
|
|
|
|
|
|
// The Disc Image Chef
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// Filename : Variables.cs
|
|
|
|
|
|
// Version : 1.0
|
|
|
|
|
|
// Author(s) : Natalia Portillo
|
|
|
|
|
|
//
|
|
|
|
|
|
// Component : Component
|
|
|
|
|
|
//
|
|
|
|
|
|
// Revision : $Revision$
|
|
|
|
|
|
// Last change by : $Author$
|
|
|
|
|
|
// Date : $Date$
|
|
|
|
|
|
//
|
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// Description
|
|
|
|
|
|
//
|
|
|
|
|
|
// --[ License ] --------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
|
// it under the terms of the GNU General Public License as
|
|
|
|
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
|
|
//
|
|
|
|
|
|
// This program 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 General Public License for more details.
|
|
|
|
|
|
//
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
// Copyright (C) 2011-2015 Claunia.com
|
|
|
|
|
|
// ****************************************************************************/
|
|
|
|
|
|
// //$Id$
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using Microsoft.Win32.SafeHandles;
|
|
|
|
|
|
|
|
|
|
|
|
namespace DiscImageChef.Devices
|
|
|
|
|
|
{
|
|
|
|
|
|
public partial class Device
|
|
|
|
|
|
{
|
|
|
|
|
|
Interop.PlatformID platformID;
|
|
|
|
|
|
object fd;
|
2015-10-13 01:45:07 +01:00
|
|
|
|
bool error;
|
|
|
|
|
|
int lastError;
|
2015-10-19 05:21:35 +01:00
|
|
|
|
readonly DeviceType type;
|
|
|
|
|
|
readonly string manufacturer;
|
|
|
|
|
|
readonly string model;
|
|
|
|
|
|
readonly string revision;
|
|
|
|
|
|
readonly string serial;
|
|
|
|
|
|
readonly Decoders.SCSI.PeripheralDeviceTypes scsiType;
|
2015-12-30 11:45:27 +00:00
|
|
|
|
readonly bool removable;
|
2015-12-31 16:12:22 +00:00
|
|
|
|
readonly bool usb;
|
|
|
|
|
|
readonly ushort usbVendor;
|
|
|
|
|
|
readonly ushort usbProduct;
|
|
|
|
|
|
readonly byte[] usbDescriptors;
|
|
|
|
|
|
readonly string usbManufacturerString;
|
|
|
|
|
|
readonly string usbProductString;
|
|
|
|
|
|
readonly string usbSerialString;
|
2015-10-12 19:55:00 +01:00
|
|
|
|
|
2015-10-12 20:08:56 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the Platform ID for this device
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The Platform ID</value>
|
2015-10-12 19:55:00 +01:00
|
|
|
|
public Interop.PlatformID PlatformID
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return platformID;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2015-10-12 20:08:56 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the file handle representing this device
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The file handle</value>
|
2015-10-12 19:55:00 +01:00
|
|
|
|
public object FileHandle
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return fd;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2015-10-12 20:08:56 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the standard timeout for commands sent to this device
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The timeout in seconds</value>
|
2015-10-12 19:55:00 +01:00
|
|
|
|
public uint Timeout
|
|
|
|
|
|
{
|
|
|
|
|
|
get;
|
|
|
|
|
|
set;
|
|
|
|
|
|
}
|
2015-10-13 01:45:07 +01:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets a value indicating whether this <see cref="DiscImageChef.Devices.Device"/> is in error.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value><c>true</c> if error; otherwise, <c>false</c>.</value>
|
|
|
|
|
|
public bool Error
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return error;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the last error number.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The last error.</value>
|
|
|
|
|
|
public int LastError
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return lastError;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2015-10-19 04:46:09 +01:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the device type.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The device type.</value>
|
|
|
|
|
|
public DeviceType Type
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return type;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the device's manufacturer
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The manufacturer.</value>
|
|
|
|
|
|
public string Manufacturer
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return manufacturer;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the device model
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The model.</value>
|
|
|
|
|
|
public string Model
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return model;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the device's revision.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The revision.</value>
|
|
|
|
|
|
public string Revision
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return revision;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the device's serial number.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The serial number.</value>
|
|
|
|
|
|
public string Serial
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return serial;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2015-10-19 05:20:42 +01:00
|
|
|
|
|
2015-12-31 16:12:22 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the device's SCSI peripheral device type
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The SCSI peripheral device type.</value>
|
2015-10-19 05:20:42 +01:00
|
|
|
|
public Decoders.SCSI.PeripheralDeviceTypes SCSIType
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return scsiType;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2015-12-30 11:45:27 +00:00
|
|
|
|
|
2015-12-31 16:12:22 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets a value indicating whether this device's media is removable.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value><c>true</c> if this device's media is removable; otherwise, <c>false</c>.</value>
|
2015-12-30 11:45:27 +00:00
|
|
|
|
public bool IsRemovable
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return removable;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2015-12-31 16:12:22 +00:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets a value indicating whether this device is attached via USB.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value><c>true</c> if this device is attached via USB; otherwise, <c>false</c>.</value>
|
|
|
|
|
|
public bool IsUSB
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return usb;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the USB vendor ID.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The USB vendor ID.</value>
|
|
|
|
|
|
public ushort USBVendorID
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return usbVendor;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the USB product ID.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The USB product ID.</value>
|
|
|
|
|
|
public ushort USBProductID
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return usbProduct;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the USB descriptors.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The USB descriptors.</value>
|
|
|
|
|
|
public byte[] USBDescriptors
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return usbDescriptors;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the USB manufacturer string.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The USB manufacturer string.</value>
|
|
|
|
|
|
public string USBManufacturerString
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return usbManufacturerString;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the USB product string.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The USB product string.</value>
|
|
|
|
|
|
public string USBProductString
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return usbProductString;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the USB serial string.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The USB serial string.</value>
|
|
|
|
|
|
public string USBSerialString
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return usbSerialString;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2015-10-12 19:55:00 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|