mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Aaru.CommonTypes.Enums;
|
|
|
|
namespace Aaru.Archives;
|
|
|
|
public sealed partial class Amg
|
|
{
|
|
#region IArchive Members
|
|
|
|
/// <inheritdoc />
|
|
public ErrorNumber ListXAttr(int entryNumber, out List<string> xattrs)
|
|
{
|
|
xattrs = null;
|
|
|
|
if(!Opened) return ErrorNumber.NotOpened;
|
|
|
|
if(entryNumber < 0 || entryNumber >= _files.Count) return ErrorNumber.OutOfRange;
|
|
|
|
xattrs = [];
|
|
|
|
if(_files[entryNumber].Comment is not null) xattrs.Add("comment");
|
|
|
|
return ErrorNumber.NoError;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public ErrorNumber GetXattr(int entryNumber, string xattr, ref byte[] buffer)
|
|
{
|
|
buffer = null;
|
|
|
|
if(!Opened) return ErrorNumber.NotOpened;
|
|
|
|
if(entryNumber < 0 || entryNumber >= _files.Count) return ErrorNumber.OutOfRange;
|
|
|
|
if(xattr != "comment" || _files[entryNumber].Comment is null) return ErrorNumber.NoSuchExtendedAttribute;
|
|
|
|
buffer = Encoding.UTF8.GetBytes(_files[entryNumber].Comment);
|
|
|
|
return ErrorNumber.NoError;
|
|
}
|
|
|
|
#endregion
|
|
} |