我在PHP中有一些连接到套接字的代码。在写信的过程中,我一直在断断续续地断管。如果再次写入管道,问题似乎就消失了。我想知道从中恢复需要什么(最安全的方法)。我也想知道socket_write是否可以返回而不写入传递给它的完整字符串。这就是我目前所拥有的。
function getSocket() {
$socket = socket_create( AF_UNIX, SOCK_STREAM, 0 );
if ( $socket === FALSE ) {
throw new Exception(
"socket_create failed: reason: " . socket_strerror( socket_last_error() ));
}
}
$result = socket_connect($socket, $address);
if ($result === false) {
throw new Exception("socket_connect() failed.\nReason: ($result) " .
socket_strerror(socket_last_error($socket)));
}
return $socket;
}
function writeSocket($stmt) {
$tries = 0;
$socket = getSocket();
do {
// Is is possible that socket_write may not write the full $stmt?
// Do I need to keep rewriting until it's finished?
$writeResult = socket_write( $socket, $stmt, strlen( $stmt ) );
if ($writeResult === FALSE) {
// Got a broken pipe, What's the best way to re-establish and
// try to write again, do I need to call socket_shutdown?
socket_close($socket);
$socket = getSocket();
}
$tries++;
} while ( $tries < MAX_SOCKET_TRIES && $writeResult === FALSE);
}
答案 0 :(得分:2)
Q1。我想知道从中恢复需要什么(最安全的方法)。
答:这取决于应用程序。套接字侦听器正在关闭连接,或者您设置了未向我们显示的套接字选项。如何处理这些事情取决于应用程序的语义。
Q2。我也想知道socket_write是否可以在不写入传递给它的完整字符串的情况下返回。
答:是的。 socket_write()
在返回之前不能写入任何字节,一些字节或所有字节。如果它返回的值大于零但小于输入的长度,则应调整偏移量(可能使用substr()
)。如果它返回零或更少,请检查socket_last_error()
是否有可重试的线索。这种扭曲涵盖in the manual。
答案 1 :(得分:0)
您是否尝试过设置SO_KEEPALIVE或SO_SNDTIMEO?您还可以在循环中测试缓冲区长度,以查看是否已发送整个内容。
祝你好运和HTH, - 乔
答案 2 :(得分:0)
使用socket_set_nonblock()
并修复您的while
声明:
$writeResult === FALSE
应该是$writeResult !== FALSE
。