Mercurial > emacs
annotate lisp/find-lisp.el @ 74893:0140b806eb69
*** empty log message ***
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
---|---|
date | Mon, 25 Dec 2006 08:18:29 +0000 |
parents | 079dc7f49173 |
children | e3694f1cb928 f1d13e615070 |
rev | line source |
---|---|
38431
853c3674f20a
Fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37471
diff
changeset
|
1 ;;; find-lisp.el --- emulation of find in Emacs Lisp |
29696 | 2 |
38431
853c3674f20a
Fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37471
diff
changeset
|
3 ;; Author: Peter Breton |
29696 | 4 ;; Created: Fri Mar 26 1999 |
5 ;; Keywords: unix | |
6 | |
74437 | 7 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, |
68651
3bd95f4f2941
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
66829
diff
changeset
|
8 ;; 2005, 2006 Free Software Foundation, Inc. |
29696 | 9 |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64091 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
29696 | 26 |
27 ;;; Commentary: | |
28 ;; | |
29 ;; This is a very generalized form of find; it basically implements a | |
30 ;; recursive directory descent. The conditions which bound the search | |
31 ;; are expressed as predicates, and I have not addressed the question | |
32 ;; of how to wrap up the common chores that find does in a simpler | |
33 ;; format than writing code for all the various predicates. | |
34 ;; | |
35 ;; Some random thoughts are to express simple queries directly with | |
36 ;; user-level functions, and perhaps use some kind of forms interface | |
37 ;; for medium-level queries. Really complicated queries can be | |
38 ;; expressed in Lisp. | |
32116
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
39 ;; |
29696 | 40 |
41 ;;; Todo | |
42 ;; | |
43 ;; It would be nice if we could sort the results without running the find | |
44 ;; again. Maybe that could work by storing the original file attributes? | |
45 | |
46 ;;; Code: | |
47 | |
66775 | 48 (require 'dired) |
49 | |
65291
8dbff69aa3ac
(dired-buffers, dired-subdir-alist): Add defvars.
Juanma Barranquero <lekktu@gmail.com>
parents:
64762
diff
changeset
|
50 (defvar dired-buffers) |
8dbff69aa3ac
(dired-buffers, dired-subdir-alist): Add defvars.
Juanma Barranquero <lekktu@gmail.com>
parents:
64762
diff
changeset
|
51 (defvar dired-subdir-alist) |
8dbff69aa3ac
(dired-buffers, dired-subdir-alist): Add defvars.
Juanma Barranquero <lekktu@gmail.com>
parents:
64762
diff
changeset
|
52 |
29696 | 53 ;; Internal variables |
54 | |
55 (defvar find-lisp-regexp nil | |
56 "Internal variable.") | |
57 | |
58 (defconst find-lisp-line-indent " " | |
59 "Indentation for dired file lines.") | |
60 | |
61 (defvar find-lisp-file-predicate nil | |
62 "Predicate for choosing to include files.") | |
63 | |
64 (defvar find-lisp-directory-predicate nil | |
65 "Predicate for choosing to descend into directories.") | |
66 | |
67 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
68 ;; Debugging Code | |
69 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
70 | |
71 (defvar find-lisp-debug-buffer "*Find Lisp Debug*" | |
72 "Buffer for debugging information.") | |
73 | |
74 (defvar find-lisp-debug nil | |
75 "Whether debugging is enabled.") | |
76 | |
77 (defun find-lisp-debug-message (message) | |
78 "Print a debug message MESSAGE in `find-lisp-debug-buffer'." | |
79 (set-buffer (get-buffer-create find-lisp-debug-buffer)) | |
80 (goto-char (point-max)) | |
81 (insert message "\n")) | |
82 | |
83 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
84 ;; Directory and File predicates | |
85 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
86 | |
87 (defun find-lisp-default-directory-predicate (dir parent) | |
88 "True if DIR is not a dot file, and not a symlink. | |
89 PARENT is the parent directory of DIR." | |
90 (and find-lisp-debug | |
32116
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
91 (find-lisp-debug-message |
29696 | 92 (format "Processing directory %s in %s" dir parent))) |
93 ;; Skip current and parent directories | |
94 (not (or (string= dir ".") | |
95 (string= dir "..") | |
96 ;; Skip directories which are symlinks | |
97 ;; Easy way to circumvent recursive loops | |
98 (file-symlink-p dir)))) | |
99 | |
100 (defun find-lisp-default-file-predicate (file dir) | |
101 "True if FILE matches `find-lisp-regexp'. | |
102 DIR is the directory containing FILE." | |
103 (and find-lisp-debug | |
32116
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
104 (find-lisp-debug-message |
29696 | 105 (format "Processing file %s in %s" file dir))) |
106 (and (not (file-directory-p (expand-file-name file dir))) | |
107 (string-match find-lisp-regexp file))) | |
108 | |
109 (defun find-lisp-file-predicate-is-directory (file dir) | |
110 "True if FILE is a directory. | |
111 Argument DIR is the directory containing FILE." | |
112 (and find-lisp-debug | |
32116
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
113 (find-lisp-debug-message |
29696 | 114 (format "Processing file %s in %s" file dir))) |
115 (and (file-directory-p (expand-file-name file dir)) | |
116 (not (or (string= file ".") | |
117 (string= file ".."))))) | |
118 | |
119 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
120 ;; Find functions | |
121 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
122 | |
123 (defun find-lisp-find-files (directory regexp) | |
124 "Find files in DIRECTORY which match REGEXP." | |
125 (let ((file-predicate 'find-lisp-default-file-predicate) | |
126 (directory-predicate 'find-lisp-default-directory-predicate) | |
33710
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
127 (find-lisp-regexp regexp)) |
32116
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
128 (find-lisp-find-files-internal |
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
129 directory |
29696 | 130 file-predicate |
131 directory-predicate))) | |
132 | |
133 ;; Workhorse function | |
32116
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
134 (defun find-lisp-find-files-internal (directory file-predicate |
29696 | 135 directory-predicate) |
136 "Find files under DIRECTORY which satisfy FILE-PREDICATE. | |
32116
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
137 FILE-PREDICATE is a function which takes two arguments: the file and its |
29696 | 138 directory. |
139 | |
140 DIRECTORY-PREDICATE is used to decide whether to descend into directories. | |
141 It is a function which takes two arguments, the directory and its parent." | |
33710
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
142 (setq directory (file-name-as-directory directory)) |
29696 | 143 (let (results sub-results) |
33710
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
144 (dolist (file (directory-files directory nil nil t)) |
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
145 (let ((fullname (expand-file-name file directory))) |
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
146 (when (file-readable-p (expand-file-name file directory)) |
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
147 ;; If a directory, check it we should descend into it |
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
148 (and (file-directory-p fullname) |
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
149 (funcall directory-predicate file directory) |
29696 | 150 (progn |
33710
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
151 (setq sub-results |
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
152 (find-lisp-find-files-internal |
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
153 fullname |
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
154 file-predicate |
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
155 directory-predicate)) |
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
156 (if results |
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
157 (nconc results sub-results) |
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
158 (setq results sub-results)))) |
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
159 ;; For all files and directories, call the file predicate |
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
160 (and (funcall file-predicate file directory) |
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
161 (if results |
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
162 (nconc results (list fullname)) |
bec245584796
(find-lisp-find-files-internal):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32116
diff
changeset
|
163 (setq results (list fullname))))))) |
29696 | 164 results)) |
165 | |
166 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
167 ;; Find-dired all in Lisp | |
168 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
169 | |
37471
f335708a19f2
(find-lisp-find-dired-filter)
Eli Zaretskii <eliz@gnu.org>
parents:
33710
diff
changeset
|
170 ;;;###autoload |
29696 | 171 (defun find-lisp-find-dired (dir regexp) |
172 "Find files in DIR, matching REGEXP." | |
173 (interactive "DFind files in directory: \nsMatching regexp: ") | |
174 (let ((find-lisp-regexp regexp)) | |
175 (find-lisp-find-dired-internal | |
176 dir | |
177 'find-lisp-default-file-predicate | |
178 'find-lisp-default-directory-predicate | |
179 "*Find Lisp Dired*"))) | |
180 | |
181 ;; Just the subdirectories | |
37471
f335708a19f2
(find-lisp-find-dired-filter)
Eli Zaretskii <eliz@gnu.org>
parents:
33710
diff
changeset
|
182 ;;;###autoload |
29696 | 183 (defun find-lisp-find-dired-subdirectories (dir) |
184 "Find all subdirectories of DIR." | |
185 (interactive "DFind subdirectories of directory: ") | |
186 (find-lisp-find-dired-internal | |
187 dir | |
188 'find-lisp-file-predicate-is-directory | |
189 'find-lisp-default-directory-predicate | |
190 "*Find Lisp Dired Subdirectories*")) | |
191 | |
192 ;; Most of this is lifted from find-dired.el | |
32116
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
193 ;; |
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
194 (defun find-lisp-find-dired-internal (dir file-predicate |
29696 | 195 directory-predicate buffer-name) |
196 "Run find (Lisp version) and go into Dired mode on a buffer of the output." | |
197 (let ((dired-buffers dired-buffers) | |
198 buf | |
199 (regexp find-lisp-regexp)) | |
200 ;; Expand DIR ("" means default-directory), and make sure it has a | |
201 ;; trailing slash. | |
66775 | 202 (setq dir (file-name-as-directory (expand-file-name dir))) |
29696 | 203 ;; Check that it's really a directory. |
204 (or (file-directory-p dir) | |
205 (error "find-dired needs a directory: %s" dir)) | |
32116
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
206 (or |
29696 | 207 (and (buffer-name) |
208 (string= buffer-name (buffer-name))) | |
209 (switch-to-buffer (setq buf (get-buffer-create buffer-name)))) | |
210 (widen) | |
211 (kill-all-local-variables) | |
212 (setq buffer-read-only nil) | |
213 (erase-buffer) | |
214 (setq default-directory dir) | |
215 (dired-mode dir) | |
216 | |
217 (use-local-map (append (make-sparse-keymap) (current-local-map))) | |
218 | |
219 (make-local-variable 'find-lisp-file-predicate) | |
220 (setq find-lisp-file-predicate file-predicate) | |
221 (make-local-variable 'find-lisp-directory-predicate) | |
222 (setq find-lisp-directory-predicate directory-predicate) | |
223 (make-local-variable 'find-lisp-regexp) | |
224 (setq find-lisp-regexp regexp) | |
225 | |
226 (make-local-variable 'revert-buffer-function) | |
227 (setq revert-buffer-function | |
228 (function | |
229 (lambda(ignore1 ignore2) | |
32116
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
230 (find-lisp-insert-directory |
29696 | 231 default-directory |
232 find-lisp-file-predicate | |
233 find-lisp-directory-predicate | |
234 'ignore) | |
235 ) | |
236 )) | |
237 | |
238 ;; Set subdir-alist so that Tree Dired will work: | |
239 (if (fboundp 'dired-simple-subdir-alist) | |
240 ;; will work even with nested dired format (dired-nstd.el,v 1.15 | |
241 ;; and later) | |
242 (dired-simple-subdir-alist) | |
243 ;; else we have an ancient tree dired (or classic dired, where | |
32116
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
244 ;; this does no harm) |
29696 | 245 (set (make-local-variable 'dired-subdir-alist) |
246 (list (cons default-directory (point-min-marker))))) | |
32116
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
247 (find-lisp-insert-directory |
29696 | 248 dir file-predicate directory-predicate 'ignore) |
249 (goto-char (point-min)) | |
250 (dired-goto-next-file))) | |
251 | |
32116
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
252 (defun find-lisp-insert-directory (dir |
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
253 file-predicate |
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
254 directory-predicate |
29696 | 255 sort-function) |
256 "Insert the results of `find-lisp-find-files' in the current buffer." | |
257 (let ((buffer-read-only nil) | |
32116
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
258 (files (find-lisp-find-files-internal |
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
259 dir |
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
260 file-predicate |
29696 | 261 directory-predicate)) |
262 (len (length dir))) | |
263 (erase-buffer) | |
264 ;; Subdir headlerline must come first because the first marker in | |
265 ;; subdir-alist points there. | |
266 (insert find-lisp-line-indent dir ":\n") | |
267 ;; Make second line a ``find'' line in analogy to the ``total'' or | |
32116
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
268 ;; ``wildcard'' line. |
29696 | 269 ;; |
270 ;; No analog for find-lisp? | |
271 (insert find-lisp-line-indent "\n") | |
272 ;; Run the find function | |
273 (mapcar | |
274 (function | |
275 (lambda(file) | |
32116
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
276 (find-lisp-find-dired-insert-file |
29696 | 277 (substring file len) |
278 (current-buffer)))) | |
279 (sort files 'string-lessp)) | |
280 ;; FIXME: Sort function is ignored for now | |
281 ;; (funcall sort-function files)) | |
282 (goto-char (point-min)) | |
283 (dired-goto-next-file))) | |
284 | |
37471
f335708a19f2
(find-lisp-find-dired-filter)
Eli Zaretskii <eliz@gnu.org>
parents:
33710
diff
changeset
|
285 ;;;###autoload |
29696 | 286 (defun find-lisp-find-dired-filter (regexp) |
287 "Change the filter on a find-lisp-find-dired buffer to REGEXP." | |
288 (interactive "sSet filter to regexp: ") | |
289 (setq find-lisp-regexp regexp) | |
290 (revert-buffer)) | |
291 | |
292 (defun find-lisp-find-dired-insert-file (file buffer) | |
293 (set-buffer buffer) | |
32116
3f09592bbc80
* find-lisp.el (find-lisp-find-files-internal):
Peter Breton <pbreton@attbi.com>
parents:
29696
diff
changeset
|
294 (insert find-lisp-line-indent |
66829
dce32a0d407f
(find-lisp-find-dired-insert-file): Pass 'string arg to `file-attributes'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
66775
diff
changeset
|
295 (find-lisp-format file (file-attributes file 'string) (list "") |
29696 | 296 (current-time)))) |
297 | |
298 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
299 ;; Lifted from ls-lisp. We don't want to require it, because that | |
300 ;; would alter the insert-directory function. | |
301 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
302 | |
303 (defun find-lisp-format (file-name file-attr switches now) | |
304 (let ((file-type (nth 0 file-attr))) | |
305 (concat (if (memq ?i switches) ; inode number | |
306 (format "%6d " (nth 10 file-attr))) | |
307 ;; nil is treated like "" in concat | |
308 (if (memq ?s switches) ; size in K | |
309 (format "%4d " (1+ (/ (nth 7 file-attr) 1024)))) | |
310 (nth 8 file-attr) ; permission bits | |
311 (format " %3d %-8s %-8s %8d " | |
312 (nth 1 file-attr) ; no. of links | |
66829
dce32a0d407f
(find-lisp-find-dired-insert-file): Pass 'string arg to `file-attributes'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
66775
diff
changeset
|
313 (if (numberp (nth 2 file-attr)) |
dce32a0d407f
(find-lisp-find-dired-insert-file): Pass 'string arg to `file-attributes'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
66775
diff
changeset
|
314 (int-to-string (nth 2 file-attr)) |
dce32a0d407f
(find-lisp-find-dired-insert-file): Pass 'string arg to `file-attributes'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
66775
diff
changeset
|
315 (nth 2 file-attr)) ; uid |
29696 | 316 (if (eq system-type 'ms-dos) |
317 "root" ; everything is root on MSDOS. | |
66829
dce32a0d407f
(find-lisp-find-dired-insert-file): Pass 'string arg to `file-attributes'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
66775
diff
changeset
|
318 (if (numberp (nth 3 file-attr)) |
dce32a0d407f
(find-lisp-find-dired-insert-file): Pass 'string arg to `file-attributes'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
66775
diff
changeset
|
319 (int-to-string (nth 3 file-attr)) |
dce32a0d407f
(find-lisp-find-dired-insert-file): Pass 'string arg to `file-attributes'.
Luc Teirlinck <teirllm@auburn.edu>
parents:
66775
diff
changeset
|
320 (nth 3 file-attr))) ; gid |
29696 | 321 (nth 7 file-attr) ; size in bytes |
322 ) | |
323 (find-lisp-format-time file-attr switches now) | |
324 " " | |
325 file-name | |
326 (if (stringp file-type) ; is a symbolic link | |
327 (concat " -> " file-type) | |
328 "") | |
329 "\n"))) | |
330 | |
331 (defun find-lisp-time-index (switches) | |
332 ;; Return index into file-attributes according to ls SWITCHES. | |
333 (cond | |
334 ((memq ?c switches) 6) ; last mode change | |
335 ((memq ?u switches) 4) ; last access | |
336 ;; default is last modtime | |
337 (t 5))) | |
338 | |
339 (defun find-lisp-format-time (file-attr switches now) | |
340 ;; Format time string for file with attributes FILE-ATTR according | |
341 ;; to SWITCHES (a list of ls option letters of which c and u are recognized). | |
342 ;; Use the same method as `ls' to decide whether to show time-of-day or year, | |
343 ;; depending on distance between file date and NOW. | |
344 (let* ((time (nth (find-lisp-time-index switches) file-attr)) | |
345 (diff16 (- (car time) (car now))) | |
346 (diff (+ (ash diff16 16) (- (car (cdr time)) (car (cdr now))))) | |
347 (past-cutoff (- (* 6 30 24 60 60))) ; 6 30-day months | |
348 (future-cutoff (* 60 60))) ; 1 hour | |
349 (format-time-string | |
350 (if (and | |
351 (<= past-cutoff diff) (<= diff future-cutoff) | |
352 ;; Sanity check in case `diff' computation overflowed. | |
353 (<= (1- (ash past-cutoff -16)) diff16) | |
354 (<= diff16 (1+ (ash future-cutoff -16)))) | |
355 "%b %e %H:%M" | |
356 "%b %e %Y") | |
357 time))) | |
358 | |
359 (provide 'find-lisp) | |
360 | |
52401 | 361 ;;; arch-tag: a711374c-f12a-46f6-aa18-ba7d77b9602a |
38431
853c3674f20a
Fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37471
diff
changeset
|
362 ;;; find-lisp.el ends here |