// /*************************************************************************** // Aaru Data Preservation Suite // ---------------------------------------------------------------------------- // // Filename : Write.cs // Author(s) : Natalia Portillo // // Component : Disk image plugins. // // --[ Description ] ---------------------------------------------------------- // // Writes Digital Research's DISKCOPY disk images. // // --[ 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 . // // ---------------------------------------------------------------------------- // Copyright © 2011-2021 Natalia Portillo // ****************************************************************************/ using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using Aaru.CommonTypes; using Aaru.CommonTypes.Enums; using Aaru.CommonTypes.Structs; using Aaru.Helpers; using Schemas; namespace Aaru.DiscImages { public sealed partial class DriDiskCopy { /// public bool Create(string path, MediaType mediaType, Dictionary options, ulong sectors, uint sectorSize) { if(sectorSize == 0) { ErrorMessage = "Unsupported sector size"; return false; } if(sectors > ushort.MaxValue) { ErrorMessage = "Too many sectors"; return false; } if(!SupportedMediaTypes.Contains(mediaType)) { ErrorMessage = $"Unsupported media format {mediaType}"; return false; } _imageInfo = new ImageInfo { MediaType = mediaType, SectorSize = sectorSize, Sectors = sectors }; try { _writingStream = new FileStream(path, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.None); } catch(IOException e) { ErrorMessage = $"Could not create new image file, exception {e.Message}"; return false; } // TODO: Check this (ushort cylinders, byte heads, ushort sectorsPerTrack, uint bytesPerSector, MediaEncoding encoding, bool variableSectorsPerTrack, MediaType type) geometry = Geometry.GetGeometry(mediaType); _footer = new Footer { signature = new byte[51], bpb = new Bpb { five = 5, _driveCode = DriveCode.mf2ed, cylinders = geometry.cylinders, bps = (ushort)_imageInfo.SectorSize, sectors = (ushort)_imageInfo.Sectors, sptrack = (ushort)_imageInfo.SectorsPerTrack, heads = (ushort)_imageInfo.Heads, sptrack2 = (ushort)_imageInfo.SectorsPerTrack, unknown5 = new byte[144] } }; Array.Copy(Encoding.ASCII.GetBytes("DiskImage 2.01 (C) 1990,1991 Digital Research Inc"), 0, _footer.signature, 0, 49); _footer.bpbcopy = _footer.bpb; IsWriting = true; ErrorMessage = null; return true; } /// public bool WriteMediaTag(byte[] data, MediaTagType tag) { ErrorMessage = "Writing media tags is not supported."; return false; } /// public bool WriteSector(byte[] data, ulong sectorAddress) { if(!IsWriting) { ErrorMessage = "Tried to write on a non-writable image"; return false; } if(data.Length != _imageInfo.SectorSize) { ErrorMessage = "Incorrect data size"; return false; } if(sectorAddress >= _imageInfo.Sectors) { ErrorMessage = "Tried to write past image size"; return false; } _writingStream.Seek((long)(sectorAddress * _imageInfo.SectorSize), SeekOrigin.Begin); _writingStream.Write(data, 0, data.Length); ErrorMessage = ""; return true; } /// public bool WriteSectors(byte[] data, ulong sectorAddress, uint length) { if(!IsWriting) { ErrorMessage = "Tried to write on a non-writable image"; return false; } if(data.Length % _imageInfo.SectorSize != 0) { ErrorMessage = "Incorrect data size"; return false; } if(sectorAddress + length > _imageInfo.Sectors) { ErrorMessage = "Tried to write past image size"; return false; } _writingStream.Seek((long)(sectorAddress * _imageInfo.SectorSize), SeekOrigin.Begin); _writingStream.Write(data, 0, data.Length); ErrorMessage = ""; return true; } /// public bool WriteSectorLong(byte[] data, ulong sectorAddress) { ErrorMessage = "Writing sectors with tags is not supported."; return false; } /// public bool WriteSectorsLong(byte[] data, ulong sectorAddress, uint length) { ErrorMessage = "Writing sectors with tags is not supported."; return false; } /// public bool Close() { if(!IsWriting) { ErrorMessage = "Image is not opened for writing"; return false; } byte[] hdr = new byte[Marshal.SizeOf