all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Harm Van der Vegt <harmvegt@gmail.com>
To: Eli Zaretskii <eliz@gnu.org>
Cc: 72919@debbugs.gnu.org
Subject: bug#72919: 29.1; chart-space-usage in chart.el does not work correctly on windows
Date: Sun, 1 Sep 2024 21:06:58 +0200	[thread overview]
Message-ID: <CAPdXVSxdfVHu_jSHMTjib6mV-7CvgsuNuAM8XL8u_5oXam_EeQ@mail.gmail.com> (raw)
In-Reply-To: <86bk179q94.fsf@gnu.org>

[-- Attachment #1: Type: text/plain, Size: 5446 bytes --]

Clear, thanks for the response!

Op zo 1 sep 2024 om 20:35 schreef Eli Zaretskii <eliz@gnu.org>:

> [Please use Reply All to reply, so that the bug tracker is CC'ed.]
>
> > From: Harm Van der Vegt <harmvegt@gmail.com>
> > Date: Sun, 1 Sep 2024 20:11:39 +0200
> >
> > >Thanks.  However, I think your changes are not entirely correct: they
> > >fail to account for space usage of files inside subdirectories of the
> > >directory which the user types at the prompt, whereas the
> > >implementation with "du" does account for that.
> >
> > That is indeed a pretty major difference, my bad!
> >
> > >In addition, I think if someone has 'du' on Windows, it should be used.
> >
> > Is there a preference for using system binaries above elisp for cases
> like these?
>
> I think 'du' has some tricks up its sleeve (like accounting correctly
> for block size), which a Lisp implementation can only approximate.  I
> don't think minor differences matter here, since this command is just
> an illustration of what chart.el can be used for, but I do want to use
> 'du' if it's available.
>
> > >So I came up with the following changes instead.  Could you please try
> > >them, both with and without du.exe on PATH?  If these changes give
> > >good results, I will install them.
> >
> > Thanks.
> >
> > I've tried your changes with and without du. This uncovered something in
> the
> > original implementation, namely that the original implementation did not
> count
> > hidden files and directories. du * skips dotfiles for me.
> >
> > With du present chart-space-usage shows the lisp directory as the
> largest in the
> > emacs repository root. Without du it shows .git as the largest.
>
> This just means minor adjustments in the code I posted: we need to use
> a different regexp in the call to directory-files-recursively, and
> also ignore files that start with a dot in the command itself.  I will
> make those changes, thanks for pointing them out
>
> > I'm not sure which output is the wanted output.
>
> I think we want to be as close to 'du' as possible.
>
> > I've attempted to find a shell independent way to have du show dotfiles,
> but it
> > appears to be rather tricky.
>
> I don't think we want that.
>
> > I've made a new patch that makes the elisp implementation recursive,
> uses the
> > rounding function provided by you and shows dotfiles.
>
> I'd prefer to avoid recursion (in addition to what
> directory-files-recursively already does), because that could overflow
> the stack.
>
> I will post a version that ignores dotfiles.
>
> Here's the version you sent, repeated for the bug tracker:
>
> >From 6f53d65f9ae5e1c61a2ca2650b149c895ce9794c Mon Sep 17 00:00:00 2001
> >From: Harm van der Vegt <harmvegt@gmail.com>
> Date: Sun, 1 Sep 2024 20:03:34 +0200
> Subject: [PATCH] Make chart-space-usage OS and shell independent
>
> ---
>  lisp/emacs-lisp/chart.el | 41 +++++++++++++++++++++++++++++------------
>  1 file changed, 29 insertions(+), 12 deletions(-)
>
> diff --git a/lisp/emacs-lisp/chart.el b/lisp/emacs-lisp/chart.el
> index c195ccb7165..b0302b55278 100644
> --- a/lisp/emacs-lisp/chart.el
> +++ b/lisp/emacs-lisp/chart.el
> @@ -641,27 +641,44 @@ SORT-PRED if desired."
>                        (lambda (a b) (> (cdr a) (cdr b))))
>      ))
>
> +;; This assumes 4KB blocks
> +(defun chart--file-size (size)
> +  (* (/ (+ size 4095) 4096) 4096))
> +
> +(defun chart--directory-size (dir)
> +  "Compute total size of files in directory DIR and its subdirectories.
> +DIR is assumed to be a directory, verified by the caller."
> +  (let ((total-size 0))
> +    (dolist (file (directory-files dir t
> directory-files-no-dot-files-regexp))
> +      (cond
> +       ((file-regular-p file)
> +        (setq total-size (+ total-size (chart--file-size (nth 7
> (file-attributes file))))))
> +       ((file-directory-p file)
> +        (setq total-size (+ total-size (chart--directory-size file))))))
> +    total-size))
> +
>  (defun chart-space-usage (d)
>    "Display a top usage chart for directory D."
>    (interactive "DDirectory: ")
>    (message "Collecting statistics...")
>    (let ((nmlst nil)
> -        (cntlst nil))
> -    (dolist (file (directory-files d t))
> -      (when (file-regular-p file)
> -        (let ((size (nth 7 (file-attributes file))))
> +       (cntlst nil))
> +
> +    (dolist (file (directory-files d t
> directory-files-no-dot-files-regexp))
> +        (let ((size (if (file-regular-p file)
> +                        (nth 7 (file-attributes file))
> +                      (chart--directory-size file))))
>            (setq nmlst (cons (file-name-nondirectory file) nmlst))
> -          (setq cntlst (cons size cntlst)))))
> +          (setq cntlst (cons (chart--file-size size) cntlst))))
>
>      (if (not nmlst)
> -        (error "No files found!"))
> -
> -    ;; Display the chart if files are found
> +       (error "No files found!"))
>      (chart-bar-quickie 'vertical (format "Largest files in %s" d)
> -                       nmlst "File Name"
> -                       cntlst "File Size"
> -                       10
> -                       (lambda (a b) (> (cdr a) (cdr b))))))
> +                      nmlst "File Name"
> +                      cntlst "File Size"
> +                      10
> +                      (lambda (a b) (> (cdr a) (cdr b))))
> +    ))
>
>  (defun chart-emacs-storage ()
>    "Chart the current storage requirements of Emacs."
> --
> 2.11.0.windows.3
>
>

[-- Attachment #2: Type: text/html, Size: 6821 bytes --]

  reply	other threads:[~2024-09-01 19:06 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-31 18:52 bug#72919: 29.1; chart-space-usage in chart.el does not work correctly on windows Harm Van der Vegt
2024-09-01  8:13 ` Eli Zaretskii
     [not found]   ` <CAPdXVSxuhccEEYSLH+WR57irNYn4OrWWhmPPcCY5GjPa-RTnHQ@mail.gmail.com>
2024-09-01 18:16     ` bug#72919: Fwd: " Harm Van der Vegt
2024-09-01 18:35     ` Eli Zaretskii
2024-09-01 19:06       ` Harm Van der Vegt [this message]
2024-09-07  9:24       ` Eli Zaretskii

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAPdXVSxdfVHu_jSHMTjib6mV-7CvgsuNuAM8XL8u_5oXam_EeQ@mail.gmail.com \
    --to=harmvegt@gmail.com \
    --cc=72919@debbugs.gnu.org \
    --cc=eliz@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.