【问题标题】:How can async socket listener be closed correctly in separate thread?如何在单独的线程中正确关闭异步套接字侦听器?
【发布时间】:2017-01-27 10:26:13
【问题描述】:

我使用 C# 类来连接不同的子窗体。 项目为MDI类型。 在连接形​​式中,有一个由线程调用的异步Socket Listner。 当我关闭我的应用程序时,我无法关闭侦听器并且程序保留在任务管理器中。 问题与打开的侦听器有关。 在表单连接中输入以下代码:

 private AsynchronousSocketListener socketListener;          // Per socket in ascolto da parte delle App to Machine
    private Thread t_listener;

    public c_masterConn() //Costructor
    {
        socketListener = new AsynchronousSocketListener();          // Socketlistner async
        t_listener = new Thread(socketListener.StartListening);     // Thread for socketlistener
        t_listener.Start();                                         // Start socketlistener
    }

    public void StopThr() //Stop listner thread
    {
        t_listener.Interrupt();
    }

    public class AsynchronousSocketListener
    {
        // Thread signal.
        public static ManualResetEvent allDone = new ManualResetEvent(false);

        public AsynchronousSocketListener()
        {
        }

        public void StartListening()
        {
            // Data buffer for incoming data.
            byte[] bytes = new Byte[1024];

            // Establish the local endpoint for the socket.
            // The DNS name of the computer
            // running the listener is "host.contoso.com".
            IPHostEntry ipHostInfo = Dns.Resolve(Dns.GetHostName());
            IPAddress ipAddress = ipHostInfo.AddressList[0];
            IPEndPoint localEndPoint = new IPEndPoint(ipAddress, 11000);

            // Create a TCP/IP socket.
            Socket listener = new Socket(AddressFamily.InterNetwork,
                SocketType.Stream, ProtocolType.Tcp);

            // Bind the socket to the local endpoint and listen for incoming connections.
            try
            {
                listener.Bind(localEndPoint);
                listener.Listen(100);

                while (true)
                {
                    // Set the event to nonsignaled state.
                    allDone.Reset();

                    // Start an asynchronous socket to listen for connections.
                    //Console.WriteLine("Waiting for a connection...");
                    listener.BeginAccept(
                        new AsyncCallback(AcceptCallback),
                        listener);

                    // Wait until a connection is made before continuing.
                    allDone.WaitOne();
                }

            }
            catch (Exception e)
            {
                //Console.WriteLine(e.ToString());
            }

            //Console.WriteLine("\nPress ENTER to continue...");
            //Console.Read();

        }

        public static void AcceptCallback(IAsyncResult ar)
        {
            // Signal the main thread to continue.
            allDone.Set();

            // Get the socket that handles the client request.
            Socket listener = (Socket)ar.AsyncState;
            Socket handler = listener.EndAccept(ar);

            // Create the state object.
            StateObject state = new StateObject();
            state.workSocket = handler;
            handler.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0,
                new AsyncCallback(ReadCallback), state);
        }

        public static void ReadCallback(IAsyncResult ar)
        {
            String content = String.Empty;

            // Retrieve the state object and the handler socket
            // from the asynchronous state object.
            StateObject state = (StateObject)ar.AsyncState;
            Socket handler = state.workSocket;

            // Read data from the client socket. 
            int bytesRead = handler.EndReceive(ar);

            if (bytesRead > 0)
            {
                // There  might be more data, so store the data received so far.
                state.sb.Append(Encoding.ASCII.GetString(
                    state.buffer, 0, bytesRead));

                // Check for end-of-file tag. If it is not there, read 
                // more data.
                content = state.sb.ToString();
                if (content.IndexOf("<EOF>") > -1)
                {
                    // All the data has been read from the 
                    // client. Display it on the console.
                    //Console.WriteLine("Read {0} bytes from socket. \n Data : {1}",
                    //    content.Length, content);
                    // Echo the data back to the client.
                    Send(handler, content);
                }
                else
                {
                    // Not all data received. Get more.
                    handler.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0,
                    new AsyncCallback(ReadCallback), state);
                }
            }
        }

        private static void Send(Socket handler, String data)
        {
            // Convert the string data to byte data using ASCII encoding.
            byte[] byteData = Encoding.ASCII.GetBytes(data);

            // Begin sending the data to the remote device.
            handler.BeginSend(byteData, 0, byteData.Length, 0,
                new AsyncCallback(SendCallback), handler);
        }

        private static void SendCallback(IAsyncResult ar)
        {
            try
            {
                // Retrieve the socket from the state object.
                Socket handler = (Socket)ar.AsyncState;

                // Complete sending the data to the remote device.
                int bytesSent = handler.EndSend(ar);
                //Console.WriteLine("Sent {0} bytes to client.", bytesSent);

                handler.Shutdown(SocketShutdown.Both);
                handler.Close();

            }
            catch (Exception e)
            {
                Console.WriteLine(e.ToString());
            }
        }
        public void StopListening() // Stop Listening
        {
            allDone.Close();
        }
    }

