working transfer

This commit is contained in:
Klemek
2025-03-14 13:45:26 +01:00
parent 4789825012
commit 9f0ae917da
+5 -13
View File
@@ -10,11 +10,6 @@ const utils = {
}, },
}); });
}, },
bufferCopy(src, startSrc, dst, startDst, size) {
const viewSrc = new Uint8Array(src, startSrc, size);
const dstSrc = new Uint8Array(dst, startDst, size);
dstSrc.set(viewSrc);
},
}; };
const MAX_CHUNK_SIZE = 12 * 1024; // 10 KB const MAX_CHUNK_SIZE = 12 * 1024; // 10 KB
@@ -140,12 +135,12 @@ const app = createApp({
}); });
}, },
serverSendData(index) { serverSendData(index) {
const to = Math.min(this.fileSize, index + MAX_CHUNK_SIZE);
this.connection.send({ this.connection.send({
type: "server-chunk", type: "server-chunk",
index, index,
bytes: this.data.slice(index, to), bytes: this.data.slice(index, index + MAX_CHUNK_SIZE),
}); });
console.log(this.data.slice(index, index + MAX_CHUNK_SIZE));
}, },
serverDone() { serverDone() {
this.connection.send({ this.connection.send({
@@ -178,7 +173,7 @@ const app = createApp({
this.connection.send({ this.connection.send({
type: "client-done", type: "client-done",
}); });
const blob = new Blob(new Uint8Array(this.buffer), { const blob = new Blob([new Uint8Array(this.buffer)], {
type: "application/octet-stream", type: "application/octet-stream",
}); });
const link = document.createElement("a"); const link = document.createElement("a");
@@ -198,12 +193,9 @@ const app = createApp({
} }
break; break;
case "server-chunk": case "server-chunk":
utils.bufferCopy( new Uint8Array(this.buffer).set(
data.bytes, new Uint8Array(data.bytes),
0,
this.buffer,
data.index, data.index,
data.bytes.length,
); );
this.received.push(data.index); this.received.push(data.index);
break; break;