Files
QuickLook/QuickLook.Plugin/QuickLook.Plugin.ArchiveViewer/ArchiveFile/ArchiveFileEntry.cs
ema 19805f06c5
Some checks failed
build / build (push) Has been cancelled
build / publish (push) Has been cancelled
Move archive viewer files to ArchiveFile namespace
Renamed and reorganized ArchiveViewer files into a new ArchiveFile subfolder and namespace for better code structure. Updated all relevant namespaces and references accordingly. Minor code cleanups were also applied, such as using collection initializers and default keyword.
2025-12-25 18:48:23 +08:00

99 lines
2.7 KiB
C#

// Copyright © 2017-2025 QL-Win Contributors
//
// This file is part of QuickLook program.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
using System;
using System.Collections.Generic;
using System.Linq;
namespace QuickLook.Plugin.ArchiveViewer.ArchiveFile;
public class ArchiveFileEntry : IComparable<ArchiveFileEntry>
{
private readonly ArchiveFileEntry _parent;
private int _cachedDepth = -1;
private int _cachedLevel = -1;
public ArchiveFileEntry(string name, bool isFolder, ArchiveFileEntry parent = null)
{
Name = name;
IsFolder = isFolder;
_parent = parent;
_parent?.Children.Add(this, false);
}
public SortedList<ArchiveFileEntry, bool> Children { get; set; } = [];
public string Name { get; set; }
public bool Encrypted { get; set; }
public bool IsFolder { get; set; }
public ulong Size { get; set; }
public DateTime ModifiedDate { get; set; }
/// <summary>
/// Returns the maximum depth of all siblings
/// </summary>
public int Level
{
get
{
if (_cachedLevel != -1)
return _cachedLevel;
if (_parent == null)
_cachedLevel = GetDepth();
else
_cachedLevel = _parent.Level - 1;
return _cachedLevel;
}
}
public int CompareTo(ArchiveFileEntry other)
{
if (IsFolder == other.IsFolder)
return string.Compare(Name, other.Name, StringComparison.CurrentCulture);
if (IsFolder)
return -1;
return 1;
}
/// <summary>
/// Returns the number of nodes in the longest path to a leaf
/// </summary>
private int GetDepth()
{
if (_cachedDepth != -1)
return _cachedDepth;
var max = Children.Keys.Count == 0 ? 0 : Children.Keys.Max(r => r.GetDepth());
_cachedDepth = max + 1;
return _cachedDepth;
}
public override string ToString()
{
if (IsFolder)
return $"{Name}";
var en = Encrypted ? "*" : string.Empty;
return $"{Name}{en},{IsFolder},{Size},{ModifiedDate}";
}
}