forked from Unity-Technologies/UnityCsReference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAssemblyValidation.cs
160 lines (129 loc) · 4.94 KB
/
AssemblyValidation.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using UnityEditor.Scripting.Compilers;
using UnityEngine;
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
internal class AssemblyValidationRule : Attribute
{
public int Priority;
private readonly RuntimePlatform _platform;
public AssemblyValidationRule(RuntimePlatform platform)
{
_platform = platform;
Priority = 0;
}
public RuntimePlatform Platform
{
get { return _platform; }
}
}
internal struct ValidationResult
{
public bool Success;
public IValidationRule Rule;
public IEnumerable<CompilerMessage> CompilerMessages;
}
internal interface IValidationRule
{
ValidationResult Validate(IEnumerable<string> userAssemblies, params object[] options);
}
internal class AssemblyValidation
{
private static Dictionary<RuntimePlatform, List<Type>> _rulesByPlatform;
public static ValidationResult Validate(RuntimePlatform platform, IEnumerable<string> userAssemblies, params object[] options)
{
WarmUpRulesCache();
var assemblies = userAssemblies as string[] ?? userAssemblies.ToArray();
if (assemblies.Length != 0)
{
foreach (var validationRule in ValidationRulesFor(platform, options))
{
var result = validationRule.Validate(assemblies, options);
if (!result.Success)
return result;
}
}
return new ValidationResult { Success = true };
}
private static void WarmUpRulesCache()
{
if (_rulesByPlatform != null)
return;
_rulesByPlatform = new Dictionary<RuntimePlatform, List<Type>>();
var assembly = typeof(AssemblyValidation).Assembly;
foreach (var type in assembly.GetTypes().Where(IsValidationRule))
RegisterValidationRule(type);
}
private static bool IsValidationRule(Type type)
{
return ValidationRuleAttributesFor(type).Any();
}
private static IEnumerable<IValidationRule> ValidationRulesFor(RuntimePlatform platform, params object[] options)
{
return ValidationRuleTypesFor(platform).Select(t => CreateValidationRuleWithOptions(t, options)).Where(v => v != null);
}
private static IEnumerable<Type> ValidationRuleTypesFor(RuntimePlatform platform)
{
if (!_rulesByPlatform.ContainsKey(platform))
yield break;
foreach (var validationType in _rulesByPlatform[platform])
yield return validationType;
}
private static IValidationRule CreateValidationRuleWithOptions(Type type, params object[] options)
{
var constructorOptions = new List<object>(options);
while (true)
{
var currentOptions = constructorOptions.ToArray();
var constructor = ConstructorFor(type, currentOptions);
if (constructor != null)
return (IValidationRule)constructor.Invoke(currentOptions);
if (constructorOptions.Count == 0)
return null;
constructorOptions.RemoveAt(constructorOptions.Count - 1);
}
}
private static ConstructorInfo ConstructorFor(Type type, IEnumerable<object> options)
{
var constructorArguments = options.Select(o => o.GetType()).ToArray();
return type.GetConstructor(constructorArguments);
}
internal static void RegisterValidationRule(Type type)
{
foreach (var attribute in ValidationRuleAttributesFor(type))
RegisterValidationRuleForPlatform(attribute.Platform, type);
}
internal static void RegisterValidationRuleForPlatform(RuntimePlatform platform, Type type)
{
if (!_rulesByPlatform.ContainsKey(platform))
_rulesByPlatform[platform] = new List<Type>();
if (_rulesByPlatform[platform].IndexOf(type) == -1)
_rulesByPlatform[platform].Add(type);
_rulesByPlatform[platform].Sort((a, b) => CompareValidationRulesByPriority(a, b, platform));
}
internal static int CompareValidationRulesByPriority(Type a, Type b, RuntimePlatform platform)
{
var aPriority = PriorityFor(a, platform);
var bPriority = PriorityFor(b, platform);
if (aPriority == bPriority)
return 0;
return (aPriority < bPriority ? -1 : 1);
}
private static int PriorityFor(Type type, RuntimePlatform platform)
{
return
ValidationRuleAttributesFor(type).
Where(attr => attr.Platform == platform).
Select(attr => attr.Priority).
FirstOrDefault();
}
private static IEnumerable<AssemblyValidationRule> ValidationRuleAttributesFor(Type type)
{
return type.GetCustomAttributes(true).OfType<AssemblyValidationRule>();
}
}