using MediaBrowser.Controller.Library;
using MediaBrowser.Model.Logging;
using System;
using System.Collections.Generic;
using System.IO;
namespace MediaBrowser.Controller.IO
{
    /// 
    /// Provides low level File access that is much faster than the File/Directory api's
    /// 
    public static class FileData
    {
        /// 
        /// Gets the filtered file system entries.
        /// 
        /// The path.
        /// The logger.
        /// The args.
        /// The search pattern.
        /// The flatten folder depth.
        /// if set to true [resolve shortcuts].
        /// Dictionary{System.StringFileSystemInfo}.
        /// path
        public static Dictionary GetFilteredFileSystemEntries(string path, ILogger logger, ItemResolveArgs args, string searchPattern = "*", int flattenFolderDepth = 0, bool resolveShortcuts = true)
        {
            if (string.IsNullOrEmpty(path))
            {
                throw new ArgumentNullException("path");
            }
            if (args == null)
            {
                throw new ArgumentNullException("args");
            }
            var entries = new DirectoryInfo(path).EnumerateFileSystemInfos(searchPattern, SearchOption.TopDirectoryOnly);
            if (!resolveShortcuts && flattenFolderDepth == 0)
            {
                // Seeing dupes on some users file system for some reason
                var dictionary = new Dictionary(StringComparer.OrdinalIgnoreCase);
                foreach (var info in entries)
                {
                    dictionary[info.FullName] = info;
                }
                return dictionary;
            }
            var dict = new Dictionary(StringComparer.OrdinalIgnoreCase);
            foreach (var entry in entries)
            {
                var isDirectory = (entry.Attributes & FileAttributes.Directory) == FileAttributes.Directory;
                var fullName = entry.FullName;
                if (resolveShortcuts && FileSystem.IsShortcut(fullName))
                {
                    var newPath = FileSystem.ResolveShortcut(fullName);
                    if (string.IsNullOrWhiteSpace(newPath))
                    {
                        //invalid shortcut - could be old or target could just be unavailable
                        logger.Warn("Encountered invalid shortcut: " + fullName);
                        continue;
                    }
                    // Don't check if it exists here because that could return false for network shares.
                    var data = new DirectoryInfo(newPath);
                    // add to our physical locations
                    args.AddAdditionalLocation(newPath);
                    dict[newPath] = data;
                }
                else if (flattenFolderDepth > 0 && isDirectory)
                {
                    foreach (var child in GetFilteredFileSystemEntries(fullName, logger, args, flattenFolderDepth: flattenFolderDepth - 1, resolveShortcuts: resolveShortcuts))
                    {
                        dict[child.Key] = child.Value;
                    }
                }
                else
                {
                    dict[fullName] = entry;
                }
            }
            return dict;
        }
    }
}