mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-09 04:57:56 +08:00
d17fc86fa4
* Clean termination of powertoys process. * Fixed issue with run not responding to WM_CLOSE * Fixed serialization error in pinyin and image cache * Fixed merge conflict * Fixed nit wrt to master * Basic framework of clearing up of cache is working * formatting * removed the default argument of load * fixed nit comment * rewriting the PowerToys version * Each storage file has an associated version file which helps decide whether or not to delete that file on loading * removed unnecessary reference * renamed file to StoragePowerToysVersionInfo * adding log files * Checking whether the version strings are null, if so, we would clear the cache * Added filepath to log files to make it more informative * fixed nit naming * using lesser than to compare instead of portable version Co-authored-by: Divyansh Srivastava <somm14divi@gmail.com>
118 lines
3.8 KiB
C#
118 lines
3.8 KiB
C#
using System;
|
|
using System.Globalization;
|
|
using System.IO;
|
|
using Newtonsoft.Json;
|
|
using Wox.Infrastructure.Logger;
|
|
|
|
namespace Wox.Infrastructure.Storage
|
|
{
|
|
/// <summary>
|
|
/// Serialize object using json format.
|
|
/// </summary>
|
|
public class JsonStorage<T>
|
|
{
|
|
private readonly JsonSerializerSettings _serializerSettings;
|
|
private T _data;
|
|
// need a new directory name
|
|
public const string DirectoryName = "Settings";
|
|
public const string FileSuffix = ".json";
|
|
public string FilePath { get; set; }
|
|
public string DirectoryPath { get; set; }
|
|
|
|
// This storage helper returns whether or not to delete the json storage items
|
|
private static readonly int JSON_STORAGE = 1;
|
|
private StoragePowerToysVersionInfo _storageHelper;
|
|
|
|
internal JsonStorage()
|
|
{
|
|
// use property initialization instead of DefaultValueAttribute
|
|
// easier and flexible for default value of object
|
|
_serializerSettings = new JsonSerializerSettings
|
|
{
|
|
ObjectCreationHandling = ObjectCreationHandling.Replace,
|
|
NullValueHandling = NullValueHandling.Ignore
|
|
};
|
|
}
|
|
|
|
public T Load()
|
|
{
|
|
_storageHelper = new StoragePowerToysVersionInfo(FilePath, JSON_STORAGE);
|
|
// Depending on the version number of the previously installed PT Run, delete the cache if it is found to be incompatible
|
|
if (_storageHelper.clearCache)
|
|
{
|
|
if(File.Exists(FilePath))
|
|
{
|
|
File.Delete(FilePath);
|
|
Log.Info($"|JsonStorage.TryLoad|Deleting cached data|<{FilePath}>");
|
|
}
|
|
}
|
|
|
|
if (File.Exists(FilePath))
|
|
{
|
|
var serialized = File.ReadAllText(FilePath);
|
|
if (!string.IsNullOrWhiteSpace(serialized))
|
|
{
|
|
Deserialize(serialized);
|
|
}
|
|
else
|
|
{
|
|
LoadDefault();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
LoadDefault();
|
|
}
|
|
return _data.NonNull();
|
|
}
|
|
|
|
private void Deserialize(string serialized)
|
|
{
|
|
try
|
|
{
|
|
_data = JsonConvert.DeserializeObject<T>(serialized, _serializerSettings);
|
|
}
|
|
catch (JsonException e)
|
|
{
|
|
LoadDefault();
|
|
Log.Exception($"|JsonStorage.Deserialize|Deserialize error for json <{FilePath}>", e);
|
|
}
|
|
|
|
if (_data == null)
|
|
{
|
|
LoadDefault();
|
|
}
|
|
}
|
|
|
|
private void LoadDefault()
|
|
{
|
|
if (File.Exists(FilePath))
|
|
{
|
|
BackupOriginFile();
|
|
}
|
|
|
|
_data = JsonConvert.DeserializeObject<T>("{}", _serializerSettings);
|
|
Save();
|
|
}
|
|
|
|
private void BackupOriginFile()
|
|
{
|
|
var timestamp = DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss-fffffff", CultureInfo.CurrentUICulture);
|
|
var directory = Path.GetDirectoryName(FilePath).NonNull();
|
|
var originName = Path.GetFileNameWithoutExtension(FilePath);
|
|
var backupName = $"{originName}-{timestamp}{FileSuffix}";
|
|
var backupPath = Path.Combine(directory, backupName);
|
|
File.Copy(FilePath, backupPath, true);
|
|
// todo give user notification for the backup process
|
|
}
|
|
|
|
public void Save()
|
|
{
|
|
string serialized = JsonConvert.SerializeObject(_data, Formatting.Indented);
|
|
File.WriteAllText(FilePath, serialized);
|
|
_storageHelper.Close();
|
|
Log.Info($"|JsonStorage.Save|Saving cached data| <{FilePath}>");
|
|
}
|
|
}
|
|
}
|