1 /* fast dired replacement routines for mswindows.
2 Copyright (C) 1998 Darryl Okahata
3 Portions Copyright (C) 1992, 1994 by Sebastian Kremer <sk@thp.uni-koeln.de>
5 This file is part of XEmacs.
7 XEmacs is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 2, or (at your option) any
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with XEmacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* Synched up with: Not in FSF. */
25 * Parts of this code (& comments) were taken from ls-lisp.el
26 * Author: Sebastian Kremer <sk@thp.uni-koeln.de>
31 * - must insert _exactly_one_line_ describing FILE if WILDCARD and
32 * FULL-DIRECTORY-P is nil.
33 * The single line of output must display FILE's name as it was
34 * given, namely, an absolute path name.
35 * - must insert exactly one line for each file if WILDCARD or
36 * FULL-DIRECTORY-P is t, plus one optional "total" line
37 * before the file lines, plus optional text after the file lines.
38 * Lines are delimited by "\n", so filenames containing "\n" are not
40 * File lines should display the basename.
41 * - must be consistent with
42 * - functions dired-move-to-filename, (these two define what a file line is)
43 * dired-move-to-end-of-filename,
44 * dired-between-files, (shortcut for (not (dired-move-to-filename)))
45 * dired-insert-headerline
46 * dired-after-subdir-garbage (defines what a "total" line is)
47 * - variable dired-subdir-regexp
51 * Insert directory listing for FILE, formatted according to SWITCHES.
52 * Leaves point after the inserted text.
53 * SWITCHES may be a string of options, or a list of strings.
54 * Optional third arg WILDCARD means treat FILE as shell wildcard.
55 * Optional fourth arg FULL-DIRECTORY-P means file is a directory and
56 * switches do not contain `d', so that a full listing is expected.
58 * This works by running a directory listing program
59 * whose name is in the variable `insert-directory-program'.
60 * If WILDCARD, it also runs the shell specified by `shell-file-name'."
64 * Set INDENT_LISTING to non-zero if the inserted text should be shifted
67 #define INDENT_LISTING 0
69 #define ROUND_FILE_SIZES 4096
84 #include <winsock.h> /* To make nt.h happy */
85 #include "nt.h" /* For prototypes */
87 #if ROUND_FILE_SIZES > 0
88 #include <math.h> /* for floor() */
92 static int mswindows_ls_sort_case_insensitive;
93 static Fixnum mswindows_ls_round_file_size;
95 Lisp_Object Qmswindows_insert_directory;
97 extern Lisp_Object Vmswindows_downcase_file_names; /* in device-msw.c */
101 enum mswindows_sortby {
102 MSWINDOWS_SORT_BY_NAME,
103 MSWINDOWS_SORT_BY_NAME_NOCASE,
104 MSWINDOWS_SORT_BY_MOD_DATE,
105 MSWINDOWS_SORT_BY_SIZE
109 static enum mswindows_sortby mswindows_sort_method;
110 static int mswindows_reverse_sort;
113 #define CMPDWORDS(t1a, t1b, t2a, t2b) \
114 (((t1a) == (t2a)) ? (((t1b) == (t2b)) ? 0 : (((t1b) < (t2b)) ? -1 : 1)) \
115 : (((t1a) < (t2a)) ? -1 : 1))
119 mswindows_ls_sort_fcn (const void *elem1, const void *elem2)
121 WIN32_FIND_DATA *e1, *e2;
124 e1 = *(WIN32_FIND_DATA **)elem1;
125 e2 = *(WIN32_FIND_DATA **)elem2;
126 switch (mswindows_sort_method)
128 case MSWINDOWS_SORT_BY_NAME:
129 status = strcmp(e1->cFileName, e2->cFileName);
131 case MSWINDOWS_SORT_BY_NAME_NOCASE:
132 status = _stricmp(e1->cFileName, e2->cFileName);
134 case MSWINDOWS_SORT_BY_MOD_DATE:
135 status = CMPDWORDS(e1->ftLastWriteTime.dwHighDateTime,
136 e1->ftLastWriteTime.dwLowDateTime,
137 e2->ftLastWriteTime.dwHighDateTime,
138 e2->ftLastWriteTime.dwLowDateTime);
140 case MSWINDOWS_SORT_BY_SIZE:
141 status = CMPDWORDS(e1->nFileSizeHigh, e1->nFileSizeLow,
142 e2->nFileSizeHigh, e2->nFileSizeLow);
148 if (mswindows_reverse_sort)
157 mswindows_sort_files (WIN32_FIND_DATA **files, int nfiles,
158 enum mswindows_sortby sort_by, int reverse)
160 mswindows_sort_method = sort_by;
161 mswindows_reverse_sort = reverse;
162 qsort(files, nfiles, sizeof(WIN32_FIND_DATA *), mswindows_ls_sort_fcn);
166 static WIN32_FIND_DATA *
167 mswindows_get_files (char *dirfile, int nowild, Lisp_Object pattern,
168 int hide_dot, int hide_system, int *nfiles)
170 WIN32_FIND_DATA *files;
172 struct re_pattern_buffer *bufp = NULL;
174 char win32pattern[MAXNAMLEN+3];
179 * Much of the following code and comments were taken from dired.c.
180 * Yes, this is something of a waste, but we want speed, speed, SPEED.
183 array_size = *nfiles = 0;
188 /* PATTERN might be a flawed regular expression. Rather than
189 catching and signalling our own errors, we just call
190 compile_pattern to do the work for us. */
191 bufp = compile_pattern (pattern, 0, Qnil, 0, ERROR_ME);
193 /* Now *bufp is the compiled form of PATTERN; don't call anything
194 which might compile a new regexp until we're done with the loop! */
196 /* Initialize file info array */
197 array_size = 100; /* initial size */
198 files = xmalloc(array_size * sizeof (WIN32_FIND_DATA));
200 /* for Win32, we need to insure that the pathname ends with "\*". */
201 strcpy (win32pattern, dirfile);
204 len = strlen (win32pattern) - 1;
205 if (!IS_DIRECTORY_SEP (win32pattern[len]))
206 strcat (win32pattern, "\\");
207 strcat (win32pattern, "*");
211 * Here, we use FindFirstFile()/FindNextFile() instead of opendir(),
212 * xemacs_stat(), & friends, because xemacs_stat() is VERY expensive in
213 * terms of time. Hence, we take the time to write complicated
214 * Win32-specific code, instead of simple Unix-style stuff.
217 fh = INVALID_HANDLE_VALUE;
218 errm = SetErrorMode (SEM_FAILCRITICALERRORS
219 | SEM_NOOPENFILEERRORBOX);
227 if (fh == INVALID_HANDLE_VALUE)
229 fh = FindFirstFile(win32pattern, &files[findex]);
230 if (fh == INVALID_HANDLE_VALUE)
233 report_file_error ("Opening directory",
234 list1(build_string(dirfile)));
239 if (!FindNextFile(fh, &files[findex]))
241 if (GetLastError() == ERROR_NO_MORE_FILES)
247 report_file_error ("Reading directory",
248 list1(build_string(dirfile)));
252 filename = files[findex].cFileName;
253 if (!NILP(Vmswindows_downcase_file_names))
257 len = strlen(filename);
258 result = (NILP(pattern)
259 || (0 <= re_search (bufp, filename,
263 if ( ! (filename[0] == '.' &&
264 ((hide_system && (filename[1] == '\0' ||
265 (filename[1] == '.' &&
266 filename[2] == '\0'))) ||
269 if (++findex >= array_size)
271 array_size = findex * 2;
272 files = xrealloc(files,
273 array_size * sizeof(WIN32_FIND_DATA));
278 if (fh != INVALID_HANDLE_VALUE)
292 mswindows_format_file (WIN32_FIND_DATA *file, char *buf, int display_size,
300 len = strlen(file->cFileName);
302 file->nFileSizeHigh * (double)UINT_MAX + file->nFileSizeLow;
310 sprintf(cptr, "%6d ", (int)((file_size + 1023.) / 1024.));
313 if (file->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
319 cptr[0] = cptr[3] = cptr[6] = 'r';
320 if (file->dwFileAttributes & FILE_ATTRIBUTE_READONLY)
322 cptr[1] = cptr[4] = cptr[7] = '-';
324 cptr[1] = cptr[4] = cptr[7] = 'w';
326 if ((file->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) ||
328 (_stricmp(&file->cFileName[len - 4], ".exe") == 0
329 || _stricmp(&file->cFileName[len - 4], ".com") == 0
330 || _stricmp(&file->cFileName[len - 4], ".bat") == 0
332 || _stricmp(&file->cFileName[len - 4], ".pif") == 0
336 cptr[2] = cptr[5] = cptr[8] = 'x';
338 cptr[2] = cptr[5] = cptr[8] = '-';
341 if (file->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
348 luser = Fuser_login_name(Qnil);
351 sprintf(cptr, "%-9d", 0);
355 str = XSTRING_DATA(luser);
356 sprintf(cptr, "%-8s ", str);
362 sprintf(cptr, "%-8d ", getgid());
364 if (file_size > 99999999.0)
366 file_size = (file_size + 1023.0) / 1024.;
367 if (file_size > 999999.0)
369 sprintf(cptr, "%6.0fMB ", (file_size + 1023.0) / 1024.);
371 sprintf(cptr, "%6.0fKB ", file_size);
374 sprintf(cptr, "%8.0f ", file_size);
383 extern char *sys_ctime(const time_t *t); /* in nt.c */
389 * This code should be correct ...
391 FileTimeToLocalFileTime(&file->ftLastWriteTime, &localtime) &&
392 ((t = convert_time(localtime)) != 0) &&
395 * But this code "works" ...
397 ((t = convert_time(file->ftLastWriteTime)) != 0) &&
399 ((ctimebuf = sys_ctime(&t)) != NULL))
401 memcpy(cptr, &ctimebuf[4], 7);
403 if (now - t > (365. / 2.0) * 86400.)
405 /* more than 6 months */
407 memcpy(&cptr[8], &ctimebuf[20], 4);
409 /* less than 6 months */
410 memcpy(&cptr[7], &ctimebuf[11], 5);
418 sprintf(cptr, "%s\n", file->cFileName);
422 strcpy(cptr, file->cFileName);
427 DEFUN ("mswindows-insert-directory", Fmswindows_insert_directory, 2, 4, 0, /*
428 Insert directory listing for FILE, formatted according to SWITCHES.
429 Leaves point after the inserted text.
430 SWITCHES may be a string of options, or a list of strings.
431 Optional third arg WILDCARD means treat FILE as shell wildcard.
432 Optional fourth arg FULL-DIRECTORY-P means file is a directory and
433 switches do not contain `d', so that a full listing is expected.
435 (file, switches, wildcard, full_directory_p))
437 Lisp_Object result, handler, wildpat, fns, basename;
440 int hide_system, hide_dot, reverse, display_size;
441 WIN32_FIND_DATA *files, **sorted_files;
442 enum mswindows_sortby sort_by;
443 char fmtbuf[MAXNAMLEN+100]; /* larger than necessary */
444 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
450 GCPRO5(result, file, wildpat, fns, basename);
457 sort_by = (mswindows_ls_sort_case_insensitive
458 ? MSWINDOWS_SORT_BY_NAME_NOCASE
459 : MSWINDOWS_SORT_BY_NAME);
463 handler = Ffind_file_name_handler (file, Qmswindows_insert_directory);
466 result = call5(handler, Qmswindows_insert_directory, file, switches,
467 wildcard, full_directory_p);
475 CHECK_STRING (switches);
476 switchstr = XSTRING_DATA(switches);
477 for (cptr = switchstr; *cptr; ++cptr)
495 sort_by = MSWINDOWS_SORT_BY_SIZE;
498 sort_by = MSWINDOWS_SORT_BY_MOD_DATE;
508 file = Fdirectory_file_name (file);
509 basename = Ffile_name_nondirectory(file);
510 fns = intern("wildcard-to-regexp");
511 wildpat = call1(fns, basename);
512 newfile = Ffile_name_directory(file);
515 /* Ffile_name_directory() can GC */
516 newfile = Ffile_name_directory(Fexpand_file_name(file, Qnil));
520 if (!NILP(wildcard) || !NILP(full_directory_p))
525 CHECK_STRING(wildpat);
528 files = mswindows_get_files(XSTRING_DATA(file), FALSE, wildpat,
529 hide_dot, hide_system, &nfiles);
530 if (files == NULL || nfiles == 0)
537 files = mswindows_get_files(XSTRING_DATA(file), TRUE, wildpat,
538 hide_dot, hide_system, &nfiles);
540 if ((sorted_files = xmalloc(nfiles * sizeof(WIN32_FIND_DATA *)))
545 for (i = 0; i < nfiles; ++i)
547 sorted_files[i] = &files[i];
551 mswindows_sort_files(sorted_files, nfiles, sort_by, reverse);
553 if (!NILP(wildcard) || !NILP(full_directory_p))
556 * By using doubles, we can handle files up to 2^53 bytes in
557 * size (IEEE doubles have 53 bits of resolution). However,
558 * as we divide by 1024 (or 2^10), the total size is
559 * accurate up to 2^(53+10) --> 2^63 bytes.
561 * Hopefully, we won't have to handle these file sizes anytime
564 double total_size, file_size, block_size;
566 if ((block_size = mswindows_ls_round_file_size) <= 0)
571 for (i = 0; i < nfiles; ++i)
574 sorted_files[i]->nFileSizeHigh * (double)UINT_MAX +
575 sorted_files[i]->nFileSizeLow;
579 * Round file_size up to the next nearest block size.
582 floor((file_size + block_size - 1) / block_size)
585 /* Here, we round to the nearest 1K */
586 total_size += floor((file_size + 512.) / 1024.);
590 /* ANSI C compilers auto-concatenate adjacent strings */
593 "total %.0f\n", total_size);
594 buffer_insert1(current_buffer, build_string(fmtbuf));
596 for (i = 0; i < nfiles; ++i)
598 mswindows_format_file(sorted_files[i], fmtbuf, display_size, TRUE);
599 buffer_insert1(current_buffer, build_string(fmtbuf));
613 /************************************************************************/
615 /************************************************************************/
618 syms_of_dired_mswindows (void)
620 defsymbol (&Qmswindows_insert_directory, "mswindows-insert-directory");
622 DEFSUBR (Fmswindows_insert_directory);
627 vars_of_dired_mswindows (void)
629 DEFVAR_BOOL ("mswindows-ls-sort-case-insensitive", &mswindows_ls_sort_case_insensitive /*
630 *Non-nil means filenames are sorted in a case-insensitive fashion.
631 Nil means filenames are sorted in a case-sensitive fashion, just like Unix.
633 mswindows_ls_sort_case_insensitive = 1;
635 DEFVAR_INT ("mswindows-ls-round-file-size", &mswindows_ls_round_file_size /*
636 *If non-zero, file sizes are rounded in terms of this block size when
637 the file totals are being calculated. This is useful for getting a more
638 accurate estimate of allocated disk space. Note that this only affects
639 the total size calculation; the individual displayed file sizes are not
640 changed. This block size should also be a power of 2 (but this is not
641 enforced), as filesystem block (cluster) sizes are typically powers-of-2.
644 * Here, we choose 4096 because it's the cluster size for both FAT32
645 * and NTFS (?). This is probably much too small for people using
646 * plain FAT, but, hopefully, plain FAT will go away someday.
648 * We should allow something like a alist here, to make the size
649 * dependent on the drive letter, etc..
651 mswindows_ls_round_file_size = 4096;