2017-05-19 20:28:49 +01:00
|
|
|
// /***************************************************************************
|
2020-02-27 12:31:25 +00:00
|
|
|
// Aaru Data Preservation Suite
|
2016-01-13 19:59:44 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// Filename : Fujitsu.cs
|
2016-07-28 18:13:49 +01:00
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
2016-01-13 19:59:44 +00:00
|
|
|
//
|
2016-07-28 18:13:49 +01:00
|
|
|
// Component : Fujitsu vendor commands.
|
2016-01-13 19:59:44 +00:00
|
|
|
//
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
//
|
2016-07-28 18:13:49 +01:00
|
|
|
// Contains vendor commands for Fujitsu SCSI devices.
|
2016-01-13 19:59:44 +00:00
|
|
|
//
|
|
|
|
|
// --[ License ] --------------------------------------------------------------
|
|
|
|
|
//
|
2016-07-28 18:13:49 +01:00
|
|
|
// 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
|
2016-01-13 19:59:44 +00:00
|
|
|
// License, or (at your option) any later version.
|
|
|
|
|
//
|
2016-07-28 18:13:49 +01:00
|
|
|
// 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.
|
2016-01-13 19:59:44 +00:00
|
|
|
//
|
2016-07-28 18:13:49 +01:00
|
|
|
// 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/>.
|
2016-01-13 19:59:44 +00:00
|
|
|
//
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2020-01-03 17:51:30 +00:00
|
|
|
// Copyright © 2011-2020 Natalia Portillo
|
2016-01-13 19:59:44 +00:00
|
|
|
// ****************************************************************************/
|
2016-07-28 18:13:49 +01:00
|
|
|
|
2016-01-13 19:59:44 +00:00
|
|
|
using System;
|
2017-12-21 14:30:38 +00:00
|
|
|
using System.Text;
|
2020-02-27 00:33:26 +00:00
|
|
|
using Aaru.Console;
|
2016-01-13 19:59:44 +00:00
|
|
|
|
2020-02-27 00:33:26 +00:00
|
|
|
namespace Aaru.Devices
|
2016-01-13 19:59:44 +00:00
|
|
|
{
|
|
|
|
|
public partial class Device
|
|
|
|
|
{
|
2020-02-29 18:03:35 +00:00
|
|
|
public bool FujitsuDisplay(out byte[] senseBuffer, bool flash, FujitsuDisplayModes mode, string firstHalf,
|
|
|
|
|
string secondHalf, uint timeout, out double duration)
|
2016-01-13 19:59:44 +00:00
|
|
|
{
|
|
|
|
|
byte[] tmp;
|
2018-06-22 08:08:38 +01:00
|
|
|
byte[] firstHalfBytes = new byte[8];
|
2016-01-13 19:59:44 +00:00
|
|
|
byte[] secondHalfBytes = new byte[8];
|
2018-06-22 08:08:38 +01:00
|
|
|
byte[] buffer = new byte[17];
|
|
|
|
|
bool displayLen = false;
|
|
|
|
|
bool halfMsg = false;
|
|
|
|
|
byte[] cdb = new byte[10];
|
2016-01-13 19:59:44 +00:00
|
|
|
|
|
|
|
|
if(!string.IsNullOrWhiteSpace(firstHalf))
|
|
|
|
|
{
|
2017-12-21 14:30:38 +00:00
|
|
|
tmp = Encoding.ASCII.GetBytes(firstHalf);
|
2016-01-13 19:59:44 +00:00
|
|
|
Array.Copy(tmp, 0, firstHalfBytes, 0, 8);
|
|
|
|
|
}
|
2018-06-22 08:08:38 +01:00
|
|
|
|
2016-01-13 19:59:44 +00:00
|
|
|
if(!string.IsNullOrWhiteSpace(secondHalf))
|
|
|
|
|
{
|
2017-12-21 14:30:38 +00:00
|
|
|
tmp = Encoding.ASCII.GetBytes(secondHalf);
|
2016-01-13 19:59:44 +00:00
|
|
|
Array.Copy(tmp, 0, secondHalfBytes, 0, 8);
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-19 02:11:47 +01:00
|
|
|
if(mode != FujitsuDisplayModes.Half)
|
|
|
|
|
if(!ArrayHelpers.ArrayIsNullOrWhiteSpace(firstHalfBytes) &&
|
2018-06-22 08:08:38 +01:00
|
|
|
!ArrayHelpers.ArrayIsNullOrWhiteSpace(secondHalfBytes))
|
|
|
|
|
displayLen = true;
|
2016-04-19 02:11:47 +01:00
|
|
|
else if(!ArrayHelpers.ArrayIsNullOrWhiteSpace(firstHalfBytes) &&
|
2020-02-29 18:03:35 +00:00
|
|
|
ArrayHelpers.ArrayIsNullOrWhiteSpace(secondHalfBytes))
|
|
|
|
|
halfMsg = true;
|
2016-01-13 19:59:44 +00:00
|
|
|
|
|
|
|
|
buffer[0] = (byte)((byte)mode << 5);
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
|
|
|
if(displayLen)
|
|
|
|
|
buffer[0] += 0x10;
|
|
|
|
|
|
|
|
|
|
if(flash)
|
|
|
|
|
buffer[0] += 0x08;
|
|
|
|
|
|
|
|
|
|
if(halfMsg)
|
|
|
|
|
buffer[0] += 0x04;
|
|
|
|
|
|
2016-01-13 19:59:44 +00:00
|
|
|
buffer[0] += 0x01; // Always ASCII
|
|
|
|
|
|
2020-02-29 18:03:35 +00:00
|
|
|
Array.Copy(firstHalfBytes, 0, buffer, 1, 8);
|
2016-01-13 19:59:44 +00:00
|
|
|
Array.Copy(secondHalfBytes, 0, buffer, 9, 8);
|
|
|
|
|
|
2017-12-20 17:15:26 +00:00
|
|
|
cdb[0] = (byte)ScsiCommands.FujitsuDisplay;
|
2016-01-13 19:59:44 +00:00
|
|
|
cdb[6] = (byte)buffer.Length;
|
|
|
|
|
|
2017-12-21 07:19:46 +00:00
|
|
|
LastError = SendScsiCommand(cdb, ref buffer, out senseBuffer, timeout, ScsiDirection.Out, out duration,
|
2017-12-22 03:13:43 +00:00
|
|
|
out bool sense);
|
2020-02-29 18:03:35 +00:00
|
|
|
|
2017-12-21 07:19:46 +00:00
|
|
|
Error = LastError != 0;
|
2016-01-13 19:59:44 +00:00
|
|
|
|
2020-02-27 23:48:41 +00:00
|
|
|
AaruConsole.DebugWriteLine("SCSI Device", "FUJITSU DISPLAY took {0} ms.", duration);
|
2016-01-13 19:59:44 +00:00
|
|
|
|
|
|
|
|
return sense;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
}
|