BenchmarkClientComponentSystem.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System.Collections.Generic;
  2. using System.Net.Sockets;
  3. using ET.Client;
  4. namespace ET.Server
  5. {
  6. public static class BenchmarkClientComponentSystem
  7. {
  8. public class AwakeSystem: AwakeSystem<BenchmarkClientComponent>
  9. {
  10. protected override void Awake(BenchmarkClientComponent self)
  11. {
  12. for (int i = 0; i < 50; ++i)
  13. {
  14. self.Start().Coroutine();
  15. }
  16. }
  17. }
  18. private static async ETTask Start(this BenchmarkClientComponent self)
  19. {
  20. await TimerComponent.Instance.WaitAsync(1000);
  21. Scene scene = await SceneFactory.CreateServerScene(self, IdGenerater.Instance.GenerateId(), IdGenerater.Instance.GenerateInstanceId(),
  22. self.DomainZone(), "bechmark", SceneType.Benchmark);
  23. NetClientComponent netClientComponent = scene.AddComponent<NetClientComponent, AddressFamily, NetworkProtocol>(
  24. AddressFamily.InterNetwork,
  25. NetworkProtocol.KCP
  26. );
  27. using Session session = netClientComponent.Create(StartSceneConfigCategory.Instance.BenchmarkServer.OuterIPPort);
  28. List<ETTask<IResponse>> list = new List<ETTask<IResponse>>(100000);
  29. for (int j = 0; j < 100000000; ++j)
  30. {
  31. list.Clear();
  32. for (int i = 0; i < list.Capacity; ++i)
  33. {
  34. list.Add(session.Call(new C2G_Benchmark()));
  35. }
  36. await ETTaskHelper.WaitAll(list);
  37. }
  38. }
  39. }
  40. }