NEWS update for landmark.
[bpt/emacs.git] / lisp / eshell / em-ls.el
CommitLineData
60370d40 1;;; em-ls.el --- implementation of ls in Lisp
affbf647 2
acaf905b 3;; Copyright (C) 1999-2012 Free Software Foundation, Inc.
affbf647 4
7de5b421
GM
5;; Author: John Wiegley <johnw@gnu.org>
6
affbf647
GM
7;; This file is part of GNU Emacs.
8
4ee57b2a 9;; GNU Emacs is free software: you can redistribute it and/or modify
affbf647 10;; it under the terms of the GNU General Public License as published by
4ee57b2a
GM
11;; the Free Software Foundation, either version 3 of the License, or
12;; (at your option) any later version.
affbf647
GM
13
14;; GNU Emacs is distributed in the hope that it will be useful,
15;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;; GNU General Public License for more details.
18
19;; You should have received a copy of the GNU General Public License
4ee57b2a 20;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
affbf647 21
dbba8a04
GM
22;;; Commentary:
23
24;; Most of the command switches recognized by GNU's ls utility are
25;; supported ([(fileutils)ls invocation]).
affbf647 26
dbba8a04
GM
27;;; Code:
28
fc17acd1
GM
29(eval-when-compile
30 (require 'cl)
31 (require 'eshell))
dbba8a04
GM
32(require 'esh-util)
33(require 'esh-opt)
affbf647 34
3146b070
GM
35;;;###autoload
36(eshell-defgroup eshell-ls nil
affbf647
GM
37 "This module implements the \"ls\" utility fully in Lisp. If it is
38passed any unrecognized command switches, it will revert to the
39operating system's version. This version of \"ls\" uses text
40properties to colorize its output based on the setting of
41`eshell-ls-use-colors'."
42 :tag "Implementation of `ls' in Lisp"
43 :group 'eshell-module)
44
affbf647
GM
45;;; User Variables:
46
47(defvar eshell-ls-orig-insert-directory
48 (symbol-function 'insert-directory)
49 "Preserve the original definition of `insert-directory'.")
50
51(defcustom eshell-ls-unload-hook
52 (list
53 (function
54 (lambda ()
55 (fset 'insert-directory eshell-ls-orig-insert-directory))))
ec60da52 56 "When unloading `eshell-ls', restore the definition of `insert-directory'."
affbf647
GM
57 :type 'hook
58 :group 'eshell-ls)
59
a08cc025
JA
60(defcustom eshell-ls-date-format "%Y-%m-%d"
61 "How to display time information in `eshell-ls-file'.
62This is passed to `format-time-string' as a format string.
63To display the date using the current locale, use \"%b \%e\"."
64 :type 'string
65 :group 'eshell-ls)
66
dace60cf 67(defcustom eshell-ls-initial-args nil
ec60da52 68 "If non-nil, this list of args is included before any call to `ls'.
dace60cf
JW
69This is useful for enabling human-readable format (-h), for example."
70 :type '(repeat :tag "Arguments" string)
71 :group 'eshell-ls)
72
ef94bd99 73(defcustom eshell-ls-dired-initial-args nil
ec60da52 74 "If non-nil, args is included before any call to `ls' in Dired.
ef94bd99
JW
75This is useful for enabling human-readable format (-h), for example."
76 :type '(repeat :tag "Arguments" string)
77 :group 'eshell-ls)
78
affbf647 79(defcustom eshell-ls-use-in-dired nil
ec60da52 80 "If non-nil, use `eshell-ls' to read directories in Dired."
affbf647
GM
81 :set (lambda (symbol value)
82 (if value
83 (unless (and (boundp 'eshell-ls-use-in-dired)
84 eshell-ls-use-in-dired)
85 (fset 'insert-directory 'eshell-ls-insert-directory))
86 (when (and (boundp 'eshell-ls-insert-directory)
87 eshell-ls-use-in-dired)
88 (fset 'insert-directory eshell-ls-orig-insert-directory)))
89 (setq eshell-ls-use-in-dired value))
90 :type 'boolean
91 :require 'em-ls
92 :group 'eshell-ls)
93
94(defcustom eshell-ls-default-blocksize 1024
ec60da52 95 "The default blocksize to use when display file sizes with -s."
affbf647
GM
96 :type 'integer
97 :group 'eshell-ls)
98
dace60cf 99(defcustom eshell-ls-exclude-regexp nil
ec60da52 100 "Unless -a is specified, files matching this regexp will not be shown."
762fe76e 101 :type '(choice regexp (const nil))
affbf647
GM
102 :group 'eshell-ls)
103
dace60cf 104(defcustom eshell-ls-exclude-hidden t
ec60da52 105 "Unless -a is specified, files beginning with . will not be shown.
dace60cf
JW
106Using this boolean, instead of `eshell-ls-exclude-regexp', is both
107faster and conserves more memory."
108 :type 'boolean
109 :group 'eshell-ls)
110
affbf647 111(defcustom eshell-ls-use-colors t
ec60da52 112 "If non-nil, use colors in file listings."
affbf647
GM
113 :type 'boolean
114 :group 'eshell-ls)
115
958e6876 116(defface eshell-ls-directory
1fd714a4
RS
117 '((((class color) (background light)) (:foreground "Blue" :weight bold))
118 (((class color) (background dark)) (:foreground "SkyBlue" :weight bold))
119 (t (:weight bold)))
ec60da52 120 "The face used for highlight directories."
affbf647 121 :group 'eshell-ls)
2fb1ec93
GM
122(define-obsolete-face-alias 'eshell-ls-directory-face
123 'eshell-ls-directory "22.1")
affbf647 124
958e6876 125(defface eshell-ls-symlink
1fd714a4
RS
126 '((((class color) (background light)) (:foreground "Dark Cyan" :weight bold))
127 (((class color) (background dark)) (:foreground "Cyan" :weight bold)))
ec60da52 128 "The face used for highlight symbolic links."
affbf647 129 :group 'eshell-ls)
2fb1ec93 130(define-obsolete-face-alias 'eshell-ls-symlink-face 'eshell-ls-symlink "22.1")
affbf647 131
958e6876 132(defface eshell-ls-executable
1fd714a4
RS
133 '((((class color) (background light)) (:foreground "ForestGreen" :weight bold))
134 (((class color) (background dark)) (:foreground "Green" :weight bold)))
ec60da52 135 "The face used for highlighting executables (not directories, though)."
affbf647 136 :group 'eshell-ls)
2fb1ec93
GM
137(define-obsolete-face-alias 'eshell-ls-executable-face
138 'eshell-ls-executable "22.1")
affbf647 139
958e6876 140(defface eshell-ls-readonly
affbf647
GM
141 '((((class color) (background light)) (:foreground "Brown"))
142 (((class color) (background dark)) (:foreground "Pink")))
ec60da52 143 "The face used for highlighting read-only files."
affbf647 144 :group 'eshell-ls)
2fb1ec93 145(define-obsolete-face-alias 'eshell-ls-readonly-face 'eshell-ls-readonly "22.1")
affbf647 146
958e6876 147(defface eshell-ls-unreadable
affbf647
GM
148 '((((class color) (background light)) (:foreground "Grey30"))
149 (((class color) (background dark)) (:foreground "DarkGrey")))
ec60da52 150 "The face used for highlighting unreadable files."
affbf647 151 :group 'eshell-ls)
2fb1ec93
GM
152(define-obsolete-face-alias 'eshell-ls-unreadable-face
153 'eshell-ls-unreadable "22.1")
affbf647 154
958e6876 155(defface eshell-ls-special
1fd714a4
RS
156 '((((class color) (background light)) (:foreground "Magenta" :weight bold))
157 (((class color) (background dark)) (:foreground "Magenta" :weight bold)))
ec60da52 158 "The face used for highlighting non-regular files."
affbf647 159 :group 'eshell-ls)
2fb1ec93 160(define-obsolete-face-alias 'eshell-ls-special-face 'eshell-ls-special "22.1")
affbf647 161
958e6876 162(defface eshell-ls-missing
1fd714a4
RS
163 '((((class color) (background light)) (:foreground "Red" :weight bold))
164 (((class color) (background dark)) (:foreground "Red" :weight bold)))
ec60da52 165 "The face used for highlighting non-existent file names."
affbf647 166 :group 'eshell-ls)
2fb1ec93 167(define-obsolete-face-alias 'eshell-ls-missing-face 'eshell-ls-missing "22.1")
affbf647
GM
168
169(defcustom eshell-ls-archive-regexp
170 (concat "\\.\\(t\\(a[rz]\\|gz\\)\\|arj\\|lzh\\|"
4c964351 171 "zip\\|[zZ]\\|gz\\|bz2\\|xz\\|deb\\|rpm\\)\\'")
ec60da52 172 "A regular expression that matches names of file archives.
affbf647
GM
173This typically includes both traditional archives and compressed
174files."
4c964351 175 :version "24.1" ; added xz
affbf647
GM
176 :type 'regexp
177 :group 'eshell-ls)
178
958e6876 179(defface eshell-ls-archive
1fd714a4
RS
180 '((((class color) (background light)) (:foreground "Orchid" :weight bold))
181 (((class color) (background dark)) (:foreground "Orchid" :weight bold)))
ec60da52 182 "The face used for highlighting archived and compressed file names."
affbf647 183 :group 'eshell-ls)
2fb1ec93 184(define-obsolete-face-alias 'eshell-ls-archive-face 'eshell-ls-archive "22.1")
affbf647
GM
185
186(defcustom eshell-ls-backup-regexp
187 "\\(\\`\\.?#\\|\\(\\.bak\\|~\\)\\'\\)"
ec60da52 188 "A regular expression that matches names of backup files."
affbf647
GM
189 :type 'regexp
190 :group 'eshell-ls)
191
958e6876 192(defface eshell-ls-backup
affbf647
GM
193 '((((class color) (background light)) (:foreground "OrangeRed"))
194 (((class color) (background dark)) (:foreground "LightSalmon")))
ec60da52 195 "The face used for highlighting backup file names."
affbf647 196 :group 'eshell-ls)
2fb1ec93 197(define-obsolete-face-alias 'eshell-ls-backup-face 'eshell-ls-backup "22.1")
affbf647
GM
198
199(defcustom eshell-ls-product-regexp
087f110d 200 "\\.\\(elc\\|o\\(bj\\)?\\|a\\|lib\\|res\\)\\'"
ec60da52 201 "A regular expression that matches names of product files.
affbf647
GM
202Products are files that get generated from a source file, and hence
203ought to be recreatable if they are deleted."
204 :type 'regexp
205 :group 'eshell-ls)
206
958e6876 207(defface eshell-ls-product
affbf647
GM
208 '((((class color) (background light)) (:foreground "OrangeRed"))
209 (((class color) (background dark)) (:foreground "LightSalmon")))
ec60da52 210 "The face used for highlighting files that are build products."
affbf647 211 :group 'eshell-ls)
2fb1ec93 212(define-obsolete-face-alias 'eshell-ls-product-face 'eshell-ls-product "22.1")
affbf647
GM
213
214(defcustom eshell-ls-clutter-regexp
215 "\\(^texput\\.log\\|^core\\)\\'"
ec60da52 216 "A regular expression that matches names of junk files.
affbf647
GM
217These are mainly files that get created for various reasons, but don't
218really need to stick around for very long."
219 :type 'regexp
220 :group 'eshell-ls)
221
958e6876 222(defface eshell-ls-clutter
1fd714a4
RS
223 '((((class color) (background light)) (:foreground "OrangeRed" :weight bold))
224 (((class color) (background dark)) (:foreground "OrangeRed" :weight bold)))
ec60da52 225 "The face used for highlighting junk file names."
affbf647 226 :group 'eshell-ls)
2fb1ec93 227(define-obsolete-face-alias 'eshell-ls-clutter-face 'eshell-ls-clutter "22.1")
affbf647
GM
228
229(defsubst eshell-ls-filetype-p (attrs type)
230 "Test whether ATTRS specifies a directory."
231 (if (nth 8 attrs)
232 (eq (aref (nth 8 attrs) 0) type)))
233
234(defmacro eshell-ls-applicable (attrs index func file)
3a66e78f
CY
235 "Test whether, for ATTRS, the user can do what corresponds to INDEX.
236ATTRS is a string of file modes. See `file-attributes'.
237If we cannot determine the answer using ATTRS (e.g., if we need
238to know what group the user is in), compute the return value by
239calling FUNC with FILE as an argument."
240 `(let ((owner (nth 2 ,attrs))
241 (modes (nth 8 ,attrs)))
242 (cond ((cond ((numberp owner)
243 (= owner (user-uid)))
244 ((stringp owner)
245 (or (string-equal owner (user-login-name))
246 (member owner (eshell-current-ange-uids)))))
247 ;; The user owns this file.
248 (not (eq (aref modes ,index) ?-)))
249 ((eq (aref modes (+ ,index 3))
250 (aref modes (+ ,index 6)))
251 ;; If the "group" and "other" fields give identical
252 ;; results, use that.
253 (not (eq (aref modes (+ ,index 3)) ?-)))
254 (t
255 ;; Otherwise call FUNC.
256 (,(eval func) ,file)))))
affbf647
GM
257
258(defcustom eshell-ls-highlight-alist nil
ec60da52 259 "This alist correlates test functions to color.
affbf647
GM
260The format of the members of this alist is
261
262 (TEST-SEXP . FACE)
263
264If TEST-SEXP evals to non-nil, that face will be used to highlight the
265name of the file. The first match wins. `file' and `attrs' are in
266scope during the evaluation of TEST-SEXP."
267 :type '(repeat (cons function face))
268 :group 'eshell-ls)
269
270;;; Functions:
271
272(defun eshell-ls-insert-directory
273 (file switches &optional wildcard full-directory-p)
274 "Insert directory listing for FILE, formatted according to SWITCHES.
275Leaves point after the inserted text.
276SWITCHES may be a string of options, or a list of strings.
277Optional third arg WILDCARD means treat FILE as shell wildcard.
278Optional fourth arg FULL-DIRECTORY-P means file is a directory and
279switches do not contain `d', so that a full listing is expected.
280
281This version of the function uses `eshell/ls'. If any of the switches
282passed are not recognized, the operating system's version will be used
283instead."
284 (let ((handler (find-file-name-handler file 'insert-directory)))
285 (if handler
286 (funcall handler 'insert-directory file switches
287 wildcard full-directory-p)
288 (if (stringp switches)
289 (setq switches (split-string switches)))
290 (let (eshell-current-handles
73f99a66
JW
291 eshell-current-subjob-p
292 font-lock-mode)
affbf647
GM
293 ;; use the fancy highlighting in `eshell-ls' rather than font-lock
294 (when (and eshell-ls-use-colors
295 (featurep 'font-lock))
296 (font-lock-mode -1)
6c9e58c4 297 (setq font-lock-defaults nil)
affbf647
GM
298 (if (boundp 'font-lock-buffers)
299 (set 'font-lock-buffers
300 (delq (current-buffer)
301 (symbol-value 'font-lock-buffers)))))
302 (let ((insert-func 'insert)
303 (error-func 'insert)
dace60cf 304 (flush-func 'ignore)
ef94bd99 305 eshell-ls-dired-initial-args)
affbf647
GM
306 (eshell-do-ls (append switches (list file))))))))
307
308(defsubst eshell/ls (&rest args)
309 "An alias version of `eshell-do-ls'."
310 (let ((insert-func 'eshell-buffered-print)
311 (error-func 'eshell-error)
312 (flush-func 'eshell-flush))
313 (eshell-do-ls args)))
314
127fd3c2
JW
315(put 'eshell/ls 'eshell-no-numeric-conversions t)
316
1a32899d
GM
317(defvar block-size)
318(defvar dereference-links)
319(defvar dir-literal)
320(defvar error-func)
321(defvar flush-func)
322(defvar human-readable)
323(defvar ignore-pattern)
324(defvar insert-func)
325(defvar listing-style)
326(defvar numeric-uid-gid)
327(defvar reverse-list)
328(defvar show-all)
329(defvar show-recursive)
330(defvar show-size)
331(defvar sort-method)
332(defvar ange-cache)
333(defvar dired-flag)
affbf647
GM
334
335(defun eshell-do-ls (&rest args)
336 "Implementation of \"ls\" in Lisp, passing ARGS."
337 (funcall flush-func -1)
338 ;; process the command arguments, and begin listing files
339 (eshell-eval-using-options
dace60cf
JW
340 "ls" (if eshell-ls-initial-args
341 (list eshell-ls-initial-args args)
342 args)
7f09df7a
JW
343 `((?a "all" nil show-all
344 "show all files in directory")
affbf647 345 (?c nil by-ctime sort-method
73f99a66 346 "sort by last status change time")
affbf647
GM
347 (?d "directory" nil dir-literal
348 "list directory entries instead of contents")
349 (?k "kilobytes" 1024 block-size
7f09df7a 350 "using 1024 as the block size")
affbf647
GM
351 (?h "human-readable" 1024 human-readable
352 "print sizes in human readable format")
7f09df7a
JW
353 (?H "si" 1000 human-readable
354 "likewise, but use powers of 1000 not 1024")
affbf647
GM
355 (?I "ignore" t ignore-pattern
356 "do not list implied entries matching pattern")
357 (?l nil long-listing listing-style
358 "use a long listing format")
359 (?n "numeric-uid-gid" nil numeric-uid-gid
360 "list numeric UIDs and GIDs instead of names")
361 (?r "reverse" nil reverse-list
362 "reverse order while sorting")
363 (?s "size" nil show-size
364 "print size of each file, in blocks")
365 (?t nil by-mtime sort-method
366 "sort by modification time")
367 (?u nil by-atime sort-method
368 "sort by last access time")
70a06174
JW
369 (?x nil by-lines listing-style
370 "list entries by lines instead of by columns")
7f09df7a
JW
371 (?C nil by-columns listing-style
372 "list entries by columns")
ce343c43 373 (?L "dereference" nil dereference-links
7f09df7a
JW
374 "list entries pointed to by symbolic links")
375 (?R "recursive" nil show-recursive
376 "list subdirectories recursively")
377 (?S nil by-size sort-method
378 "sort by file size")
379 (?U nil unsorted sort-method
380 "do not sort; list entries in directory order")
affbf647
GM
381 (?X nil by-extension sort-method
382 "sort alphabetically by entry extension")
383 (?1 nil single-column listing-style
384 "list one file per line")
73f99a66
JW
385 (nil "dired" nil dired-flag
386 "Here for compatibility with GNU ls.")
affbf647 387 (nil "help" nil nil
7f09df7a 388 "show this usage display")
affbf647
GM
389 :external "ls"
390 :usage "[OPTION]... [FILE]...
391List information about the FILEs (the current directory by default).
7f09df7a 392Sort entries alphabetically across.")
affbf647
GM
393 ;; setup some defaults, based on what the user selected
394 (unless block-size
395 (setq block-size eshell-ls-default-blocksize))
396 (unless listing-style
397 (setq listing-style 'by-columns))
398 (unless args
399 (setq args (list ".")))
8c6b1d83 400 (let ((eshell-ls-exclude-regexp eshell-ls-exclude-regexp) ange-cache)
7f09df7a 401 (when ignore-pattern
affbf647
GM
402 (unless (eshell-using-module 'eshell-glob)
403 (error (concat "-I option requires that `eshell-glob'"
404 " be a member of `eshell-modules-list'")))
405 (set-text-properties 0 (length ignore-pattern) nil ignore-pattern)
dace60cf
JW
406 (setq eshell-ls-exclude-regexp
407 (if eshell-ls-exclude-regexp
affbf647 408 (concat "\\(" eshell-ls-exclude-regexp "\\|"
dace60cf
JW
409 (eshell-glob-regexp ignore-pattern) "\\)")
410 (eshell-glob-regexp ignore-pattern))))
affbf647
GM
411 ;; list the files!
412 (eshell-ls-entries
a4cc44cf
CY
413 (mapcar (lambda (arg)
414 (cons (if (and (eshell-under-windows-p)
415 (file-name-absolute-p arg))
416 (expand-file-name arg)
417 arg)
418 (eshell-file-attributes
419 arg (if numeric-uid-gid 'integer 'string))))
dace60cf 420 args)
affbf647
GM
421 t (expand-file-name default-directory)))
422 (funcall flush-func)))
423
424(defsubst eshell-ls-printable-size (filesize &optional by-blocksize)
425 "Return a printable FILESIZE."
426 (eshell-printable-size filesize human-readable
427 (and by-blocksize block-size)
428 eshell-ls-use-colors))
429
430(defsubst eshell-ls-size-string (attrs size-width)
431 "Return the size string for ATTRS length, using SIZE-WIDTH."
432 (let* ((str (eshell-ls-printable-size (nth 7 attrs) t))
433 (len (length str)))
434 (if (< len size-width)
435 (concat (make-string (- size-width len) ? ) str)
436 str)))
437
438(defun eshell-ls-annotate (fileinfo)
439 "Given a FILEINFO object, return a resolved, decorated FILEINFO.
440This means resolving any symbolic links, determining what face the
441name should be displayed as, etc. Think of it as cooking a FILEINFO."
442 (if (not (and (stringp (cadr fileinfo))
443 (or dereference-links
444 (eq listing-style 'long-listing))))
445 (setcar fileinfo (eshell-ls-decorated-name fileinfo))
446 (let (dir attr)
447 (unless (file-name-absolute-p (cadr fileinfo))
448 (setq dir (file-truename
449 (file-name-directory
450 (expand-file-name (car fileinfo))))))
451 (setq attr
8c6b1d83 452 (eshell-file-attributes
affbf647
GM
453 (let ((target (if dir
454 (expand-file-name (cadr fileinfo) dir)
455 (cadr fileinfo))))
456 (if dereference-links
457 (file-truename target)
458 target))))
459 (if (or dereference-links
460 (string-match "^\\.\\.?$" (car fileinfo)))
461 (progn
462 (setcdr fileinfo attr)
463 (setcar fileinfo (eshell-ls-decorated-name fileinfo)))
464 (assert (eq listing-style 'long-listing))
465 (setcar fileinfo
466 (concat (eshell-ls-decorated-name fileinfo) " -> "
467 (eshell-ls-decorated-name
468 (cons (cadr fileinfo) attr)))))))
469 fileinfo)
470
471(defun eshell-ls-file (fileinfo &optional size-width copy-fileinfo)
472 "Output FILE in long format.
473FILE may be a string, or a cons cell whose car is the filename and
474whose cdr is the list of file attributes."
475 (if (not (cdr fileinfo))
476 (funcall error-func (format "%s: No such file or directory\n"
477 (car fileinfo)))
478 (setq fileinfo
479 (eshell-ls-annotate (if copy-fileinfo
480 (cons (car fileinfo)
481 (cdr fileinfo))
482 fileinfo)))
483 (let ((file (car fileinfo))
484 (attrs (cdr fileinfo)))
485 (if (not (eq listing-style 'long-listing))
486 (if show-size
487 (funcall insert-func (eshell-ls-size-string attrs size-width)
488 " " file "\n")
489 (funcall insert-func file "\n"))
490 (let ((line
491 (concat
492 (if show-size
493 (concat (eshell-ls-size-string attrs size-width) " "))
494 (format
ce343c43
EZ
495 (if numeric-uid-gid
496 "%s%4d %-8s %-8s "
497 "%s%4d %-14s %-8s ")
affbf647
GM
498 (or (nth 8 attrs) "??????????")
499 (or (nth 1 attrs) 0)
8c6b1d83 500 (or (let ((user (nth 2 attrs)))
ce343c43
EZ
501 (and (stringp user)
502 (eshell-substring user 14)))
affbf647
GM
503 (nth 2 attrs)
504 "")
8c6b1d83 505 (or (let ((group (nth 3 attrs)))
ce343c43
EZ
506 (and (stringp group)
507 (eshell-substring group 8)))
affbf647
GM
508 (nth 3 attrs)
509 ""))
510 (let* ((str (eshell-ls-printable-size (nth 7 attrs)))
511 (len (length str)))
7ed88398
EZ
512 ;; Let file sizes shorter than 9 align neatly.
513 (if (< len (or size-width 8))
514 (concat (make-string (- (or size-width 8) len) ? ) str)
affbf647
GM
515 str))
516 " " (format-time-string
7f09df7a 517 (concat
a08cc025 518 eshell-ls-date-format " "
7f09df7a
JW
519 (if (= (nth 5 (decode-time (current-time)))
520 (nth 5 (decode-time
521 (nth (cond
522 ((eq sort-method 'by-atime) 4)
523 ((eq sort-method 'by-ctime) 6)
524 (t 5)) attrs))))
525 "%H:%M"
526 " %Y")) (nth (cond
527 ((eq sort-method 'by-atime) 4)
528 ((eq sort-method 'by-ctime) 6)
529 (t 5)) attrs)) " ")))
affbf647
GM
530 (funcall insert-func line file "\n"))))))
531
532(defun eshell-ls-dir (dirinfo &optional insert-name root-dir size-width)
533 "Output the entries in DIRINFO.
534If INSERT-NAME is non-nil, the name of DIRINFO will be output. If
535ROOT-DIR is also non-nil, and a directory name, DIRINFO will be output
536relative to that directory."
537 (let ((dir (car dirinfo)))
538 (if (not (cdr dirinfo))
539 (funcall error-func (format "%s: No such file or directory\n" dir))
540 (if dir-literal
541 (eshell-ls-file dirinfo size-width)
542 (if insert-name
543 (funcall insert-func
544 (eshell-ls-decorated-name
545 (cons (concat
546 (if root-dir
547 (file-relative-name dir root-dir)
548 (expand-file-name dir)))
549 (cdr dirinfo))) ":\n"))
dace60cf 550 (let ((entries (eshell-directory-files-and-attributes
7f09df7a
JW
551 dir nil (and (not show-all)
552 eshell-ls-exclude-hidden
ce343c43
EZ
553 "\\`[^.]") t
554 ;; Asking for UID and GID as
555 ;; strings saves another syscall
556 ;; later when we are going to
557 ;; display user and group names.
558 (if numeric-uid-gid 'integer 'string))))
dace60cf
JW
559 (when (and (not show-all) eshell-ls-exclude-regexp)
560 (while (and entries (string-match eshell-ls-exclude-regexp
561 (caar entries)))
affbf647
GM
562 (setq entries (cdr entries)))
563 (let ((e entries))
564 (while (cdr e)
565 (if (string-match eshell-ls-exclude-regexp (car (cadr e)))
566 (setcdr e (cddr e))
567 (setq e (cdr e))))))
568 (when (or (eq listing-style 'long-listing) show-size)
569 (let ((total 0.0))
570 (setq size-width 0)
a9eeff78 571 (dolist (e entries)
affbf647
GM
572 (if (nth 7 (cdr e))
573 (setq total (+ total (nth 7 (cdr e)))
574 size-width
575 (max size-width
576 (length (eshell-ls-printable-size
7ed88398
EZ
577 (nth 7 (cdr e))
578 (not
579 ;; If we are under -l, count length
580 ;; of sizes in bytes, not in blocks.
581 (eq listing-style 'long-listing))))))))
affbf647
GM
582 (funcall insert-func "total "
583 (eshell-ls-printable-size total t) "\n")))
584 (let ((default-directory (expand-file-name dir)))
585 (if show-recursive
586 (eshell-ls-entries
587 (let ((e entries) (good-entries (list t)))
588 (while e
589 (unless (let ((len (length (caar e))))
590 (and (eq (aref (caar e) 0) ?.)
591 (or (= len 1)
592 (and (= len 2)
593 (eq (aref (caar e) 1) ?.)))))
594 (nconc good-entries (list (car e))))
595 (setq e (cdr e)))
596 (cdr good-entries))
597 nil root-dir)
598 (eshell-ls-files (eshell-ls-sort-entries entries)
599 size-width))))))))
600
601(defsubst eshell-ls-compare-entries (l r inx func)
602 "Compare the time of two files, L and R, the attribute indexed by INX."
603 (let ((lt (nth inx (cdr l)))
604 (rt (nth inx (cdr r))))
605 (if (equal lt rt)
606 (string-lessp (directory-file-name (car l))
607 (directory-file-name (car r)))
608 (funcall func rt lt))))
609
610(defun eshell-ls-sort-entries (entries)
611 "Sort the given ENTRIES, which may be files, directories or both.
612In Eshell's implementation of ls, ENTRIES is always reversed."
613 (if (eq sort-method 'unsorted)
614 (nreverse entries)
615 (sort entries
616 (function
617 (lambda (l r)
618 (let ((result
619 (cond
620 ((eq sort-method 'by-atime)
73171bd4 621 (eshell-ls-compare-entries l r 4 'time-less-p))
affbf647 622 ((eq sort-method 'by-mtime)
73171bd4 623 (eshell-ls-compare-entries l r 5 'time-less-p))
affbf647 624 ((eq sort-method 'by-ctime)
73171bd4 625 (eshell-ls-compare-entries l r 6 'time-less-p))
7f09df7a
JW
626 ((eq sort-method 'by-size)
627 (eshell-ls-compare-entries l r 7 '<))
affbf647
GM
628 ((eq sort-method 'by-extension)
629 (let ((lx (file-name-extension
630 (directory-file-name (car l))))
631 (rx (file-name-extension
632 (directory-file-name (car r)))))
633 (cond
634 ((or (and (not lx) (not rx))
635 (equal lx rx))
636 (string-lessp (directory-file-name (car l))
637 (directory-file-name (car r))))
638 ((not lx) t)
639 ((not rx) nil)
640 (t
641 (string-lessp lx rx)))))
70a06174 642 (t
7f09df7a
JW
643 (string-lessp (directory-file-name (car l))
644 (directory-file-name (car r)))))))
affbf647
GM
645 (if reverse-list
646 (not result)
647 result)))))))
648
649(defun eshell-ls-files (files &optional size-width copy-fileinfo)
650 "Output a list of FILES.
651Each member of FILES is either a string or a cons cell of the form
652\(FILE . ATTRS)."
b7e9b5b0
GM
653 ;; Mimic behavior of coreutils ls, which lists a single file per
654 ;; line when output is not a tty. Exceptions: if -x was supplied,
655 ;; or if we are the _last_ command in a pipeline.
656 ;; FIXME Not really the same since not testing output destination.
657 (if (or (and eshell-in-pipeline-p
658 (not (eq eshell-in-pipeline-p 'last))
659 (not (eq listing-style 'by-lines)))
660 (memq listing-style '(long-listing single-column)))
a9eeff78 661 (dolist (file files)
affbf647
GM
662 (if file
663 (eshell-ls-file file size-width copy-fileinfo)))
664 (let ((f files)
665 last-f
666 display-files
667 ignore)
668 (while f
669 (if (cdar f)
670 (setq last-f f
671 f (cdr f))
672 (unless ignore
673 (funcall error-func
674 (format "%s: No such file or directory\n" (caar f))))
675 (if (eq f files)
676 (setq files (cdr files)
677 f files)
678 (if (not (cdr f))
679 (progn
680 (setcdr last-f nil)
681 (setq f nil))
682 (setcar f (cadr f))
683 (setcdr f (cddr f))))))
684 (if (not show-size)
685 (setq display-files (mapcar 'eshell-ls-annotate files))
a9eeff78 686 (dolist (file files)
affbf647
GM
687 (let* ((str (eshell-ls-printable-size (nth 7 (cdr file)) t))
688 (len (length str)))
689 (if (< len size-width)
690 (setq str (concat (make-string (- size-width len) ? ) str)))
691 (setq file (eshell-ls-annotate file)
692 display-files (cons (cons (concat str " " (car file))
693 (cdr file))
694 display-files))))
695 (setq display-files (nreverse display-files)))
696 (let* ((col-vals
697 (if (eq listing-style 'by-columns)
698 (eshell-ls-find-column-lengths display-files)
699 (assert (eq listing-style 'by-lines))
700 (eshell-ls-find-column-widths display-files)))
701 (col-widths (car col-vals))
702 (display-files (cdr col-vals))
703 (columns (length col-widths))
704 (col-index 1)
705 need-return)
a9eeff78 706 (dolist (file display-files)
affbf647
GM
707 (let ((name
708 (if (car file)
709 (if show-size
710 (concat (substring (car file) 0 size-width)
711 (eshell-ls-decorated-name
712 (cons (substring (car file) size-width)
713 (cdr file))))
714 (eshell-ls-decorated-name file))
715 "")))
716 (if (< col-index columns)
717 (setq need-return
718 (concat need-return name
719 (make-string
720 (max 0 (- (aref col-widths
721 (1- col-index))
722 (length name))) ? ))
723 col-index (1+ col-index))
724 (funcall insert-func need-return name "\n")
725 (setq col-index 1 need-return nil))))
726 (if need-return
727 (funcall insert-func need-return "\n"))))))
728
729(defun eshell-ls-entries (entries &optional separate root-dir)
a4cc44cf 730 "Output PATH's directory ENTRIES.
affbf647
GM
731Each member of ENTRIES may either be a string or a cons cell, the car
732of which is the file name, and the cdr of which is the list of
733attributes.
734If SEPARATE is non-nil, directories name will be entirely separated
735from the filenames. This is the normal behavior, except when doing a
736recursive listing.
737ROOT-DIR, if non-nil, specifies the root directory of the listing, to
738which non-absolute directory names will be made relative if ever they
739need to be printed."
740 (let (dirs files show-names need-return (size-width 0))
a9eeff78 741 (dolist (entry entries)
affbf647
GM
742 (if (and (not dir-literal)
743 (or (eshell-ls-filetype-p (cdr entry) ?d)
744 (and (eshell-ls-filetype-p (cdr entry) ?l)
745 (file-directory-p (car entry)))))
746 (progn
747 (unless separate
748 (setq files (cons entry files)
749 size-width
750 (if show-size
751 (max size-width
752 (length (eshell-ls-printable-size
753 (nth 7 (cdr entry)) t))))))
754 (setq dirs (cons entry dirs)))
755 (setq files (cons entry files)
756 size-width
757 (if show-size
758 (max size-width
759 (length (eshell-ls-printable-size
760 (nth 7 (cdr entry)) t)))))))
761 (when files
762 (eshell-ls-files (eshell-ls-sort-entries files)
763 size-width show-recursive)
764 (setq need-return t))
765 (setq show-names (or show-recursive
766 (> (+ (length files) (length dirs)) 1)))
a9eeff78 767 (dolist (dir (eshell-ls-sort-entries dirs))
affbf647
GM
768 (if (and need-return (not dir-literal))
769 (funcall insert-func "\n"))
770 (eshell-ls-dir dir show-names
dace60cf
JW
771 (unless (file-name-absolute-p (car dir)) root-dir)
772 size-width)
affbf647
GM
773 (setq need-return t))))
774
775(defun eshell-ls-find-column-widths (files)
776 "Find the best fitting column widths for FILES.
777It will be returned as a vector, whose length is the number of columns
778to use, and each member of which is the width of that column
779\(including spacing)."
780 (let* ((numcols 0)
781 (width 0)
782 (widths
783 (mapcar
784 (function
785 (lambda (file)
786 (+ 2 (length (car file)))))
787 files))
788 ;; must account for the added space...
789 (max-width (+ (window-width) 2))
790 (best-width 0)
791 col-widths)
792
793 ;; determine the largest number of columns in the first row
794 (let ((w widths))
795 (while (and w (< width max-width))
796 (setq width (+ width (car w))
797 numcols (1+ numcols)
798 w (cdr w))))
799
800 ;; refine it based on the following rows
801 (while (> numcols 0)
802 (let ((i 0)
803 (colw (make-vector numcols 0))
804 (w widths))
805 (while w
806 (if (= i numcols)
807 (setq i 0))
808 (aset colw i (max (aref colw i) (car w)))
809 (setq w (cdr w) i (1+ i)))
810 (setq i 0 width 0)
811 (while (< i numcols)
812 (setq width (+ width (aref colw i))
813 i (1+ i)))
814 (if (and (< width max-width)
815 (> width best-width))
816 (setq col-widths colw
817 best-width width)))
818 (setq numcols (1- numcols)))
819
820 (cons (or col-widths (vector max-width)) files)))
821
822(defun eshell-ls-find-column-lengths (files)
823 "Find the best fitting column lengths for FILES.
824It will be returned as a vector, whose length is the number of columns
825to use, and each member of which is the width of that column
826\(including spacing)."
827 (let* ((numcols 1)
828 (width 0)
829 (widths
830 (mapcar
831 (function
832 (lambda (file)
833 (+ 2 (length (car file)))))
834 files))
835 (max-width (+ (window-width) 2))
836 col-widths
837 colw)
838
839 ;; refine it based on the following rows
840 (while numcols
841 (let* ((rows (ceiling (/ (length widths)
842 (float numcols))))
843 (w widths)
844 (len (* rows numcols))
845 (index 0)
846 (i 0))
847 (setq width 0)
848 (unless (or (= rows 0)
849 (<= (/ (length widths) (float rows))
850 (float (1- numcols))))
851 (setq colw (make-vector numcols 0))
852 (while (> len 0)
853 (if (= i numcols)
854 (setq i 0 index (1+ index)))
855 (aset colw i
856 (max (aref colw i)
857 (or (nth (+ (* i rows) index) w) 0)))
858 (setq len (1- len) i (1+ i)))
859 (setq i 0)
860 (while (< i numcols)
861 (setq width (+ width (aref colw i))
862 i (1+ i))))
863 (if (>= width max-width)
864 (setq numcols nil)
865 (if colw
866 (setq col-widths colw))
867 (if (>= numcols (length widths))
868 (setq numcols nil)
869 (setq numcols (1+ numcols))))))
870
871 (if (not col-widths)
872 (cons (vector max-width) files)
873 (setq numcols (length col-widths))
874 (let* ((rows (ceiling (/ (length widths)
875 (float numcols))))
876 (len (* rows numcols))
877 (newfiles (make-list len nil))
878 (index 0)
879 (i 0)
880 (j 0))
881 (while (< j len)
882 (if (= i numcols)
883 (setq i 0 index (1+ index)))
884 (setcar (nthcdr j newfiles)
885 (nth (+ (* i rows) index) files))
886 (setq j (1+ j) i (1+ i)))
887 (cons col-widths newfiles)))))
888
889(defun eshell-ls-decorated-name (file)
3eed132b 890 "Return FILE, possibly decorated."
7f09df7a
JW
891 (if eshell-ls-use-colors
892 (let ((face
893 (cond
894 ((not (cdr file))
958e6876 895 'eshell-ls-missing)
7f09df7a
JW
896
897 ((stringp (cadr file))
958e6876 898 'eshell-ls-symlink)
7f09df7a
JW
899
900 ((eq (cadr file) t)
958e6876 901 'eshell-ls-directory)
7f09df7a
JW
902
903 ((not (eshell-ls-filetype-p (cdr file) ?-))
958e6876 904 'eshell-ls-special)
7f09df7a
JW
905
906 ((and (/= (user-uid) 0) ; root can execute anything
907 (eshell-ls-applicable (cdr file) 3
908 'file-executable-p (car file)))
958e6876 909 'eshell-ls-executable)
7f09df7a
JW
910
911 ((not (eshell-ls-applicable (cdr file) 1
912 'file-readable-p (car file)))
958e6876 913 'eshell-ls-unreadable)
7f09df7a
JW
914
915 ((string-match eshell-ls-archive-regexp (car file))
958e6876 916 'eshell-ls-archive)
7f09df7a
JW
917
918 ((string-match eshell-ls-backup-regexp (car file))
958e6876 919 'eshell-ls-backup)
7f09df7a
JW
920
921 ((string-match eshell-ls-product-regexp (car file))
958e6876 922 'eshell-ls-product)
7f09df7a
JW
923
924 ((string-match eshell-ls-clutter-regexp (car file))
958e6876 925 'eshell-ls-clutter)
7f09df7a
JW
926
927 ((not (eshell-ls-applicable (cdr file) 2
928 'file-writable-p (car file)))
958e6876 929 'eshell-ls-readonly)
7f09df7a
JW
930 (eshell-ls-highlight-alist
931 (let ((tests eshell-ls-highlight-alist)
932 value)
933 (while tests
934 (if (funcall (caar tests) (car file) (cdr file))
935 (setq value (cdar tests) tests nil)
936 (setq tests (cdr tests))))
937 value)))))
938 (if face
939 (add-text-properties 0 (length (car file))
940 (list 'face face)
941 (car file)))))
942 (car file))
affbf647 943
dbba8a04 944(provide 'em-ls)
affbf647 945
3146b070
GM
946;; Local Variables:
947;; generated-autoload-file: "esh-groups.el"
948;; End:
949
affbf647 950;;; em-ls.el ends here