// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // // Filename : Xattr.cs // Author(s) : Natalia Portillo // // Component : Apple DOS filesystem plugin. // // --[ Description ] ---------------------------------------------------------- // // Methods to handle Apple DOS extended attributes (file type). // // --[ 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 . // // ---------------------------------------------------------------------------- // Copyright © 2011-2018 Natalia Portillo // ****************************************************************************/ using System; using System.Collections.Generic; namespace DiscImageChef.Filesystems.AppleDOS { public partial class AppleDOS { /// /// Lists all extended attributes, alternate data streams and forks of the given file. /// /// Error number. /// Path. /// List of extended attributes, alternate data streams and forks. public override Errno ListXAttr(string path, ref List xattrs) { if(!mounted) return Errno.AccessDenied; string[] pathElements = path.Split(new[] {'/'}, StringSplitOptions.RemoveEmptyEntries); if(pathElements.Length != 1) return Errno.NotSupported; string filename = pathElements[0].ToUpperInvariant(); if(filename.Length > 30) return Errno.NameTooLong; xattrs = new List(); if(debug && (string.Compare(path, "$", StringComparison.InvariantCulture) == 0 || string.Compare(path, "$Boot", StringComparison.InvariantCulture) == 0 || string.Compare(path, "$Vtoc", StringComparison.InvariantCulture) == 0)) { } else { if(!catalogCache.ContainsKey(filename)) return Errno.NoSuchFile; xattrs.Add("com.apple.dos.type"); if(debug) xattrs.Add("com.apple.dos.tracksectorlist"); } return Errno.NoError; } /// /// Reads an extended attribute, alternate data stream or fork from the given file. /// /// Error number. /// File path. /// Extended attribute, alternate data stream or fork name. /// Buffer. public override Errno GetXattr(string path, string xattr, ref byte[] buf) { if(!mounted) return Errno.AccessDenied; string[] pathElements = path.Split(new[] {'/'}, StringSplitOptions.RemoveEmptyEntries); if(pathElements.Length != 1) return Errno.NotSupported; string filename = pathElements[0].ToUpperInvariant(); if(filename.Length > 30) return Errno.NameTooLong; if(debug && (string.Compare(path, "$", StringComparison.InvariantCulture) == 0 || string.Compare(path, "$Boot", StringComparison.InvariantCulture) == 0 || string.Compare(path, "$Vtoc", StringComparison.InvariantCulture) == 0)) return Errno.NoSuchExtendedAttribute; if(!catalogCache.ContainsKey(filename)) return Errno.NoSuchFile; if(string.Compare(xattr, "com.apple.dos.type", StringComparison.InvariantCulture) == 0) { byte type; if(!fileTypeCache.TryGetValue(filename, out type)) return Errno.InvalidArgument; buf = new byte[1]; buf[0] = type; return Errno.NoError; } if(string.Compare(xattr, "com.apple.dos.tracksectorlist", StringComparison.InvariantCulture) != 0 || !debug) return Errno.NoSuchExtendedAttribute; byte[] ts; if(!extentCache.TryGetValue(filename, out ts)) return Errno.InvalidArgument; buf = new byte[ts.Length]; Array.Copy(ts, 0, buf, 0, buf.Length); return Errno.NoError; } } }