我把这个放在表单子中:

 private void hideMonBt_Click(object sender, EventArgs e)
    {
        this.Hide();
        m_engMonitor.m_masterConn.StopThr(); // Stop "server"
    }

    private void c_frmMonitor_Load(object sender, EventArgs e)
    {
        m_engMonitor.socketConnect(); // Start "server" connection
    }

我不确定在连接表单中使用此代码:

  public void StopListening() // Stop Listening
        {
            allDone.Close();
        }

 public void StopThr() //Stop listner thread
    {
        t_listener.Interrupt();
    }

我做错了什么? 谢谢。

【问题讨论】:

  • 监听器(服务器)是客户端的从属,永远不应启动关闭。命令应该来自客户端。所以应用网络级别的客户端应该向服务器发送关闭消息。服务器应准备关闭连接,并在准备关闭时将 ACK 发送回客户端。然后客户端应该关闭连接。服务器应该监听 BeginDisconnect 事件。如果您没有应用层,则只需侦听 BeginDisconnect。
  • @Jitendra Aanadani - 这是普通的 TCP 套接字,而不是 websocket。
  • 感谢您的回答。如果我关闭父亲表格,孩子表格可以这样做吗? Damien_The_Unbeliever 谢谢,我放了正确的标签 ;-)
  • 最好使用线程或后台工作者来执行此操作?

标签: c# tcpsocket


【解决方案1】:

问题是你永远不会停止倾听。您正在无限循环中运行您的套接字,当您想结束它时,您并没有关闭套接字,而是中断了线程。这相当于敲门离开家,而不是在身后打开门再关门。

为了正确地停止监听,你关闭了套接字。发生这种情况时,BeginAccept 将抛出 ObjectDisposedException。完全不需要中断你的线程:

public class AsynchronousSocketListener : IDisposable
{
    Socket listener;
    // Thread signal.
    public ManualResetEvent allDone = new ManualResetEvent(false);

    public AsynchronousSocketListener()
    {
    }

    public void StartListening()
    {
        // Data buffer for incoming data.
        byte[] bytes = new Byte[1024];

        // Establish the local endpoint for the socket.
        // The DNS name of the computer
        // running the listener is "host.contoso.com".
        IPHostEntry ipHostInfo = Dns.Resolve(Dns.GetHostName());
        IPAddress ipAddress = ipHostInfo.AddressList[0];
        IPEndPoint localEndPoint = new IPEndPoint(ipAddress, 11000);

        // Create a TCP/IP socket.
        listener = new Socket(AddressFamily.InterNetwork,
            SocketType.Stream, ProtocolType.Tcp);

        // Bind the socket to the local endpoint and listen for incoming connections.
        try
        {
            listener.Bind(localEndPoint);
            listener.Listen(100);

            while (true)
            {
                // Set the event to nonsignaled state.
                allDone.Reset();

                // Start an asynchronous socket to listen for connections.
                //Console.WriteLine("Waiting for a connection...");
                listener.BeginAccept(
                    new AsyncCallback(AcceptCallback),
                    listener);

                // Wait until a connection is made before continuing.
                allDone.WaitOne();
            }

        }
        catch (ObjectDisposedException)
        {
            //Console.WriteLine("Listener closed.");
        }
        catch (Exception e)
        {
            //Console.WriteLine(e.ToString());
        }

        //Console.WriteLine("\nPress ENTER to continue...");
        //Console.Read();

    }

    //...

    public void StopListening() // Stop Listening
    {
        Socket exListener = Interlocked.Exchange(ref listener, null);
        if (exListener != null)
        {
            exListener.Close();
        }
    }

    public void Dispose()
    {
        StopListening();
    }
}

当你想结束监听时,只需调用StopListening。当StartListening退出时,线程将正常结束。

我对您的代码所做的其他一些更改:

  • 我把AsynchronousSocketListener 做成了一次性的。您正在包装一个套接字,并且您需要确保在释放您的侦听器时释放它。
  • allDonestatic 更改为实例。如果您有多个侦听器(例如到​​不同的端口),它们会共享事件,这是一个错误。

你还需要做的:如果你在StartListening分配listener的值之前调用StopListening,监听不会停止。侦听器将正常启动。这是您的代码中必须消除的竞争条件。

【讨论】:

  • 非常感谢您的解决方案。我有一个小问题。我在调试模式下启动应用程序,步骤代码没有进入 dispose 函数。有什么问题?
  • 如果不显式调用 dispose 方法,则根本无法保证它会被调用。垃圾收集器可能调用它,但你不知道什么时候。
【解决方案2】:

我在这种模式下解决问题:

class c_masterConn 
{

    private AsynchronousSocketListener socketListener;              // socketlistner
    private Thread t_listener;

    public c_masterConn()                                           //Costructor
    {
        socketListener = new AsynchronousSocketListener();          // Socketlistner async
        t_listener = new Thread(socketListener.StartListening);     // Thread for socketlistener 
        t_listener.Start();                                         //  Start socketlistener

    }

    public void StopConnection()
    {
        socketListener.StopListening();
    }

