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.
|
Will be fixed in the future.
|
||||||
|
20
dev.ts
20
dev.ts
@ -6,22 +6,28 @@ const testPath = "./test.txt";
|
|||||||
const writeResult = await sequentialWriteTest(
|
const writeResult = await sequentialWriteTest(
|
||||||
{
|
{
|
||||||
filePath: testPath,
|
filePath: testPath,
|
||||||
sizeInMB: 200,
|
sizeInMB: 1000,
|
||||||
rounds: 10,
|
rounds: 5,
|
||||||
bufferSizeMB: 1,
|
bufferSizeMB: 1,
|
||||||
keepTheFile: true,
|
keepTheFile: true,
|
||||||
},
|
},
|
||||||
(progress) => {
|
(progress) => {
|
||||||
console.log(progress);
|
console.log("Write progress:", progress);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
console.log(writeResult);
|
console.log("Write result:", writeResult);
|
||||||
console.log(writeResult.totalMB / writeResult.totalDuration);
|
console.log(
|
||||||
|
"Write speed (MB/s):",
|
||||||
|
writeResult.totalMB / writeResult.totalDuration
|
||||||
|
);
|
||||||
|
|
||||||
const readResult = await sequentialReadTest({
|
const readResult = await sequentialReadTest({
|
||||||
filePath: testPath,
|
filePath: testPath,
|
||||||
rounds: 3,
|
rounds: 3,
|
||||||
deleteAfter: false,
|
deleteAfter: false,
|
||||||
});
|
});
|
||||||
console.log(readResult);
|
console.log("Read result:", readResult);
|
||||||
console.log("read speed: ", readResult.totalMB / readResult.totalDuration);
|
console.log(
|
||||||
|
"Read speed (MB/s):",
|
||||||
|
readResult.totalMB / readResult.totalDuration
|
||||||
|
);
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
"name": "kunkun-ext-disk-speed",
|
"name": "kunkun-ext-disk-speed",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "https://github.com/kunkunsh/kunkun-ext-disk-speed",
|
"repository": "https://github.com/kunkunsh/kunkun-ext-disk-speed",
|
||||||
"version": "0.0.8",
|
"version": "0.0.9",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"kunkun": {
|
"kunkun": {
|
||||||
"name": "Disk Speed",
|
"name": "Disk Speed",
|
||||||
|
@ -64,18 +64,25 @@ export async function sequentialReadTest(
|
|||||||
}
|
}
|
||||||
): Promise<Progress> {
|
): Promise<Progress> {
|
||||||
const { filePath, rounds, deleteAfter } = options;
|
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 totalMB = 0;
|
||||||
|
let totalDuration = 0;
|
||||||
|
|
||||||
let readResult;
|
for (let round = 0; round < rounds; round++) {
|
||||||
while (!(readResult = await reader.read()).done) {
|
const file = await Deno.open(filePath, { read: true });
|
||||||
totalMB += readResult.value.length / oneMB;
|
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 (deleteAfter) {
|
||||||
if (options.deleteAfter) {
|
|
||||||
Deno.removeSync(filePath);
|
Deno.removeSync(filePath);
|
||||||
}
|
}
|
||||||
return { totalMB, totalDuration };
|
return { totalMB, totalDuration };
|
||||||
|
@ -128,7 +128,7 @@
|
|||||||
</Button>
|
</Button>
|
||||||
<small class="text-gray-500">
|
<small class="text-gray-500">
|
||||||
This extension's read speed may be inaccurate. Your OS may cache the test
|
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>
|
</small>
|
||||||
<div class="grid h-96 w-full grid-cols-2">
|
<div class="grid h-96 w-full grid-cols-2">
|
||||||
<SpeedGauge
|
<SpeedGauge
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { writable } from "svelte/store";
|
import { writable } from "svelte/store";
|
||||||
|
|
||||||
export const stress = writable(1);
|
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