mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
81 lines
2.6 KiB
C#
81 lines
2.6 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using System.Runtime.Serialization;
|
|
using System.Runtime.Serialization.Formatters;
|
|
using System.Runtime.Serialization.Formatters.Binary;
|
|
using System.Threading.Tasks;
|
|
using Flow.Launcher.Infrastructure.Logger;
|
|
using Flow.Launcher.Infrastructure.UserSettings;
|
|
using MemoryPack;
|
|
|
|
namespace Flow.Launcher.Infrastructure.Storage
|
|
{
|
|
/// <summary>
|
|
/// Stroage object using binary data
|
|
/// Normally, it has better performance, but not readable
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// It utilize MemoryPack, which means the object must be MemoryPackSerializable
|
|
/// https://github.com/Cysharp/MemoryPack
|
|
/// </remarks>
|
|
public class BinaryStorage<T>
|
|
{
|
|
const string DirectoryName = "Cache";
|
|
|
|
const string FileSuffix = ".cache";
|
|
|
|
public BinaryStorage(string filename)
|
|
{
|
|
var directoryPath = Path.Combine(DataLocation.DataDirectory(), DirectoryName);
|
|
Helper.ValidateDirectory(directoryPath);
|
|
|
|
FilePath = Path.Combine(directoryPath, $"{filename}{FileSuffix}");
|
|
}
|
|
|
|
public string FilePath { get; }
|
|
|
|
public async ValueTask<T> TryLoadAsync(T defaultData)
|
|
{
|
|
if (File.Exists(FilePath))
|
|
{
|
|
if (new FileInfo(FilePath).Length == 0)
|
|
{
|
|
Log.Error($"|BinaryStorage.TryLoad|Zero length cache file <{FilePath}>");
|
|
await SaveAsync(defaultData);
|
|
return defaultData;
|
|
}
|
|
|
|
await using var stream = new FileStream(FilePath, FileMode.Open);
|
|
var d = await DeserializeAsync(stream, defaultData);
|
|
return d;
|
|
}
|
|
else
|
|
{
|
|
Log.Info("|BinaryStorage.TryLoad|Cache file not exist, load default data");
|
|
await SaveAsync(defaultData);
|
|
return defaultData;
|
|
}
|
|
}
|
|
|
|
private async ValueTask<T> DeserializeAsync(Stream stream, T defaultData)
|
|
{
|
|
try
|
|
{
|
|
var t = await MemoryPackSerializer.DeserializeAsync<T>(stream);
|
|
return t;
|
|
}
|
|
catch (System.Exception e)
|
|
{
|
|
Log.Exception($"|BinaryStorage.Deserialize|Deserialize error for file <{FilePath}>", e);
|
|
return defaultData;
|
|
}
|
|
}
|
|
|
|
public async ValueTask SaveAsync(T data)
|
|
{
|
|
await using var stream = new FileStream(FilePath, FileMode.Create);
|
|
await MemoryPackSerializer.SerializeAsync(stream, data);
|
|
}
|
|
}
|
|
}
|