mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 08:44:29 +08:00
- 拆分 schema model 类型到独立同名文件 - 清理 schema 校验模型的文件命名 analyzer 告警 - 更新 warning reduction 批处理收口状态
45 lines
1.5 KiB
C#
45 lines
1.5 KiB
C#
namespace GFramework.Game.Config;
|
|
|
|
/// <summary>
|
|
/// 表示已解析并可用于运行时校验的 JSON Schema。
|
|
/// 该模型保留根节点与引用依赖集合,避免运行时引入完整 schema 引擎。
|
|
/// </summary>
|
|
internal sealed class YamlConfigSchema
|
|
{
|
|
/// <summary>
|
|
/// 初始化一个可用于运行时校验的 schema 模型。
|
|
/// </summary>
|
|
/// <param name="schemaPath">Schema 文件路径。</param>
|
|
/// <param name="rootNode">根节点模型。</param>
|
|
/// <param name="referencedTableNames">Schema 声明的目标引用表名称集合。</param>
|
|
public YamlConfigSchema(
|
|
string schemaPath,
|
|
YamlConfigSchemaNode rootNode,
|
|
IReadOnlyCollection<string> referencedTableNames)
|
|
{
|
|
ArgumentNullException.ThrowIfNull(schemaPath);
|
|
ArgumentNullException.ThrowIfNull(rootNode);
|
|
ArgumentNullException.ThrowIfNull(referencedTableNames);
|
|
|
|
SchemaPath = schemaPath;
|
|
RootNode = rootNode;
|
|
ReferencedTableNames = referencedTableNames;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取 schema 文件路径。
|
|
/// </summary>
|
|
public string SchemaPath { get; }
|
|
|
|
/// <summary>
|
|
/// 获取根节点模型。
|
|
/// </summary>
|
|
public YamlConfigSchemaNode RootNode { get; }
|
|
|
|
/// <summary>
|
|
/// 获取 schema 声明的目标引用表名称集合。
|
|
/// 该信息用于热重载时推导受影响的依赖表闭包。
|
|
/// </summary>
|
|
public IReadOnlyCollection<string> ReferencedTableNames { get; }
|
|
}
|