Files

128 lines
4.4 KiB
C#

// /***************************************************************************
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : Dir.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : MicroDOS 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/>.
//
// ----------------------------------------------------------------------------
// Copyright © 2011-2026 Natalia Portillo
// ****************************************************************************/
using System;
using System.Linq;
using Aaru.CommonTypes.Enums;
using Aaru.CommonTypes.Interfaces;
using Aaru.Helpers;
using Aaru.Logging;
namespace Aaru.Filesystems;
/// <inheritdoc />
public sealed partial class MicroDOS
{
/// <inheritdoc />
public ErrorNumber OpenDir(string path, out IDirNode node)
{
node = null;
if(!_mounted) return ErrorNumber.AccessDenied;
// Normalize path
string normalizedPath = path ?? "/";
if(normalizedPath is "" or ".") normalizedPath = "/";
// MicroDOS only has a root directory - no subdirectories
if(normalizedPath != "/" && !string.Equals(normalizedPath, "/", StringComparison.OrdinalIgnoreCase))
return ErrorNumber.NotDirectory;
node = new MicroDosDirNode
{
Path = "/",
Position = 0,
Entries = _rootDirectoryCache.Keys.ToArray()
};
return ErrorNumber.NoError;
}
/// <inheritdoc />
public ErrorNumber CloseDir(IDirNode node)
{
if(node is not MicroDosDirNode) return ErrorNumber.InvalidArgument;
return ErrorNumber.NoError;
}
/// <inheritdoc />
public ErrorNumber ReadDir(IDirNode node, out string filename)
{
filename = null;
if(!_mounted) return ErrorNumber.AccessDenied;
if(node is not MicroDosDirNode microDosDirNode) return ErrorNumber.InvalidArgument;
if(microDosDirNode.Position < 0) return ErrorNumber.InvalidArgument;
if(microDosDirNode.Position >= microDosDirNode.Entries.Length) return ErrorNumber.NoError;
filename = microDosDirNode.Entries[microDosDirNode.Position++];
return ErrorNumber.NoError;
}
/// <summary>Processes a single directory entry and adds it to cache if valid</summary>
/// <param name="entry">The directory entry to process</param>
/// <param name="entriesRead">Counter for entries read (incremented for valid entries)</param>
void ProcessDirectoryEntry(DirectoryEntry entry, ref int entriesRead)
{
// Skip deleted entries
if(entry.status == (byte)FileStatus.Deleted) return;
// Skip BAD-file entries (they mark bad blocks)
if(entry.status == (byte)FileStatus.BadFile) return;
// Skip subdirectory markers (first byte of filename = 0x7F)
// These are just directory names, not actual files
if(entry.filename is { Length: > 0 } && entry.filename[0] == SUBDIR_MARKER) return;
// Skip entries not in root directory (directory byte != 0)
if(entry.directory != 0) return;
// Get filename
string filename = StringHandlers.CToString(entry.filename, _encoding).Trim();
if(string.IsNullOrWhiteSpace(filename)) return;
if(_rootDirectoryCache.TryAdd(filename, entry))
{
AaruLogging.Debug(MODULE_NAME,
"Found '{0}' (block={1}, blocks={2}, length={3})",
filename,
entry.blockNo,
entry.blocks,
entry.length);
}
entriesRead++;
}
}