forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessageExtensions.cs
More file actions
88 lines (74 loc) · 2.99 KB
/
MessageExtensions.cs
File metadata and controls
88 lines (74 loc) · 2.99 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
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Threading;
using ServiceStack.Text;
namespace ServiceStack.Messaging
{
public static class MessageExtensions
{
public static string ToString(byte[] bytes)
{
#if !SILVERLIGHT
return System.Text.Encoding.UTF8.GetString(bytes);
#else
return System.Text.Encoding.UTF8.GetString(bytes, 0, bytes.Length);
#endif
}
private static Dictionary<Type, ToMessageDelegate> ToMessageFnCache = new Dictionary<Type, ToMessageDelegate>();
internal static ToMessageDelegate GetToMessageFn(Type type)
{
ToMessageDelegate toMessageFn;
ToMessageFnCache.TryGetValue(type, out toMessageFn);
if (toMessageFn != null) return toMessageFn;
var genericType = typeof(MessageExtensions<>).MakeGenericType(type);
var mi = genericType.GetMethod("ConvertToMessage", BindingFlags.Public | BindingFlags.Static);
toMessageFn = (ToMessageDelegate)Delegate.CreateDelegate(typeof(ToMessageDelegate), mi);
Dictionary<Type, ToMessageDelegate> snapshot, newCache;
do
{
snapshot = ToMessageFnCache;
newCache = new Dictionary<Type, ToMessageDelegate>(ToMessageFnCache);
newCache[type] = toMessageFn;
} while (!ReferenceEquals(
Interlocked.CompareExchange(ref ToMessageFnCache, newCache, snapshot), snapshot));
return toMessageFn;
}
public static IMessage ToMessage(this byte[] bytes, Type ofType)
{
var msgFn = GetToMessageFn(ofType);
var msg = msgFn(bytes);
return msg;
}
public static Message<T> ToMessage<T>(this byte[] bytes)
{
var messageText = ToString(bytes);
return JsonSerializer.DeserializeFromString<Message<T>>(messageText);
}
public static byte[] ToBytes(this IMessage message)
{
var serializedMessage = JsonSerializer.SerializeToString((object)message);
return System.Text.Encoding.UTF8.GetBytes(serializedMessage);
}
public static byte[] ToBytes<T>(this IMessage<T> message)
{
var serializedMessage = JsonSerializer.SerializeToString(message);
return System.Text.Encoding.UTF8.GetBytes(serializedMessage);
}
public static string ToInQueueName<T>(this IMessage<T> message)
{
return message.Priority > 0
? QueueNames<T>.Priority
: QueueNames<T>.In;
}
}
internal delegate IMessage ToMessageDelegate(object param);
internal static class MessageExtensions<T>
{
public static IMessage ConvertToMessage(object oBytes)
{
var bytes = (byte[]) oBytes;
return bytes.ToMessage<T>();
}
}
}