You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
1.0 KiB
Racket
21 lines
1.0 KiB
Racket
#lang racket/base
|
|
(require "define.rkt" racket/set "coerce.rkt")
|
|
|
|
|
|
(define+provide+safe (bytecount->string bytecount)
|
|
(integer? . -> . string?)
|
|
(define (format-with-threshold threshold suffix)
|
|
;; upconvert by factor of 100 to get two digits after decimal
|
|
(format "~a ~a" (exact->inexact (/ (round ((* bytecount 100) . / . threshold)) 100)) suffix))
|
|
|
|
(define threshold-kilobyte 1000)
|
|
(define threshold-megabyte (threshold-kilobyte . * . threshold-kilobyte))
|
|
(define threshold-gigabyte (threshold-megabyte . * . threshold-kilobyte))
|
|
(define threshold-terabyte (threshold-gigabyte . * . threshold-kilobyte))
|
|
|
|
(cond
|
|
[(bytecount . >= . threshold-terabyte) (format-with-threshold threshold-terabyte "TB")]
|
|
[(bytecount . >= . threshold-gigabyte) (format-with-threshold threshold-gigabyte "GB")]
|
|
[(bytecount . >= . threshold-megabyte) (format-with-threshold threshold-megabyte "MB")]
|
|
[(bytecount . >= . threshold-kilobyte) (format-with-threshold threshold-kilobyte "KB")]
|
|
[else (format "~a bytes" bytecount)])) |