PowerToys/Wox.Infrastructure/Image/ImageLoader.cs

215 lines
7.6 KiB
C#
Raw Normal View History

2014-07-14 19:03:52 +08:00
using System;
using System.Collections.Concurrent;
2014-07-14 19:03:52 +08:00
using System.IO;
using System.Linq;
using System.Threading.Tasks;
2014-07-14 19:03:52 +08:00
using System.Windows.Media;
using System.Windows.Media.Imaging;
using Wox.Infrastructure.Logger;
using Wox.Infrastructure.Storage;
2014-07-14 19:03:52 +08:00
namespace Wox.Infrastructure.Image
2014-07-14 19:03:52 +08:00
{
public static class ImageLoader
2014-07-14 19:03:52 +08:00
{
private static readonly ImageCache ImageCache = new ImageCache();
private static BinaryStorage<ConcurrentDictionary<string, int>> _storage;
private static readonly ConcurrentDictionary<string, string> GuidToKey = new ConcurrentDictionary<string, string>();
private static IImageHashGenerator _hashGenerator;
2016-08-20 08:02:47 +08:00
2014-07-14 19:03:52 +08:00
private static readonly string[] ImageExtensions =
2014-07-14 19:03:52 +08:00
{
".png",
".jpg",
".jpeg",
".gif",
".bmp",
".tiff",
".ico"
};
public static void Initialize()
{
_storage = new BinaryStorage<ConcurrentDictionary<string, int>>("Image");
_hashGenerator = new ImageHashGenerator();
ImageCache.Usage = _storage.TryLoad(new ConcurrentDictionary<string, int>());
foreach (var icon in new[] { Constant.DefaultIcon, Constant.ErrorIcon })
{
ImageSource img = new BitmapImage(new Uri(icon));
img.Freeze();
ImageCache[icon] = img;
}
Task.Run(() =>
{
Stopwatch.Normal("|ImageLoader.Initialize|Preload images cost", () =>
{
ImageCache.Usage.AsParallel().Where(i => !ImageCache.ContainsKey(i.Key)).ForAll(x =>
{
Load(x.Key);
});
});
Log.Info($"|ImageLoader.Initialize|Number of preload images is <{ImageCache.Usage.Count}>, Images Number: {ImageCache.CacheSize()}, Unique Items {ImageCache.UniqueImagesInCache()}");
});
}
public static void Save()
{
ImageCache.Cleanup();
_storage.Save(ImageCache.Usage);
}
private class ImageResult
{
public ImageResult(ImageSource imageSource, ImageType imageType)
{
ImageSource = imageSource;
ImageType = imageType;
}
public ImageType ImageType { get; }
public ImageSource ImageSource { get; }
}
private enum ImageType
{
File,
Folder,
Data,
ImageFile,
Error,
Cache
}
private static ImageResult LoadInternal(string path, bool loadFullImage = false)
2014-07-14 19:03:52 +08:00
{
ImageSource image;
ImageType type = ImageType.Error;
2015-01-15 20:47:48 +08:00
try
2014-07-14 19:03:52 +08:00
{
if (string.IsNullOrEmpty(path))
2015-01-15 20:47:48 +08:00
{
return new ImageResult(ImageCache[Constant.ErrorIcon], ImageType.Error);
2016-05-04 06:21:03 +08:00
}
if (ImageCache.ContainsKey(path))
2016-05-04 06:21:03 +08:00
{
return new ImageResult(ImageCache[path], ImageType.Cache);
2015-01-15 20:47:48 +08:00
}
if (path.StartsWith("data:", StringComparison.OrdinalIgnoreCase))
2015-02-04 23:16:41 +08:00
{
return new ImageResult(new BitmapImage(new Uri(path)), ImageType.Data);
2015-02-04 23:16:41 +08:00
}
if (!Path.IsPathRooted(path))
2015-02-04 23:16:41 +08:00
{
path = Path.Combine(Constant.ProgramDirectory, "Images", Path.GetFileName(path));
}
if (Directory.Exists(path))
{
/* Directories can also have thumbnails instead of shell icons.
* Generating thumbnails for a bunch of folders while scrolling through
* results from Everything makes a big impact on performance and
* Wox responsibility.
* - Solution: just load the icon
*/
type = ImageType.Folder;
image = WindowsThumbnailProvider.GetThumbnail(path, Constant.ThumbnailSize,
Constant.ThumbnailSize, ThumbnailOptions.IconOnly);
}
else if (File.Exists(path))
{
var extension = Path.GetExtension(path).ToLower();
if (ImageExtensions.Contains(extension))
2015-11-02 08:04:05 +08:00
{
type = ImageType.ImageFile;
if (loadFullImage)
2016-05-04 06:21:03 +08:00
{
image = LoadFullImage(path);
2016-05-04 06:21:03 +08:00
}
else
{
/* Although the documentation for GetImage on MSDN indicates that
* if a thumbnail is available it will return one, this has proved to not
* be the case in many situations while testing.
* - Solution: explicitly pass the ThumbnailOnly flag
*/
image = WindowsThumbnailProvider.GetThumbnail(path, Constant.ThumbnailSize,
Constant.ThumbnailSize, ThumbnailOptions.ThumbnailOnly);
2016-05-04 06:21:03 +08:00
}
2015-11-02 08:04:05 +08:00
}
else
2015-11-02 08:04:05 +08:00
{
type = ImageType.File;
image = WindowsThumbnailProvider.GetThumbnail(path, Constant.ThumbnailSize,
Constant.ThumbnailSize, ThumbnailOptions.None);
2015-11-02 08:04:05 +08:00
}
}
else
{
image = ImageCache[Constant.ErrorIcon];
path = Constant.ErrorIcon;
2014-07-14 19:03:52 +08:00
}
if (type != ImageType.Error)
{
image.Freeze();
}
}
catch (System.Exception e)
{
Log.Exception($"|ImageLoader.Load|Failed to get thumbnail for {path}", e);
type = ImageType.Error;
image = ImageCache[Constant.ErrorIcon];
ImageCache[path] = image;
}
return new ImageResult(image, type);
}
private static bool EnableImageHash = true;
public static ImageSource Load(string path, bool loadFullImage = false)
{
// return LoadInternal(path, loadFullImage).ImageSource;
var imageResult = LoadInternal(path, loadFullImage);
var img = imageResult.ImageSource;
if (imageResult.ImageType != ImageType.Error && imageResult.ImageType != ImageType.Cache)
{ // we need to get image hash
string hash = EnableImageHash ? _hashGenerator.GetHashFromImage(img) : null;
if (hash != null)
{
if (GuidToKey.TryGetValue(hash, out string key))
{ // image already exists
img = ImageCache[key];
}
else
{ // new guid
GuidToKey[hash] = path;
}
}
// update cache
ImageCache[path] = img;
}
return img;
2014-07-14 19:03:52 +08:00
}
private static BitmapImage LoadFullImage(string path)
{
BitmapImage image = new BitmapImage();
image.BeginInit();
image.CacheOption = BitmapCacheOption.OnLoad;
image.UriSource = new Uri(path);
image.EndInit();
return image;
}
}
2014-07-14 19:03:52 +08:00
}