【发布时间】:2014-03-27 01:18:49
【问题描述】:
我正在编写允许 Android 客户端连接到 C# 服务器套接字的代码。客户端和服务器工作正常,但我无法关闭或断开套接字。
服务器由点击事件启动:
private void btnStartServer_Click(object sender, EventArgs e)
{
AsynchronousSocketListener Async = new AsynchronousSocketListener();
receiveThread = new Thread(new ThreadStart(Async.StartListening));
receiveThread.Start();
btnStartServer.Enabled = false;
btnStopServer.Enabled = true;
MessageBox.Show("Server Started");
}
然后是服务器代码的大头:
// 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
{
// 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.
IPHostEntry ipHostInfo = Dns.Resolve(Dns.GetHostName());
IPAddress ipAddress = ipHostInfo.AddressList[0];
IPEndPoint localEndPoint = new IPEndPoint(ipAddress, 3000);
System.Diagnostics.Debug.WriteLine(ipAddress);
// 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 );
Singleton s = Singleton.Instance;
if (s.getIsEnded() == false)
{
// Wait until a connection is made before continuing.
allDone.WaitOne();
}
else
{
listener.Shutdown(SocketShutdown.Both);
listener.Disconnect(true);
break;
}
}
}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}
}
public static void AcceptCallback(IAsyncResult ar)
{
// 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);
// Signal the main thread to continue.
allDone.Set();
}
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 );
if (content.Equals("end<EOF>"))
{
Console.WriteLine("Should end");
Singleton s = Singleton.Instance;
s.setIsEnded(true);
}
// 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());
}
}
}
使用单例,我可以保留一个唯一变量来检查服务器是否应该运行。这是在上面的StartListening() 方法中检查的:
public class Singleton
{
private static Singleton instance;
private Boolean isEnded = false;
private Singleton() { }
public static Singleton Instance
{
get
{
if (instance == null)
{
instance = new Singleton();
}
return instance;
}
}
public void setIsEnded(Boolean setter)
{
isEnded = setter;
}
public Boolean getIsEnded()
{
return isEnded;
}
}
终于尝试通过向服务器发送带有字符串"end<EOF>" 的消息来停止服务器。 ReadCallback() 的服务器逻辑将通知单例设置isEnded = true。这不是一个很好的解决方案,但它是我在撰写本文时可以获得一半工作的唯一方法。断开套接字的逻辑在StartListening() 中。理想情况下,它会断开连接,以便重新启动套接字。
当我尝试断开连接然后再次启动套接字时出现此错误:
A first chance exception of type 'System.Net.Sockets.SocketException' occurred in System.dll
System.Net.Sockets.SocketException (0x80004005): Only one usage of each socket address (protocol/network address/port) is normally permitted
at System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
at System.Net.Sockets.Socket.Bind(EndPoint localEP)
at StartServer.AsynchronousSocketListener.StartListening() in c:\Users\Conor\Desktop\StartServer\StartServer\StartServer.cs:line 89
如果我停止服务器然后尝试从 android 客户端发送一个字符串,则在服务器上接收到消息,然后我在服务器控制台上收到以下消息:
System.Net.Sockets.SocketException (0x80004005): A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using a sendto call) no address was supplied
at System.Net.Sockets.Socket.Shutdown(SocketShutdown how)
at StartServer.AsynchronousSocketListener.StartListening()
【问题讨论】:
-
1.请澄清 disconnect 在 当我尝试断开连接然后再次启动套接字时发生此错误 中的含义 - 是
end<EOF>还是Singleton.Instance.setIsEnded(true)在某些情况下执行button_click 处理程序? -
2.另外 如果我停止服务器,然后尝试从 android 客户端发送一个字符串 - 你如何停止它(参见前面的评论)?
-
3.而且在服务器上收到消息,然后我在服务器控制台上收到以下消息 - 你怎么知道收到了消息?你是在控制台打印的吗? “那么”到底是什么时候?
-
end<EOF>从按钮单击事件发送到服务器。就目前而言,当在ReadCallback()中接收到end<EOF>时,逻辑会将单例中的isEnded设置为true。这一切都发生在后台线程中。在AsynchronousSocketListener()类中StartListening()方法的While (true)循环中,我使用isEnded 单例值的值来运行listener.Shutdown(SocketShutdown.Both);和listener.Disconnect(true);。这就是我说 disconnect 时所指的代码。 -
消息被写入控制台。 然后 是在消息写入控制台之后。我相信它可能会接受客户端数据,因为线程仍在后台运行。不过我不确定。
标签: c# sockets asyncsocket