Unified the ways of message thread in WebSocket.cs

This commit is contained in:
sta 2012-09-20 21:45:55 +09:00
parent 8868761635
commit ab86ce8af8
23 changed files with 16 additions and 40 deletions

Binary file not shown.

View File

@ -73,9 +73,9 @@ namespace Example
ThreadPool.QueueUserWorkItem(notifyMsg); ThreadPool.QueueUserWorkItem(notifyMsg);
//using (WebSocket ws = new WebSocket("ws://echo.websocket.org", "echo")) using (WebSocket ws = new WebSocket("ws://echo.websocket.org", "echo"))
//using (WebSocket ws = new WebSocket("wss://echo.websocket.org", "echo")) //using (WebSocket ws = new WebSocket("wss://echo.websocket.org", "echo"))
using (WebSocket ws = new WebSocket("ws://localhost:4649")) //using (WebSocket ws = new WebSocket("ws://localhost:4649"))
{ {
ws.OnOpen += (sender, e) => ws.OnOpen += (sender, e) =>
{ {

Binary file not shown.

Binary file not shown.

View File

@ -66,14 +66,13 @@ namespace WebSocketSharp
private string _binaryType; private string _binaryType;
private HttpListenerWebSocketContext _context; private HttpListenerWebSocketContext _context;
private IPEndPoint _endPoint; private IPEndPoint _endPoint;
private AutoResetEvent _exitedMessageLoop; private AutoResetEvent _exitMessageLoop;
private string _extensions; private string _extensions;
private Object _forClose; private Object _forClose;
private Object _forSend; private Object _forSend;
private int _fragmentLen; private int _fragmentLen;
private bool _isClient; private bool _isClient;
private bool _isSecure; private bool _isSecure;
private Thread _msgThread;
private NetworkStream _netStream; private NetworkStream _netStream;
private string _protocol; private string _protocol;
private string _protocols; private string _protocols;
@ -355,13 +354,8 @@ namespace WebSocketSharp
private void closeHandshake(WsFrame frame) private void closeHandshake(WsFrame frame)
{ {
if (send(frame) && !Thread.CurrentThread.IsBackground) if (send(frame) && !Thread.CurrentThread.IsBackground)
{ if (_exitMessageLoop != null)
if (_isClient && _msgThread != null) _exitMessageLoop.WaitOne(5 * 1000);
_msgThread.Join(5 * 1000);
if (!_isClient && _exitedMessageLoop != null)
_exitedMessageLoop.WaitOne(5 * 1000);
}
ReadyState = WsState.CLOSED; ReadyState = WsState.CLOSED;
} }
@ -673,14 +667,6 @@ namespace WebSocketSharp
} }
} }
private void messageLoop()
{
while (_readyState == WsState.OPEN)
{
message();
}
}
private void messageLoopCallback(IAsyncResult ar) private void messageLoopCallback(IAsyncResult ar)
{ {
Action messageInvoker = (Action)ar.AsyncState; Action messageInvoker = (Action)ar.AsyncState;
@ -689,11 +675,10 @@ namespace WebSocketSharp
if (_readyState == WsState.OPEN) if (_readyState == WsState.OPEN)
{ {
messageInvoker.BeginInvoke(messageLoopCallback, messageInvoker); messageInvoker.BeginInvoke(messageLoopCallback, messageInvoker);
return;
} }
else
{ _exitMessageLoop.Set();
_exitedMessageLoop.Set();
}
} }
private void pong(PayloadData data) private void pong(PayloadData data)
@ -1042,24 +1027,15 @@ namespace WebSocketSharp
private void startMessageThread() private void startMessageThread()
{ {
if (_isClient) _exitMessageLoop = new AutoResetEvent(false);
Action messageInvoker = () =>
{ {
_msgThread = new Thread(new ThreadStart(messageLoop)); if (_readyState == WsState.OPEN)
_msgThread.IsBackground = true; message();
_msgThread.Start(); };
}
else messageInvoker.BeginInvoke(messageLoopCallback, messageInvoker);
{
_exitedMessageLoop = new AutoResetEvent(false);
Action messageInvoker = () =>
{
if (_readyState == WsState.OPEN)
{
message();
}
};
messageInvoker.BeginInvoke(messageLoopCallback, messageInvoker);
}
} }
#endregion #endregion

Binary file not shown.