InterfaceCreator.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. var implement = new Action(() =>
  18. {
  19. Console.WriteLine($"GEN:{methodInfo.Name} @ {serviceName}");
  20. });
  21. //interface alias
  22. si[bridgeInterfaceMethodName] = implement;
  23. si[methodInfo.Name] = implement;
  24. }
  25. return DuckCast<TInterface>(si);
  26. }
  27. [Template("{instance}")]
  28. private static extern T DuckCast<T>(object instance);
  29. }
  30. }