DataExchangeDispatcherBuilder.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Linq.Expressions;
  5. using System.Reflection;
  6. using Newtonsoft.Json;
  7. namespace Cbdx
  8. {
  9. public class DataExchangeDispatcherBuilder
  10. {
  11. private readonly Dictionary<string, Dictionary<string, ServiceActionBind>> _controllerDictionary;
  12. private readonly IDataExchangeDispatcher _dispatcher;
  13. public DataExchangeDispatcherBuilder()
  14. {
  15. _controllerDictionary = new Dictionary<string, Dictionary<string, ServiceActionBind>>();
  16. _dispatcher = new DataExchangeDispatcher(_controllerDictionary);
  17. }
  18. public void RegisterService<TInterface>(TInterface instance, bool overrideExist = false)
  19. {
  20. RegisterService(typeof(TInterface).Name, instance, overrideExist);
  21. }
  22. public void RegisterService<TInterface>(string name, TInterface instance, bool overrideExist = false)
  23. {
  24. if (null == instance) throw new ArgumentNullException(nameof(instance));
  25. if (_controllerDictionary.ContainsKey(name) && false == overrideExist)
  26. throw new ArgumentException("Service name already existed");
  27. var serviceType = typeof(TInterface);
  28. var methodInfos = serviceType.GetMethods(BindingFlags.Public | BindingFlags.Instance).Where(p => p.GetParameters().Length < 2).ToArray();
  29. if (methodInfos.Select(p => p.Name).Distinct().Count() != methodInfos.Length) throw new NotSupportedException("Overload is not supported");
  30. var jsonDeserializeObject = typeof(JsonConvert).GetMethod(nameof(JsonConvert.DeserializeObject), new[] { typeof(string), typeof(Type) })
  31. ?? throw new MissingMethodException(nameof(JsonConvert), nameof(JsonConvert.DeserializeObject));
  32. _controllerDictionary[name] = methodInfos.ToDictionary(p => p.Name, methodInfo =>
  33. {
  34. var parameterInfos = methodInfo.GetParameters();
  35. if (1 < parameterInfos.Length) throw new NotSupportedException($"Maximum 1 param supported:{instance.GetType().FullName}.{methodInfo.Name}");
  36. var pJson = Expression.Parameter(typeof(string));
  37. var pInstance = Expression.Parameter(typeof(object));
  38. var unboxInstance = Expression.Convert(pInstance, serviceType);
  39. Func<string, object, object> deg;
  40. if (0 == parameterInfos.Length)
  41. {
  42. var invoke = Expression.Call(unboxInstance, methodInfo);
  43. if (typeof(void) == methodInfo.ReturnType)
  44. {
  45. var lam = Expression.Lambda<Action<string, object>>(invoke, pJson, pInstance);
  46. var com = lam.Compile();
  47. deg = (s, o) =>
  48. {
  49. com(s, o);
  50. return null;
  51. };
  52. }
  53. else
  54. {
  55. var boxedResult = Expression.Convert(invoke, typeof(object));
  56. var lam = Expression.Lambda<Func<string, object, object>>(boxedResult, pJson, pInstance);
  57. deg = lam.Compile();
  58. }
  59. }
  60. else
  61. {
  62. var paramType = parameterInfos[0].ParameterType;
  63. var jsonObject = Expression.Call(jsonDeserializeObject, pJson, Expression.Constant(paramType));
  64. var jsonObjectCast = Expression.Convert(jsonObject, paramType);
  65. var invoke = Expression.Call(unboxInstance, methodInfo, jsonObjectCast);
  66. if (typeof(void) == methodInfo.ReturnType)
  67. {
  68. var lam = Expression.Lambda<Action<string, object>>(invoke, pJson, pInstance);
  69. var com = lam.Compile();
  70. deg = (s, o) =>
  71. {
  72. com(s, o);
  73. return null;
  74. };
  75. }
  76. else
  77. {
  78. var boxedResult = Expression.Convert(invoke, typeof(object));
  79. var lam = Expression.Lambda<Func<string, object, object>>(boxedResult, pJson, pInstance);
  80. deg = lam.Compile();
  81. }
  82. }
  83. return new ServiceActionBind(instance, deg);
  84. });
  85. }
  86. public object Dispatcher => _dispatcher;
  87. }
  88. }