问题:
如何在不阻塞服务器和客户端的情况下实时读取和回显在服务器上写入的上传文件的文件大小?
语境:
文件上传进度被从写入到服务器POST
请求所作fetch()
,其中body
被设置为Blob
,File
,TypedArray
,或ArrayBuffer
对象。
当前实现将File
对象设置为body
传递给 的第二个参数的对象fetch()
。
要求:
读取和echo
客户端正在写入服务器文件系统的文件的文件大小为text/event-stream
. 当所有字节(作为变量提供给脚本作为GET
请求时的查询字符串参数)都已写入时停止。文件的读取当前发生在单独的脚本环境中,其中GET
调用应该读取文件的POST
脚本是在将文件写入服务器的脚本之后进行的。
尚未达到对将文件写入服务器或读取文件以获取当前文件大小的潜在问题的错误处理,尽管这将是echo
文件大小部分完成后的下一步。
目前正在尝试使用php
. 虽然也对c
, bash
, nodejs
, python
; 或可用于执行相同任务的其他语言或方法。
客户端javascript
部分不是问题。只是不太精通php
,这是万维网中最常用的服务器端语言之一,可以在不包含不需要的部分的情况下实现该模式。
动机:
有关的:
问题:
得到
PHP Notice: Undefined index: HTTP_LAST_EVENT_ID in stream.php on line 7
在terminal
。
另外,如果替换
while(file_exists($_GET["filename"])
&& filesize($_GET["filename"]) < intval($_GET["filesize"]))
为了
while(true)
在 处产生错误EventSource
。
在没有sleep()
调用的情况下,正确的文件大小被分派到message
事件的3.3MB
文件 、、、 和时间,分别在上传相同文件 3 次时3321824
打印。预期的结果是文件的文件大小,因为文件正在写入console
61921
26214
38093
stream_copy_to_stream($input, $file);
而不是上传文件对象的文件大小。是fopen()
或stream_copy_to_stream()
堵不如到其他不同php
的过程stream.php
?
到目前为止尝试过:
php
归因于
php
// can we merge `data.php`, `stream.php` to same file?
// can we use `STREAM_NOTIFY_PROGRESS`
// "Indicates current progress of the stream transfer
// in bytes_transferred and possibly bytes_max as well" to read bytes?
// do we need to call `stream_set_blocking` to `false`
// data.php
<?php
$filename = $_SERVER["HTTP_X_FILENAME"];
$input = fopen("php://input", "rb");
$file = fopen($filename, "wb");
stream_copy_to_stream($input, $file);
fclose($input);
fclose($file);
echo "upload of " . $filename . " successful";
?>
// stream.php
<?php
header("Content-Type: text/event-stream");
header("Cache-Control: no-cache");
header("Connection: keep-alive");
// `PHP Notice: Undefined index: HTTP_LAST_EVENT_ID in stream.php on line 7` ?
$lastId = $_SERVER["HTTP_LAST_EVENT_ID"] || 0;
if (isset($lastId) && !empty($lastId) && is_numeric($lastId)) {
$lastId = intval($lastId);
$lastId++;
}
// else {
// $lastId = 0;
// }
// while current file size read is less than or equal to
// `$_GET["filesize"]` of `$_GET["filename"]`
// how to loop only when above is `true`
while (true) {
$upload = $_GET["filename"];
// is this the correct function and variable to use
// to get written bytes of `stream_copy_to_stream($input, $file);`?
$data = filesize($upload);
// $data = $_GET["filename"] . " " . $_GET["filesize"];
if ($data) {
sendMessage($lastId, $data);
$lastId++;
}
// else {
// close stream
// }
// not necessary here, though without thousands of `message` events
// will be dispatched
// sleep(1);
}
function sendMessage($id, $data) {
echo "id: $id\n";
echo "data: $data\n\n";
ob_flush();
flush();
}
?>
javascript
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<input type="file">
<progress value="0" max="0" step="1"></progress>
<script>
const [url, stream, header] = ["data.php", "stream.php", "x-filename"];
const [input, progress, handleFile] = [
document.querySelector("input[type=file]")
, document.querySelector("progress")
, (event) => {
const [file] = input.files;
const [{size:filesize, name:filename}, headers, params] = [
file, new Headers(), new URLSearchParams()
];
// set `filename`, `filesize` as search parameters for `stream` URL
Object.entries({filename, filesize})
.forEach(([...props]) => params.append.apply(params, props));
// set header for `POST`
headers.append(header, filename);
// reset `progress.value` set `progress.max` to `filesize`
[progress.value, progress.max] = [0, filesize];
const [request, source] = [
new Request(url, {
method:"POST", headers:headers, body:file
})
// https://stackoverflow.com/a/42330433/
, new EventSource(`${stream}?${params.toString()}`)
];
source.addEventListener("message", (e) => {
// update `progress` here,
// call `.close()` when `e.data === filesize`
// `progress.value = e.data`, should be this simple
console.log(e.data, e.lastEventId);
}, true);
source.addEventListener("open", (e) => {
console.log("fetch upload progress open");
}, true);
source.addEventListener("error", (e) => {
console.error("fetch upload progress error");
}, true);
// sanity check for tests,
// we don't need `source` when `e.data === filesize`;
// we could call `.close()` within `message` event handler
setTimeout(() => source.close(), 30000);
// we don't need `source' to be in `Promise` chain,
// though we could resolve if `e.data === filesize`
// before `response`, then wait for `.text()`; etc.
// TODO: if and where to merge or branch `EventSource`,
// `fetch` to single or two `Promise` chains
const upload = fetch(request);
upload
.then(response => response.text())
.then(res => console.log(res))
.catch(err => console.error(err));
}
];
input.addEventListener("change", handleFile, true);
</script>
</body>
</html>