mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02:00
* [Deps] Upgrade Framework Libraries to .NET 9 RC2 * [Common][Build] Update TFM to NET9 * [FileLocksmith][Build] Update TFM to NET9 in Publish Profile * [PreviewPane][Build] Update TFM to NET9 in Publish Profile * [PTRun][Build] Update TFM to NET9 in Publish Profile * [Settings][Build] Update TFM to NET9 in Publish Profile * [MouseWithoutBorders][Analyzers] Resolve WFO1000 by configuring Designer Serialization Visibility * [Deps] Update Microsoft.CodeAnalysis.NetAnalyzers * [Analyzers] Set CA1859,CA2263,CA2022 to be excluded from error * [MouseWithoutBorders] Use System.Threading.Lock to lock instead of object instance * [ColorPicker] Use System.Threading.Lock to lock instead of object instance * [AdvancedPaste] Use System.Threading.Lock to lock instead of object instance * [TextExtractor] Use System.Threading.Lock to lock instead of object instance * [Hosts] Use System.Threading.Lock to lock instead of object instance * [MouseJump] Use System.Threading.Lock to lock instead of object instance * [PTRun] Use System.Threading.Lock to lock instead of object instance * [Wox] Use System.Threading.Lock to lock instead of object instance * [Peek] Use System.Threading.Lock to lock instead of object instance * [PowerAccent] Use System.Threading.Lock to lock instead of object instance * [Settings] Use System.Threading.Lock to lock instead of object instance * [Deps] Update NOTICE.md * [CI] Update .NET version step to target 9.0 * [Build] Attempt to add manual trigger for using Visual Studio Preview for building * [Build] Fix variable typo * [Build][Temporary] set to use preview builds * [Build] Add missing parameters * [Build][Temporary] directly hardcode preview image * [Build][Temporary] Trying ImageOverride * [Build] Revert hardcode and use ImageOverride * [Build] Add env var for adding prerelease argument for vswhere * [Build] Update VCToolsVersion script to use env var to optionally add prerelease version checking * [Build] Remove unneeded parameter * [Build] Re-add parameter in all the right places * [CI][Build] Add NoWarn NU5104 when building with VS Preview * [Deps] Update to stable .NET 9 packages * [Deps] Update NOTICE.md * Everything is WPF and WindowsForms now to fix .NET 9 dependency conflicts * Ensure .NET 9 SDK for tests too --------- Co-authored-by: Jaime Bernardo <jaime@janeasystems.com>
193 lines
6.2 KiB
C#
193 lines
6.2 KiB
C#
// Copyright (c) Microsoft Corporation
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.IO;
|
|
using System.IO.Abstractions;
|
|
using System.Linq;
|
|
using System.Text.Json;
|
|
using System.Threading;
|
|
|
|
using Wox.Plugin.Logger;
|
|
|
|
namespace Wox.Infrastructure.Storage
|
|
{
|
|
/// <summary>
|
|
/// Serialize object using json format.
|
|
/// </summary>
|
|
public class JsonStorage<T>
|
|
{
|
|
private static readonly IFileSystem FileSystem = new FileSystem();
|
|
private static readonly IPath Path = FileSystem.Path;
|
|
private static readonly IFile File = FileSystem.File;
|
|
|
|
private readonly Lock _saveLock = new Lock();
|
|
|
|
// use property initialization instead of DefaultValueAttribute
|
|
// easier and flexible for default value of object
|
|
private static readonly JsonSerializerOptions _serializerOptions = new JsonSerializerOptions
|
|
{
|
|
DefaultIgnoreCondition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull,
|
|
IncludeFields = true,
|
|
PropertyNameCaseInsensitive = true,
|
|
WriteIndented = true,
|
|
UnmappedMemberHandling = System.Text.Json.Serialization.JsonUnmappedMemberHandling.Disallow,
|
|
};
|
|
|
|
private static readonly JsonSerializerOptions _deserializerOptions = new JsonSerializerOptions
|
|
{
|
|
DefaultIgnoreCondition = System.Text.Json.Serialization.JsonIgnoreCondition.Never,
|
|
IncludeFields = true,
|
|
PropertyNameCaseInsensitive = true,
|
|
WriteIndented = true,
|
|
};
|
|
|
|
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 const int _jsonStorage = 1;
|
|
private StoragePowerToysVersionInfo _storageHelper;
|
|
|
|
public virtual T Load()
|
|
{
|
|
_storageHelper = new StoragePowerToysVersionInfo(FilePath, _jsonStorage);
|
|
|
|
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 = JsonSerializer.Deserialize<T>(serialized, _deserializerOptions);
|
|
}
|
|
catch (JsonException e)
|
|
{
|
|
LoadDefault();
|
|
Log.Exception($"Deserialize error for json <{FilePath}>", e, GetType());
|
|
}
|
|
|
|
if (_data == null)
|
|
{
|
|
LoadDefault();
|
|
}
|
|
}
|
|
|
|
private void LoadDefault()
|
|
{
|
|
if (File.Exists(FilePath))
|
|
{
|
|
BackupOriginFile();
|
|
}
|
|
|
|
_data = JsonSerializer.Deserialize<T>("{}", _serializerOptions);
|
|
Save();
|
|
}
|
|
|
|
private void BackupOriginFile()
|
|
{
|
|
// Using InvariantCulture since this is internal
|
|
var timestamp = DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss-fffffff", CultureInfo.InvariantCulture);
|
|
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()
|
|
{
|
|
lock (_saveLock)
|
|
{
|
|
try
|
|
{
|
|
string serialized = JsonSerializer.Serialize(_data, _serializerOptions);
|
|
using var stream = new FileStream(FilePath, FileMode.Create, FileAccess.Write, FileShare.None);
|
|
using var writer = new StreamWriter(stream);
|
|
writer.Write(serialized);
|
|
|
|
_storageHelper.Close();
|
|
|
|
Log.Info($"Saving cached data at <{FilePath}>", GetType());
|
|
}
|
|
catch (UnauthorizedAccessException e)
|
|
{
|
|
Log.Exception($"Unauthorized access while saving data at <{FilePath}>. Check file permissions.", e, GetType());
|
|
}
|
|
catch (IOException e)
|
|
{
|
|
Log.Exception($"Error in saving data at <{FilePath}>", e, GetType());
|
|
}
|
|
}
|
|
}
|
|
|
|
public void Clear()
|
|
{
|
|
if (File.Exists(FilePath))
|
|
{
|
|
File.Delete(FilePath);
|
|
LoadDefault();
|
|
Log.Info($"Deleting cached data at <{FilePath}>", GetType());
|
|
}
|
|
}
|
|
|
|
public bool CheckVersionMismatch()
|
|
{
|
|
// Skip the fields check if the version hasn't changed.
|
|
// This optimization prevents unnecessary fields processing when the cache
|
|
// is already up to date, enhancing performance and reducing IO operations
|
|
if (!_storageHelper.ClearCache)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
_storageHelper.ClearCache = false;
|
|
return true;
|
|
}
|
|
|
|
public bool TryLoadData()
|
|
{
|
|
try
|
|
{
|
|
JsonSerializer.Deserialize<T>(File.ReadAllText(FilePath), _serializerOptions);
|
|
return true;
|
|
}
|
|
catch (JsonException e)
|
|
{
|
|
Log.Exception($"Error in TryLoadData at <{FilePath}>", e, GetType());
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|