mirror of
https://github.com/aaru-dps/Aaru.git
synced 2026-02-04 08:54:40 +00:00
68 lines
2.5 KiB
C#
68 lines
2.5 KiB
C#
// /***************************************************************************
|
|
// Aaru Data Preservation Suite
|
|
// ----------------------------------------------------------------------------
|
|
//
|
|
// Filename : Internal.cs
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
//
|
|
// Component : Linux extended 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 Aaru.CommonTypes.Interfaces;
|
|
|
|
namespace Aaru.Filesystems;
|
|
|
|
// Information from the Linux kernel
|
|
/// <inheritdoc />
|
|
public sealed partial class extFS
|
|
{
|
|
/// <summary>Directory node for enumerating directory contents</summary>
|
|
sealed class ExtDirNode : IDirNode
|
|
{
|
|
/// <summary>Current position in the directory enumeration (entry index)</summary>
|
|
internal int Position { get; set; }
|
|
|
|
/// <summary>Array of directory entry names in this directory</summary>
|
|
internal string[] Entries { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public string Path { get; init; }
|
|
}
|
|
|
|
/// <summary>File node for reading file contents with streaming support</summary>
|
|
sealed class ExtFileNode : IFileNode
|
|
{
|
|
/// <summary>The inode number</summary>
|
|
internal uint InodeNum { get; init; }
|
|
|
|
/// <summary>The file's inode containing metadata and block pointers</summary>
|
|
internal ext_inode Inode { get; init; }
|
|
|
|
/// <inheritdoc />
|
|
public long Offset { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public long Length { get; init; }
|
|
|
|
/// <inheritdoc />
|
|
public string Path { get; init; }
|
|
}
|
|
} |