2020-03-11 21:56:55 +00:00
|
|
|
// /***************************************************************************
|
|
|
|
|
// Aaru Data Preservation Suite
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// Filename : Enums.cs
|
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
//
|
|
|
|
|
// Component : Aaru Remote.
|
|
|
|
|
//
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// Enumerations for the Aaru Remote protocol.
|
|
|
|
|
//
|
|
|
|
|
// --[ License ] --------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// This library is free software; you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU Lesser General Public License as
|
|
|
|
|
// published by the Free Software Foundation; either version 2.1 of the
|
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// This library 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
|
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
//
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2022-12-03 16:07:10 +00:00
|
|
|
// Copyright © 2011-2023 Natalia Portillo
|
2020-03-11 21:56:55 +00:00
|
|
|
// ****************************************************************************/
|
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
namespace Aaru.Devices.Remote;
|
|
|
|
|
|
|
|
|
|
/// <summary>Packet type enumeration</summary>
|
|
|
|
|
public enum AaruPacketType : sbyte
|
2019-10-12 19:26:28 +01:00
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
#pragma warning disable 1591
|
2022-11-15 15:58:43 +00:00
|
|
|
Nop = -1, Hello = 1, CommandListDevices = 2,
|
|
|
|
|
ResponseListDevices = 3, CommandOpen = 4, CommandScsi = 5,
|
|
|
|
|
ResponseScsi = 6, CommandAtaChs = 7, ResponseAtaChs = 8,
|
|
|
|
|
CommandAtaLba28 = 9, ResponseAtaLba28 = 10, CommandAtaLba48 = 11,
|
|
|
|
|
ResponseAtaLba48 = 12, CommandSdhci = 13, ResponseSdhci = 14,
|
|
|
|
|
CommandGetType = 15, ResponseGetType = 16, CommandGetSdhciRegisters = 17,
|
|
|
|
|
ResponseGetSdhciRegisters = 18, CommandGetUsbData = 19, ResponseGetUsbData = 20,
|
|
|
|
|
CommandGetFireWireData = 21, ResponseGetFireWireData = 22, CommandGetPcmciaData = 23,
|
|
|
|
|
ResponseGetPcmciaData = 24, CommandCloseDevice = 25, CommandAmIRoot = 26,
|
|
|
|
|
ResponseAmIRoot = 27, MultiCommandSdhci = 28, ResponseMultiSdhci = 29,
|
|
|
|
|
CommandReOpenDevice = 30, CommandOsRead = 31, ResponseOsRead = 32
|
2022-03-06 13:29:38 +00:00
|
|
|
#pragma warning restore 1591
|
|
|
|
|
}
|
2019-10-13 22:29:09 +01:00
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
/// <summary>Reasons for non-data request or response</summary>
|
|
|
|
|
public enum AaruNopReason : byte
|
|
|
|
|
{
|
|
|
|
|
/// <summary>Request or response has arrived unexpectedly</summary>
|
|
|
|
|
OutOfOrder = 0,
|
|
|
|
|
/// <summary>Packet or version of packet is not implemented</summary>
|
|
|
|
|
NotImplemented = 1,
|
|
|
|
|
/// <summary>Unknown or non-recognized packet</summary>
|
|
|
|
|
NotRecognized = 2,
|
|
|
|
|
/// <summary>Error trying to get list of devices</summary>
|
|
|
|
|
ErrorListDevices = 3,
|
|
|
|
|
/// <summary>Device opened correctly</summary>
|
|
|
|
|
OpenOk = 4,
|
|
|
|
|
/// <summary>An error occurred opening the device</summary>
|
|
|
|
|
OpenError = 5,
|
|
|
|
|
/// <summary>Device re-opened correctly</summary>
|
|
|
|
|
ReOpenOk = 6,
|
|
|
|
|
/// <summary>An error occurred closing the device</summary>
|
|
|
|
|
CloseError = 7
|
2019-10-12 19:26:28 +01:00
|
|
|
}
|