mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
68 lines
2.8 KiB
C#
68 lines
2.8 KiB
C#
|
|
// /***************************************************************************
|
|||
|
|
// The Disc Image Chef
|
|||
|
|
// ----------------------------------------------------------------------------
|
|||
|
|
//
|
|||
|
|
// Filename : ListDevices.cs
|
|||
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|||
|
|
//
|
|||
|
|
// Component : Verbs.
|
|||
|
|
//
|
|||
|
|
// --[ Description ] ----------------------------------------------------------
|
|||
|
|
//
|
|||
|
|
// Implements the 'media-info' verb.
|
|||
|
|
//
|
|||
|
|
// --[ 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 © 2011-2017 Natalia Portillo
|
|||
|
|
// ****************************************************************************/
|
|||
|
|
|
|||
|
|
using System.Linq;
|
|||
|
|
using DiscImageChef.Console;
|
|||
|
|
using DiscImageChef.Devices;
|
|||
|
|
|
|||
|
|
namespace DiscImageChef.Commands
|
|||
|
|
{
|
|||
|
|
public static class ListDevices
|
|||
|
|
{
|
|||
|
|
public static void doListDevices(ListDevicesOptions options)
|
|||
|
|
{
|
|||
|
|
DicConsole.DebugWriteLine("Media-Info command", "--debug={0}", options.Debug);
|
|||
|
|
DicConsole.DebugWriteLine("Media-Info command", "--verbose={0}", options.Verbose);
|
|||
|
|
|
|||
|
|
Devices.DeviceInfo[] devices = Device.ListDevices();
|
|||
|
|
|
|||
|
|
if(devices == null || devices.Length == 0)
|
|||
|
|
DicConsole.WriteLine("No known devices attached.");
|
|||
|
|
else
|
|||
|
|
{
|
|||
|
|
devices = devices.OrderBy(d => d.path).ToArray();
|
|||
|
|
|
|||
|
|
DicConsole.WriteLine("{0,-22}|{1,-16}|{2,-24}|{3,-24}|{4,-10}|{5,-10}",
|
|||
|
|
"Path", "Vendor", "Model", "Serial", "Bus", "Supported?");
|
|||
|
|
DicConsole.WriteLine("{0,-22}+{1,-16}+{2,-24}+{3,-24}+{4,-10}+{5,-10}",
|
|||
|
|
"----------------------", "----------------", "------------------------",
|
|||
|
|
"------------------------", "----------", "----------");
|
|||
|
|
foreach(Devices.DeviceInfo dev in devices)
|
|||
|
|
DicConsole.WriteLine("{0,-22}|{1,-16}|{2,-24}|{3,-24}|{4,-10}|{5,-10}", dev.path, dev.vendor, dev.model, dev.serial, dev.bus, dev.supported);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Core.Statistics.AddCommand("list-devices");
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|