Tracker.cs 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. using CommonLang;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Drawing;
  5. using System.Linq;
  6. using System.Text;
  7. namespace CommonFroms.Drawing
  8. {
  9. public class Tracker
  10. {
  11. protected readonly Font font;
  12. protected readonly Pen drawLine;
  13. protected readonly Brush drawString;
  14. private double[] track;
  15. private PointF[] points;
  16. private string status = "";
  17. private string status_max = "";
  18. private string status_min = "";
  19. private double min, max, avg;
  20. private int r_count = 0;
  21. public string StatusInfo
  22. {
  23. get { return status; }
  24. set { status = value; }
  25. }
  26. public string StatusMaxInfo
  27. {
  28. get { return status_max; }
  29. set { status_max = value; }
  30. }
  31. public string StatusMinInfo
  32. {
  33. get { return status_min; }
  34. set { status_min = value; }
  35. }
  36. public double HistoryMin { get; private set; }
  37. public double HistoryMax { get; private set; }
  38. public double LastValue { get { return track[track.Length - 1]; } }
  39. public double Max { get { return max; } }
  40. public double Min { get { return min; } }
  41. public double Average { get { return avg; } }
  42. public Tracker(int tracklen, Font font, Pen drawLine, Brush drawString)
  43. {
  44. this.font = font;
  45. this.track = new double[tracklen];
  46. this.points = new PointF[tracklen];
  47. this.HistoryMin = Double.MaxValue;
  48. this.HistoryMax = Double.MinValue;
  49. this.drawLine = drawLine;
  50. this.drawString = drawString;
  51. }
  52. public virtual void Record(double value)
  53. {
  54. for (int i = 1; i < track.Length; i++)
  55. {
  56. this.track[i - 1] = track[i];
  57. }
  58. this.track[track.Length - 1] = value;
  59. this.r_count++;
  60. this.HistoryMin = Math.Min(HistoryMin, value);
  61. this.HistoryMax = Math.Max(HistoryMax, value);
  62. this.max = Double.MinValue;
  63. this.min = Double.MaxValue;
  64. double sum = 0;
  65. for (int i = 0; i < track.Length; i++)
  66. {
  67. sum += track[i];
  68. if (max < track[i])
  69. {
  70. max = track[i];
  71. }
  72. if (min > track[i])
  73. {
  74. min = track[i];
  75. }
  76. }
  77. this.avg = sum / r_count;
  78. }
  79. public double[] GetGrapTrack()
  80. {
  81. return (double[])track.Clone();
  82. }
  83. protected virtual void DrawMap(Graphics g, float x, float y, float w, float h)
  84. {
  85. double pw = w / (double)points.Length;
  86. double vh = HistoryMax;
  87. if (vh != 0)
  88. {
  89. for (int i = 0; i < points.Length; i++)
  90. {
  91. double px = x + i * pw;
  92. double py = y + h - h * track[i] / vh;
  93. points[i].X = (float)px;
  94. points[i].Y = (float)py;
  95. }
  96. for (int i = 1; i < points.Length; i++)
  97. {
  98. g.DrawLine(drawLine, points[i - 1], points[i]);
  99. }
  100. }
  101. }
  102. protected virtual void DrawInfo(Graphics g, string text, float x, float y)
  103. {
  104. g.DrawString(text, font, drawString, x, y);
  105. }
  106. public void DrawGrap(Graphics g, float x, float y, float w, float h)
  107. {
  108. float fh = Math.Max(g.MeasureString(status + "", font).Height + 2, 20);
  109. DrawMap(g, x + 1, y + 1, w - 2, h - 2 - fh);
  110. if (!string.IsNullOrEmpty(status_max))
  111. {
  112. DrawInfo(g, status_max, x + 2, y + 2);
  113. }
  114. if (!string.IsNullOrEmpty(status_min))
  115. {
  116. DrawInfo(g, status_min, x + 2, y + 2 + fh);
  117. }
  118. DrawInfo(g, status, x + 2, y + h - fh);
  119. g.DrawRectangle(drawLine, x, y, w - 1, h - 1);
  120. }
  121. }
  122. public class SecondRateTracker : Tracker
  123. {
  124. public double RecordValue { get; private set; }
  125. public double RecordValuePerSec { get; private set; }
  126. private double prewTime = 0;
  127. private double prewValue;
  128. public SecondRateTracker(int tracklen, Font font, Pen drawLine, Brush drawString)
  129. : base(tracklen, font, drawLine, drawString)
  130. {
  131. }
  132. public override void Record(double value)
  133. {
  134. RecordValue = value;
  135. long curTime = CUtils.CurrentTimeMS;
  136. if (prewTime == 0)
  137. {
  138. base.Record(0);
  139. }
  140. else
  141. {
  142. this.RecordValuePerSec = (value - prewValue) / ((curTime - prewTime) / 1000d);
  143. base.Record(RecordValuePerSec);
  144. }
  145. prewTime = curTime;
  146. prewValue = value;
  147. }
  148. }
  149. public class BytesSecondRateTracker : SecondRateTracker
  150. {
  151. private string title;
  152. public string Title
  153. {
  154. get { return title; }
  155. set { title = value; }
  156. }
  157. public BytesSecondRateTracker(int tracklen, Font font, Pen drawLine, Brush drawString)
  158. : base(tracklen, font, drawLine, drawString)
  159. {
  160. }
  161. public override void Record(double value)
  162. {
  163. base.Record(value);
  164. this.StatusInfo = string.Format("{0} : {1}/s Avg : {2}/s", Title, CUtils.ToBytesSizeString((long)this.RecordValuePerSec), CUtils.ToBytesSizeString((long)this.Average));
  165. this.StatusMaxInfo = "Max : " + CUtils.ToBytesSizeString((long)this.Max);
  166. this.StatusMinInfo = "Min : " + CUtils.ToBytesSizeString((long)this.Min);
  167. }
  168. }
  169. }