예제 #1
0
        internal static void DoDeviceReport(DeviceReportOptions options)
        {
            DicConsole.DebugWriteLine("Device-Report command", "--debug={0}", options.Debug);
            DicConsole.DebugWriteLine("Device-Report command", "--verbose={0}", options.Verbose);
            DicConsole.DebugWriteLine("Device-Report command", "--device={0}", options.DevicePath);

            if (options.DevicePath.Length == 2 && options.DevicePath[1] == ':' && options.DevicePath[0] != '/' &&
                char.IsLetter(options.DevicePath[0]))
            {
                options.DevicePath = "\\\\.\\" + char.ToUpper(options.DevicePath[0]) + ':';
            }

            Device dev = new Device(options.DevicePath);

            if (dev.Error)
            {
                DicConsole.ErrorWriteLine("Error {0} opening device.", dev.LastError);
                return;
            }

            Core.Statistics.AddDevice(dev);

            Metadata.DeviceReport report = new Metadata.DeviceReport();
            bool   removable             = false;
            string xmlFile;

            if (!string.IsNullOrWhiteSpace(dev.Manufacturer) && !string.IsNullOrWhiteSpace(dev.Revision))
            {
                xmlFile = dev.Manufacturer + "_" + dev.Model + "_" + dev.Revision + ".xml";
            }
            else if (!string.IsNullOrWhiteSpace(dev.Manufacturer))
            {
                xmlFile = dev.Manufacturer + "_" + dev.Model + ".xml";
            }
            else if (!string.IsNullOrWhiteSpace(dev.Revision))
            {
                xmlFile = dev.Model + "_" + dev.Revision + ".xml";
            }
            else
            {
                xmlFile = dev.Model + ".xml";
            }

            xmlFile = xmlFile.Replace('\\', '_').Replace('/', '_').Replace('?', '_');

            switch (dev.Type)
            {
            case DeviceType.ATA:
                Ata.Report(dev, ref report, options.Debug, ref removable);
                break;

            case DeviceType.MMC:
            case DeviceType.SecureDigital:
                SecureDigital.Report(dev, ref report);
                break;

            case DeviceType.NVMe:
                Nvme.Report(dev, ref report, options.Debug, ref removable);
                break;

            case DeviceType.ATAPI:
            case DeviceType.SCSI:
                General.Report(dev, ref report, options.Debug, ref removable);
                break;

            default: throw new NotSupportedException("Unknown device type.");
            }

            FileStream xmlFs = new FileStream(xmlFile, FileMode.Create);

            XmlSerializer xmlSer = new XmlSerializer(typeof(Metadata.DeviceReport));

            xmlSer.Serialize(xmlFs, report);
            xmlFs.Close();
            Core.Statistics.AddCommand("device-report");

            if (Settings.Settings.Current.ShareReports)
            {
                Remote.SubmitReport(report);
            }
        }