JSGServerProfile.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. using CommonAI.Zone;
  2. using CommonLang;
  3. using CommonLang.Log;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. //using System.Threading.Tasks;
  9. namespace CommonAI.ZoneServer.JSGModule
  10. {
  11. public class JSGServerProfile
  12. {
  13. public class PackSizeProfile
  14. {
  15. public long times = 0;
  16. public long size = 0;
  17. }
  18. protected static readonly Logger log = LoggerFactory.GetDefLogger();
  19. //////////////////////////////////////////////////////////////////////////////////
  20. //数据统计
  21. private static HashMap<int, PackSizeProfile> mSendProfile = new HashMap<int, PackSizeProfile>();
  22. private static long mLastShowSendTime;
  23. private static HashMap<int, PackSizeProfile> mRecProfile = new HashMap<int, PackSizeProfile>();
  24. private static long mLastShowRecTime;
  25. //////////////////////////////////////////////////////////////////////////////////
  26. public static void RecordSend(int typeID, long msgSize)
  27. {
  28. PackSizeProfile profile = mSendProfile.Get(typeID);
  29. if (profile == null)
  30. {
  31. profile = new PackSizeProfile();
  32. mSendProfile.Put(typeID, profile);
  33. }
  34. profile.times++;
  35. profile.size += msgSize;
  36. }
  37. public static void CheckPrintSendProfile()
  38. {
  39. long curTime = CommonLang.CUtils.localTimeMS;
  40. if (mLastShowSendTime == 0 || mLastShowSendTime - curTime > 360000)
  41. {
  42. mLastShowSendTime = curTime;
  43. log.Warn(" --------------------- PackEvent send ------------------- ");
  44. foreach (KeyValuePair<int, PackSizeProfile> kv in mSendProfile)
  45. {
  46. log.Warn(" - - - - - MsgID = " + kv.Key + ",\t Size = " + kv.Value.size +
  47. ", \ttimes = " + kv.Value.times + ", \t avg = " + (kv.Value.size / kv.Value.times));
  48. }
  49. log.Warn(" ---------------------------------------------------- ");
  50. }
  51. }
  52. public static void RecordRecv(int typeID, long msgSize)
  53. {
  54. PackSizeProfile profile = mRecProfile.Get(typeID);
  55. if (profile == null)
  56. {
  57. profile = new PackSizeProfile();
  58. mRecProfile.Put(typeID, profile);
  59. }
  60. profile.times++;
  61. profile.size += msgSize;
  62. CheckPrintRecProfile();
  63. }
  64. private static void CheckPrintRecProfile()
  65. {
  66. long curTime = CommonLang.CUtils.localTimeMS;
  67. if (mLastShowRecTime == 0 || mLastShowRecTime - curTime > 360000)
  68. {
  69. mLastShowRecTime = curTime;
  70. log.Warn(" --------------------- PackEvent recv ------------------- ");
  71. foreach (KeyValuePair<int, PackSizeProfile> kv in mRecProfile)
  72. {
  73. log.Warn(" - - - - - MsgID = " + kv.Key + ",\t Size = " + kv.Value.size +
  74. ", \ttimes = " + kv.Value.times + ", \t avg = " + (kv.Value.size / kv.Value.times));
  75. }
  76. log.Warn(" ---------------------------------------------------- ");
  77. }
  78. }
  79. }
  80. }