我正在浏览文档和howtos我发现在网络套接字通信方面正确使用IO :: Select。我想我的头脑已经被大部分缠绕着。
但是,我仍然对正确的错误处理有点模糊。假设我有类似于在对象内运行的以下代码。是的,我确实意识到它很乱,我应该将IO :: Select集成到对象而不是套接字fh本身,我不应该重新创建IO :: Select每次循环,我都在迭代什么只能永远是一个返回的文件句柄等。但是,这使示例变得简单。
这只是一个连接到服务器的客户端,但我希望能够正确处理网络级错误,例如数据包丢失。
编辑:$self->sock()
只返回一个打开的IO :: Socket :: INET套接字。
sub read {
my $self = shift;
my($length) = @_; ### Number of bytes to read from the socket
my $ret;
while (length($ret) < $length) {
my $str;
use IO::Select;
my $sel = IO::Select->new($self->sock());
if (my @ready = $sel->can_read(5)) { ### 5 sec timeout
for my $fh (@ready) {
my $recv_ret = $fh->recv($str, $length - length($ret));
if (!defined $recv_ret) {
MyApp::Exception->throw(
message => "connection closed by remote host: $!",
);
}
}
}
else {
### Nothing ready... we timed out!
MyApp::Exception->throw(
message => "no response from remote host",
);
}
$ret .= $str;
}
return $ret;
}
答案 0 :(得分:1)
1)我会检查以防万一。在选择(2)时,defensive programming是你的朋友。
2)假设您需要2048个字节,远程主机每5秒发送一个字节。你刚挂了10K秒= 3个小时。这就是你想要的吗?
我会改用alarm 5
和$SIG{ALRM} = sub {$stop = 1;}
。
3和4)根据我的经验,只有read() while select()
完成工作,但我不能在这里给出肯定的答案。