InterfaceCreator.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using Bridge;
  2. using System;
  3. using System.Reflection;
  4. namespace DuckInterface
  5. {
  6. public static class InterfaceCreator
  7. {
  8. public static TInterface Create<TInterface>(string serviceName)
  9. {
  10. var interfaceType = typeof(TInterface);
  11. if (interfaceType.IsNested) throw new NotSupportedException("Not support nested type define");
  12. var interfaceMethodInfos = interfaceType.GetMethods(BindingFlags.Public | BindingFlags.Instance);
  13. object si = new { };
  14. foreach (var methodInfo in interfaceMethodInfos)
  15. {
  16. var bridgeInterfaceMethodName = $"{interfaceType.FullName}.{methodInfo.Name}".Replace('.', '$');
  17. //TODO: handle params
  18. var implement = new Action(() =>
  19. {
  20. Console.WriteLine($"GEN:{methodInfo.Name} @ {serviceName}");
  21. });
  22. //interface alias
  23. si[bridgeInterfaceMethodName] = implement;
  24. si[methodInfo.Name] = implement;
  25. }
  26. return DuckCast<TInterface>(si);
  27. }
  28. [Template("{instance}")]
  29. private static extern T DuckCast<T>(object instance);
  30. }
  31. }