#pragma warning disable CS1591
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Jellyfin.Data.Entities;
using Jellyfin.Data.Enums;
using MediaBrowser.Controller.Dto;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Controller.Resolvers;
using MediaBrowser.Controller.Sorting;
using MediaBrowser.Model.Configuration;
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.IO;
using MediaBrowser.Model.Querying;
using Episode = MediaBrowser.Controller.Entities.TV.Episode;
using Genre = MediaBrowser.Controller.Entities.Genre;
using Person = MediaBrowser.Controller.Entities.Person;
namespace MediaBrowser.Controller.Library
{
///
/// Interface ILibraryManager.
///
public interface ILibraryManager
{
///
/// Resolves the path.
///
/// The file information.
/// The parent.
/// BaseItem.
BaseItem ResolvePath(
FileSystemMetadata fileInfo,
Folder parent = null);
///
/// Resolves a set of files into a list of BaseItem.
///
IEnumerable ResolvePaths(
IEnumerable files,
IDirectoryService directoryService,
Folder parent,
LibraryOptions libraryOptions,
string collectionType = null);
///
/// Gets the root folder.
///
/// The root folder.
AggregateFolder RootFolder { get; }
///
/// Gets a Person.
///
/// The name.
/// Task{Person}.
Person GetPerson(string name);
///
/// Finds the by path.
///
/// The path.
/// true is the path is a directory; otherwise false.
/// BaseItem.
BaseItem FindByPath(string path, bool? isFolder);
///
/// Gets the artist.
///
/// The name.
/// Task{Artist}.
MusicArtist GetArtist(string name);
MusicArtist GetArtist(string name, DtoOptions options);
///
/// Gets a Studio.
///
/// The name.
/// Task{Studio}.
Studio GetStudio(string name);
///
/// Gets a Genre.
///
/// The name.
/// Task{Genre}.
Genre GetGenre(string name);
///
/// Gets the genre.
///
/// The name.
/// Task{MusicGenre}.
MusicGenre GetMusicGenre(string name);
///
/// Gets a Year.
///
/// The value.
/// Task{Year}.
///
Year GetYear(int value);
///
/// Validate and refresh the People sub-set of the IBN.
/// The items are stored in the db but not loaded into memory until actually requested by an operation.
///
/// The cancellation token.
/// The progress.
/// Task.
Task ValidatePeople(CancellationToken cancellationToken, IProgress progress);
///
/// Reloads the root media folder.
///
/// The progress.
/// The cancellation token.
/// Task.
Task ValidateMediaLibrary(IProgress progress, CancellationToken cancellationToken);
///
/// Queues the library scan.
///
void QueueLibraryScan();
Task UpdateImagesAsync(BaseItem item, bool forceUpdate = false);
///
/// Gets the default view.
///
/// IEnumerable{VirtualFolderInfo}.
List GetVirtualFolders();
List GetVirtualFolders(bool includeRefreshState);
///
/// Gets the item by id.
///
/// The id.
/// BaseItem.
BaseItem GetItemById(Guid id);
///
/// Gets the intros.
///
/// The item.
/// The user.
/// IEnumerable{System.String}.
Task> GetIntros(BaseItem item, User user);
///
/// Gets all intro files.
///
/// IEnumerable{System.String}.
IEnumerable GetAllIntroFiles();
///
/// Adds the parts.
///
/// The rules.
/// The resolvers.
/// The intro providers.
/// The item comparers.
/// The postscan tasks.
void AddParts(
IEnumerable rules,
IEnumerable resolvers,
IEnumerable introProviders,
IEnumerable itemComparers,
IEnumerable postscanTasks);
///
/// Sorts the specified items.
///
/// The items.
/// The user.
/// The sort by.
/// The sort order.
/// IEnumerable{BaseItem}.
IEnumerable Sort(IEnumerable items, User user, IEnumerable sortBy, SortOrder sortOrder);
IEnumerable Sort(IEnumerable items, User user, IEnumerable> orderBy);
///
/// Gets the user root folder.
///
/// UserRootFolder.
Folder GetUserRootFolder();
///
/// Creates the item.
///
void CreateItem(BaseItem item, BaseItem parent);
///
/// Creates the items.
///
void CreateItems(IReadOnlyList items, BaseItem parent, CancellationToken cancellationToken);
///
/// Updates the item.
///
Task UpdateItemsAsync(IReadOnlyList items, BaseItem parent, ItemUpdateType updateReason, CancellationToken cancellationToken);
///
/// Updates the item.
///
/// The item.
/// The parent item.
/// The update reason.
/// The cancellation token.
Task UpdateItemAsync(BaseItem item, BaseItem parent, ItemUpdateType updateReason, CancellationToken cancellationToken);
///
/// Retrieves the item.
///
/// The id.
/// BaseItem.
BaseItem RetrieveItem(Guid id);
bool IsScanRunning { get; }
///
/// Occurs when [item added].
///
event EventHandler ItemAdded;
///
/// Occurs when [item updated].
///
event EventHandler ItemUpdated;
///
/// Occurs when [item removed].
///
event EventHandler ItemRemoved;
///
/// Finds the type of the collection.
///
/// The item.
/// System.String.
string GetContentType(BaseItem item);
///
/// Gets the type of the inherited content.
///
/// The item.
/// System.String.
string GetInheritedContentType(BaseItem item);
///
/// Gets the type of the configured content.
///
/// The item.
/// System.String.
string GetConfiguredContentType(BaseItem item);
///
/// Gets the type of the configured content.
///
/// The path.
/// System.String.
string GetConfiguredContentType(string path);
///
/// Normalizes the root path list.
///
/// The paths.
/// IEnumerable{System.String}.
List NormalizeRootPathList(IEnumerable paths);
///
/// Registers the item.
///
/// The item.
void RegisterItem(BaseItem item);
///
/// Deletes the item.
///
void DeleteItem(BaseItem item, DeleteOptions options);
///
/// Deletes the item.
///
void DeleteItem(BaseItem item, DeleteOptions options, bool notifyParentItem);
///
/// Deletes the item.
///
void DeleteItem(BaseItem item, DeleteOptions options, BaseItem parent, bool notifyParentItem);
///
/// Gets the named view.
///
/// The user.
/// The name.
/// The parent identifier.
/// Type of the view.
/// Name of the sort.
UserView GetNamedView(
User user,
string name,
Guid parentId,
string viewType,
string sortName);
///
/// Gets the named view.
///
/// The user.
/// The name.
/// Type of the view.
/// Name of the sort.
UserView GetNamedView(
User user,
string name,
string viewType,
string sortName);
///
/// Gets the named view.
///
/// The name.
/// Type of the view.
/// Name of the sort.
UserView GetNamedView(
string name,
string viewType,
string sortName);
///
/// Gets the named view.
///
/// The name.
/// The parent identifier.
/// Type of the view.
/// Name of the sort.
/// The unique identifier.
UserView GetNamedView(
string name,
Guid parentId,
string viewType,
string sortName,
string uniqueId);
///
/// Gets the shadow view.
///
/// The parent.
/// Type of the view.
/// Name of the sort.
UserView GetShadowView(
BaseItem parent,
string viewType,
string sortName);
///
/// Determines whether [is video file] [the specified path].
///
/// The path.
/// true if [is video file] [the specified path]; otherwise, false.
bool IsVideoFile(string path);
///
/// Determines whether [is audio file] [the specified path].
///
/// The path.
/// true if [is audio file] [the specified path]; otherwise, false.
bool IsAudioFile(string path);
///
/// Gets the season number from path.
///
/// The path.
/// System.Nullable<System.Int32>.
int? GetSeasonNumberFromPath(string path);
///
/// Fills the missing episode numbers from path.
///
bool FillMissingEpisodeNumbersFromPath(Episode episode, bool forceRefresh);
///
/// Parses the name.
///
/// The name.
/// ItemInfo.
ItemLookupInfo ParseName(string name);
///
/// Gets the new item identifier.
///
/// The key.
/// The type.
/// Guid.
Guid GetNewItemId(string key, Type type);
///
/// Finds the trailers.
///
/// The owner.
/// The file system children.
/// The directory service.
/// IEnumerable<Trailer>.
IEnumerable