GFramework/GFramework.Game/Data/DataRepository.cs
deepsource-autofix[bot] caeb1ab80f
refactor: use ternary operator for conditional assignments
This PR refactors code that used multi-line if/else statements to use the ternary operator for more concise and readable assignments.

- if statement can be rewritten using the ternary operator: The original code assigned values based on Storage.ExistsAsync(key) with separate if and else blocks, leading to verbose multi-line statements. We have replaced these with single-line ternary expressions in both the generic GetAsync<T> method and the UnifiedSettingsFile loader, reducing code duplication and improving clarity.

> This Autofix was generated by AI. Please review the change before merging.
2026-03-10 11:21:39 +00:00

126 lines
4.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Copyright (c) 2026 GeWuYou
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
using GFramework.Core.Abstractions.Storage;
using GFramework.Core.Extensions;
using GFramework.Core.Utility;
using GFramework.Game.Abstractions.Data;
using GFramework.Game.Abstractions.Data.Events;
using GFramework.Game.Extensions;
namespace GFramework.Game.Data;
/// <summary>
/// 数据仓库类,用于管理游戏数据的存储和读取
/// </summary>
/// <param name="storage">存储接口实例</param>
/// <param name="options">数据仓库配置选项</param>
public class DataRepository(IStorage? storage, DataRepositoryOptions? options = null)
: AbstractContextUtility, IDataRepository
{
private readonly DataRepositoryOptions _options = options ?? new DataRepositoryOptions();
private IStorage? _storage = storage;
private IStorage Storage => _storage ??
throw new InvalidOperationException(
"Failed to initialize storage. No IStorage utility found in context.");
/// <summary>
/// 异步加载指定位置的数据
/// </summary>
/// <typeparam name="T">数据类型必须实现IData接口</typeparam>
/// <param name="location">数据位置信息</param>
/// <returns>加载的数据对象</returns>
public async Task<T> LoadAsync<T>(IDataLocation location)
where T : class, IData, new()
{
var key = location.ToStorageKey();
// 检查存储中是否存在指定键的数据
T result = await Storage.ExistsAsync(key) ? await Storage.ReadAsync<T>(key) : new T();
// 如果启用事件功能,则发送数据加载完成事件
if (_options.EnableEvents)
this.SendEvent(new DataLoadedEvent<T>(result));
return result;
}
/// <summary>
/// 异步保存数据到指定位置
/// </summary>
/// <typeparam name="T">数据类型必须实现IData接口</typeparam>
/// <param name="location">数据位置信息</param>
/// <param name="data">要保存的数据对象</param>
public async Task SaveAsync<T>(IDataLocation location, T data)
where T : class, IData
{
var key = location.ToStorageKey();
// 自动备份
if (_options.AutoBackup && await Storage.ExistsAsync(key))
{
var backupKey = $"{key}.backup";
var existing = await Storage.ReadAsync<T>(key);
await Storage.WriteAsync(backupKey, existing);
}
await Storage.WriteAsync(key, data);
if (_options.EnableEvents)
this.SendEvent(new DataSavedEvent<T>(data));
}
/// <summary>
/// 检查指定位置的数据是否存在
/// </summary>
/// <param name="location">数据位置信息</param>
/// <returns>如果数据存在返回true否则返回false</returns>
public Task<bool> ExistsAsync(IDataLocation location)
{
return Storage.ExistsAsync(location.ToStorageKey());
}
/// <summary>
/// 异步删除指定位置的数据
/// </summary>
/// <param name="location">数据位置信息</param>
public async Task DeleteAsync(IDataLocation location)
{
var key = location.ToStorageKey();
await Storage.DeleteAsync(key);
if (_options.EnableEvents)
this.SendEvent(new DataDeletedEvent(location));
}
/// <summary>
/// 异步批量保存多个数据项
/// </summary>
/// <param name="dataList">包含数据位置和数据对象的枚举集合</param>
public async Task SaveAllAsync(IEnumerable<(IDataLocation location, IData data)> dataList)
{
var valueTuples = dataList.ToList();
foreach (var (location, data) in valueTuples) await SaveAsync(location, data);
if (_options.EnableEvents)
this.SendEvent(new DataBatchSavedEvent(valueTuples));
}
/// <summary>
/// 初始化
/// </summary>
protected override void OnInit()
{
_storage ??= this.GetUtility<IStorage>()!;
}
}