JSGServerProfile.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. using CommonAI.Data;
  2. using CommonAI.Zone;
  3. using CommonAI.Zone.Instance;
  4. using CommonLang;
  5. using CommonLang.Log;
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Linq;
  9. using System.Text;
  10. //using System.Threading.Tasks;
  11. namespace CommonAI.ZoneServer.JSGModule
  12. {
  13. public class JSGServerProfile
  14. {
  15. public class JSGProfileData
  16. {
  17. public long times = 0;
  18. public long size = 0;
  19. }
  20. public class ZoneCreateInfo
  21. {
  22. public int areaId;
  23. public int mTotalTimes;
  24. public int mTotalTimeUse;
  25. }
  26. public class TriggerData
  27. {
  28. public long checkTimes = 0; // 检测次数
  29. public long triggerTimes = 0; // 触发次数
  30. public long timeUse = 0; // 触发耗时
  31. }
  32. public class JSGTriggerProfile
  33. {
  34. // 总触发次数<100 || 总耗时小于<3000 将会被过滤输出
  35. public int areaId;
  36. public long areaCreateTime;
  37. public TriggerData total = new TriggerData();
  38. public HashMap<string, TriggerData> profileData = new HashMap<string, TriggerData>();
  39. public JSGTriggerProfile(int areaId, long createTime)
  40. {
  41. this.areaId = areaId;
  42. this.areaCreateTime = createTime;
  43. }
  44. }
  45. protected static readonly Logger log = LoggerFactory.GetDefLogger();
  46. private static int STRIGGER_INTERVAL = 1800 * 1000;
  47. //////////////////////////////////////////////////////////////////////////////////
  48. //数据统计
  49. private static HashMap<int, JSGProfileData> mSendProfile = new HashMap<int, JSGProfileData>();
  50. private static HashMap<int, JSGProfileData> mRecProfile = new HashMap<int, JSGProfileData>();
  51. //记录创建场景信息
  52. private static HashMap<int, ZoneCreateInfo> mZoneCreate = new HashMap<int, ZoneCreateInfo>();
  53. //场景触发器触发次数,耗时统计(场景id: 时间名,统计数据)
  54. private static HashMap<int, JSGTriggerProfile> mZoneTriggers = new HashMap<int, JSGTriggerProfile>();
  55. private static long mNextPrintTime;
  56. //////////////////////////////////////////////////////////////////////////////////
  57. public static void init()
  58. {
  59. if (GlobalData.GAME_BS_TEST)
  60. {
  61. STRIGGER_INTERVAL = 300 * 1000;
  62. }
  63. mNextPrintTime = CommonLang.CUtils.CurrentTimeMS + STRIGGER_INTERVAL;
  64. }
  65. public static void RecordSend(int typeID, long msgSize)
  66. {
  67. JSGProfileData profile = mSendProfile.Get(typeID);
  68. if (profile == null)
  69. {
  70. profile = new JSGProfileData();
  71. mSendProfile.Put(typeID, profile);
  72. }
  73. profile.times++;
  74. profile.size += msgSize;
  75. }
  76. public static void RecordRecv(int typeID, long msgSize)
  77. {
  78. //log.Warn("收到消息:" + typeID);
  79. JSGProfileData profile = mRecProfile.Get(typeID);
  80. if (profile == null)
  81. {
  82. profile = new JSGProfileData();
  83. mRecProfile.Put(typeID, profile);
  84. }
  85. profile.times++;
  86. profile.size += msgSize;
  87. }
  88. /** 记录场景创建耗时 */
  89. public static void RecordZoneCreate(int areaId, int timeUse)
  90. {
  91. ZoneCreateInfo zoneInfo = mZoneCreate.Get(areaId);
  92. if (zoneInfo == null)
  93. {
  94. zoneInfo = new ZoneCreateInfo();
  95. zoneInfo.areaId = areaId;
  96. mZoneCreate.Put(areaId, zoneInfo);
  97. }
  98. zoneInfo.mTotalTimes++;
  99. zoneInfo.mTotalTimeUse += timeUse;
  100. }
  101. /** 记录场景触发器耗时 */
  102. public static void RecordTrigger(InstanceZone zone, string triggerName, int timeUse, bool isTrigger)
  103. {
  104. int areaId = zone.GetSceneID();
  105. JSGTriggerProfile trigger = mZoneTriggers.Get(areaId);
  106. if (trigger == null)
  107. {
  108. trigger = new JSGTriggerProfile(areaId, zone.mCreateTime);
  109. mZoneTriggers.Put(areaId, trigger);
  110. }
  111. trigger.total.timeUse += timeUse;
  112. trigger.total.checkTimes++;
  113. TriggerData triggerData = trigger.profileData.Get(triggerName);
  114. if (triggerData == null)
  115. {
  116. triggerData = new TriggerData();
  117. trigger.profileData.Put(triggerName, triggerData);
  118. }
  119. triggerData.checkTimes++;
  120. triggerData.timeUse += timeUse;
  121. if (isTrigger)
  122. {
  123. trigger.total.triggerTimes++;
  124. triggerData.triggerTimes++;
  125. }
  126. }
  127. public static bool CheckPrintAllData()
  128. {
  129. if(mNextPrintTime > CommonLang.CUtils.localTimeMS)
  130. {
  131. return false;
  132. }
  133. mNextPrintTime = CommonLang.CUtils.CurrentTimeMS + STRIGGER_INTERVAL;
  134. log.Info(" --------------------- PackEvent send ------------------- ");
  135. foreach (KeyValuePair<int, JSGProfileData> kv in mSendProfile)
  136. {
  137. log.Info(" - - - - - MsgID = " + kv.Key + ",\t Size = " + kv.Value.size +
  138. ", \ttimes = " + kv.Value.times + ", \t avg = " + (kv.Value.size / kv.Value.times));
  139. }
  140. log.Info(" --------------------- PackEvent recv ------------------- ");
  141. foreach (KeyValuePair<int, JSGProfileData> kv in mRecProfile)
  142. {
  143. log.Info(" - - - - - MsgID = " + kv.Key + ",\t Size = " + kv.Value.size + ", \ttimes = " + kv.Value.times + ", \t avg = " + (kv.Value.size / kv.Value.times));
  144. }
  145. JSGPrintLog("----------------------创建场景耗时统计输出----------------------");
  146. foreach (ZoneCreateInfo info in mZoneCreate.Values)
  147. {
  148. JSGPrintLog("##创建场景耗时统计:" + info.areaId + ", " + info.mTotalTimes + ", " + info.mTotalTimeUse);
  149. }
  150. JSGPrintLog("----------------------场景事件耗时输出----------------------");
  151. long curTime = CommonLang.TimeUtil.GetTimestampMS();
  152. foreach (JSGTriggerProfile info in mZoneTriggers.Values)
  153. {
  154. JSGPrintLog("##触发器总揽:" + info.areaId + ", 运行:" + (curTime - info.areaCreateTime) + ", 创建时间:" + info.areaCreateTime +
  155. ", 检测数:" + info.total.checkTimes + ", 触发数: " + info.total.triggerTimes + ", 耗时:" + info.total.timeUse);
  156. if (info.total.checkTimes > 50000 || info.total.timeUse > 500)
  157. {
  158. foreach (KeyValuePair<string, TriggerData> kv in info.profileData)
  159. {
  160. JSGPrintLog("------触发器详细:" + kv.Key + ", 检测次数:" + kv.Value.checkTimes + ", 触发次数: " + kv.Value.triggerTimes + ", 耗时:" + kv.Value.timeUse);
  161. }
  162. }
  163. }
  164. JSGPrintLog(" ---------------------------------------------------- ");
  165. return true;
  166. }
  167. private static void JSGPrintLog(string data)
  168. {
  169. if (GlobalData.GAME_BS_TEST)
  170. {
  171. log.Warn(data);
  172. }
  173. else
  174. {
  175. log.Info(data);
  176. }
  177. }
  178. }
  179. }