mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
dc3b01dc15
1. Fix can't find Result.ctor bug for plugin introduced in c0889de1f9ae460b2cc189eb59e5bd90ddb7d17e 2. use %APPDATA% for all data, part of #389 3. MISC
79 lines
2.2 KiB
C#
79 lines
2.2 KiB
C#
using System.IO;
|
|
using Newtonsoft.Json;
|
|
using Wox.Infrastructure.Logger;
|
|
|
|
namespace Wox.Infrastructure.Storage
|
|
{
|
|
/// <summary>
|
|
/// Serialize object using json format.
|
|
/// </summary>
|
|
public class JsonStrorage<T> : Storage<T> where T : new()
|
|
{
|
|
private readonly JsonSerializerSettings _serializerSettings;
|
|
|
|
internal JsonStrorage()
|
|
{
|
|
FileSuffix = ".json";
|
|
DirectoryName = "Settings";
|
|
DirectoryPath = Path.Combine(DirectoryPath, DirectoryName);
|
|
FilePath = Path.Combine(DirectoryPath, FileName + FileSuffix);
|
|
|
|
ValidateDirectory();
|
|
|
|
// use property initialization instead of DefaultValueAttribute
|
|
// easier and flexible for default value of object
|
|
_serializerSettings = new JsonSerializerSettings
|
|
{
|
|
ObjectCreationHandling = ObjectCreationHandling.Replace,
|
|
NullValueHandling = NullValueHandling.Ignore
|
|
};
|
|
}
|
|
|
|
public override T Load()
|
|
{
|
|
if (File.Exists(FilePath))
|
|
{
|
|
var searlized = File.ReadAllText(FilePath);
|
|
if (!string.IsNullOrWhiteSpace(searlized))
|
|
{
|
|
Deserialize(searlized);
|
|
}
|
|
else
|
|
{
|
|
LoadDefault();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
LoadDefault();
|
|
}
|
|
return Data;
|
|
}
|
|
|
|
private void Deserialize(string searlized)
|
|
{
|
|
try
|
|
{
|
|
Data = JsonConvert.DeserializeObject<T>(searlized, _serializerSettings);
|
|
}
|
|
catch (JsonSerializationException e)
|
|
{
|
|
LoadDefault();
|
|
Log.Error(e);
|
|
}
|
|
}
|
|
|
|
public override void LoadDefault()
|
|
{
|
|
Data = JsonConvert.DeserializeObject<T>("{}", _serializerSettings);
|
|
Save();
|
|
}
|
|
|
|
public override void Save()
|
|
{
|
|
string serialized = JsonConvert.SerializeObject(Data, Formatting.Indented);
|
|
File.WriteAllText(FilePath, serialized);
|
|
}
|
|
}
|
|
}
|