BaseNetSession.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Net.Sockets;
  5. using System.IO;
  6. using System.Threading;
  7. using CommonNetwork.Net;
  8. using CommonLang.IO;
  9. using CommonLang.ByteOrder;
  10. using CommonLang.Protocol;
  11. using System.Net;
  12. using CommonLang.Net;
  13. using CommonLang;
  14. using CommonLang.Log;
  15. namespace CommonNetwork.Sockets
  16. {
  17. public abstract class BaseNetSession : INetSession
  18. {
  19. protected string mURL;
  20. protected long mSendBytes = 0;
  21. protected long mRecvBytes = 0;
  22. protected long mSendPacks = 0;
  23. protected long mRecvPacks = 0;
  24. private HashMap<string, object> mAttributes = new HashMap<string, object>();
  25. public long TotalSentBytes { get { return mSendBytes; } }
  26. public long TotalRecvBytes { get { return mRecvBytes; } }
  27. public long TotalSentPackages { get { return mSendPacks; } }
  28. public long TotalRecvPackages { get { return mRecvPacks; } }
  29. public string URL { get { return mURL; } }
  30. public abstract IPEndPoint RemoteAddress { get; }
  31. public abstract INetPackageCodec Codec { get; }
  32. /// <summary>
  33. /// 判断当前网络是否已经连接
  34. /// </summary>
  35. /// <returns></returns>
  36. public abstract bool IsConnected { get; }
  37. public abstract bool Open(string url, INetPackageCodec codec, INetSessionListener listener);
  38. public abstract bool Close();
  39. public virtual void Dispose()
  40. {
  41. Close();
  42. }
  43. //-------------------------------------------------------------------------------------
  44. /// <summary>
  45. /// 发送一个消息,该方法将立即返回。
  46. /// </summary>
  47. /// <param name="data"></param>
  48. public abstract void Send(Object data);
  49. public abstract void SendResponse(IMessage rsponse, int requestMessageID);
  50. //-------------------------------------------------------------------------------------
  51. public object GetAttribute(string key)
  52. {
  53. return mAttributes[key];
  54. }
  55. public void SetAttribute(string key, object value)
  56. {
  57. mAttributes[key] = value;
  58. }
  59. public void RemoveAttribute(string key)
  60. {
  61. mAttributes.Remove(key);
  62. }
  63. public bool ContainsAttribute(string key)
  64. {
  65. return mAttributes.ContainsKey(key);
  66. }
  67. public ICollection<string> GetAttributeKeys()
  68. {
  69. return mAttributes.Keys;
  70. }
  71. public override string ToString()
  72. {
  73. return "Session[" + URL + "](" + GetHashCode() + ")";
  74. }
  75. //-------------------------------------------------------------------------------------
  76. protected OnSessionOpenedHandler mOnSessionOpened;
  77. protected OnSessionClosedHandler mOnSessionClosed;
  78. protected OnMessageReceivedHandler mOnMessageReceived;
  79. protected OnMessageSentHandler mOnMessageSent;
  80. protected OnErrorHandler mOnError;
  81. public event OnSessionOpenedHandler OnSessionOpened { add { mOnSessionOpened += value; } remove { mOnSessionOpened -= value; } }
  82. public event OnSessionClosedHandler OnSessionClosed { add { mOnSessionClosed += value; } remove { mOnSessionClosed -= value; } }
  83. public event OnMessageReceivedHandler OnMessageReceived { add { mOnMessageReceived += value; } remove { mOnMessageReceived -= value; } }
  84. public event OnMessageSentHandler OnMessageSent { add { mOnMessageSent += value; } remove { mOnMessageSent -= value; } }
  85. public event OnErrorHandler OnError { add { mOnError += value; } remove { mOnError -= value; } }
  86. //-------------------------------------------------------------------------------------
  87. }
  88. }