1 ;;; ls-lisp.el --- emulate insert-directory completely in Emacs Lisp
3 ;; Copyright (C) 1992, 1994, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
4 ;; 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
6 ;; Author: Sebastian Kremer <sk@thp.uni-koeln.de>
7 ;; Modified by: Francis J. Wright <F.J.Wright@maths.qmw.ac.uk>
9 ;; Keywords: unix, dired
12 ;; This file is part of GNU Emacs.
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
29 ;; OVERVIEW ==========================================================
31 ;; This file redefines the function `insert-directory' to implement it
32 ;; directly from Emacs lisp, without running ls in a subprocess. It
33 ;; is useful if you cannot afford to fork Emacs on a real memory UNIX,
34 ;; or other non-UNIX platforms if you don't have the ls
35 ;; program, or if you want a different format from what ls offers.
37 ;; This function can use regexps instead of shell wildcards. If you
38 ;; enter regexps remember to double each $ sign. For example, to
39 ;; include files *.el, enter `.*\.el$$', resulting in the regexp
42 ;; RESTRICTIONS ======================================================
44 ;; * A few obscure ls switches are still ignored: see the docstring of
45 ;; `insert-directory'.
47 ;; TO DO =============================================================
49 ;; Complete handling of F switch (if/when possible).
51 ;; FJW: May be able to sort much faster by consing the sort key onto
52 ;; the front of each list element, sorting and then stripping the key
57 ;; Written originally by Sebastian Kremer <sk@thp.uni-koeln.de>
58 ;; Revised by Andrew Innes and Geoff Volker (and maybe others).
60 ;; Modified by Francis J. Wright <F.J.Wright@maths.qmw.ac.uk>, mainly
61 ;; to support many more ls options, "platform emulation" and more
66 (eval-when-compile (require 'cl
))
69 "Emulate the ls program completely in Emacs Lisp."
73 (defun ls-lisp-set-options ()
74 "Reset the ls-lisp options that depend on `ls-lisp-emulation'."
75 (mapc 'custom-reevaluate-setting
76 '(ls-lisp-ignore-case ls-lisp-dirs-first ls-lisp-verbosity
)))
78 (defcustom ls-lisp-emulation
79 (cond ;; ((eq system-type 'windows-nt) 'MS-Windows)
80 ((memq system-type
'(hpux usg-unix-v irix berkeley-unix
))
81 'UNIX
)) ; very similar to GNU
82 ;; Anything else defaults to nil, meaning GNU.
83 "Platform to emulate: GNU (default), MacOS, MS-Windows, UNIX.
84 Corresponding value is one of: nil, `MacOS', `MS-Windows', `UNIX'.
85 Set this to your preferred value; it need not match the actual platform
88 This variable does not affect the behavior of ls-lisp directly.
89 Rather, it controls the default values for some variables that do:
90 `ls-lisp-ignore-case', `ls-lisp-dirs-first', and `ls-lisp-verbosity'.
92 If you change this variable directly (without using customize)
93 after loading `ls-lisp', you should use `ls-lisp-set-options' to
94 update the dependent variables."
95 :type
'(choice (const :tag
"GNU" nil
)
99 :initialize
'custom-initialize-default
100 :set
(lambda (symbol value
)
101 (unless (equal value
(eval symbol
))
102 (custom-set-default symbol value
)
103 (ls-lisp-set-options)))
106 ;; Only made an obsolete alias in 23.3. Before that, the initial
107 ;; value was set according to:
108 ;; (or (memq ls-lisp-emulation '(MS-Windows MacOS))
109 ;; (and (boundp 'ls-lisp-dired-ignore-case) ls-lisp-dired-ignore-case))
110 ;; Which isn't the right thing to do.
111 (define-obsolete-variable-alias 'ls-lisp-dired-ignore-case
112 'ls-lisp-ignore-case
"21.1")
114 (defcustom ls-lisp-ignore-case
115 (memq ls-lisp-emulation
'(MS-Windows MacOS
))
116 "Non-nil causes ls-lisp alphabetic sorting to ignore case."
117 :set-after
'(ls-lisp-emulation)
121 (defcustom ls-lisp-dirs-first
(eq ls-lisp-emulation
'MS-Windows
)
122 "Non-nil causes ls-lisp to sort directories first in any ordering.
123 \(Or last if it is reversed.) Follows Microsoft Windows Explorer."
124 ;; Functionality suggested by Chris McMahan <cmcmahan@one.net>
125 :set-after
'(ls-lisp-emulation)
129 (defcustom ls-lisp-verbosity
130 (cond ((eq ls-lisp-emulation
'MacOS
) nil
)
131 ((eq ls-lisp-emulation
'MS-Windows
)
132 (if (and (fboundp 'w32-using-nt
) (w32-using-nt))
133 '(links))) ; distinguish NT/2K from 9x
134 ((eq ls-lisp-emulation
'UNIX
) '(links uid
)) ; UNIX ls
135 (t '(links uid gid
))) ; GNU ls
136 "A list of optional file attributes that ls-lisp should display.
137 It should contain none or more of the symbols: links, uid, gid.
138 A value of nil (or an empty list) means display none of them.
140 Concepts come from UNIX: `links' means count of names associated with
141 the file; `uid' means user (owner) identifier; `gid' means group
144 If emulation is MacOS then default is nil;
145 if emulation is MS-Windows then default is `(links)' if platform is
146 Windows NT/2K, nil otherwise;
147 if emulation is UNIX then default is `(links uid)';
148 if emulation is GNU then default is `(links uid gid)'."
149 :set-after
'(ls-lisp-emulation)
150 ;; Functionality suggested by Howard Melman <howard@silverstream.com>
151 :type
'(set (const :tag
"Show Link Count" links
)
152 (const :tag
"Show User" uid
)
153 (const :tag
"Show Group" gid
))
156 (defcustom ls-lisp-use-insert-directory-program
157 (not (memq system-type
'(ms-dos windows-nt
)))
158 "Non-nil causes ls-lisp to revert back to using `insert-directory-program'.
159 This is useful on platforms where ls-lisp is dumped into Emacs, such as
160 Microsoft Windows, but you would still like to use a program to list
161 the contents of a directory."
165 ;;; Autoloaded because it is let-bound in `recover-session', `mail-recover-1'.
167 (defcustom ls-lisp-support-shell-wildcards t
168 "Non-nil means ls-lisp treats file patterns as shell wildcards.
169 Otherwise they are treated as Emacs regexps (for backward compatibility)."
173 (defcustom ls-lisp-format-time-list
176 "List of `format-time-string' specs to display file time stamps.
177 These specs are used ONLY if a valid locale can not be determined.
179 If `ls-lisp-use-localized-time-format' is non-nil, these specs are used
180 regardless of whether the locale can be determined.
182 Syntax: (EARLY-TIME-FORMAT OLD-TIME-FORMAT)
184 The EARLY-TIME-FORMAT is used if file has been modified within the
185 current year. The OLD-TIME-FORMAT is used for older files. To use ISO
186 8601 dates, you could set:
188 \(setq ls-lisp-format-time-list
191 :type
'(list (string :tag
"Early time format")
192 (string :tag
"Old time format"))
195 (defcustom ls-lisp-use-localized-time-format nil
196 "Non-nil means to always use `ls-lisp-format-time-list' for time stamps.
197 This applies even if a valid locale is specified.
199 WARNING: Using localized date/time format might cause Dired columns
200 to fail to line up, e.g. if month names are not all of the same length."
204 (defvar original-insert-directory nil
205 "This holds the original function definition of `insert-directory'.")
207 (defvar ls-lisp-uid-d-fmt
"-%d"
208 "Format to display integer UIDs.")
209 (defvar ls-lisp-uid-s-fmt
"-%s"
210 "Format to display user names.")
211 (defvar ls-lisp-gid-d-fmt
"-%d"
212 "Format to display integer GIDs.")
213 (defvar ls-lisp-gid-s-fmt
"-%s"
214 "Format to display user group names.")
215 (defvar ls-lisp-filesize-d-fmt
"%d"
216 "Format to display integer file sizes.")
217 (defvar ls-lisp-filesize-f-fmt
"%.0f"
218 "Format to display float file sizes.")
220 ;; Remember the original insert-directory function
221 (or (featurep 'ls-lisp
) ; FJW: unless this file is being reloaded!
222 (setq original-insert-directory
(symbol-function 'insert-directory
)))
225 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
227 (defun insert-directory (file switches
&optional wildcard full-directory-p
)
228 "Insert directory listing for FILE, formatted according to SWITCHES.
229 Leaves point after the inserted text.
230 SWITCHES may be a string of options, or a list of strings.
231 Optional third arg WILDCARD means treat FILE as shell wildcard.
232 Optional fourth arg FULL-DIRECTORY-P means file is a directory and
233 switches do not contain `d', so that a full listing is expected.
235 This version of the function comes from `ls-lisp.el'.
236 If the value of `ls-lisp-use-insert-directory-program' is non-nil then
237 it works exactly like the version from `files.el' and runs a directory
238 listing program whose name is in the variable
239 `insert-directory-program'; if also WILDCARD is non-nil then it runs
240 the shell specified by `shell-file-name'. If the value of
241 `ls-lisp-use-insert-directory-program' is nil then it runs a Lisp
244 The Lisp emulation does not run any external programs or shells. It
245 supports ordinary shell wildcards if `ls-lisp-support-shell-wildcards'
246 is non-nil; otherwise, it interprets wildcards as regular expressions
247 to match file names. It does not support all `ls' switches -- those
248 that work are: A a B C c F G g h i n R r S s t U u X. The l switch
249 is assumed to be always present and cannot be turned off."
250 (if ls-lisp-use-insert-directory-program
251 (funcall original-insert-directory
252 file switches wildcard full-directory-p
)
253 ;; We need the directory in order to find the right handler.
254 (let ((handler (find-file-name-handler (expand-file-name file
)
259 (funcall handler
'insert-directory file switches
260 wildcard full-directory-p
)
261 ;; Remove --dired switch
262 (if (string-match "--dired " switches
)
263 (setq switches
(replace-match "" nil nil switches
)))
264 ;; Convert SWITCHES to a list of characters.
265 (setq switches
(delete ?\
(delete ?-
(append switches nil
))))
266 ;; Sometimes we get ".../foo*/" as FILE. While the shell and
267 ;; `ls' don't mind, we certainly do, because it makes us think
268 ;; there is no wildcard, only a directory name.
269 (if (and ls-lisp-support-shell-wildcards
270 (string-match "[[?*]" file
)
271 ;; Prefer an existing file to wildcards, like
272 ;; dired-noselect does.
273 (not (file-exists-p file
)))
275 (or (not (eq (aref file
(1- (length file
))) ?
/))
276 (setq file
(substring file
0 (1- (length file
)))))
279 (setq wildcard-regexp
280 (if ls-lisp-support-shell-wildcards
281 (wildcard-to-regexp (file-name-nondirectory file
))
282 (file-name-nondirectory file
))
283 file
(file-name-directory file
))
284 (if (memq ?B switches
) (setq wildcard-regexp
"[^~]\\'")))
286 (ls-lisp-insert-directory
287 file switches
(ls-lisp-time-index switches
)
288 wildcard-regexp full-directory-p
)
290 ;; Maybe they wanted a literal file that just happens to
291 ;; use characters special to shell wildcards.
292 (if (equal (cadr err
) "Unmatched [ or [^")
294 (setq wildcard-regexp
(if (memq ?B switches
) "[^~]\\'")
295 file
(file-relative-name orig-file
))
296 (ls-lisp-insert-directory
297 file switches
(ls-lisp-time-index switches
)
298 nil full-directory-p
))
299 (signal (car err
) (cdr err
)))))
300 ;; Try to insert the amount of free space.
302 (goto-char (point-min))
303 ;; First find the line to put it on.
304 (when (re-search-forward "^total" nil t
)
305 (let ((available (get-free-disk-space ".")))
307 ;; Replace "total" with "total used", to avoid confusion.
308 (replace-match "total used in directory")
310 (insert " available " available
)))))))))
312 (defun ls-lisp-insert-directory
313 (file switches time-index wildcard-regexp full-directory-p
)
314 "Insert directory listing for FILE, formatted according to SWITCHES.
315 Leaves point after the inserted text. This is an internal function
316 optionally called by the `ls-lisp.el' version of `insert-directory'.
317 It is called recursively if the -R switch is used.
318 SWITCHES is a *list* of characters. TIME-INDEX is the time index into
319 file-attributes according to SWITCHES. WILDCARD-REGEXP is nil or an *Emacs
320 regexp*. FULL-DIRECTORY-P means file is a directory and SWITCHES does
321 not contain `d', so that a full listing is expected."
322 (if (or wildcard-regexp full-directory-p
)
323 (let* ((dir (file-name-as-directory file
))
324 (default-directory dir
) ; so that file-attributes works
326 (directory-files-and-attributes dir nil wildcard-regexp t
327 (if (memq ?n switches
)
334 ;; do all bindings here for speed
335 total-line files elt short file-size fil attr
336 fuid fgid uid-len gid-len
)
337 (cond ((memq ?A switches
)
339 (ls-lisp-delete-matching "^\\.\\.?$" file-alist
)))
340 ((not (memq ?a switches
))
341 ;; if neither -A nor -a, flush . files
343 (ls-lisp-delete-matching "^\\." file-alist
))))
345 (ls-lisp-handle-switches file-alist switches
))
346 (if (memq ?C switches
) ; column (-C) format
347 (ls-lisp-column-format file-alist
)
348 (setq total-line
(cons (point) (car-safe file-alist
)))
349 ;; Find the appropriate format for displaying uid, gid, and
350 ;; file size, by finding the longest strings among all the
351 ;; files we are about to display.
352 (dolist (elt file-alist
)
355 uid-len
(if (stringp fuid
) (string-width fuid
)
356 (length (format "%d" fuid
)))
358 gid-len
(if (stringp fgid
) (string-width fgid
)
359 (length (format "%d" fgid
)))
360 file-size
(nth 7 attr
))
361 (if (> uid-len max-uid-len
)
362 (setq max-uid-len uid-len
))
363 (if (> gid-len max-gid-len
)
364 (setq max-gid-len gid-len
))
365 (if (> file-size max-file-size
)
366 (setq max-file-size file-size
)))
367 (setq ls-lisp-uid-d-fmt
(format " %%-%dd" max-uid-len
))
368 (setq ls-lisp-uid-s-fmt
(format " %%-%ds" max-uid-len
))
369 (setq ls-lisp-gid-d-fmt
(format " %%-%dd" max-gid-len
))
370 (setq ls-lisp-gid-s-fmt
(format " %%-%ds" max-gid-len
))
371 (setq ls-lisp-filesize-d-fmt
373 (if (memq ?s switches
)
374 (length (format "%.0f"
375 (fceiling (/ max-file-size
1024.0))))
376 (length (format "%.0f" max-file-size
)))))
377 (setq ls-lisp-filesize-f-fmt
379 (if (memq ?s switches
)
380 (length (format "%.0f"
381 (fceiling (/ max-file-size
1024.0))))
382 (length (format "%.0f" max-file-size
)))))
383 (setq files file-alist
)
384 (while files
; long (-l) format
385 (setq elt
(car files
)
389 file-size
(nth 7 attr
))
391 (setq sum
(+ file-size
392 ;; Even if neither SUM nor file's size
393 ;; overflow, their sum could.
394 (if (or (< sum
(- 134217727 file-size
))
399 (insert (ls-lisp-format short attr file-size
400 switches time-index
))))
401 ;; Insert total size of all files:
403 (goto-char (car total-line
))
405 ;; Shell says ``No match'' if no files match
406 ;; the wildcard; let's say something similar.
407 (insert "(No match)\n"))
408 (insert (format "total %.0f\n" (fceiling (/ sum
1024.0))))))
409 (if (memq ?R switches
)
410 ;; List the contents of all directories recursively.
411 ;; cadr of each element of `file-alist' is t for
412 ;; directory, string (name linked to) for symbolic
415 (setq elt
(car file-alist
)
416 file-alist
(cdr file-alist
))
417 (when (and (eq (cadr elt
) t
) ; directory
418 ;; Under -F, we have already decorated all
419 ;; directories, including "." and "..", with
420 ;; a /, so allow for that as well.
421 (not (string-match "\\`\\.\\.?/?\\'" (car elt
))))
422 (setq elt
(expand-file-name (car elt
) dir
))
423 (insert "\n" elt
":\n")
424 (ls-lisp-insert-directory
425 elt switches time-index wildcard-regexp full-directory-p
)))))
426 ;; If not full-directory-p, FILE *must not* end in /, as
427 ;; file-attributes will not recognize a symlink to a directory,
428 ;; so must make it a relative filename as ls does:
429 (if (file-name-absolute-p file
) (setq file
(expand-file-name file
)))
430 (if (eq (aref file
(1- (length file
))) ?
/)
431 (setq file
(substring file
0 -
1)))
432 (let ((fattr (file-attributes file
'string
)))
434 (insert (ls-lisp-format
435 (if (memq ?F switches
)
436 (ls-lisp-classify-file file fattr
)
439 switches time-index
))
440 (message "%s: doesn't exist or is inaccessible" file
)
441 (ding) (sit-for 2))))) ; to show user the message!
443 (defun ls-lisp-column-format (file-alist)
444 "Insert the file names (only) in FILE-ALIST into the current buffer.
445 Format in columns, sorted vertically, following GNU ls -C.
446 Responds to the window width as ls should but may not!"
447 (let (files fmt ncols collen
(nfiles 0) (colwid 0))
448 ;; Count number of files as `nfiles', build list of filenames as
449 ;; `files', and find maximum filename length as `colwid':
452 (setq nfiles
(1+ nfiles
)
453 file
(caar file-alist
)
454 files
(cons file files
)
455 file-alist
(cdr file-alist
)
457 (if (> len colwid
) (setq colwid len
))))
458 (setq files
(nreverse files
)
459 colwid
(+ 2 colwid
) ; 2 character column gap
460 fmt
(format "%%-%ds" colwid
) ; print format
461 ncols
(/ (window-width) colwid
) ; no of columns
462 collen
(/ nfiles ncols
)) ; floor of column length
463 (if (> nfiles
(* collen ncols
)) (setq collen
(1+ collen
)))
464 ;; Output the file names in columns, sorted vertically:
469 (insert (format fmt
(nth j files
)))
470 (setq j
(+ j collen
)))
471 ;; FJW: This is completely unnecessary, but I don't like
472 ;; trailing white space...
473 (delete-region (point) (progn (skip-chars-backward " \t") (point)))
477 (defun ls-lisp-delete-matching (regexp list
)
478 "Delete all elements matching REGEXP from LIST, return new list."
479 ;; Should perhaps use setcdr for efficiency.
482 (or (string-match regexp
(caar list
))
483 (setq result
(cons (car list
) result
)))
484 (setq list
(cdr list
)))
487 (defsubst ls-lisp-string-lessp
(s1 s2
)
488 "Return t if string S1 is less than string S2 in lexicographic order.
489 Case is significant if `ls-lisp-ignore-case' is nil.
490 Unibyte strings are converted to multibyte for comparison."
491 (let ((u (compare-strings s1
0 nil s2
0 nil ls-lisp-ignore-case
)))
492 (and (numberp u
) (< u
0))))
494 (defun ls-lisp-handle-switches (file-alist switches
)
495 "Return new FILE-ALIST sorted according to SWITCHES.
496 SWITCHES is a list of characters. Default sorting is alphabetic."
497 ;; FILE-ALIST's elements are (FILE . FILE-ATTRIBUTES).
498 (or (memq ?U switches
) ; unsorted
499 ;; Catch and ignore unexpected sorting errors
503 ;; Copy file-alist in case of error
504 (sort (copy-sequence file-alist
) ; modifies its argument!
505 (cond ((memq ?S switches
)
506 (lambda (x y
) ; sorted on size
507 ;; 7th file attribute is file size
508 ;; Make largest file come first
511 ((setq index
(ls-lisp-time-index switches
))
512 (lambda (x y
) ; sorted on time
513 (time-less-p (nth index
(cdr y
))
514 (nth index
(cdr x
)))))
516 (lambda (x y
) ; sorted on extension
517 (ls-lisp-string-lessp
518 (ls-lisp-extension (car x
))
519 (ls-lisp-extension (car y
)))))
521 (lambda (x y
) ; sorted alphabetically
522 (ls-lisp-string-lessp (car x
) (car y
))))))))
523 (error (message "Unsorted (ls-lisp sorting error) - %s"
524 (error-message-string err
))
525 (ding) (sit-for 2)))) ; to show user the message!
526 (if (memq ?F switches
) ; classify switch
527 (setq file-alist
(mapcar 'ls-lisp-classify file-alist
)))
528 (if ls-lisp-dirs-first
529 ;; Re-sort directories first, without otherwise changing the
530 ;; ordering, and reverse whole list. cadr of each element of
531 ;; `file-alist' is t for directory, string (name linked to) for
532 ;; symbolic link, or nil.
535 (if (or (eq (cadr (setq el
(car file-alist
))) t
) ; directory
536 (and (stringp (cadr el
))
537 (file-directory-p (cadr el
)))) ; symlink to a directory
538 (setq dirs
(cons el dirs
))
539 (setq files
(cons el files
)))
540 (setq file-alist
(cdr file-alist
)))
542 (if (memq ?U switches
) ; unsorted order is reversed
546 ;; Finally reverse file alist if necessary.
547 ;; (eq below MUST compare `(not (memq ...))' to force comparison of
548 ;; `t' or `nil', rather than list tails!)
549 (if (eq (eq (not (memq ?U switches
)) ; unsorted order is reversed
550 (not (memq ?r switches
))) ; reversed sort order requested
551 ls-lisp-dirs-first
) ; already reversed
552 (nreverse file-alist
)
555 (defun ls-lisp-classify-file (filename fattr
)
556 "Append a character to FILENAME indicating the file type.
558 FATTR is the file attributes returned by `file-attributes' for the file.
559 The file type indicators are `/' for directories, `@' for symbolic
560 links, `|' for FIFOs, `=' for sockets, `*' for regular files that
561 are executable, and nothing for other types of files."
562 (let* ((type (car fattr
))
563 (modestr (nth 8 fattr
))
564 (typestr (substring modestr
0 1)))
567 (concat filename
(if (eq type t
) "/" "@")))
568 ((string-match "x" modestr
)
569 (concat filename
"*"))
570 ((string= "p" typestr
)
571 (concat filename
"|"))
572 ((string= "s" typestr
)
573 (concat filename
"="))
576 (defun ls-lisp-classify (filedata)
577 "Append a character to file name in FILEDATA indicating the file type.
579 FILEDATA has the form (FILENAME . ATTRIBUTES), where ATTRIBUTES is the
580 structure returned by `file-attributes' for that file.
582 The file type indicators are `/' for directories, `@' for symbolic
583 links, `|' for FIFOs, `=' for sockets, `*' for regular files that
584 are executable, and nothing for other types of files."
585 (let ((file-name (car filedata
))
586 (fattr (cdr filedata
)))
587 (setq file-name
(propertize file-name
'dired-filename t
))
588 (cons (ls-lisp-classify-file file-name fattr
) fattr
)))
590 (defun ls-lisp-extension (filename)
591 "Return extension of FILENAME (ignoring any version extension)
592 FOLLOWED by null and full filename, SOLELY for full alpha sort."
593 ;; Force extension sort order: `no ext' then `null ext' then `ext'
594 ;; to agree with GNU ls.
596 (let* ((i (length filename
)) end
)
597 (if (= (aref filename
(1- i
)) ?.
) ; null extension
599 (while (and (>= (setq i
(1- i
)) 0)
600 (/= (aref filename i
) ?.
)))
601 (if (< i
0) "\0\0" ; no extension
602 (if (/= (aref filename
(1+ i
)) ?~
)
603 (substring filename
(1+ i
))
604 ;; version extension found -- ignore it
606 (while (and (>= (setq i
(1- i
)) 0)
607 (/= (aref filename i
) ?.
)))
608 (if (< i
0) "\0\0" ; no extension
609 (substring filename
(1+ i
) end
))))
612 (defun ls-lisp-format (file-name file-attr file-size switches time-index
)
613 "Format one line of long ls output for file FILE-NAME.
614 FILE-ATTR and FILE-SIZE give the file's attributes and size.
615 SWITCHES and TIME-INDEX give the full switch list and time data."
616 (let ((file-type (nth 0 file-attr
))
617 ;; t for directory, string (name linked to)
618 ;; for symbolic link, or nil.
619 (drwxrwxrwx (nth 8 file-attr
))) ; attribute string ("drwxrwxrwx")
620 (concat (if (memq ?i switches
) ; inode number
621 (let ((inode (nth 10 file-attr
)))
623 (if (consp (cdr inode
))
624 ;; 2^(24+16) = 1099511627776.0, but
625 ;; multiplying by it and then adding the
626 ;; other members of the cons cell in one go
627 ;; loses precision, since a double does not
628 ;; have enough significant digits to hold a
629 ;; full 64-bit value. So below we split
630 ;; 1099511627776 into high 13 and low 5
631 ;; digits and compute in two parts.
632 (let ((p1 (* (car inode
) 10995116.0))
633 (p2 (+ (* (car inode
) 27776.0)
634 (* (cadr inode
) 65536.0)
636 (format " %13.0f%05.0f "
637 ;; Use floor to emulate integer
639 (+ p1
(floor p2
100000.0))
642 (+ (* (car inode
) 65536.0)
644 (format " %18d " inode
))))
645 ;; nil is treated like "" in concat
646 (if (memq ?s switches
) ; size in K
647 (format ls-lisp-filesize-f-fmt
648 (fceiling (/ file-size
1024.0))))
649 drwxrwxrwx
; attribute string
650 (if (memq 'links ls-lisp-verbosity
)
651 (format "%3d" (nth 1 file-attr
))) ; link count
652 ;; Numeric uid/gid are more confusing than helpful;
653 ;; Emacs should be able to make strings of them.
654 ;; They tend to be bogus on non-UNIX platforms anyway so
655 ;; optionally hide them.
656 (if (memq 'uid ls-lisp-verbosity
)
657 ;; uid can be a string or an integer
658 (let ((uid (nth 2 file-attr
)))
659 (format (if (stringp uid
)
663 (if (not (memq ?G switches
)) ; GNU ls -- shows group by default
664 (if (or (memq ?g switches
) ; UNIX ls -- no group by default
665 (memq 'gid ls-lisp-verbosity
))
666 (let ((gid (nth 3 file-attr
)))
667 (format (if (stringp gid
)
671 (ls-lisp-format-file-size file-size
(memq ?h switches
))
673 (ls-lisp-format-time file-attr time-index
)
675 (if (not (memq ?F switches
)) ; ls-lisp-classify already did that
676 (propertize file-name
'dired-filename t
)
678 (if (stringp file-type
) ; is a symbolic link
679 (concat " -> " file-type
))
683 (defun ls-lisp-time-index (switches)
684 "Return time index into file-attributes according to ls SWITCHES list.
685 Return nil if no time switch found."
686 ;; FJW: Default of nil is IMPORTANT and used in `ls-lisp-handle-switches'!
687 (cond ((memq ?c switches
) 6) ; last mode change
688 ((memq ?t switches
) 5) ; last modtime
689 ((memq ?u switches
) 4))) ; last access
691 (defun ls-lisp-format-time (file-attr time-index
)
692 "Format time for file with attributes FILE-ATTR according to TIME-INDEX.
693 Use the same method as ls to decide whether to show time-of-day or year,
694 depending on distance between file date and the current time.
695 All ls time options, namely c, t and u, are handled."
696 (let* ((time (nth (or time-index
5) file-attr
)) ; default is last modtime
697 (diff (- (float-time time
) (float-time)))
698 ;; Consider a time to be recent if it is within the past six
699 ;; months. A Gregorian year has 365.2425 * 24 * 60 * 60 ==
700 ;; 31556952 seconds on the average, and half of that is 15778476.
701 ;; Write the constant explicitly to avoid roundoff error.
702 (past-cutoff -
15778476)) ; half a Gregorian year
704 ;; Use traditional time format in the C or POSIX locale,
705 ;; ISO-style time format otherwise, so columns line up.
706 (let ((locale system-time-locale
))
708 (let ((vars '("LC_ALL" "LC_TIME" "LANG")))
709 (while (and vars
(not (setq locale
(getenv (car vars
)))))
710 (setq vars
(cdr vars
)))))
711 (if (member locale
'("C" "POSIX"))
714 (if (and (<= past-cutoff diff
) (<= diff
0))
715 (if (and locale
(not ls-lisp-use-localized-time-format
))
717 (nth 0 ls-lisp-format-time-list
))
718 (if (and locale
(not ls-lisp-use-localized-time-format
))
720 (nth 1 ls-lisp-format-time-list
)))
722 (error "Unk 0 0000"))))
724 (defun ls-lisp-format-file-size (file-size human-readable
)
725 (if (not human-readable
)
726 (format (if (floatp file-size
)
727 ls-lisp-filesize-f-fmt
728 ls-lisp-filesize-d-fmt
)
730 (if (< file-size
1024)
731 (format " %4d" file-size
)
732 (do ((file-size (/ file-size
1024.0) (/ file-size
1024.0))
733 ;; kilo, mega, giga, tera, peta, exa
734 (post-fixes (list "k" "M" "G" "T" "P" "E") (cdr post-fixes
)))
736 (format " %3.0f%s" file-size
(car post-fixes
)))))))
740 ;;; ls-lisp.el ends here