    // State object for reading client data asynchronously
    public class StateObject
    {
        // Client  socket.
        public Socket workSocket = null;
        // Size of receive buffer.
        public const int BufferSize = 1024;
        // Receive buffer.
        public byte[] buffer = new byte[BufferSize];
        // Received data string.
        public StringBuilder sb = new StringBuilder();
    }


    public class AsynchronousSocketListener 
    {
        Socket listener;
        // Thread signal.
        public  ManualResetEvent allDone = new ManualResetEvent(false);

        public AsynchronousSocketListener()
        {
        }

        public void AcceptCallback(IAsyncResult ar)
        {
            try
            { // Signal the main thread to continue.
                allDone.Set();

                // Get the socket that handles the client request.
                Socket listener = (Socket)ar.AsyncState;
                Socket handler = listener.EndAccept(ar);

                // Create the state object.
                StateObject state = new StateObject();
                state.workSocket = handler;
                handler.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0,
                    new AsyncCallback(ReadCallback), state);
            }
            catch (Exception ex)
            { }
        }

        public static void ReadCallback(IAsyncResult ar)
        {
            String content = String.Empty;

            // Retrieve the state object and the handler socket
            // from the asynchronous state object.
            StateObject state = (StateObject)ar.AsyncState;
            Socket handler = state.workSocket;

            // Read data from the client socket. 
            int bytesRead = handler.EndReceive(ar);

            if (bytesRead > 0)
            {
                // There  might be more data, so store the data received so far.
                state.sb.Append(Encoding.ASCII.GetString(
                    state.buffer, 0, bytesRead));

                // Check for end-of-file tag. If it is not there, read 
                // more data.
                content = state.sb.ToString();
                if (content.IndexOf("<EOF>") > -1)
                {
                    // All the data has been read from the 
                    // client. Display it on the console.
                    //Console.WriteLine("Read {0} bytes from socket. \n Data : {1}",
                    //    content.Length, content);
                    // Echo the data back to the client.
                    Send(handler, content);
                }
                else
                {
                    // Not all data received. Get more.
                    handler.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0,
                    new AsyncCallback(ReadCallback), state);
                }
            }
        }

        private static void Send(Socket handler, String data)
        {
            // Convert the string data to byte data using ASCII encoding.
            byte[] byteData = Encoding.ASCII.GetBytes(data);

            // Begin sending the data to the remote device.
            handler.BeginSend(byteData, 0, byteData.Length, 0,
                new AsyncCallback(SendCallback), handler);
        }

        private static void SendCallback(IAsyncResult ar)
        {
            try
            {
                // Retrieve the socket from the state object.
                Socket handler = (Socket)ar.AsyncState;

                // Complete sending the data to the remote device.
                int bytesSent = handler.EndSend(ar);
                //Console.WriteLine("Sent {0} bytes to client.", bytesSent);

                handler.Shutdown(SocketShutdown.Both);
                handler.Close();

            }
            catch (Exception e)
            {
                Console.WriteLine(e.ToString());
            }
        }



        public void StartListening()
        {
            // Data buffer for incoming data.
            byte[] bytes = new Byte[1024];

            // Establish the local endpoint for the socket.
            // The DNS name of the computer
            // running the listener is "host.contoso.com".
            IPHostEntry ipHostInfo = Dns.Resolve(Dns.GetHostName());
            IPAddress ipAddress = ipHostInfo.AddressList[0];
            IPEndPoint localEndPoint = new IPEndPoint(ipAddress, 11000);

            // Create a TCP/IP socket.
            listener = new Socket(AddressFamily.InterNetwork,
                SocketType.Stream, ProtocolType.Tcp);

            // Bind the socket to the local endpoint and listen for incoming connections.
            try
            {
                listener.Bind(localEndPoint);
                listener.Listen(100);

                while (true)
                {
                    // Set the event to nonsignaled state.
                    allDone.Reset();

                    // Start an asynchronous socket to listen for connections.
                    //Console.WriteLine("Waiting for a connection...");
                    listener.BeginAccept(
                                       new AsyncCallback(AcceptCallback),
                                       listener);

                   // Wait until a connection is made before continuing.
                   allDone.WaitOne();
                }

            }
            catch (ObjectDisposedException)
            {
                //Console.WriteLine("Listener closed.");
            }
            catch (Exception e)
            {
                //Console.WriteLine(e.ToString());
            }

            //Console.WriteLine("\nPress ENTER to continue...");
            //Console.Read();

        }

        //...

        public void StopListening() // Stop Listening
        {
            Socket exListener = Interlocked.Exchange(ref listener, null);
            if (exListener != null)
            {
                exListener.Close();
            }
        }
    }

我使用 Sefe 的解决方案,但我在调用函数“dispose”时进行了修改。 我在父窗体的事件“Form_close”中调用 StopListening 函数。 在这种模式下,应用程序正确关闭。

【讨论】:

    猜你喜欢
    • 2011-02-01
    • 1970-01-01
    • 2020-03-08
    • 1970-01-01
    • 2021-12-30
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2017-01-28
    相关资源
    最近更新 更多