WatcherHelper.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. using System;
  2. using System.Collections;
  3. using System.Diagnostics;
  4. namespace ET.Server
  5. {
  6. public static class WatcherHelper
  7. {
  8. public static StartMachineConfig GetThisMachineConfig()
  9. {
  10. string[] localIP = NetworkHelper.GetAddressIPs();
  11. StartMachineConfig startMachineConfig = null;
  12. foreach (StartMachineConfig config in StartMachineConfigCategory.Instance.GetAll().Values)
  13. {
  14. if (!WatcherHelper.IsThisMachine(config.InnerIP, localIP))
  15. {
  16. continue;
  17. }
  18. startMachineConfig = config;
  19. break;
  20. }
  21. if (startMachineConfig == null)
  22. {
  23. throw new Exception("not found this machine ip config!");
  24. }
  25. return startMachineConfig;
  26. }
  27. public static bool IsThisMachine(string ip, string[] localIPs)
  28. {
  29. if (ip != "127.0.0.1" && ip != "0.0.0.0" && !((IList) localIPs).Contains(ip))
  30. {
  31. return false;
  32. }
  33. return true;
  34. }
  35. public static Process StartProcess(int processId, int createScenes = 0)
  36. {
  37. StartProcessConfig startProcessConfig = StartProcessConfigCategory.Instance.Get(processId);
  38. const string exe = "dotnet";
  39. string arguments = $"App.dll" +
  40. $" --Process={startProcessConfig.Id}" +
  41. $" --AppType=Server" +
  42. $" --StartConfig={Options.Instance.StartConfig}" +
  43. $" --Develop={Options.Instance.Develop}" +
  44. $" --CreateScenes={createScenes}" +
  45. $" --LogLevel={Options.Instance.LogLevel}" +
  46. $" --Console={Options.Instance.Console}";
  47. Log.Debug($"{exe} {arguments}");
  48. Process process = ProcessHelper.Run(exe, arguments);
  49. return process;
  50. }
  51. }
  52. }