优化Json读取和测试
This commit is contained in:
parent
e8cfa042a0
commit
3afee45529
106
Server/Json/JsonRead.cs
Normal file
106
Server/Json/JsonRead.cs
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.IO;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace PSO2SERVER.Json
|
||||||
|
{
|
||||||
|
public class JsonRead
|
||||||
|
{
|
||||||
|
// 泛型方法:读取并反序列化 JSON 文件
|
||||||
|
public static async Task<T> DeserializeJsonAsync<T>(string filePath, JsonSerializerSettings settings = null)
|
||||||
|
{
|
||||||
|
if (string.IsNullOrEmpty(filePath))
|
||||||
|
{
|
||||||
|
Logger.Write("文件路径不能为空");
|
||||||
|
return default(T);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!File.Exists(filePath))
|
||||||
|
{
|
||||||
|
Logger.Write($"文件不存在: {filePath}");
|
||||||
|
return default(T);
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
// 异步读取文件内容
|
||||||
|
string json = await Task.Run(() => File.ReadAllText(filePath));
|
||||||
|
|
||||||
|
// 如果文件内容为空,记录日志并返回默认值
|
||||||
|
if (string.IsNullOrWhiteSpace(json))
|
||||||
|
{
|
||||||
|
Logger.Write($"文件内容为空: {filePath}");
|
||||||
|
return default(T);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 反序列化 JSON
|
||||||
|
return JsonConvert.DeserializeObject<T>(json, settings ?? new JsonSerializerSettings());
|
||||||
|
}
|
||||||
|
catch (JsonException jsonEx)
|
||||||
|
{
|
||||||
|
// 捕获 JSON 反序列化异常
|
||||||
|
Logger.Write($"JSON 反序列化错误:{jsonEx.Message} 文件: {filePath}");
|
||||||
|
return default(T);
|
||||||
|
}
|
||||||
|
catch (FileNotFoundException fnfEx)
|
||||||
|
{
|
||||||
|
// 捕获文件找不到异常
|
||||||
|
Logger.Write($"文件未找到错误:{fnfEx.Message} 文件: {filePath}");
|
||||||
|
return default(T);
|
||||||
|
}
|
||||||
|
catch (UnauthorizedAccessException uaEx)
|
||||||
|
{
|
||||||
|
// 捕获权限相关的异常
|
||||||
|
Logger.Write($"权限错误:{uaEx.Message} 文件: {filePath}");
|
||||||
|
return default(T);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
// 捕获其他未知异常
|
||||||
|
Logger.Write($"读取或反序列化文件 {filePath} 时发生异常: {ex.Message}");
|
||||||
|
return default(T);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 同步版本:用于不需要异步操作的场景
|
||||||
|
public static T DeserializeJson<T>(string filePath, JsonSerializerSettings settings = null)
|
||||||
|
{
|
||||||
|
if (string.IsNullOrEmpty(filePath))
|
||||||
|
{
|
||||||
|
Logger.Write("文件路径不能为空");
|
||||||
|
return default(T);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!File.Exists(filePath))
|
||||||
|
{
|
||||||
|
Logger.Write($"文件不存在: {filePath}");
|
||||||
|
return default(T);
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
string json = File.ReadAllText(filePath);
|
||||||
|
|
||||||
|
if (string.IsNullOrWhiteSpace(json))
|
||||||
|
{
|
||||||
|
Logger.Write($"文件内容为空: {filePath}");
|
||||||
|
return default(T);
|
||||||
|
}
|
||||||
|
|
||||||
|
return JsonConvert.DeserializeObject<T>(json, settings ?? new JsonSerializerSettings());
|
||||||
|
}
|
||||||
|
catch (JsonException jsonEx)
|
||||||
|
{
|
||||||
|
Logger.Write($"JSON 反序列化错误:{jsonEx.Message} 文件: {filePath}");
|
||||||
|
return default(T);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Logger.Write($"读取或反序列化文件 {filePath} 时发生异常: {ex.Message}");
|
||||||
|
return default(T);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -19,9 +19,9 @@ namespace PSO2SERVER.Json
|
|||||||
string jsonFilePath3 = "data\\item_attrs.json";
|
string jsonFilePath3 = "data\\item_attrs.json";
|
||||||
|
|
||||||
// 读取并反序列化 JSON 文件
|
// 读取并反序列化 JSON 文件
|
||||||
var map = DeserializeJson<MapData>(jsonFilePath1);
|
var map = JsonRead.DeserializeJson<MapData>(jsonFilePath1);
|
||||||
var mapEvent = DeserializeJson<List<EventData>>(jsonFilePath2)?.FirstOrDefault();
|
var mapEvent = JsonRead.DeserializeJson<List<EventData>>(jsonFilePath2)?.FirstOrDefault();
|
||||||
var attributes = DeserializeJson<ItemAttributesRootObject>(jsonFilePath3);
|
var attributes = JsonRead.DeserializeJson<ItemAttributesRootObject>(jsonFilePath3);
|
||||||
|
|
||||||
// 输出 MapData 信息
|
// 输出 MapData 信息
|
||||||
if (map != null)
|
if (map != null)
|
||||||
@ -48,25 +48,5 @@ namespace PSO2SERVER.Json
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 泛型方法:读取并反序列化 JSON 文件
|
|
||||||
public static T DeserializeJson<T>(string filePath)
|
|
||||||
{
|
|
||||||
if (!File.Exists(filePath))
|
|
||||||
{
|
|
||||||
Logger.Write($"文件不存在: {filePath}");
|
|
||||||
return default(T);
|
|
||||||
}
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
string json = File.ReadAllText(filePath);
|
|
||||||
return JsonConvert.DeserializeObject<T>(json);
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
Logger.Write($"错误:读取或反序列化文件 {filePath} 时发生异常: {ex.Message}");
|
|
||||||
return default(T);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -26,12 +26,12 @@ namespace PSO2SERVER
|
|||||||
public static ServerApp Instance { get; private set; }
|
public static ServerApp Instance { get; private set; }
|
||||||
|
|
||||||
// Will be using these around the app later [KeyPhact]
|
// Will be using these around the app later [KeyPhact]
|
||||||
public const string ServerName = "Phantasy Star Online 2 Server";
|
public const string ServerName = "梦幻之星OL2 服务端";
|
||||||
public const string ServerShortName = "PSO2";
|
public const string ServerShortName = "PSO2";
|
||||||
public const string ServerAuthor = "Sancaros (https://github.com/Sancaros/PSO2SERVER)";
|
public const string ServerAuthor = "Sancaros (https://github.com/Sancaros/PSO2SERVER)";
|
||||||
public const string ServerCopyright = "(C) 2024 Sancaros.";
|
public const string ServerCopyright = "(C) 2024 Sancaros.";
|
||||||
public const string ServerLicense = "All licenced under AGPL.";
|
public const string ServerLicense = "All licenced under AGPL.";
|
||||||
public const string ServerVersion = "v0.1.2";
|
public const string ServerVersion = "v0.1.3";
|
||||||
public const string ServerVersionName = "Sancaros";
|
public const string ServerVersionName = "Sancaros";
|
||||||
|
|
||||||
public const int ServerShipProtNums = 10;
|
public const int ServerShipProtNums = 10;
|
||||||
|
@ -302,6 +302,7 @@
|
|||||||
<Compile Include="ConsoleSystem.cs" />
|
<Compile Include="ConsoleSystem.cs" />
|
||||||
<Compile Include="Crypto\KeyLoader.cs" />
|
<Compile Include="Crypto\KeyLoader.cs" />
|
||||||
<Compile Include="Json\JsonTest.cs" />
|
<Compile Include="Json\JsonTest.cs" />
|
||||||
|
<Compile Include="Json\JsonRead.cs" />
|
||||||
<Compile Include="Json\QuestJson.cs" />
|
<Compile Include="Json\QuestJson.cs" />
|
||||||
<Compile Include="Logger.cs" />
|
<Compile Include="Logger.cs" />
|
||||||
<Compile Include="Models\BattleStats.cs" />
|
<Compile Include="Models\BattleStats.cs" />
|
||||||
|
Loading…
Reference in New Issue
Block a user