FormSessionTracer.cs 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. using CommonFroms.Drawing;
  2. using CommonLang;
  3. using CommonNetwork.Net;
  4. using CommonNetwork.Sockets;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.ComponentModel;
  8. using System.Data;
  9. using System.Drawing;
  10. using System.Linq;
  11. using System.Text;
  12. using System.Windows.Forms;
  13. namespace CommonFroms.Net
  14. {
  15. public partial class FormSessionTracer : Form
  16. {
  17. public interface ISession
  18. {
  19. long TotalRecvBytes { get; }
  20. long TotalSentBytes { get; }
  21. }
  22. private ISession mSession;
  23. private BytesSecondRateTracker mTrackerRecv;
  24. private BytesSecondRateTracker mTrackerSend;
  25. private StringBuilder textBuffer = new StringBuilder();
  26. public FormSessionTracer(ISession session)
  27. {
  28. InitializeComponent();
  29. this.mSession = session;
  30. this.mTrackerRecv = new BytesSecondRateTracker(600, this.Font, new Pen(Color.Blue), new SolidBrush(Color.Blue));
  31. this.mTrackerRecv.Title = "Recv";
  32. this.mTrackerSend = new BytesSecondRateTracker(600, this.Font, new Pen(Color.Red), new SolidBrush(Color.Red));
  33. this.mTrackerSend.Title = "Send";
  34. }
  35. private void timer1_Tick(object sender, EventArgs e)
  36. {
  37. mTrackerRecv.Record(mSession.TotalRecvBytes);
  38. mTrackerSend.Record(mSession.TotalSentBytes);
  39. pictureBox1.Refresh();
  40. lock (textBuffer)
  41. {
  42. if (textBuffer.Length > 0)
  43. {
  44. richTextBox1.AppendText(textBuffer.ToString());
  45. textBuffer.Clear();
  46. }
  47. }
  48. }
  49. private void pictureBox1_Paint(object sender, PaintEventArgs e)
  50. {
  51. try
  52. {
  53. float px = 0;
  54. float py = 0;
  55. float pw = pictureBox1.Width;
  56. float ph = pictureBox1.Height / 2;
  57. mTrackerRecv.DrawGrap(e.Graphics, px + 1, py + 1, pw - 2, ph - 2);
  58. py += ph;
  59. mTrackerSend.DrawGrap(e.Graphics, px + 1, py + 1, pw - 2, ph - 2);
  60. }
  61. catch (Exception err) { }
  62. }
  63. private void pictureBox1_Click(object sender, EventArgs e)
  64. {
  65. }
  66. private void onMessageReceived(INetSession session, object msg)
  67. {
  68. lock(textBuffer)
  69. {
  70. textBuffer.AppendLine(DateTime.Now + " : Recv <- " + msg);
  71. }
  72. }
  73. private void onMessageSent(INetSession session, object msg)
  74. {
  75. lock (textBuffer)
  76. {
  77. textBuffer.AppendLine(DateTime.Now + " : Send -> " + msg);
  78. }
  79. }
  80. }
  81. }