Files
Aaru/Aaru.Filesystems/FATX/Dir.cs

157 lines
6.1 KiB
C#
Raw Normal View History

2019-04-06 11:03:43 +01:00
// /***************************************************************************
2020-02-27 12:31:25 +00:00
// Aaru Data Preservation Suite
2019-04-06 11:03:43 +01:00
// ----------------------------------------------------------------------------
//
// Filename : Dir.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : FATX filesystem plugin.
//
// --[ Description ] ----------------------------------------------------------
//
// Methods to show the FATX directories.
//
// --[ 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/>.
//
// ----------------------------------------------------------------------------
2020-01-03 17:51:30 +00:00
// Copyright © 2011-2020 Natalia Portillo
2019-04-06 11:03:43 +01:00
// ****************************************************************************/
using System;
using System.Collections.Generic;
using System.Linq;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes.Structs;
using Aaru.Helpers;
2019-04-06 11:03:43 +01:00
2020-07-20 15:43:52 +01:00
namespace Aaru.Filesystems
2019-04-06 11:03:43 +01:00
{
public partial class XboxFatPlugin
{
public Errno ReadDir(string path, out List<string> contents)
{
contents = null;
2020-02-29 18:03:35 +00:00
if(!mounted)
return Errno.AccessDenied;
if(string.IsNullOrWhiteSpace(path) ||
path == "/")
{
contents = rootDirectory.Keys.ToList();
2020-02-29 18:03:35 +00:00
return Errno.NoError;
}
2019-04-10 22:38:35 +01:00
string cutPath = path.StartsWith("/") ? path.Substring(1).ToLower(cultureInfo) : path.ToLower(cultureInfo);
if(directoryCache.TryGetValue(cutPath, out Dictionary<string, DirectoryEntry> currentDirectory))
{
contents = currentDirectory.Keys.ToList();
2020-02-29 18:03:35 +00:00
return Errno.NoError;
}
2020-02-29 18:03:35 +00:00
string[] pieces = cutPath.Split(new[]
{
'/'
}, StringSplitOptions.RemoveEmptyEntries);
KeyValuePair<string, DirectoryEntry> entry =
rootDirectory.FirstOrDefault(t => t.Key.ToLower(cultureInfo) == pieces[0]);
2020-02-29 18:03:35 +00:00
if(string.IsNullOrEmpty(entry.Key))
return Errno.NoSuchFile;
2020-02-29 18:03:35 +00:00
if(!entry.Value.attributes.HasFlag(Attributes.Directory))
return Errno.NotDirectory;
string currentPath = pieces[0];
currentDirectory = rootDirectory;
for(int p = 0; p < pieces.Length; p++)
{
entry = currentDirectory.FirstOrDefault(t => t.Key.ToLower(cultureInfo) == pieces[p]);
2020-02-29 18:03:35 +00:00
if(string.IsNullOrEmpty(entry.Key))
return Errno.NoSuchFile;
2020-02-29 18:03:35 +00:00
if(!entry.Value.attributes.HasFlag(Attributes.Directory))
return Errno.NotDirectory;
currentPath = p == 0 ? pieces[0] : $"{currentPath}/{pieces[p]}";
uint currentCluster = entry.Value.firstCluster;
2020-02-29 18:03:35 +00:00
if(directoryCache.TryGetValue(currentPath, out currentDirectory))
continue;
uint[] clusters = GetClusters(currentCluster);
2020-02-29 18:03:35 +00:00
if(clusters is null)
return Errno.InvalidArgument;
byte[] directoryBuffer = new byte[bytesPerCluster * clusters.Length];
for(int i = 0; i < clusters.Length; i++)
{
2020-02-29 18:03:35 +00:00
byte[] buffer =
imagePlugin.ReadSectors(firstClusterSector + ((clusters[i] - 1) * sectorsPerCluster),
sectorsPerCluster);
Array.Copy(buffer, 0, directoryBuffer, i * bytesPerCluster, bytesPerCluster);
}
currentDirectory = new Dictionary<string, DirectoryEntry>();
int pos = 0;
2020-02-29 18:03:35 +00:00
while(pos < directoryBuffer.Length)
{
DirectoryEntry dirent = littleEndian
2020-02-29 18:03:35 +00:00
? Marshal.
ByteArrayToStructureLittleEndian<DirectoryEntry
>(directoryBuffer, pos, Marshal.SizeOf<DirectoryEntry>())
: Marshal.ByteArrayToStructureBigEndian<DirectoryEntry>(directoryBuffer,
pos,
2020-02-29 18:03:35 +00:00
Marshal.
SizeOf<
DirectoryEntry
>());
pos += Marshal.SizeOf<DirectoryEntry>();
2020-02-29 18:03:35 +00:00
if(dirent.filenameSize == UNUSED_DIRENTRY ||
dirent.filenameSize == FINISHED_DIRENTRY)
break;
2020-02-29 18:03:35 +00:00
if(dirent.filenameSize == DELETED_DIRENTRY ||
dirent.filenameSize > MAX_FILENAME)
continue;
string filename = Encoding.GetString(dirent.filename, 0, dirent.filenameSize);
currentDirectory.Add(filename, dirent);
}
directoryCache.Add(currentPath, currentDirectory);
}
contents = currentDirectory?.Keys.ToList();
2020-02-29 18:03:35 +00:00
return Errno.NoError;
}
2019-04-06 11:03:43 +01:00
}
}