mirror of
https://github.com/kunkunsh/kunkun-ext-disk-speed.git
synced 2025-04-03 18:56:44 +00:00
Update sequential write test parameters, enhance logging for write and read results, improve read test duration calculation, and change default target directory in store.
This commit is contained in:
parent
6614a47a98
commit
bdeaf25007
@ -5,5 +5,5 @@
|
||||
|
||||

|
||||
|
||||
This extension's read speed is not accurate. Your OS may cache the test data and result in a much higher speed.
|
||||
This extension's read speed is not accurate. Your OS may cache the test data and result in a much higher or lower speed.
|
||||
Will be fixed in the future.
|
||||
|
20
dev.ts
20
dev.ts
@ -6,22 +6,28 @@ const testPath = "./test.txt";
|
||||
const writeResult = await sequentialWriteTest(
|
||||
{
|
||||
filePath: testPath,
|
||||
sizeInMB: 200,
|
||||
rounds: 10,
|
||||
sizeInMB: 1000,
|
||||
rounds: 5,
|
||||
bufferSizeMB: 1,
|
||||
keepTheFile: true,
|
||||
},
|
||||
(progress) => {
|
||||
console.log(progress);
|
||||
console.log("Write progress:", progress);
|
||||
}
|
||||
);
|
||||
console.log(writeResult);
|
||||
console.log(writeResult.totalMB / writeResult.totalDuration);
|
||||
console.log("Write result:", writeResult);
|
||||
console.log(
|
||||
"Write speed (MB/s):",
|
||||
writeResult.totalMB / writeResult.totalDuration
|
||||
);
|
||||
|
||||
const readResult = await sequentialReadTest({
|
||||
filePath: testPath,
|
||||
rounds: 3,
|
||||
deleteAfter: false,
|
||||
});
|
||||
console.log(readResult);
|
||||
console.log("read speed: ", readResult.totalMB / readResult.totalDuration);
|
||||
console.log("Read result:", readResult);
|
||||
console.log(
|
||||
"Read speed (MB/s):",
|
||||
readResult.totalMB / readResult.totalDuration
|
||||
);
|
||||
|
@ -3,7 +3,7 @@
|
||||
"name": "kunkun-ext-disk-speed",
|
||||
"license": "MIT",
|
||||
"repository": "https://github.com/kunkunsh/kunkun-ext-disk-speed",
|
||||
"version": "0.0.8",
|
||||
"version": "0.0.9",
|
||||
"type": "module",
|
||||
"kunkun": {
|
||||
"name": "Disk Speed",
|
||||
|
@ -64,18 +64,25 @@ export async function sequentialReadTest(
|
||||
}
|
||||
): Promise<Progress> {
|
||||
const { filePath, rounds, deleteAfter } = options;
|
||||
const file = await Deno.open(filePath, { read: true });
|
||||
const reader = file.readable.getReader();
|
||||
const start = performance.now();
|
||||
let totalMB = 0;
|
||||
let totalDuration = 0;
|
||||
|
||||
let readResult;
|
||||
while (!(readResult = await reader.read()).done) {
|
||||
totalMB += readResult.value.length / oneMB;
|
||||
for (let round = 0; round < rounds; round++) {
|
||||
const file = await Deno.open(filePath, { read: true });
|
||||
const reader = file.readable.getReader();
|
||||
const start = performance.now();
|
||||
|
||||
let readResult;
|
||||
while (!(readResult = await reader.read()).done) {
|
||||
totalMB += readResult.value.length / oneMB;
|
||||
}
|
||||
const roundDuration = (performance.now() - start) / 1000;
|
||||
totalDuration += roundDuration;
|
||||
|
||||
await reader.releaseLock();
|
||||
}
|
||||
const totalDuration = (performance.now() - start) / 1000;
|
||||
// file.close();
|
||||
if (options.deleteAfter) {
|
||||
|
||||
if (deleteAfter) {
|
||||
Deno.removeSync(filePath);
|
||||
}
|
||||
return { totalMB, totalDuration };
|
||||
|
@ -128,7 +128,7 @@
|
||||
</Button>
|
||||
<small class="text-gray-500">
|
||||
This extension's read speed may be inaccurate. Your OS may cache the test
|
||||
data and result in a much higher speed. Will be fixed in the future.
|
||||
data and result in a higher or lower speed. Will be fixed in the future.
|
||||
</small>
|
||||
<div class="grid h-96 w-full grid-cols-2">
|
||||
<SpeedGauge
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { writable } from "svelte/store";
|
||||
|
||||
export const stress = writable(1);
|
||||
export const targetDir = writable<string | undefined>("/Users/kunkun/Desktop");
|
||||
export const targetDir = writable<string | undefined>("/Volumes/Portable2TB");
|
||||
|
Loading…
x
Reference in New Issue
Block a user