using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Content.IntegrationTests; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.Markdown.Validation; using Robust.Shared.Timing; using Robust.Shared.Utility; namespace Content.YAMLLinter { internal class Program : ContentIntegrationTest { private static int Main(string[] args) { return new Program().Run(); } private int Run() { var stopwatch = new Stopwatch(); stopwatch.Start(); var errors = RunValidation().Result; if (errors.Count == 0) { Console.WriteLine($"No errors found in {(int) stopwatch.Elapsed.TotalMilliseconds} ms."); return 0; } foreach (var (file, errorHashset) in errors) { foreach (var errorNode in errorHashset) { Console.WriteLine($"({file} | (L:{errorNode.Node.Start.Line}-{errorNode.Node.End.Line} | C:{errorNode.Node.Start.Column}-{errorNode.Node.End.Column}): {errorNode.ErrorReason}"); } } Console.WriteLine($"{errors.Count} errors found in {(int) stopwatch.Elapsed.TotalMilliseconds} ms."); return -1; } private async Task>> ValidateClient() { var client = StartClient(); await client.WaitIdleAsync(); var cPrototypeManager = client.ResolveDependency(); var clientErrors = new Dictionary>(); await client.WaitAssertion(() => { clientErrors = cPrototypeManager.ValidateDirectory(new ResourcePath("/Prototypes")); }); client.Stop(); return clientErrors; } private async Task>> ValidateServer() { var server = StartServer(); await server.WaitIdleAsync(); var sPrototypeManager = server.ResolveDependency(); var serverErrors = new Dictionary>(); await server.WaitAssertion(() => { serverErrors = sPrototypeManager.ValidateDirectory(new ResourcePath("/Prototypes")); }); server.Stop(); return serverErrors; } public async Task>> RunValidation() { var allErrors = new Dictionary>(); var tasks = await Task.WhenAll(ValidateClient(), ValidateServer()); var clientErrors = tasks[0]; var serverErrors = tasks[1]; foreach (var (key, val) in serverErrors) { if (clientErrors.TryGetValue(key, out var clientVal)) { var newErrors = val.Intersect(clientVal).ToHashSet(); newErrors.UnionWith(val.Where(n => n.AlwaysRelevant)); newErrors.UnionWith(clientVal.Where(n => n.AlwaysRelevant)); if (newErrors.Count == 0) continue; allErrors[key] = newErrors; } } return allErrors; } } }