Files
Aaru/Aaru.Filesystems/AppleDOS/File.cs

318 lines
11 KiB
C#
Raw Normal View History

2017-05-19 20:28:49 +01:00
// /***************************************************************************
2020-02-27 12:31:25 +00:00
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : File.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Apple DOS filesystem plugin.
//
// --[ 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 <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
2024-12-19 10:45:18 +00:00
// Copyright © 2011-2025 Natalia Portillo
// ****************************************************************************/
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
2021-09-16 04:42:14 +01:00
using Aaru.CommonTypes.Enums;
using Aaru.CommonTypes.Interfaces;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes.Structs;
using Aaru.Helpers;
using FileAttributes = Aaru.CommonTypes.Structs.FileAttributes;
namespace Aaru.Filesystems;
2022-03-06 13:29:38 +00:00
public sealed partial class AppleDOS
{
ErrorNumber CacheFile(string path)
{
string[] pathElements = path.Split(new[]
{
'/'
},
StringSplitOptions.RemoveEmptyEntries);
if(pathElements.Length != 1) return ErrorNumber.NotSupported;
string filename = pathElements[0].ToUpperInvariant();
if(filename.Length > 30) return ErrorNumber.NameTooLong;
if(!_catalogCache.TryGetValue(filename, out ushort ts)) return ErrorNumber.NoSuchFile;
var lba = (ulong)(((ts & 0xFF00) >> 8) * _sectorsPerTrack + (ts & 0xFF));
var fileMs = new MemoryStream();
var tsListMs = new MemoryStream();
ushort expectedBlock = 0;
while(lba != 0)
{
_usedSectors++;
ErrorNumber errno = _device.ReadSector(lba, false, out byte[] tsSectorB, out _);
if(errno != ErrorNumber.NoError) return errno;
if(_debug) tsListMs.Write(tsSectorB, 0, tsSectorB.Length);
// Read the track/sector list sector
TrackSectorList tsSector = Marshal.ByteArrayToStructureLittleEndian<TrackSectorList>(tsSectorB);
if(tsSector.sectorOffset > expectedBlock)
{
var hole = new byte[(tsSector.sectorOffset - expectedBlock) * _vtoc.bytesPerSector];
fileMs.Write(hole, 0, hole.Length);
expectedBlock = tsSector.sectorOffset;
}
foreach(TrackSectorListEntry entry in tsSector.entries)
{
_track1UsedByFiles |= entry.track == 1;
_track2UsedByFiles |= entry.track == 2;
_usedSectors++;
var blockLba = (ulong)(entry.track * _sectorsPerTrack + entry.sector);
if(blockLba == 0) break;
errno = _device.ReadSector(blockLba, false, out byte[] fileBlock, out _);
if(errno != ErrorNumber.NoError) return errno;
fileMs.Write(fileBlock, 0, fileBlock.Length);
expectedBlock++;
}
lba = (ulong)(tsSector.nextListTrack * _sectorsPerTrack + tsSector.nextListSector);
}
if(_fileCache.ContainsKey(filename)) _fileCache.Remove(filename);
if(_extentCache.ContainsKey(filename)) _extentCache.Remove(filename);
if(_fileSizeCache.ContainsKey(filename)) _fileSizeCache.Remove(filename);
_fileCache.Add(filename, fileMs.ToArray());
_extentCache.Add(filename, tsListMs.ToArray());
_fileSizeCache.Add(filename, (int)fileMs.Length);
return ErrorNumber.NoError;
}
ErrorNumber CacheAllFiles()
{
_fileCache = new Dictionary<string, byte[]>();
_extentCache = new Dictionary<string, byte[]>();
foreach(ErrorNumber error in _catalogCache.Keys.Select(CacheFile).Where(error => error != ErrorNumber.NoError))
return error;
uint tracksOnBoot = 1;
if(!_track1UsedByFiles) tracksOnBoot++;
if(!_track2UsedByFiles) tracksOnBoot++;
ErrorNumber errno =
_device.ReadSectors(0, false, (uint)(tracksOnBoot * _sectorsPerTrack), out _bootBlocks, out _);
if(errno != ErrorNumber.NoError) return errno;
_usedSectors += (uint)(_bootBlocks.Length / _vtoc.bytesPerSector);
return ErrorNumber.NoError;
}
#region IReadOnlyFilesystem Members
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
public ErrorNumber GetAttributes(string path, out FileAttributes attributes)
{
2022-03-06 13:29:38 +00:00
attributes = new FileAttributes();
2024-05-01 04:05:22 +01:00
if(!_mounted) return ErrorNumber.AccessDenied;
2020-02-29 18:03:35 +00:00
string[] pathElements = path.Split(new[]
2024-05-01 04:05:22 +01:00
{
'/'
},
StringSplitOptions.RemoveEmptyEntries);
2020-02-29 18:03:35 +00:00
2024-05-01 04:05:22 +01:00
if(pathElements.Length != 1) return ErrorNumber.NotSupported;
2022-03-06 13:29:38 +00:00
string filename = pathElements[0].ToUpperInvariant();
2024-05-01 04:05:22 +01:00
if(!_fileCache.ContainsKey(filename)) return ErrorNumber.NoSuchFile;
2022-03-06 13:29:38 +00:00
attributes = FileAttributes.Extents;
attributes |= FileAttributes.File;
2024-05-01 04:05:22 +01:00
if(_lockedFiles.Contains(filename)) attributes |= FileAttributes.ReadOnly;
2020-02-29 18:03:35 +00:00
if(_debug &&
(string.Compare(path, "$", StringComparison.InvariantCulture) == 0 ||
string.Compare(path, "$Boot", StringComparison.InvariantCulture) == 0 ||
string.Compare(path, "$Vtoc", StringComparison.InvariantCulture) == 0))
2022-03-06 13:29:38 +00:00
attributes |= FileAttributes.System;
2022-03-06 13:29:38 +00:00
return ErrorNumber.NoError;
}
public ErrorNumber OpenFile(string path, out IFileNode node)
{
node = null;
2024-05-01 04:05:22 +01:00
if(!_mounted) return ErrorNumber.AccessDenied;
string[] pathElements = path.Split(new[]
2024-05-01 04:05:22 +01:00
{
'/'
},
StringSplitOptions.RemoveEmptyEntries);
2024-05-01 04:05:22 +01:00
if(pathElements.Length != 1) return ErrorNumber.NotSupported;
byte[] file;
string filename = pathElements[0].ToUpperInvariant();
2024-05-01 04:05:22 +01:00
if(filename.Length > 30) return ErrorNumber.NameTooLong;
if(_debug &&
(string.Compare(path, "$", StringComparison.InvariantCulture) == 0 ||
string.Compare(path, "$Boot", StringComparison.InvariantCulture) == 0 ||
string.Compare(path, "$Vtoc", StringComparison.InvariantCulture) == 0))
{
if(string.Compare(path, "$", StringComparison.InvariantCulture) == 0)
file = _catalogBlocks;
else if(string.Compare(path, "$Vtoc", StringComparison.InvariantCulture) == 0)
file = _vtocBlocks;
else
file = _bootBlocks;
}
else
{
if(!_fileCache.TryGetValue(filename, out file))
{
ErrorNumber error = CacheFile(filename);
2024-05-01 04:05:22 +01:00
if(error != ErrorNumber.NoError) return error;
2024-05-01 04:05:22 +01:00
if(!_fileCache.TryGetValue(filename, out file)) return ErrorNumber.InvalidArgument;
}
}
node = new AppleDosFileNode
{
Path = path,
Length = file.Length,
Offset = 0,
2023-10-05 01:52:48 +01:00
Cache = file
};
return ErrorNumber.NoError;
}
/// <inheritdoc />
public ErrorNumber CloseFile(IFileNode node)
{
2024-05-01 04:05:22 +01:00
if(!_mounted) return ErrorNumber.AccessDenied;
2024-05-01 04:05:22 +01:00
if(node is not AppleDosFileNode mynode) return ErrorNumber.InvalidArgument;
2023-10-05 01:52:48 +01:00
mynode.Cache = null;
return ErrorNumber.NoError;
}
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
public ErrorNumber ReadFile(IFileNode node, long length, byte[] buffer, out long read)
2022-03-06 13:29:38 +00:00
{
read = 0;
2024-05-01 04:05:22 +01:00
if(!_mounted) return ErrorNumber.AccessDenied;
2024-05-01 04:05:22 +01:00
if(buffer is null || buffer.Length < length) return ErrorNumber.InvalidArgument;
2024-05-01 04:05:22 +01:00
if(node is not AppleDosFileNode mynode) return ErrorNumber.InvalidArgument;
read = length;
2024-05-01 04:05:22 +01:00
if(length + mynode.Offset >= mynode.Length) read = mynode.Length - mynode.Offset;
2023-10-05 01:52:48 +01:00
Array.Copy(mynode.Cache, mynode.Offset, buffer, 0, read);
mynode.Offset += read;
2022-03-06 13:29:38 +00:00
return ErrorNumber.NoError;
}
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
public ErrorNumber Stat(string path, out FileEntryInfo stat)
{
stat = null;
2024-05-01 04:05:22 +01:00
if(!_mounted) return ErrorNumber.AccessDenied;
2020-02-29 18:03:35 +00:00
string[] pathElements = path.Split(new[]
2024-05-01 04:05:22 +01:00
{
'/'
},
StringSplitOptions.RemoveEmptyEntries);
2020-02-29 18:03:35 +00:00
2024-05-01 04:05:22 +01:00
if(pathElements.Length != 1) return ErrorNumber.NotSupported;
2022-03-06 13:29:38 +00:00
string filename = pathElements[0].ToUpperInvariant();
2024-05-01 04:05:22 +01:00
if(filename.Length > 30) return ErrorNumber.NameTooLong;
2020-02-29 18:03:35 +00:00
2024-05-01 04:05:22 +01:00
if(!_fileCache.ContainsKey(filename)) return ErrorNumber.NoSuchFile;
2022-03-06 13:29:38 +00:00
stat = new FileEntryInfo();
2022-03-06 13:29:38 +00:00
_fileSizeCache.TryGetValue(filename, out int fileSize);
GetAttributes(path, out FileAttributes attrs);
if(_debug &&
(string.Compare(path, "$", StringComparison.InvariantCulture) == 0 ||
string.Compare(path, "$Boot", StringComparison.InvariantCulture) == 0 ||
string.Compare(path, "$Vtoc", StringComparison.InvariantCulture) == 0))
2022-03-06 13:29:38 +00:00
{
if(string.Compare(path, "$", StringComparison.InvariantCulture) == 0)
stat.Length = _catalogBlocks.Length;
else if(string.Compare(path, "$Boot", StringComparison.InvariantCulture) == 0)
stat.Length = _bootBlocks.Length;
else if(string.Compare(path, "$Vtoc", StringComparison.InvariantCulture) == 0)
stat.Length = _vtocBlocks.Length;
stat.Blocks = stat.Length / _vtoc.bytesPerSector;
}
else
{
stat.Length = fileSize;
stat.Blocks = stat.Length / _vtoc.bytesPerSector;
}
2022-03-06 13:29:38 +00:00
stat.Attributes = attrs;
stat.BlockSize = _vtoc.bytesPerSector;
stat.Links = 1;
2022-03-06 13:29:38 +00:00
return ErrorNumber.NoError;
}
#endregion
2017-12-19 20:33:03 +00:00
}