-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathGrainInterfaceProperties.cs
More file actions
231 lines (205 loc) · 7.92 KB
/
Copy pathGrainInterfaceProperties.cs
File metadata and controls
231 lines (205 loc) · 7.92 KB
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
#nullable enable
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Text;
using Orleans.Runtime;
namespace Orleans.Metadata
{
/// <summary>
/// Information about a communication interface.
/// </summary>
[Serializable, GenerateSerializer, Immutable]
public sealed class GrainInterfaceProperties : IEquatable<GrainInterfaceProperties>
{
[NonSerialized]
private int? _hashCode;
/// <summary>
/// Initializes a new instance of the <see cref="GrainInterfaceProperties"/> class.
/// </summary>
/// <param name="values">
/// The interface property values.
/// </param>
public GrainInterfaceProperties(ImmutableDictionary<string, string> values)
{
ArgumentNullException.ThrowIfNull(values);
this.Properties = values;
}
/// <summary>
/// Gets the properties.
/// </summary>
[Id(0)]
public ImmutableDictionary<string, string> Properties { get; }
/// <summary>
/// Returns a detailed string representation of this instance.
/// </summary>
/// <returns>
/// A detailed, string representation of this instance.
/// </returns>
public string ToDetailedString()
{
if (this.Properties is null) return string.Empty;
var result = new StringBuilder("[");
bool first = true;
foreach (var entry in this.Properties)
{
if (!first)
{
result.Append(", ");
}
result.Append($"\"{entry.Key}\": \"{entry.Value}\"");
first = false;
}
result.Append("]");
return result.ToString();
}
public override bool Equals(object? obj) => obj is GrainInterfaceProperties other && Equals(other);
public bool Equals(GrainInterfaceProperties? other)
{
if (ReferenceEquals(this, other)) return true;
if (other is null) return false;
return PropertiesEqual(Properties, other.Properties);
}
public override int GetHashCode() => _hashCode ??= ComputeHashCode(Properties);
private static bool PropertiesEqual(ImmutableDictionary<string, string> left, ImmutableDictionary<string, string> right)
{
if (ReferenceEquals(left, right))
{
return true;
}
if (left.Count != right.Count)
{
return false;
}
foreach (var entry in left)
{
if (!right.TryGetValue(entry.Key, out var value)
|| !string.Equals(entry.Value, value, StringComparison.Ordinal))
{
return false;
}
}
return true;
}
private static int ComputeHashCode(ImmutableDictionary<string, string> properties)
{
var hash = 0;
foreach (var entry in properties)
{
hash ^= HashCode.Combine(
StringComparer.Ordinal.GetHashCode(entry.Key),
entry.Value is null ? 0 : StringComparer.Ordinal.GetHashCode(entry.Value));
}
return hash;
}
}
/// <summary>
/// Well-known grain interface property keys.
/// </summary>
/// <seealso cref="GrainInterfaceProperties"/>
public static class WellKnownGrainInterfaceProperties
{
/// <summary>
/// The version of this interface encoded as a decimal integer.
/// </summary>
public const string Version = "version";
/// <summary>
/// The encoded <see cref="GrainType"/> corresponding to the primary implementation of an interface.
/// This is used for resolving a grain type from an interface.
/// </summary>
public const string DefaultGrainType = "primary-grain-type";
/// <summary>
/// The name of the type of this interface. Used for convention-based matching of primary implementations.
/// </summary>
public const string TypeName = "type-name";
}
/// <summary>
/// Provides grain properties.
/// </summary>
public interface IGrainInterfacePropertiesProvider
{
/// <summary>
/// Adds grain interface properties to <paramref name="properties"/>.
/// </summary>
/// <param name="interfaceType">
/// The interface type.
/// </param>
/// <param name="grainInterfaceType">
/// The interface type id.
/// </param>
/// <param name="properties">
/// The properties collection which this calls to this method should populate.
/// </param>
void Populate(Type interfaceType, GrainInterfaceType grainInterfaceType, Dictionary<string, string> properties);
}
/// <summary>
/// Interface for <see cref="Attribute"/> classes which provide information about a grain interface.
/// </summary>
public interface IGrainInterfacePropertiesProviderAttribute
{
/// <summary>
/// Adds grain interface properties to <paramref name="properties"/>.
/// </summary>
/// <param name="services">
/// The service provider.
/// </param>
/// <param name="interfaceType">
/// The interface type.
/// </param>
/// <param name="properties">
/// The properties collection which this calls to this method should populate.
/// </param>
void Populate(IServiceProvider services, Type interfaceType, Dictionary<string, string> properties);
}
/// <summary>
/// Provides grain interface properties from attributes implementing <see cref="IGrainInterfacePropertiesProviderAttribute"/>.
/// </summary>
internal sealed class AttributeGrainInterfacePropertiesProvider : IGrainInterfacePropertiesProvider
{
private readonly IServiceProvider serviceProvider;
/// <summary>
/// Initializes a new instance of the <see cref="AttributeGrainInterfacePropertiesProvider"/> class.
/// </summary>
/// <param name="serviceProvider">
/// The service provider.
/// </param>
public AttributeGrainInterfacePropertiesProvider(IServiceProvider serviceProvider)
{
this.serviceProvider = serviceProvider;
}
/// <inheritdoc />
public void Populate(Type interfaceType, GrainInterfaceType grainInterfaceType, Dictionary<string, string> properties)
{
foreach (var attr in interfaceType.GetCustomAttributes(inherit: true))
{
if (attr is IGrainInterfacePropertiesProviderAttribute providerAttribute)
{
providerAttribute.Populate(this.serviceProvider, interfaceType, properties);
}
}
}
}
/// <summary>
/// Specifies the default grain type to use when constructing a grain reference for this interface without specifying a grain type.
/// </summary>
[AttributeUsage(AttributeTargets.Interface, AllowMultiple = false)]
public sealed class DefaultGrainTypeAttribute : Attribute, IGrainInterfacePropertiesProviderAttribute
{
private readonly string grainType;
/// <summary>
/// Initializes a new instance of the <see cref="DefaultGrainTypeAttribute"/> class.
/// </summary>
/// <param name="grainType">
/// The grain type.
/// </param>
public DefaultGrainTypeAttribute(string grainType)
{
this.grainType = grainType;
}
/// <inheritdoc />
void IGrainInterfacePropertiesProviderAttribute.Populate(IServiceProvider services, Type type, Dictionary<string, string> properties)
{
properties[WellKnownGrainInterfaceProperties.DefaultGrainType] = this.grainType;
}
}
}