using MediaBrowser.Common.Extensions; using MediaBrowser.Model.Entities; using MediaBrowser.Model.Tasks; 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 { /// /// 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 /// public class CollectionFolder : Folder, ICollectionFolder, IByReferenceItem { /// /// Gets a value indicating whether this instance is virtual folder. /// /// true if this instance is virtual folder; otherwise, false. [IgnoreDataMember] public override bool IsVirtualFolder { get { return true; } } /// /// Allow different display preferences for each collection folder /// /// The display prefs id. public override Guid DisplayPrefsId { get { return Id; } } // Cache this since it will be used a lot /// /// The null task result /// private static readonly Task NullTaskResult = Task.FromResult(null); /// /// 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*** /// /// The progress. /// The cancellation token. /// if set to true [recursive]. /// Task. protected override Task ValidateChildrenInternal(IProgress progress, CancellationToken cancellationToken, bool? recursive = null) { //we don't directly validate our children //but we do need to clear out the index cache... IndexCache = new ConcurrentDictionary>(StringComparer.OrdinalIgnoreCase); return NullTaskResult; } /// /// Our children are actually just references to the ones in the physical root... /// /// The actual children. protected override ConcurrentBag ActualChildren { get { IEnumerable folderIds; try { // Accessing ResolveArgs could involve file system access folderIds = ResolveArgs.PhysicalLocations.Select(f => (f.GetMBId(typeof(Folder)))); } catch (IOException ex) { Logger.ErrorException("Error creating FolderIds for {0}", ex, Path); folderIds = new Guid[] {}; } var ourChildren = LibraryManager.RootFolder.Children.OfType() .Where(i => folderIds.Contains(i.Id)) .SelectMany(c => c.Children); return new ConcurrentBag(ourChildren); } } } }