jellyfin/MediaBrowser.Controller/Entities/CollectionFolder.cs

102 lines
3.8 KiB
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00
using MediaBrowser.Common.Extensions;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.Serialization;
using System.Threading;
using System.Threading.Tasks;
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Specialized Folder class that points to a subset of the physical folders in the system.
/// It is created from the user-specific folders within the system root
/// </summary>
public class CollectionFolder : Folder, ICollectionFolder
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Gets a value indicating whether this instance is virtual folder.
/// </summary>
/// <value><c>true</c> if this instance is virtual folder; otherwise, <c>false</c>.</value>
[IgnoreDataMember]
public override bool IsVirtualFolder
{
get
{
return true;
}
}
/// <summary>
/// Allow different display preferences for each collection folder
/// </summary>
/// <value>The display prefs id.</value>
protected override Guid DisplayPreferencesId
2013-02-21 02:33:05 +01:00
{
get
{
return Id;
}
}
// Cache this since it will be used a lot
/// <summary>
/// The null task result
/// </summary>
private static readonly Task NullTaskResult = Task.FromResult<object>(null);
/// <summary>
/// Compare our current children (presumably just read from the repo) with the current state of the file system and adjust for any changes
/// ***Currently does not contain logic to maintain items that are unavailable in the file system***
/// </summary>
/// <param name="progress">The progress.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <param name="recursive">if set to <c>true</c> [recursive].</param>
2013-05-22 06:39:10 +02:00
/// <param name="forceRefreshMetadata">if set to <c>true</c> [force refresh metadata].</param>
2013-02-21 02:33:05 +01:00
/// <returns>Task.</returns>
2013-05-22 06:39:10 +02:00
protected override Task ValidateChildrenInternal(IProgress<double> progress, CancellationToken cancellationToken, bool? recursive = null, bool forceRefreshMetadata = false)
2013-02-21 02:33:05 +01:00
{
//we don't directly validate our children
//but we do need to clear out the index cache...
IndexCache = new ConcurrentDictionary<string, List<BaseItem>>(StringComparer.OrdinalIgnoreCase);
return NullTaskResult;
}
/// <summary>
/// Our children are actually just references to the ones in the physical root...
/// </summary>
/// <value>The actual children.</value>
protected override ConcurrentDictionary<Guid,BaseItem> ActualChildren
2013-02-21 02:33:05 +01:00
{
get
{
2013-05-24 19:48:48 +02:00
Dictionary<Guid,Guid> folderIds;
2013-02-21 02:33:05 +01:00
try
{
// Accessing ResolveArgs could involve file system access
2013-05-24 19:48:48 +02:00
folderIds = ResolveArgs.PhysicalLocations
.Select(f => f.GetMBId(typeof(Folder)))
2013-05-24 19:48:48 +02:00
.ToDictionary(i => i);
2013-02-21 02:33:05 +01:00
}
catch (IOException ex)
{
2013-02-21 21:26:35 +01:00
Logger.ErrorException("Error creating FolderIds for {0}", ex, Path);
2013-02-21 02:33:05 +01:00
2013-05-24 19:48:48 +02:00
folderIds = new Dictionary<Guid, Guid>();
2013-02-21 02:33:05 +01:00
}
var ourChildren =
2013-05-24 19:48:48 +02:00
LibraryManager.RootFolder.RecursiveChildren.OfType<Folder>()
.Where(i => folderIds.ContainsKey(i.Id))
2013-02-21 02:33:05 +01:00
.SelectMany(c => c.Children);
return new ConcurrentDictionary<Guid,BaseItem>(ourChildren.ToDictionary(i => i.Id));
2013-02-21 02:33:05 +01:00
}
}
}
}