forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServerEventsClient.Receiver.cs
More file actions
227 lines (185 loc) · 7.45 KB
/
ServerEventsClient.Receiver.cs
File metadata and controls
227 lines (185 loc) · 7.45 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
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
using System.Runtime.Serialization;
using ServiceStack.Configuration;
using ServiceStack.Logging;
using ServiceStack.Text;
namespace ServiceStack
{
public delegate void ServerEventCallback(ServerEventsClient source, ServerEventMessage args);
public class ServerEventReceiver : IReceiver
{
public static ILog Log = LogManager.GetLogger(typeof(ServerEventReceiver));
public ServerEventsClient Client { get; set; }
public ServerEventMessage Request { get; set; }
public virtual void NoSuchMethod(string selector, object message)
{
if (Log.IsDebugEnabled)
Log.Debug($"NoSuchMethod defined for {selector}");
}
}
public class NewInstanceResolver : IResolver
{
public T TryResolve<T>()
{
return typeof(T).CreateInstance<T>();
}
}
public class SingletonInstanceResolver : IResolver
{
readonly ConcurrentDictionary<Type, object> Cache = new ConcurrentDictionary<Type, object>();
public T TryResolve<T>()
{
return (T) Cache.GetOrAdd(typeof (T), type => type.CreateInstance<T>());
}
}
public partial class ServerEventsClient
{
public IResolver Resolver { get; set; }
public Dictionary<string, ServerEventCallback> Handlers { get; set; }
public Dictionary<string, ServerEventCallback> NamedReceivers { get; set; }
public List<Type> ReceiverTypes { get; set; }
public ServerEventsClient RegisterReceiver<T>()
where T : IReceiver
{
return RegisterNamedReceiver<T>("cmd");
}
public ServerEventsClient RegisterNamedReceiver<T>(string receiverName)
where T : IReceiver
{
ReceiverExec<T>.Reset();
NamedReceivers[receiverName] = CreateReceiverHandler<T>;
ReceiverTypes.Add(typeof(T));
return this;
}
private void CreateReceiverHandler<T>(ServerEventsClient client, ServerEventMessage msg)
{
var receiver = Resolver.TryResolve<T>() as IReceiver;
if (receiver == null)
throw new ArgumentNullException("receiver", "Resolver returned null receiver");
var injectRecevier = receiver as ServerEventReceiver;
if (injectRecevier != null)
{
injectRecevier.Client = client;
injectRecevier.Request = msg;
}
var target = msg.Target.Replace("-", ""); //css bg-image
ReceiverExecContext receiverCtx;
ReceiverExec<T>.RequestTypeExecMap.TryGetValue(target, out receiverCtx);
if (receiverCtx == null)
ReceiverExec<T>.MethodNameExecMap.TryGetValue(target, out receiverCtx);
if (receiverCtx == null)
{
receiver.NoSuchMethod(msg.Target, msg);
return;
}
object requestDto;
try
{
requestDto = string.IsNullOrEmpty(msg.Json)
? receiverCtx.RequestType.CreateInstance()
: JsonSerializer.DeserializeFromString(msg.Json, receiverCtx.RequestType);
}
catch (Exception ex)
{
throw new SerializationException($"Could not deserialize into '{typeof(T).Name}' from '{msg.Json}'", ex);
}
receiverCtx.Exec(receiver, requestDto);
}
}
internal delegate object ActionInvokerFn(object intance, object request);
internal delegate void VoidActionInvokerFn(object intance, object request);
internal class ReceiverExecContext
{
public const string AnyAction = "ANY";
public string Id { get; set; }
public Type RequestType { get; set; }
public Type ServiceType { get; set; }
public ActionInvokerFn Exec { get; set; }
public static string Key(string method, string requestDtoName)
{
return method.ToUpper() + " " + requestDtoName;
}
public static string AnyKey(string requestDtoName)
{
return AnyAction + " " + requestDtoName;
}
}
internal class ReceiverExec<T>
{
internal static Dictionary<string, ReceiverExecContext> RequestTypeExecMap;
internal static Dictionary<string, ReceiverExecContext> MethodNameExecMap;
public static void Reset()
{
RequestTypeExecMap = new Dictionary<string, ReceiverExecContext>(StringComparer.OrdinalIgnoreCase);
MethodNameExecMap = new Dictionary<string, ReceiverExecContext>(StringComparer.OrdinalIgnoreCase);
var methods = typeof(T).GetMethodInfos().Where(x => x.IsPublic && !x.IsStatic);
foreach (var mi in methods)
{
var actionName = mi.Name;
var args = mi.GetParameters();
if (args.Length != 1)
continue;
if (mi.Name == "Equals")
continue;
if (actionName.StartsWith("set_"))
actionName = actionName.Substring("set_".Length);
var requestType = args[0].ParameterType;
var execCtx = new ReceiverExecContext
{
Id = ReceiverExecContext.Key(actionName, requestType.GetOperationName()),
ServiceType = typeof(T),
RequestType = requestType,
};
try
{
execCtx.Exec = CreateExecFn(requestType, mi);
}
catch
{
//Potential problems with MONO, using reflection for fallback
execCtx.Exec = (receiver, request) =>
mi.Invoke(receiver, new[] { request });
}
RequestTypeExecMap[requestType.Name] = execCtx;
MethodNameExecMap[actionName] = execCtx;
}
}
private static ActionInvokerFn CreateExecFn(Type requestType, MethodInfo mi)
{
//TODO optimize for PCL clients
#if PCL
return (instance, request) =>
mi.Invoke(instance, new[] { request });
#else
var receiverType = typeof(T);
var receiverParam = Expression.Parameter(typeof(object), "receiverObj");
var receiverStrong = Expression.Convert(receiverParam, receiverType);
var requestDtoParam = Expression.Parameter(typeof(object), "requestDto");
var requestDtoStrong = Expression.Convert(requestDtoParam, requestType);
Expression callExecute = Expression.Call(
receiverStrong, mi, requestDtoStrong);
if (mi.ReturnType != typeof(void))
{
var executeFunc = Expression.Lambda<ActionInvokerFn>
(callExecute, receiverParam, requestDtoParam).Compile();
return executeFunc;
}
else
{
var executeFunc = Expression.Lambda<VoidActionInvokerFn>
(callExecute, receiverParam, requestDtoParam).Compile();
return (service, request) =>
{
executeFunc(service, request);
return null;
};
}
#endif
}
}
}