mirror of
https://github.com/aaru-dps/Aaru.git
synced 2026-07-08 18:16:24 +00:00
162 lines
5.5 KiB
C#
162 lines
5.5 KiB
C#
// /***************************************************************************
|
|
// Aaru Data Preservation Suite
|
|
// ----------------------------------------------------------------------------
|
|
//
|
|
// Filename : File.cs
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
//
|
|
// Component : HP Logical Interchange Format 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 Aaru.CommonTypes.Enums;
|
|
using Aaru.CommonTypes.Interfaces;
|
|
using Aaru.CommonTypes.Structs;
|
|
using Aaru.Helpers;
|
|
|
|
namespace Aaru.Filesystems;
|
|
|
|
public sealed partial class LIF
|
|
{
|
|
/// <inheritdoc />
|
|
public ErrorNumber Stat(string path, out FileEntryInfo stat)
|
|
{
|
|
stat = null;
|
|
|
|
if(!_mounted) return ErrorNumber.AccessDenied;
|
|
|
|
if(string.IsNullOrEmpty(path) || string.Equals(path, "/", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
stat = new FileEntryInfo
|
|
{
|
|
Attributes = FileAttributes.Directory,
|
|
BlockSize = LIF_RECORD_SIZE,
|
|
CreationTime = DateHandlers.LifToDateTime(_systemBlock.creationDate)
|
|
};
|
|
|
|
return ErrorNumber.NoError;
|
|
}
|
|
|
|
string[] pathElements = path.Split(['/'], StringSplitOptions.RemoveEmptyEntries);
|
|
|
|
if(pathElements.Length != 1) return ErrorNumber.NotSupported;
|
|
|
|
string filename = pathElements[0];
|
|
|
|
foreach(DirectoryEntry entry in _rootDirectoryCache)
|
|
{
|
|
string entryName = StringHandlers.CToString(entry.fileName, _encoding).TrimEnd();
|
|
|
|
if(!string.Equals(entryName, filename, StringComparison.OrdinalIgnoreCase)) continue;
|
|
|
|
stat = new FileEntryInfo
|
|
{
|
|
Attributes = FileAttributes.File,
|
|
BlockSize = LIF_RECORD_SIZE,
|
|
Blocks = entry.fileLength,
|
|
Length = entry.fileLength * LIF_RECORD_SIZE,
|
|
CreationTime = DateHandlers.LifToDateTime(entry.creationDate),
|
|
Links = 1
|
|
};
|
|
|
|
return ErrorNumber.NoError;
|
|
}
|
|
|
|
return ErrorNumber.NoSuchFile;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public ErrorNumber OpenFile(string path, out IFileNode node)
|
|
{
|
|
node = null;
|
|
|
|
if(!_mounted) return ErrorNumber.AccessDenied;
|
|
|
|
if(string.IsNullOrEmpty(path) || string.Equals(path, "/", StringComparison.OrdinalIgnoreCase))
|
|
return ErrorNumber.IsDirectory;
|
|
|
|
string[] pathElements = path.Split(['/'], StringSplitOptions.RemoveEmptyEntries);
|
|
|
|
if(pathElements.Length != 1) return ErrorNumber.NotSupported;
|
|
|
|
string filename = pathElements[0];
|
|
|
|
foreach(DirectoryEntry entry in _rootDirectoryCache)
|
|
{
|
|
string entryName = StringHandlers.CToString(entry.fileName, _encoding).TrimEnd();
|
|
|
|
if(!string.Equals(entryName, filename, StringComparison.OrdinalIgnoreCase)) continue;
|
|
|
|
node = new LifFileNode
|
|
{
|
|
Path = path,
|
|
Length = entry.fileLength * LIF_RECORD_SIZE,
|
|
Offset = 0,
|
|
StartRecord = entry.fileStart
|
|
};
|
|
|
|
return ErrorNumber.NoError;
|
|
}
|
|
|
|
return ErrorNumber.NoSuchFile;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public ErrorNumber CloseFile(IFileNode node)
|
|
{
|
|
if(!_mounted) return ErrorNumber.AccessDenied;
|
|
|
|
if(node is not LifFileNode) return ErrorNumber.InvalidArgument;
|
|
|
|
return ErrorNumber.NoError;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public ErrorNumber ReadFile(IFileNode node, long length, byte[] buffer, out long read)
|
|
{
|
|
read = 0;
|
|
|
|
if(!_mounted) return ErrorNumber.AccessDenied;
|
|
|
|
if(buffer is null || buffer.Length < length) return ErrorNumber.InvalidArgument;
|
|
|
|
if(node is not LifFileNode lifNode) return ErrorNumber.InvalidArgument;
|
|
|
|
if(lifNode.Offset >= lifNode.Length) return ErrorNumber.NoError;
|
|
|
|
if(length + lifNode.Offset > lifNode.Length) length = lifNode.Length - lifNode.Offset;
|
|
|
|
ErrorNumber error = ReadLogicalBytes(_imagePlugin,
|
|
_partition,
|
|
(ulong)lifNode.StartRecord * LIF_RECORD_SIZE + (ulong)lifNode.Offset,
|
|
(uint)length,
|
|
out byte[] data);
|
|
|
|
if(error != ErrorNumber.NoError) return error;
|
|
|
|
Array.Copy(data, 0, buffer, 0, data.Length);
|
|
|
|
read = data.Length;
|
|
lifNode.Offset += data.Length;
|
|
|
|
return ErrorNumber.NoError;
|
|
}
|
|
} |