DataExchangeServiceFactory.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. using System;
  2. using System.Reflection;
  3. using Bridge;
  4. using Newtonsoft.Json;
  5. namespace Cbdx
  6. {
  7. public class DataExchangeServiceFactory
  8. {
  9. private readonly ExternalDataExchangeDispatcher _dataExchangeDispatcher;
  10. public DataExchangeServiceFactory(ExternalDataExchangeDispatcher dataExchangeDispatcher)
  11. {
  12. _dataExchangeDispatcher = dataExchangeDispatcher;
  13. }
  14. public TInterface Create<TInterface>()
  15. {
  16. return Create<TInterface>(typeof(TInterface).Name);
  17. }
  18. public TInterface Create<TInterface>(string serviceName)
  19. {
  20. var interfaceType = typeof(TInterface);
  21. if (interfaceType.IsNested) throw new NotSupportedException("Not support nested type define");
  22. var interfaceMethodInfos = interfaceType.GetMethods(BindingFlags.Public | BindingFlags.Instance);
  23. object si = new { };
  24. foreach (var methodInfo in interfaceMethodInfos)
  25. {
  26. if (1 < methodInfo.GetParameters().Length) throw new NotSupportedException($"Maximum 1 param supported, {interfaceType.FullName}::{methodInfo.Name}");
  27. var explicitMethodName = $"{interfaceType.FullName}.{methodInfo.Name}".Replace('.', '$');
  28. var implement = new Func<object, object>(input =>
  29. {
  30. //handle params and returns
  31. var inputJson = JsonConvert.SerializeObject(input);
  32. DevUtils.LogDebug($"Invoke Service:{serviceName}, Action:{methodInfo.Name}, Input:{inputJson}");
  33. var outputJson = _dataExchangeDispatcher.InvokeService(serviceName, methodInfo.Name, inputJson);
  34. DevUtils.LogDebug($"Return Service:{serviceName}, Action:{methodInfo.Name}, Return:{outputJson}");
  35. var errorCheck = JsonConvert.DeserializeObject<DataExchangeResultBase>(outputJson);
  36. if (false == errorCheck.Success)
  37. {
  38. var errorMessage = JsonConvert.DeserializeObject<DataExchangeErrorResult>(outputJson);
  39. throw new DataExchangeException(errorMessage.Message, errorMessage.StackTrace);
  40. }
  41. var returnType = typeof(DataExchangeDataResult<>).MakeGenericType(new[] { methodInfo.ReturnType });
  42. var output = JsonConvert.DeserializeObject(outputJson, returnType);
  43. DevUtils.LogDebug(output);
  44. return output["Data"];
  45. });
  46. //interface alias
  47. si[explicitMethodName] = implement;
  48. si[methodInfo.Name] = implement;
  49. }
  50. return DuckCast<TInterface>(si);
  51. }
  52. [Template("{instance}")]
  53. private static extern T DuckCast<T>(object instance);
  54. }
  55. }