mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 08:44:29 +08:00
- 新增 ConfigSchemaDiagnostics 类提供配置 schema 代码生成相关诊断 - 添加 JSON 解析错误、根对象检查、ID字段要求等12种诊断规则 - 实现配置验证逻辑,支持整数、数字、布尔值、邮箱等格式校验 - 添加日期时间、持续时间、URI、UUID 等字符串格式验证 - 实现 YAML 解析和注释提取功能 - 提供配置样本生成和批量编辑更新功能 - 添加模式匹配和格式验证的正则表达式支持
144 lines
5.5 KiB
C#
144 lines
5.5 KiB
C#
using GFramework.SourceGenerators.Common.Constants;
|
|
|
|
namespace GFramework.Game.SourceGenerators.Diagnostics;
|
|
|
|
/// <summary>
|
|
/// 提供配置 schema 代码生成相关诊断。
|
|
/// </summary>
|
|
public static class ConfigSchemaDiagnostics
|
|
{
|
|
private const string SourceGeneratorsConfigCategory = $"{PathContests.SourceGeneratorsPath}.Config";
|
|
|
|
/// <summary>
|
|
/// schema JSON 无法解析。
|
|
/// </summary>
|
|
public static readonly DiagnosticDescriptor InvalidSchemaJson = new(
|
|
"GF_ConfigSchema_001",
|
|
"Config schema JSON is invalid",
|
|
"Schema file '{0}' could not be parsed: {1}",
|
|
SourceGeneratorsConfigCategory,
|
|
DiagnosticSeverity.Error,
|
|
true);
|
|
|
|
/// <summary>
|
|
/// schema 顶层必须是 object。
|
|
/// </summary>
|
|
public static readonly DiagnosticDescriptor RootObjectSchemaRequired = new(
|
|
"GF_ConfigSchema_002",
|
|
"Config schema root must describe an object",
|
|
"Schema file '{0}' must declare a root object schema",
|
|
SourceGeneratorsConfigCategory,
|
|
DiagnosticSeverity.Error,
|
|
true);
|
|
|
|
/// <summary>
|
|
/// schema 必须声明 id 字段作为主键。
|
|
/// </summary>
|
|
public static readonly DiagnosticDescriptor IdPropertyRequired = new(
|
|
"GF_ConfigSchema_003",
|
|
"Config schema must declare an id property",
|
|
"Schema file '{0}' must declare a required 'id' property for table generation",
|
|
SourceGeneratorsConfigCategory,
|
|
DiagnosticSeverity.Error,
|
|
true);
|
|
|
|
/// <summary>
|
|
/// schema 包含暂不支持的字段类型。
|
|
/// </summary>
|
|
public static readonly DiagnosticDescriptor UnsupportedPropertyType = new(
|
|
"GF_ConfigSchema_004",
|
|
"Config schema contains an unsupported property type",
|
|
"Property '{1}' in schema file '{0}' uses unsupported type '{2}'",
|
|
SourceGeneratorsConfigCategory,
|
|
DiagnosticSeverity.Error,
|
|
true);
|
|
|
|
/// <summary>
|
|
/// schema 的 id 字段类型不支持作为主键。
|
|
/// </summary>
|
|
public static readonly DiagnosticDescriptor UnsupportedKeyType = new(
|
|
"GF_ConfigSchema_005",
|
|
"Config schema uses an unsupported key type",
|
|
"Schema file '{0}' uses unsupported id type '{1}'. Supported key types are 'integer' and 'string'.",
|
|
SourceGeneratorsConfigCategory,
|
|
DiagnosticSeverity.Error,
|
|
true);
|
|
|
|
/// <summary>
|
|
/// schema 字段名无法安全映射为 C# 标识符。
|
|
/// </summary>
|
|
public static readonly DiagnosticDescriptor InvalidGeneratedIdentifier = new(
|
|
"GF_ConfigSchema_006",
|
|
"Config schema property name cannot be converted to a valid C# identifier",
|
|
"Property '{1}' in schema file '{0}' uses schema key '{2}', which generates invalid C# identifier '{3}'",
|
|
SourceGeneratorsConfigCategory,
|
|
DiagnosticSeverity.Error,
|
|
true);
|
|
|
|
/// <summary>
|
|
/// schema 顶层自定义配置目录元数据无效。
|
|
/// </summary>
|
|
public static readonly DiagnosticDescriptor InvalidConfigRelativePathMetadata = new(
|
|
"GF_ConfigSchema_007",
|
|
"Config schema uses invalid custom config path metadata",
|
|
"Schema file '{0}' uses invalid '{1}' metadata: {2}",
|
|
SourceGeneratorsConfigCategory,
|
|
DiagnosticSeverity.Error,
|
|
true);
|
|
|
|
/// <summary>
|
|
/// schema 字段的查询索引元数据无效。
|
|
/// </summary>
|
|
public static readonly DiagnosticDescriptor InvalidLookupIndexMetadata = new(
|
|
"GF_ConfigSchema_008",
|
|
"Config schema uses invalid lookup index metadata",
|
|
"Property '{1}' in schema file '{0}' uses invalid '{2}' metadata: {3}",
|
|
SourceGeneratorsConfigCategory,
|
|
DiagnosticSeverity.Error,
|
|
true);
|
|
|
|
/// <summary>
|
|
/// schema 字段的字符串 format 元数据无效。
|
|
/// </summary>
|
|
public static readonly DiagnosticDescriptor InvalidStringFormatMetadata = new(
|
|
"GF_ConfigSchema_009",
|
|
"Config schema uses invalid string format metadata",
|
|
"Property '{1}' in schema file '{0}' uses invalid 'format' metadata: {2}",
|
|
SourceGeneratorsConfigCategory,
|
|
DiagnosticSeverity.Error,
|
|
true);
|
|
|
|
/// <summary>
|
|
/// schema 对象节点的 dependentRequired 元数据无效。
|
|
/// </summary>
|
|
public static readonly DiagnosticDescriptor InvalidDependentRequiredMetadata = new(
|
|
"GF_ConfigSchema_010",
|
|
"Config schema uses invalid dependentRequired metadata",
|
|
"Property '{1}' in schema file '{0}' uses invalid 'dependentRequired' metadata: {2}",
|
|
SourceGeneratorsConfigCategory,
|
|
DiagnosticSeverity.Error,
|
|
true);
|
|
|
|
/// <summary>
|
|
/// schema 对象节点的 dependentSchemas 元数据无效。
|
|
/// </summary>
|
|
public static readonly DiagnosticDescriptor InvalidDependentSchemasMetadata = new(
|
|
"GF_ConfigSchema_011",
|
|
"Config schema uses invalid dependentSchemas metadata",
|
|
"Property '{1}' in schema file '{0}' uses invalid 'dependentSchemas' metadata: {2}",
|
|
SourceGeneratorsConfigCategory,
|
|
DiagnosticSeverity.Error,
|
|
true);
|
|
|
|
/// <summary>
|
|
/// schema 对象节点的 allOf 元数据无效。
|
|
/// </summary>
|
|
public static readonly DiagnosticDescriptor InvalidAllOfMetadata = new(
|
|
"GF_ConfigSchema_012",
|
|
"Config schema uses invalid allOf metadata",
|
|
"Property '{1}' in schema file '{0}' uses invalid 'allOf' metadata: {2}",
|
|
SourceGeneratorsConfigCategory,
|
|
DiagnosticSeverity.Error,
|
|
true);
|
|
}
|