mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
55 lines
1.4 KiB
C#
55 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Wox.Infrastructure.Storage
|
|
{
|
|
/// <summary>
|
|
/// Serialize object using json format.
|
|
/// </summary>
|
|
public abstract class JsonStrorage<T> : BaseStorage<T> where T : class, IStorage, new()
|
|
{
|
|
private static object syncObject = new object();
|
|
protected override string FileSuffix
|
|
{
|
|
get { return ".json"; }
|
|
}
|
|
|
|
protected override void LoadInternal()
|
|
{
|
|
string json = File.ReadAllText(ConfigPath);
|
|
if (!string.IsNullOrEmpty(json))
|
|
{
|
|
try
|
|
{
|
|
serializedObject = JsonConvert.DeserializeObject<T>(json);
|
|
}
|
|
catch (Exception)
|
|
{
|
|
serializedObject = LoadDefault();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
serializedObject = LoadDefault();
|
|
}
|
|
}
|
|
|
|
protected override void SaveInternal()
|
|
{
|
|
ThreadPool.QueueUserWorkItem(o =>
|
|
{
|
|
lock (syncObject)
|
|
{
|
|
string json = JsonConvert.SerializeObject(serializedObject, Formatting.Indented);
|
|
File.WriteAllText(ConfigPath, json);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|