// /*************************************************************************** // Aaru Data Preservation Suite // ---------------------------------------------------------------------------- // // Filename : MCPT.cs // Author(s) : Natalia Portillo // // Component : Aaru device testing. // // --[ 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 . // // ---------------------------------------------------------------------------- // Copyright © 2011-2021 Natalia Portillo // ****************************************************************************/ using Aaru.Console; using Aaru.Decoders.ATA; using Aaru.Devices; namespace Aaru.Tests.Devices.ATA { internal static class Mcpt { internal static void Menu(string devPath, Device dev) { while(true) { System.Console.Clear(); AaruConsole.WriteLine("Device: {0}", devPath); AaruConsole.WriteLine("Send a Media Card Pass Through command to the device:"); AaruConsole.WriteLine("1.- Send CHECK MEDIA CARD TYPE command."); AaruConsole.WriteLine("0.- Return to ATA commands menu."); AaruConsole.Write("Choose: "); string strDev = System.Console.ReadLine(); if(!int.TryParse(strDev, out int item)) { AaruConsole.WriteLine("Not a number. Press any key to continue..."); System.Console.ReadKey(); continue; } switch(item) { case 0: AaruConsole.WriteLine("Returning to ATA commands menu..."); return; case 1: CheckMediaCardType(devPath, dev); continue; default: AaruConsole.WriteLine("Incorrect option. Press any key to continue..."); System.Console.ReadKey(); continue; } } } static void CheckMediaCardType(string devPath, Device dev) { byte feature = 0; string strDev; int item; parameters: while(true) { System.Console.Clear(); AaruConsole.WriteLine("Device: {0}", devPath); AaruConsole.WriteLine("Parameters for CHECK MEDIA CARD TYPE command:"); AaruConsole.WriteLine("Feature: {0}", feature); AaruConsole.WriteLine(); AaruConsole.WriteLine("Choose what to do:"); AaruConsole.WriteLine("1.- Change parameters."); AaruConsole.WriteLine("2.- Send command with these parameters."); AaruConsole.WriteLine("0.- Return to Media Card Pass Through commands menu."); strDev = System.Console.ReadLine(); if(!int.TryParse(strDev, out item)) { AaruConsole.WriteLine("Not a number. Press any key to continue..."); System.Console.ReadKey(); continue; } switch(item) { case 0: AaruConsole.WriteLine("Returning to Media Card Pass Through commands menu..."); return; case 1: AaruConsole.Write("Feature?: "); strDev = System.Console.ReadLine(); if(!byte.TryParse(strDev, out feature)) { AaruConsole.WriteLine("Not a number. Press any key to continue..."); feature = 0; System.Console.ReadKey(); } break; case 2: goto start; } } start: System.Console.Clear(); bool sense = dev.CheckMediaCardType(feature, out AtaErrorRegistersChs errorRegisters, dev.Timeout, out double duration); menu: AaruConsole.WriteLine("Device: {0}", devPath); AaruConsole.WriteLine("Sending CHECK MEDIA CARD TYPE to the device:"); AaruConsole.WriteLine("Command took {0} ms.", duration); AaruConsole.WriteLine("Sense is {0}.", sense); AaruConsole.WriteLine("CHECK MEDIA CARD TYPE status registers:"); AaruConsole.Write("{0}", MainClass.DecodeAtaRegisters(errorRegisters)); AaruConsole.WriteLine(); AaruConsole.WriteLine("Choose what to do:"); AaruConsole.WriteLine("1.- Send command again."); AaruConsole.WriteLine("2.- Change parameters."); AaruConsole.WriteLine("0.- Return to Media Card Pass Through commands menu."); AaruConsole.Write("Choose: "); strDev = System.Console.ReadLine(); if(!int.TryParse(strDev, out item)) { AaruConsole.WriteLine("Not a number. Press any key to continue..."); System.Console.ReadKey(); System.Console.Clear(); goto menu; } switch(item) { case 0: AaruConsole.WriteLine("Returning to Media Card Pass Through commands menu..."); return; case 1: goto start; case 2: goto parameters; default: AaruConsole.WriteLine("Incorrect option. Press any key to continue..."); System.Console.ReadKey(); System.Console.Clear(); goto menu; } } } }