- 论坛徽章:
- 0
|
注:虽然用php写的,但是原理应该是一样的,因为这个板块高手比较多,所以发到这个上面了,比较着急用,请各位帮帮忙
我用php写了server和client程序,我要从server接收文件handle,然后再client写文件,但是在client写文件的时候,一个1k不到的文件要写2分钟左右,高手帮我看看,是什么原因
付程序[第一次,罗嗦的地方请帮忙告诉一下,如果有类似的例子也可以,我去自己看,谢谢各位了]
<?php
// Set time limit to indefinite execution
set_time_limit (0);
// Set the ip and port we will listen on
#$address = '172.30.6.110';
$address = '192.168.11.4';
$port = 9200;
// Create a TCP Stream socket
$sock = socket_create(AF_INET, SOCK_STREAM, 0);
// Bind the socket to an address/port
socket_bind($sock, $address, $port) or die('Could not bind to address');
// Start listening for connections
socket_listen($sock);
$val_source_dir = "D:/php4/webapp/file";
$val_input_file_pattern = "/sample*/";
//得到要传输的文件列表
$has_file_list = r25_get_file_list($val_source_dir,$val_input_file_pattern);
foreach($has_file_list as $val_file){
$clientHandle = socket_accept($sock);
echo "file name:".$val_file."\n";
$output = getFileContent($val_file);
socket_write($clientHandle,$output);
do {
if (false === ($buf = socket_read($clientHandle, )) {
echo "socket_read() failed: reason: " . socket_strerror($clientHandle) . "\n";
break;
}
if ($buf == 'ok') {
break;
}
} while (true);
//
printf ("<<<<<<<<<<<<< %s >;>;>;>;>;>;>;>;>;>;>;>;>;\n",$val_file);
socket_close($clientHandle);
}
// Close the master sockets
socket_close($sock);
function getFileContent($val_file) {
$file_content = file_get_contents ($val_file);
echo ">;>;>;>;>;>;>;>;>;>;>;>;>;".filesize ($val_file)."<<<<<<<<<<<<<<\n";
return $file_content;
}
?>;
客户端:
<?
define("INPUT_PATH","D:\php4\webapp\clientIn" ;
$i = 0;
while (true) {
$address = '192.168.11.4';
$port = 9200;
$i ++;
$read_handle = fsockopen($address, $port, $errno, $errstr,2);
if (!$read_handle) {
echo "$errstr ($errno)<br />;\n";
} else {
if (writeFile($read_handle, $i ) == true) {
$out = "ok";
fputs($read_handle, $out,strlen($out));
} else {
echo "faile restart send\n";
$out = "ng";
fputs($read_handle, $out,strlen($out));
}
fclose($read_handle);
}
}
function writeFile($read_handle, $index) {
$filename = "\sample_".$index;
$filewrite = fopen(INPUT_PATH."$filename","wb" ;
while (!feof ($read_handle)) {
$buffer = fgets($read_handle, 4096);
if (fwrite($filewrite, $buffer) == false) {
print "not write $filename\n";
return false;
}
}
fclose($filewrite);
return true;
}
?>; |
|