我正在尝试使用this协议进行通信。它工作正常,除非套接字有很多数据要返回。现在我正在检查数据包是否以\ r \ n结尾,以确定我是否收到了所有包。问题是有时一个包可以以\ r \ n作为换行结束,即使它不是最后一个包,所以我不能使用它。
我正在使用命令队列,因为我想在发送下一个命令之前等待完整的响应。
删除了不必要的内容的代码:
class CustomSocket extends Socket
{
private var _response:String;
private var _commandQueue:Array;
public function CustomSocket()
{
super();
this.addEventListener(ProgressEvent.SOCKET_DATA, socketDataHandler);
}
private function socketDataHandler(event:ProgressEvent):void
{
readResponse();
}
private function readResponse():void {
var str:String = this.readUTFBytes(bytesAvailable);
_response += str;
//BUG: I cannot use this check for determining the end of packets, need to find a new one
if (_response.charAt(_response.length - 1) == "\n" && _response.charAt(_response.length - 2) == "\r")
{
//dispatch the result
commandFinished();
}
}
//writes to the socket
private function sendRequest(request:String):void
{
_response = "";
this. writeln(request);
flush();
writeln("\r\n");
flush();
}
private function writeln(str:String):void
{
try
{
this.writeUTFBytes(str);
}
catch (e:IOError)
{
trace(e);
}
}
private function addCommand():void
{
//adds a command to the queue and executes it
}
private function commandFinished():void
{
//remove executed command and check if there is more commands in the queue to execute
}
}
问题出在函数readResponse中。我没有发现任何有趣的东西,我搜索了很多。
有没有办法知道套接字将返回的总字节数/数据包数?还是一种检测EOF或包裹是最后一种的方法?
答案 0 :(得分:0)
通常,在您发送的数据末尾会发送空字符
这为您的服务器提供了一个明确的角色来寻找。
this.writeln(request + String.fromCharCode(0) );
只是为了让你知道
在此行的函数sendRequest中的点后面有一个空格
this. writeln(request);
你也可能想尝试这个来处理错误。
if(this.connected){
this.writeln(request + String.fromCharCode(0) );
this.flush();
}else{
// do your error handling for no connection to server
}
答案 1 :(得分:0)
您可能正在寻找Socket上的bytesAvailable
属性。如:
while( socket.bytesAvailable )
socket.readBytes( myByteArray );
对于更完整的解决方案(包括可以同时获取多条消息的地方),我在另一个问题中回答了这个问题: AS3 / AIR readObject() from socket - How do you check all data has been received?