diff --git a/README.md b/README.md index a506c0f..41aa094 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,3 @@ - Store: https://kunkun.sh/store/disk-speed ![](https://i.imgur.com/8ISVrRe.png) - -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. diff --git a/speedtest-rs/src/main.rs b/speedtest-rs/src/main.rs index 5bd273a..578671f 100644 --- a/speedtest-rs/src/main.rs +++ b/speedtest-rs/src/main.rs @@ -2,6 +2,12 @@ use std::fs::File; use std::io::{self, BufReader, Read}; use std::time::{Instant, Duration}; use std::path::Path; +use std::fs; + +fn copy_file(src: &Path, dst: &Path) -> io::Result<()> { + fs::copy(src, dst)?; + Ok(()) +} fn read_file_speed_test(path: &Path) -> io::Result<(u64, Duration)> { let file = File::open(path)?; @@ -44,21 +50,36 @@ fn format_size(bytes: u64) -> String { } fn main() { - let file_path = Path::new("/Volumes/Portable2TB/test.txt"); + let source_path = Path::new("/Users/hk/Dev/kunkun-extension-repos/disk-speed/test.txt"); + let copied_path = Path::new("/Users/hk/Dev/kunkun-extension-repos/disk-speed/test_copy.txt"); - println!("Starting disk read speed test on: {}", file_path.display()); + println!("Copying file to: {}", copied_path.display()); - match read_file_speed_test(file_path) { - Ok((bytes_read, duration)) => { - let size = format_size(bytes_read); - let seconds = duration.as_secs_f64(); - let speed = bytes_read as f64 / seconds / (1024.0 * 1024.0); + match copy_file(source_path, copied_path) { + Ok(_) => { + println!("Starting disk read speed test on copied file: {}", copied_path.display()); - println!("Read {} in {:.2} seconds", size, seconds); - println!("Read speed: {:.2} MB/s", speed); + match read_file_speed_test(copied_path) { + Ok((bytes_read, duration)) => { + let size = format_size(bytes_read); + let seconds = duration.as_secs_f64(); + let speed = bytes_read as f64 / seconds / (1024.0 * 1024.0); + + println!("Read {} in {:.2} seconds", size, seconds); + println!("Read speed: {:.2} MB/s", speed); + + // Clean up the copied file + if let Err(e) = fs::remove_file(copied_path) { + eprintln!("Error removing temporary file: {}", e); + } + }, + Err(e) => { + eprintln!("Error testing read speed: {}", e); + } + } }, Err(e) => { - eprintln!("Error testing read speed: {}", e); + eprintln!("Error copying file: {}", e); } } } diff --git a/speedtest/lib.ts b/speedtest/lib.ts index 89bc4ad..b43b6a6 100644 --- a/speedtest/lib.ts +++ b/speedtest/lib.ts @@ -1,3 +1,5 @@ +import path from "node:path"; + const oneMB = 1024 * 1024; export type Progress = { totalMB: number; totalDuration: number }; @@ -61,27 +63,33 @@ export async function sequentialReadTest( filePath: "", rounds: 1, deleteAfter: true, - } + }, + callback?: (progress: Progress) => void ): Promise { const { filePath, rounds, deleteAfter } = options; + const fileContainer = path.dirname(filePath); + const filename = path.basename(filePath); + let totalMB = 0; let totalDuration = 0; for (let round = 0; round < rounds; round++) { - const file = await Deno.open(filePath, { read: true }); - const reader = file.readable.getReader(); + const tempFilePath = `${filename}_temp_${Date.now()}`; + const targetFilePath = path.join(fileContainer, tempFilePath); + Deno.copyFileSync(filePath, targetFilePath); + const file = await Deno.open(targetFilePath, { read: true }); + const buffer = new Uint8Array(oneMB); // 1MB buffer const start = performance.now(); - let readResult; - while (!(readResult = await reader.read()).done) { - totalMB += readResult.value.length / oneMB; + while ((await file.read(buffer)) !== null) { + totalMB += 1; } const roundDuration = (performance.now() - start) / 1000; totalDuration += roundDuration; - await reader.releaseLock(); + Deno.removeSync(targetFilePath); + callback?.({ totalMB, totalDuration }); } - if (deleteAfter) { Deno.removeSync(filePath); } diff --git a/src/App.svelte b/src/App.svelte index 46e49f1..a812231 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -45,7 +45,9 @@ }, {} ); - + command.stderr.on("data", (data) => { + console.warn(data); + }); const api = rpcChannel.getAPI(); const testFileName = "kk-disk-speed-test"; @@ -63,11 +65,16 @@ writeSpeedMBps = totalMB / totalDuration; } ); - const readResult = await api.sequentialReadTest({ - filePath: testFilePath, - rounds: 3, - deleteAfter: true, - }); + const readResult = await api.sequentialReadTest( + { + filePath: testFilePath, + rounds: 3, + deleteAfter: true, + }, + ({ totalMB, totalDuration }) => { + readSpeedMBps = totalMB / totalDuration; + } + ); writeSpeedMBps = writeResult.totalMB / writeResult.totalDuration; readSpeedMBps = readResult.totalMB / readResult.totalDuration; @@ -126,10 +133,6 @@ - - This extension's read speed may be inaccurate. Your OS may cache the test - data and result in a higher or lower speed. Will be fixed in the future. -