using System.Globalization; using System.IO; using System.Text.Json; namespace GFramework.Game.Config; /// /// 提供 YAML 配置文件与 JSON Schema 之间的最小运行时校验能力。 /// 该校验器与当前配置生成器支持的 schema 子集保持一致, /// 以便在配置进入运行时注册表之前就拒绝缺失字段、未知字段和基础类型错误。 /// internal static class YamlConfigSchemaValidator { /// /// 从磁盘加载并解析一个 JSON Schema 文件。 /// /// Schema 文件路径。 /// 取消令牌。 /// 解析后的 schema 模型。 /// 为空时抛出。 /// 当 schema 文件不存在时抛出。 /// 当 schema 内容不符合当前运行时支持的子集时抛出。 internal static async Task LoadAsync( string schemaPath, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(schemaPath)) { throw new ArgumentException("Schema path cannot be null or whitespace.", nameof(schemaPath)); } if (!File.Exists(schemaPath)) { throw new FileNotFoundException($"Schema file '{schemaPath}' was not found.", schemaPath); } string schemaText; try { schemaText = await File.ReadAllTextAsync(schemaPath, cancellationToken); } catch (Exception exception) { throw new InvalidOperationException($"Failed to read schema file '{schemaPath}'.", exception); } try { using var document = JsonDocument.Parse(schemaText); var root = document.RootElement; if (!root.TryGetProperty("type", out var typeElement) || !string.Equals(typeElement.GetString(), "object", StringComparison.Ordinal)) { throw new InvalidOperationException( $"Schema file '{schemaPath}' must declare a root object schema."); } if (!root.TryGetProperty("properties", out var propertiesElement) || propertiesElement.ValueKind != JsonValueKind.Object) { throw new InvalidOperationException( $"Schema file '{schemaPath}' must declare an object-valued 'properties' section."); } var requiredProperties = new HashSet(StringComparer.Ordinal); if (root.TryGetProperty("required", out var requiredElement) && requiredElement.ValueKind == JsonValueKind.Array) { foreach (var item in requiredElement.EnumerateArray()) { cancellationToken.ThrowIfCancellationRequested(); if (item.ValueKind != JsonValueKind.String) { continue; } var propertyName = item.GetString(); if (!string.IsNullOrWhiteSpace(propertyName)) { requiredProperties.Add(propertyName); } } } var properties = new Dictionary(StringComparer.Ordinal); foreach (var property in propertiesElement.EnumerateObject()) { cancellationToken.ThrowIfCancellationRequested(); properties.Add(property.Name, ParseProperty(schemaPath, property)); } return new YamlConfigSchema(schemaPath, properties, requiredProperties); } catch (JsonException exception) { throw new InvalidOperationException($"Schema file '{schemaPath}' contains invalid JSON.", exception); } } /// /// 使用已解析的 schema 校验 YAML 文本。 /// /// 已解析的 schema 模型。 /// YAML 文件路径,仅用于诊断信息。 /// YAML 文本内容。 /// 当参数为空时抛出。 /// 当 YAML 内容与 schema 不匹配时抛出。 internal static void Validate( YamlConfigSchema schema, string yamlPath, string yamlText) { ArgumentNullException.ThrowIfNull(schema); ArgumentNullException.ThrowIfNull(yamlPath); ArgumentNullException.ThrowIfNull(yamlText); YamlStream yamlStream = new(); try { using var reader = new StringReader(yamlText); yamlStream.Load(reader); } catch (Exception exception) { throw new InvalidOperationException( $"Config file '{yamlPath}' could not be parsed as YAML before schema validation.", exception); } if (yamlStream.Documents.Count != 1 || yamlStream.Documents[0].RootNode is not YamlMappingNode rootMapping) { throw new InvalidOperationException( $"Config file '{yamlPath}' must contain a single root mapping object."); } var seenProperties = new HashSet(StringComparer.Ordinal); foreach (var entry in rootMapping.Children) { if (entry.Key is not YamlScalarNode keyNode || string.IsNullOrWhiteSpace(keyNode.Value)) { throw new InvalidOperationException( $"Config file '{yamlPath}' contains a non-scalar or empty top-level property name."); } var propertyName = keyNode.Value; if (!seenProperties.Add(propertyName)) { throw new InvalidOperationException( $"Config file '{yamlPath}' contains duplicate property '{propertyName}'."); } if (!schema.Properties.TryGetValue(propertyName, out var property)) { throw new InvalidOperationException( $"Config file '{yamlPath}' contains unknown property '{propertyName}' that is not declared in schema '{schema.SchemaPath}'."); } ValidateNode(yamlPath, propertyName, entry.Value, property); } foreach (var requiredProperty in schema.RequiredProperties) { if (!seenProperties.Contains(requiredProperty)) { throw new InvalidOperationException( $"Config file '{yamlPath}' is missing required property '{requiredProperty}' defined by schema '{schema.SchemaPath}'."); } } } private static YamlConfigSchemaProperty ParseProperty(string schemaPath, JsonProperty property) { if (!property.Value.TryGetProperty("type", out var typeElement) || typeElement.ValueKind != JsonValueKind.String) { throw new InvalidOperationException( $"Property '{property.Name}' in schema file '{schemaPath}' must declare a string 'type'."); } var typeName = typeElement.GetString() ?? string.Empty; var propertyType = typeName switch { "integer" => YamlConfigSchemaPropertyType.Integer, "number" => YamlConfigSchemaPropertyType.Number, "boolean" => YamlConfigSchemaPropertyType.Boolean, "string" => YamlConfigSchemaPropertyType.String, "array" => YamlConfigSchemaPropertyType.Array, _ => throw new InvalidOperationException( $"Property '{property.Name}' in schema file '{schemaPath}' uses unsupported type '{typeName}'.") }; if (propertyType != YamlConfigSchemaPropertyType.Array) { return new YamlConfigSchemaProperty(property.Name, propertyType, null); } if (!property.Value.TryGetProperty("items", out var itemsElement) || itemsElement.ValueKind != JsonValueKind.Object || !itemsElement.TryGetProperty("type", out var itemTypeElement) || itemTypeElement.ValueKind != JsonValueKind.String) { throw new InvalidOperationException( $"Array property '{property.Name}' in schema file '{schemaPath}' must declare an item type."); } var itemTypeName = itemTypeElement.GetString() ?? string.Empty; var itemType = itemTypeName switch { "integer" => YamlConfigSchemaPropertyType.Integer, "number" => YamlConfigSchemaPropertyType.Number, "boolean" => YamlConfigSchemaPropertyType.Boolean, "string" => YamlConfigSchemaPropertyType.String, _ => throw new InvalidOperationException( $"Array property '{property.Name}' in schema file '{schemaPath}' uses unsupported item type '{itemTypeName}'.") }; return new YamlConfigSchemaProperty(property.Name, propertyType, itemType); } private static void ValidateNode( string yamlPath, string propertyName, YamlNode node, YamlConfigSchemaProperty property) { if (property.PropertyType == YamlConfigSchemaPropertyType.Array) { if (node is not YamlSequenceNode sequenceNode) { throw new InvalidOperationException( $"Property '{propertyName}' in config file '{yamlPath}' must be an array."); } foreach (var item in sequenceNode.Children) { ValidateScalarNode(yamlPath, propertyName, item, property.ItemType!.Value, isArrayItem: true); } return; } ValidateScalarNode(yamlPath, propertyName, node, property.PropertyType, isArrayItem: false); } private static void ValidateScalarNode( string yamlPath, string propertyName, YamlNode node, YamlConfigSchemaPropertyType expectedType, bool isArrayItem) { if (node is not YamlScalarNode scalarNode) { var subject = isArrayItem ? $"Array item in property '{propertyName}'" : $"Property '{propertyName}'"; throw new InvalidOperationException( $"{subject} in config file '{yamlPath}' must be a scalar value of type '{GetTypeName(expectedType)}'."); } var value = scalarNode.Value; if (value is null) { var subject = isArrayItem ? $"Array item in property '{propertyName}'" : $"Property '{propertyName}'"; throw new InvalidOperationException( $"{subject} in config file '{yamlPath}' cannot be null when schema type is '{GetTypeName(expectedType)}'."); } var tag = scalarNode.Tag.ToString(); var isValid = expectedType switch { YamlConfigSchemaPropertyType.String => IsStringScalar(tag), YamlConfigSchemaPropertyType.Integer => long.TryParse( value, NumberStyles.Integer, CultureInfo.InvariantCulture, out _), YamlConfigSchemaPropertyType.Number => double.TryParse( value, NumberStyles.Float | NumberStyles.AllowThousands, CultureInfo.InvariantCulture, out _), YamlConfigSchemaPropertyType.Boolean => bool.TryParse(value, out _), _ => false }; if (isValid) { return; } var subjectName = isArrayItem ? $"Array item in property '{propertyName}'" : $"Property '{propertyName}'"; throw new InvalidOperationException( $"{subjectName} in config file '{yamlPath}' must be of type '{GetTypeName(expectedType)}', but the current YAML scalar value is '{value}'."); } private static string GetTypeName(YamlConfigSchemaPropertyType type) { return type switch { YamlConfigSchemaPropertyType.Integer => "integer", YamlConfigSchemaPropertyType.Number => "number", YamlConfigSchemaPropertyType.Boolean => "boolean", YamlConfigSchemaPropertyType.String => "string", YamlConfigSchemaPropertyType.Array => "array", _ => type.ToString() }; } private static bool IsStringScalar(string tag) { if (string.IsNullOrWhiteSpace(tag)) { return true; } return !string.Equals(tag, "tag:yaml.org,2002:int", StringComparison.Ordinal) && !string.Equals(tag, "tag:yaml.org,2002:float", StringComparison.Ordinal) && !string.Equals(tag, "tag:yaml.org,2002:bool", StringComparison.Ordinal) && !string.Equals(tag, "tag:yaml.org,2002:null", StringComparison.Ordinal); } } /// /// 表示已解析并可用于运行时校验的 JSON Schema。 /// 该模型只保留当前运行时加载器真正需要的最小信息,以避免在游戏运行时引入完整 schema 引擎。 /// internal sealed class YamlConfigSchema { /// /// 初始化一个可用于运行时校验的 schema 模型。 /// /// Schema 文件路径。 /// Schema 属性定义。 /// 必填属性集合。 public YamlConfigSchema( string schemaPath, IReadOnlyDictionary properties, IReadOnlyCollection requiredProperties) { ArgumentNullException.ThrowIfNull(schemaPath); ArgumentNullException.ThrowIfNull(properties); ArgumentNullException.ThrowIfNull(requiredProperties); SchemaPath = schemaPath; Properties = properties; RequiredProperties = requiredProperties; } /// /// 获取 schema 文件路径。 /// public string SchemaPath { get; } /// /// 获取按属性名索引的 schema 属性定义。 /// public IReadOnlyDictionary Properties { get; } /// /// 获取 schema 声明的必填属性集合。 /// public IReadOnlyCollection RequiredProperties { get; } } /// /// 表示单个 schema 属性的最小运行时描述。 /// internal sealed class YamlConfigSchemaProperty { /// /// 初始化一个 schema 属性描述。 /// /// 属性名称。 /// 属性类型。 /// 数组元素类型;仅当属性类型为数组时有效。 public YamlConfigSchemaProperty( string name, YamlConfigSchemaPropertyType propertyType, YamlConfigSchemaPropertyType? itemType) { ArgumentNullException.ThrowIfNull(name); Name = name; PropertyType = propertyType; ItemType = itemType; } /// /// 获取属性名称。 /// public string Name { get; } /// /// 获取属性类型。 /// public YamlConfigSchemaPropertyType PropertyType { get; } /// /// 获取数组元素类型;非数组属性时返回空。 /// public YamlConfigSchemaPropertyType? ItemType { get; } } /// /// 表示当前运行时 schema 校验器支持的属性类型。 /// internal enum YamlConfigSchemaPropertyType { /// /// 整数类型。 /// Integer, /// /// 数值类型。 /// Number, /// /// 布尔类型。 /// Boolean, /// /// 字符串类型。 /// String, /// /// 数组类型。 /// Array }