1 ;;; ls-lisp.el --- emulate insert-directory completely in Emacs Lisp
3 ;; Copyright (C) 1992, 1994 by Sebastian Kremer <sk@thp.uni-koeln.de>
5 ;; Author: Sebastian Kremer <sk@thp.uni-koeln.de>
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
27 ;; INSTALLATION =======================================================
29 ;; Put this file into your load-path. To use it, load it
30 ;; with (load "ls-lisp").
32 ;; OVERVIEW ===========================================================
34 ;; This file overloads the function insert-directory to implement it
35 ;; directly from Emacs lisp, without running `ls' in a subprocess.
37 ;; It is useful if you cannot afford to fork Emacs on a real memory UNIX,
38 ;; under VMS, or if you don't have the ls program, or if you want
39 ;; different format from what ls offers.
41 ;; This function uses regexps instead of shell
42 ;; wildcards. If you enter regexps remember to double each $ sign.
43 ;; For example, to include files *.el, enter `.*\.el$$',
44 ;; resulting in the regexp `.*\.el$'.
46 ;; RESTRICTIONS =====================================================
48 ;; * many ls switches are ignored, see docstring of `insert-directory'.
50 ;; * Only numeric uid/gid
52 ;; TODO ==============================================================
54 ;; Recognize some more ls switches: R F
59 (defvar ls-lisp-support-shell-wildcards t
60 "*Non-nil means file patterns are treated as shell wildcards.
61 nil means they are treated as Emacs regexps (for backward compatibility).
62 This variable is checked by \\[insert-directory] only when `ls-lisp.el'
65 (defun insert-directory (file &optional switches wildcard full-directory-p
)
66 "Insert directory listing for FILE, formatted according to SWITCHES.
67 Leaves point after the inserted text.
68 Optional third arg WILDCARD means treat FILE as shell wildcard.
69 Optional fourth arg FULL-DIRECTORY-P means file is a directory and
70 switches do not contain `d', so that a full listing is expected.
72 This version of the function comes from `ls-lisp.el'. It doesn not
73 run any external programs or shells. It supports ordinary shell
74 wildcards if `ls-lisp-support-shell-wildcards' variable is non-nil;
75 otherwise, it interprets wildcards as regular expressions to match
78 Not all `ls' switches are supported. The switches that work
79 are: A a c i r S s t u"
80 (let ((handler (find-file-name-handler file
'insert-directory
)))
82 (funcall handler
'insert-directory file switches
83 wildcard full-directory-p
)
84 ;; Sometimes we get ".../foo*/" as FILE. While the shell and
85 ;; `ls' don't mind, we certainly do, because it makes us think
86 ;; there is no wildcard, only a directory name.
87 (if (and ls-lisp-support-shell-wildcards
88 (string-match "[[?*]" file
))
90 (or (not (eq (aref file
(1- (length file
))) ?
/))
91 (setq file
(substring file
0 (1- (length file
)))))
93 ;; Convert SWITCHES to a list of characters.
94 (setq switches
(append switches nil
))
97 (if ls-lisp-support-shell-wildcards
98 (wildcard-to-regexp (file-name-nondirectory file
))
99 (file-name-nondirectory file
))
100 file
(file-name-directory file
)))
103 (let* ((dir (file-name-as-directory file
))
104 (default-directory dir
);; so that file-attributes works
108 (file-list (directory-files dir nil wildcard
))
111 ;; do all bindings here for speed
113 (cond ((memq ?A switches
)
115 (ls-lisp-delete-matching "^\\.\\.?$" file-list
)))
116 ((not (memq ?a switches
))
117 ;; if neither -A nor -a, flush . files
119 (ls-lisp-delete-matching "^\\." file-list
))))
124 ;; file-attributes("~bogus") bombs
125 (cons x
(file-attributes (expand-file-name x
)))))
126 ;; inserting the call to directory-files right here
127 ;; seems to stimulate an Emacs bug
128 ;; ILLEGAL DATATYPE (#o37777777727) or #o67
130 ;; ``Total'' line (filled in afterwards).
131 (insert (if (car-safe file-alist
)
133 ;; Shell says ``No match'' if no files match
134 ;; the wildcard; let's say something similar.
135 "(No match)\ntotal \007\n"))
137 (ls-lisp-handle-switches file-alist switches
))
139 (setq elt
(car file-alist
)
140 file-alist
(cdr file-alist
)
144 (setq sum
(+ sum
(nth 7 attr
)))
145 (insert (ls-lisp-format short attr switches now
))))
146 ;; Fill in total size of all files:
148 (search-backward "total \007")
149 (goto-char (match-end 0))
151 (insert (format "%d" (if (zerop sum
) 0 (1+ (/ sum
1024)))))))
152 ;; if not full-directory-p, FILE *must not* end in /, as
153 ;; file-attributes will not recognize a symlink to a directory
154 ;; must make it a relative filename as ls does:
155 (setq file
(file-name-nondirectory file
))
156 (insert (ls-lisp-format file
(file-attributes file
) switches
159 (defun ls-lisp-delete-matching (regexp list
)
160 ;; Delete all elements matching REGEXP from LIST, return new list.
161 ;; Should perhaps use setcdr for efficiency.
164 (or (string-match regexp
(car list
))
165 (setq result
(cons (car list
) result
)))
166 (setq list
(cdr list
)))
169 (defun ls-lisp-handle-switches (file-alist switches
)
170 ;; FILE-ALIST's elements are (FILE . FILE-ATTRIBUTES).
171 ;; Return new alist sorted according to SWITCHES which is a list of
172 ;; characters. Default sorting is alphabetically.
176 (cond ((memq ?S switches
) ; sorted on size
179 ;; 7th file attribute is file size
180 ;; Make largest file come first
183 ((memq ?t switches
) ; sorted on time
184 (setq index
(ls-lisp-time-index switches
))
187 (ls-lisp-time-lessp (nth index
(cdr y
))
188 (nth index
(cdr x
))))))
189 (t ; sorted alphabetically
192 (string-lessp (car x
)
194 (if (memq ?r switches
) ; reverse sort order
195 (setq file-alist
(nreverse file-alist
)))
198 ;; From Roland McGrath. Can use this to sort on time.
199 (defun ls-lisp-time-lessp (time0 time1
)
200 (let ((hi0 (car time0
))
202 (lo0 (car (cdr time0
)))
203 (lo1 (car (cdr time1
))))
209 (defun ls-lisp-format (file-name file-attr switches now
)
210 (let ((file-type (nth 0 file-attr
)))
211 (concat (if (memq ?i switches
) ; inode number
212 (format "%6d " (nth 10 file-attr
)))
213 ;; nil is treated like "" in concat
214 (if (memq ?s switches
) ; size in K
215 (format "%4d " (1+ (/ (nth 7 file-attr
) 1024))))
216 (nth 8 file-attr
) ; permission bits
217 ;; numeric uid/gid are more confusing than helpful
218 ;; Emacs should be able to make strings of them.
219 ;; user-login-name and user-full-name could take an
221 (format " %3d %-8s %-8s %8d "
222 (nth 1 file-attr
) ; no. of links
223 (if (= (user-uid) (nth 2 file-attr
))
225 (int-to-string (nth 2 file-attr
))) ; uid
226 (if (eq system-type
'ms-dos
)
227 "root" ; everything is root on MSDOS.
228 (int-to-string (nth 3 file-attr
))) ; gid
229 (nth 7 file-attr
) ; size in bytes
231 (ls-lisp-format-time file-attr switches now
)
234 (if (stringp file-type
) ; is a symbolic link
235 (concat " -> " file-type
)
240 (defun ls-lisp-time-index (switches)
241 ;; Return index into file-attributes according to ls SWITCHES.
243 ((memq ?c switches
) 6) ; last mode change
244 ((memq ?u switches
) 4) ; last access
245 ;; default is last modtime
248 (defun ls-lisp-format-time (file-attr switches now
)
249 ;; Format time string for file with attributes FILE-ATTR according
250 ;; to SWITCHES (a list of ls option letters of which c and u are recognized).
251 ;; Use the same method as `ls' to decide whether to show time-of-day or year,
252 ;; depending on distance between file date and NOW.
253 (let* ((time (nth (ls-lisp-time-index switches
) file-attr
))
254 (diff16 (- (car time
) (car now
)))
255 (diff (+ (ash diff16
16) (- (car (cdr time
)) (car (cdr now
)))))
256 (past-cutoff (- (* 6 30 24 60 60))) ; 6 30-day months
257 (future-cutoff (* 60 60))) ; 1 hour
260 (<= past-cutoff diff
) (<= diff future-cutoff
)
261 ;; Sanity check in case `diff' computation overflowed.
262 (<= (1- (ash past-cutoff -
16)) diff16
)
263 (<= diff16
(1+ (ash future-cutoff -
16))))
270 ;;; ls-lisp.el ends here