(if (string= prefixed-unit "") "" (or space ""))
prefixed-unit))))
+(defun file-size-human-readable-iec (size)
+ "Human-readable string for SIZE bytes, using IEC prefixes."
+ (file-size-human-readable size 'iec " "))
+
+(defcustom byte-count-to-string-function #'file-size-human-readable-iec
+ "Function that turns a number of bytes into a human-readable string.
+It is for use when displaying file sizes and disk space where other
+constraints do not force a specific format."
+ :type '(radio
+ (function-item file-size-human-readable-iec)
+ (function-item file-size-human-readable)
+ (function :tag "Custom function" :value number-to-string))
+ :group 'files
+ :version "27.1")
+
(defcustom mounted-file-systems
(if (memq system-type '(windows-nt cygwin))
"^//[^/]+/"
(defun files--ask-user-about-large-file (size op-type filename offer-raw)
(let ((prompt (format "File %s is large (%s), really %s?"
(file-name-nondirectory filename)
- (file-size-human-readable size 'iec " ") op-type)))
+ (funcall byte-count-to-string-function size) op-type)))
(if (not offer-raw)
(if (y-or-n-p prompt) nil 'abort)
(let* ((use-dialog (and (display-popup-menus-p)
exceeds the %S%% of currently available free memory (%s).
If that fails, try to open it with `find-file-literally'
\(but note that some characters might be displayed incorrectly)."
- (file-size-human-readable size 'iec " ")
+ (funcall byte-count-to-string-function size)
out-of-memory-warning-percentage
- (file-size-human-readable (* total-free-memory 1024)
- 'iec " "))))))))
+ (funcall byte-count-to-string-function
+ (* total-free-memory 1024)))))))))
(defun files--message (format &rest args)
"Like `message', except sometimes don't print to minibuffer.
"ignored, as Emacs uses `file-system-info' instead"
"27.1")
-(defcustom file-size-function #'file-size-human-readable
- "Function that transforms the number of bytes into a human-readable string."
- :type `(radio
- (function-item :tag "Default" file-size-human-readable)
- (function-item :tag "IEC"
- ,(lambda (size) (file-size-human-readable size 'iec " ")))
- (function :tag "Custom function"))
- :version "27.1")
-
(defun get-free-disk-space (dir)
"String describing the amount of free space on DIR's file system.
If DIR's free space cannot be obtained, this function returns nil."
(save-match-data
(let ((avail (nth 2 (file-system-info dir))))
(if avail
- (funcall file-size-function avail)))))
+ (funcall byte-count-to-string-function avail)))))
;; The following expression replaces `dired-move-to-filename-regexp'.
(defvar directory-listing-before-filename-regexp
;; Function used when we do NOT know how long the document is going to be
;; Just _very_ simple 'downloaded %d' type of info.
(url-lazy-message "Reading %s..."
- (file-size-human-readable (buffer-size) 'iec " ")))
+ (funcall byte-count-to-string-function (buffer-size))))
(defun url-http-content-length-after-change-function (_st nd _length)
"Function used when we DO know how long the document is going to be.
(url-percentage (- nd url-http-end-of-headers)
url-http-content-length)
url-http-content-type
- (file-size-human-readable (- nd url-http-end-of-headers) 'iec " ")
- (file-size-human-readable url-http-content-length 'iec " ")
+ (funcall byte-count-to-string-function (- nd url-http-end-of-headers))
+ (funcall byte-count-to-string-function url-http-content-length)
(url-percentage (- nd url-http-end-of-headers)
url-http-content-length))
(url-display-percentage
"Reading... %s of %s (%d%%)"
(url-percentage (- nd url-http-end-of-headers)
url-http-content-length)
- (file-size-human-readable (- nd url-http-end-of-headers) 'iec " ")
- (file-size-human-readable url-http-content-length 'iec " ")
+ (funcall byte-count-to-string-function (- nd url-http-end-of-headers))
+ (funcall byte-count-to-string-function url-http-content-length)
(url-percentage (- nd url-http-end-of-headers)
url-http-content-length)))
(should (equal (file-size-human-readable 4294967296 'iec " ") "4 GiB"))
(should (equal (file-size-human-readable 10000 nil " " "bit") "9.8 kbit"))
(should (equal (file-size-human-readable 10000 'si " " "bit") "10 kbit"))
- (should (equal (file-size-human-readable 10000 'iec " " "bit") "9.8 Kibit")))
+ (should (equal (file-size-human-readable 10000 'iec " " "bit") "9.8 Kibit"))
+
+ (should (equal (file-size-human-readable-iec 0) "0 B"))
+ (should (equal (file-size-human-readable-iec 1) "1 B"))
+ (should (equal (file-size-human-readable-iec 9621) "9.4 KiB"))
+ (should (equal (file-size-human-readable-iec 72528034765) "67.5 GiB")))
(ert-deftest files-test-magic-mode-alist-re-baseline ()
"Test magic-mode-alist with RE, expected behaviour for match."