2 Copyright (C) 1994, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
3 2006, 2007 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
20 * \brief Source: directory routines
31 #include "../src/tty/tty.h"
34 #include "treestore.h"
37 #include "../src/search/search.h"
39 /* If true show files starting with a dot */
40 int show_dot_files
= 1;
42 /* If true show files ending in ~ */
45 /* If false then directories are shown separately from files */
46 int mix_all_files
= 0;
49 * If true, SI units (1000 based) will be used for
50 * larger units (kilobyte, megabyte, ...).
51 * If false binary units (1024 based) will be used.
56 static int reverse
= 1;
58 /* Are the files sorted case sensitively? */
59 static int case_sensitive
= OS_SORT_CASE_SENSITIVE_DEFAULT
;
61 /* Are the exec_bit files top in list*/
62 static int exec_first
= 1;
64 #define MY_ISDIR(x) ( (is_exe (x->st.st_mode) && !(S_ISDIR (x->st.st_mode) || x->f.link_to_dir) && (exec_first == 1)) ? 1 : ( (S_ISDIR (x->st.st_mode) || x->f.link_to_dir) ? 2 : 0) )
66 sort_orders_t sort_orders [SORT_TYPES_TOTAL] = {
67 { N_("&Unsorted"), unsorted },
68 { N_("&Name"), sort_name },
69 { N_("&Extension"), sort_ext },
70 { N_("&Modify time"), sort_time },
71 { N_("&Access time"), sort_atime },
72 { N_("C&Hange time"), sort_ctime },
73 { N_("&Size"), sort_size },
74 { N_("&Inode"), sort_inode },
79 unsorted (file_entry
*a
, file_entry
*b
)
87 sort_name (file_entry
*a
, file_entry
*b
)
89 int ad
= MY_ISDIR (a
);
90 int bd
= MY_ISDIR (b
);
92 if (ad
== bd
|| mix_all_files
) {
93 /* create key if does not exist, key will be freed after sorting */
94 if (a
->sort_key
== NULL
)
95 a
->sort_key
= str_create_key_for_filename (a
->fname
, case_sensitive
);
96 if (b
->sort_key
== NULL
)
97 b
->sort_key
= str_create_key_for_filename (b
->fname
, case_sensitive
);
99 return str_key_collate (a
->sort_key
, b
->sort_key
, case_sensitive
)
106 sort_ext (file_entry
*a
, file_entry
*b
)
109 int ad
= MY_ISDIR (a
);
110 int bd
= MY_ISDIR (b
);
112 if (ad
== bd
|| mix_all_files
){
113 if (a
->second_sort_key
== NULL
)
114 a
->second_sort_key
= str_create_key (extension (a
->fname
), case_sensitive
);
115 if (b
->second_sort_key
== NULL
)
116 b
->second_sort_key
= str_create_key (extension (b
->fname
), case_sensitive
);
118 r
= str_key_collate (a
->second_sort_key
, b
->second_sort_key
, case_sensitive
);
122 return sort_name (a
, b
);
128 sort_time (file_entry
*a
, file_entry
*b
)
130 int ad
= MY_ISDIR (a
);
131 int bd
= MY_ISDIR (b
);
133 if (ad
== bd
|| mix_all_files
) {
134 int result
= a
->st
.st_mtime
< b
->st
.st_mtime
? -1 :
135 a
->st
.st_mtime
> b
->st
.st_mtime
;
137 return result
* reverse
;
139 return sort_name (a
, b
);
146 sort_ctime (file_entry
*a
, file_entry
*b
)
148 int ad
= MY_ISDIR (a
);
149 int bd
= MY_ISDIR (b
);
151 if (ad
== bd
|| mix_all_files
) {
152 int result
= a
->st
.st_ctime
< b
->st
.st_ctime
? -1 :
153 a
->st
.st_ctime
> b
->st
.st_ctime
;
155 return result
* reverse
;
157 return sort_name (a
, b
);
164 sort_atime (file_entry
*a
, file_entry
*b
)
166 int ad
= MY_ISDIR (a
);
167 int bd
= MY_ISDIR (b
);
169 if (ad
== bd
|| mix_all_files
) {
170 int result
= a
->st
.st_atime
< b
->st
.st_atime
? -1 :
171 a
->st
.st_atime
> b
->st
.st_atime
;
173 return result
* reverse
;
175 return sort_name (a
, b
);
182 sort_inode (file_entry
*a
, file_entry
*b
)
184 int ad
= MY_ISDIR (a
);
185 int bd
= MY_ISDIR (b
);
187 if (ad
== bd
|| mix_all_files
)
188 return (a
->st
.st_ino
- b
->st
.st_ino
) * reverse
;
194 sort_size (file_entry
*a
, file_entry
*b
)
196 int ad
= MY_ISDIR (a
);
197 int bd
= MY_ISDIR (b
);
200 if (ad
!= bd
&& !mix_all_files
)
203 result
= a
->st
.st_size
< b
->st
.st_size
? -1 :
204 a
->st
.st_size
> b
->st
.st_size
;
206 return result
* reverse
;
208 return sort_name (a
, b
);
211 /* clear keys, should be call after sorting is finished */
213 clean_sort_keys (dir_list
*list
, int start
, int count
)
217 for (i
= 0; i
< count
; i
++){
218 str_release_key (list
->list
[i
+ start
].sort_key
, case_sensitive
);
219 list
->list
[i
+ start
].sort_key
= NULL
;
220 str_release_key (list
->list
[i
+ start
].second_sort_key
, case_sensitive
);
221 list
->list
[i
+ start
].second_sort_key
= NULL
;
227 do_sort (dir_list
*list
, sortfn
*sort
, int top
, int reverse_f
, int case_sensitive_f
, int exec_first_f
)
229 int dot_dot_found
= 0;
234 /* If there is an ".." entry the caller must take care to
235 ensure that it occupies the first list element. */
236 if (!strcmp (list
->list
[0].fname
, ".."))
239 reverse
= reverse_f
? -1 : 1;
240 case_sensitive
= case_sensitive_f
;
241 exec_first
= exec_first_f
;
242 qsort (&(list
->list
) [dot_dot_found
],
243 top
+ 1 - dot_dot_found
, sizeof (file_entry
), sort
);
245 clean_sort_keys (list
, dot_dot_found
, top
+ 1 - dot_dot_found
);
249 clean_dir (dir_list
*list
, int count
)
253 for (i
= 0; i
< count
; i
++){
254 g_free (list
->list
[i
].fname
);
255 list
->list
[i
].fname
= NULL
;
260 add_dotdot_to_list (dir_list
*list
, int index
)
262 /* Need to grow the *list? */
263 if (index
== list
->size
) {
264 list
->list
= g_realloc (list
->list
, sizeof (file_entry
) *
265 (list
->size
+ RESIZE_STEPS
));
268 list
->size
+= RESIZE_STEPS
;
271 memset (&(list
->list
) [index
], 0, sizeof(file_entry
));
272 (list
->list
) [index
].fnamelen
= 2;
273 (list
->list
) [index
].fname
= g_strdup ("..");
274 (list
->list
) [index
].f
.link_to_dir
= 0;
275 (list
->list
) [index
].f
.stale_link
= 0;
276 (list
->list
) [index
].f
.dir_size_computed
= 0;
277 (list
->list
) [index
].f
.marked
= 0;
278 (list
->list
) [index
].st
.st_mode
= 040755;
282 /* Used to set up a directory list when there is no access to a directory */
284 set_zero_dir (dir_list
*list
)
286 return (add_dotdot_to_list (list
, 0));
289 /* If you change handle_dirent then check also handle_path. */
290 /* Return values: -1 = failure, 0 = don't add, 1 = add to the list */
292 handle_dirent (dir_list
*list
, const char *filter
, struct dirent
*dp
,
293 struct stat
*buf1
, int next_free
, int *link_to_dir
,
296 if (dp
->d_name
[0] == '.' && dp
->d_name
[1] == 0)
298 if (dp
->d_name
[0] == '.' && dp
->d_name
[1] == '.' && dp
->d_name
[2] == 0)
300 if (!show_dot_files
&& (dp
->d_name
[0] == '.'))
302 if (!show_backups
&& dp
->d_name
[NLENGTH (dp
) - 1] == '~')
304 if (mc_lstat (dp
->d_name
, buf1
) == -1) {
306 * lstat() fails - such entries should be identified by
307 * buf1->st_mode being 0.
308 * It happens on QNX Neutrino for /fs/cd0 if no CD is inserted.
310 memset (buf1
, 0, sizeof (*buf1
));
313 if (S_ISDIR (buf1
->st_mode
))
314 tree_store_mark_checked (dp
->d_name
);
316 /* A link to a file or a directory? */
319 if (S_ISLNK (buf1
->st_mode
)) {
321 if (!mc_stat (dp
->d_name
, &buf2
))
322 *link_to_dir
= S_ISDIR (buf2
.st_mode
) != 0;
326 if (!(S_ISDIR (buf1
->st_mode
) || *link_to_dir
) && filter
327 && !mc_search(filter
, dp
->d_name
, MC_SEARCH_T_GLOB
) )
330 /* Need to grow the *list? */
331 if (next_free
== list
->size
) {
333 g_realloc (list
->list
,
334 sizeof (file_entry
) * (list
->size
+ RESIZE_STEPS
));
337 list
->size
+= RESIZE_STEPS
;
342 /* handle_path is a simplified handle_dirent. The difference is that
343 handle_path doesn't pay attention to show_dot_files and show_backups.
344 Moreover handle_path can't be used with a filemask.
345 If you change handle_path then check also handle_dirent. */
346 /* Return values: -1 = failure, 0 = don't add, 1 = add to the list */
348 handle_path (dir_list
*list
, const char *path
,
349 struct stat
*buf1
, int next_free
, int *link_to_dir
,
352 if (path
[0] == '.' && path
[1] == 0)
354 if (path
[0] == '.' && path
[1] == '.' && path
[2] == 0)
356 if (mc_lstat (path
, buf1
) == -1)
359 if (S_ISDIR (buf1
->st_mode
))
360 tree_store_mark_checked (path
);
362 /* A link to a file or a directory? */
365 if (S_ISLNK(buf1
->st_mode
)){
367 if (!mc_stat (path
, &buf2
))
368 *link_to_dir
= S_ISDIR(buf2
.st_mode
) != 0;
373 /* Need to grow the *list? */
374 if (next_free
== list
->size
){
375 list
->list
= g_realloc (list
->list
, sizeof (file_entry
) *
376 (list
->size
+ RESIZE_STEPS
));
379 list
->size
+= RESIZE_STEPS
;
385 do_load_dir (const char *path
, dir_list
*list
, sortfn
*sort
, int reverse
,
386 int case_sensitive
, int exec_ff
, const char *filter
)
390 int status
, link_to_dir
, stale_link
;
394 /* ".." (if any) must be the first entry in the list */
395 if (set_zero_dir (list
) == 0)
399 dirp
= mc_opendir (path
);
401 message (D_ERROR
, MSG_ERROR
, _("Cannot read directory contents"));
404 tree_store_start_check (path
);
405 /* Do not add a ".." entry to the root directory */
406 if (!strcmp (path
, "/"))
408 while ((dp
= mc_readdir (dirp
))) {
410 handle_dirent (list
, filter
, dp
, &st
, next_free
, &link_to_dir
,
415 tree_store_end_check ();
419 list
->list
[next_free
].fnamelen
= NLENGTH (dp
);
420 list
->list
[next_free
].fname
= g_strdup (dp
->d_name
);
421 list
->list
[next_free
].f
.marked
= 0;
422 list
->list
[next_free
].f
.link_to_dir
= link_to_dir
;
423 list
->list
[next_free
].f
.stale_link
= stale_link
;
424 list
->list
[next_free
].f
.dir_size_computed
= 0;
425 list
->list
[next_free
].st
= st
;
426 list
->list
[next_free
].sort_key
= NULL
;
427 list
->list
[next_free
].second_sort_key
= NULL
;
429 if (!(next_free
% 32))
434 do_sort (list
, sort
, next_free
- 1, reverse
, case_sensitive
, exec_ff
);
438 tree_store_end_check ();
443 link_isdir (const file_entry
*file
)
445 if (file
->f
.link_to_dir
)
452 if_link_is_exe (const char *full_name
, const file_entry
*file
)
456 if (S_ISLNK (file
->st
.st_mode
) && !mc_stat (full_name
, &b
)) {
457 return is_exe (b
.st_mode
);
462 static dir_list dir_copy
= { 0, 0 };
465 alloc_dir_copy (int size
)
469 if (dir_copy
.size
< size
){
472 for (i
= 0; i
< dir_copy
.size
; i
++) {
473 g_free (dir_copy
.list
[i
].fname
);
475 g_free (dir_copy
.list
);
479 dir_copy
.list
= g_new (file_entry
, size
);
480 for (i
= 0; i
< size
; i
++) {
481 dir_copy
.list
[i
].fname
= NULL
;
482 dir_copy
.list
[i
].sort_key
= NULL
;
483 dir_copy
.list
[i
].second_sort_key
= NULL
;
486 dir_copy
.size
= size
;
490 /* If filter is null, then it is a match */
492 do_reload_dir (const char *path
, dir_list
*list
, sortfn
*sort
, int count
,
493 int rev
, int case_sensitive
, int exec_ff
, const char *filter
)
498 int i
, status
, link_to_dir
, stale_link
;
501 GHashTable
*marked_files
;
503 dirp
= mc_opendir (path
);
505 message (D_ERROR
, MSG_ERROR
, _("Cannot read directory contents"));
506 clean_dir (list
, count
);
507 return set_zero_dir (list
);
510 tree_store_start_check (path
);
511 marked_files
= g_hash_table_new (g_str_hash
, g_str_equal
);
512 alloc_dir_copy (list
->size
);
513 for (marked_cnt
= i
= 0; i
< count
; i
++) {
514 dir_copy
.list
[i
].fnamelen
= list
->list
[i
].fnamelen
;
515 dir_copy
.list
[i
].fname
= list
->list
[i
].fname
;
516 dir_copy
.list
[i
].f
.marked
= list
->list
[i
].f
.marked
;
517 dir_copy
.list
[i
].f
.dir_size_computed
=
518 list
->list
[i
].f
.dir_size_computed
;
519 dir_copy
.list
[i
].f
.link_to_dir
= list
->list
[i
].f
.link_to_dir
;
520 dir_copy
.list
[i
].f
.stale_link
= list
->list
[i
].f
.stale_link
;
521 dir_copy
.list
[i
].sort_key
= NULL
;
522 dir_copy
.list
[i
].second_sort_key
= NULL
;
523 if (list
->list
[i
].f
.marked
) {
524 g_hash_table_insert (marked_files
, dir_copy
.list
[i
].fname
,
530 /* Add ".." except to the root directory. The ".." entry
531 (if any) must be the first in the list. */
532 if (strcmp (path
, "/") != 0) {
533 if (set_zero_dir (list
) == 0) {
534 clean_dir (list
, count
);
535 clean_dir (&dir_copy
, count
);
541 while ((dp
= mc_readdir (dirp
))) {
543 handle_dirent (list
, filter
, dp
, &st
, next_free
, &link_to_dir
,
549 /* Norbert (Feb 12, 1997):
550 Just in case someone finds this memory leak:
551 -1 means big trouble (at the moment no memory left),
552 I don't bother with further cleanup because if one gets to
553 this point he will have more problems than a few memory
554 leaks and because one 'clean_dir' would not be enough (and
555 because I don't want to spent the time to make it working,
556 IMHO it's not worthwhile).
557 clean_dir (&dir_copy, count);
559 tree_store_end_check ();
560 g_hash_table_destroy (marked_files
);
564 list
->list
[next_free
].f
.marked
= 0;
567 * If we have marked files in the copy, scan through the copy
568 * to find matching file. Decrease number of remaining marks if
571 if (marked_cnt
> 0) {
572 if ((g_hash_table_lookup (marked_files
, dp
->d_name
))) {
573 list
->list
[next_free
].f
.marked
= 1;
578 list
->list
[next_free
].fnamelen
= NLENGTH (dp
);
579 list
->list
[next_free
].fname
= g_strdup (dp
->d_name
);
580 list
->list
[next_free
].f
.link_to_dir
= link_to_dir
;
581 list
->list
[next_free
].f
.stale_link
= stale_link
;
582 list
->list
[next_free
].f
.dir_size_computed
= 0;
583 list
->list
[next_free
].st
= st
;
584 list
->list
[next_free
].sort_key
= NULL
;
585 list
->list
[next_free
].second_sort_key
= NULL
;
587 if (!(next_free
% 16))
591 tree_store_end_check ();
592 g_hash_table_destroy (marked_files
);
594 do_sort (list
, sort
, next_free
- 1, rev
, case_sensitive
, exec_ff
);
596 clean_dir (&dir_copy
, count
);