2 * Copyright (C) 1984-2011 Mark Nudelman
4 * You may distribute under the terms of either the GNU General Public
5 * License or the Less License, as specified in the README file.
7 * For more information about less, or for information on how to
8 * contact the author, see the README file.
13 * Routines to mess around with filenames (and files).
14 * Much of this is very OS dependent.
21 #if MSDOS_COMPILER==WIN32C && !defined(_MSC_VER)
24 #if MSDOS_COMPILER==DJGPPC
27 #define _MAX_PATH PATH_MAX
43 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
46 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
51 extern int force_open
;
53 extern int use_lessopen
;
56 extern IFILE curr_ifile
;
57 extern IFILE old_ifile
;
58 #if SPACES_IN_FILENAMES
59 extern char openquote
;
60 extern char closequote
;
64 * Remove quotes around a filename.
73 name
= p
= (char *) ecalloc(strlen(str
)+1, sizeof(char));
74 if (*str
== openquote
)
79 if (*str
== closequote
)
81 if (str
[1] != closequote
)
89 char *esc
= get_meta_escape();
90 int esclen
= strlen(esc
);
93 if (esclen
> 0 && strncmp(str
, esc
, esclen
) == 0)
103 * Get the shell's escape character.
110 s
= lgetenv("LESSMETAESCAPE");
117 * Get the characters which the shell considers to be "metacharacters".
122 static char *mchars
= NULL
;
126 mchars
= lgetenv("LESSMETACHARS");
128 mchars
= DEF_METACHARS
;
134 * Is this a shell metacharacter?
140 return (strchr(metachars(), c
) != NULL
);
144 * Insert a backslash before each metacharacter in a string.
153 char *esc
= get_meta_escape();
154 int esclen
= strlen(esc
);
159 * Determine how big a string we need to allocate.
161 len
= 1; /* Trailing null byte */
162 for (p
= s
; *p
!= '\0'; p
++)
165 if (*p
== openquote
|| *p
== closequote
)
172 * We've got a metachar, but this shell
173 * doesn't support escape chars. Use quotes.
179 * Allow space for the escape char.
189 * We can't quote a string that contains quotes.
195 * Allocate and construct the new string.
197 newstr
= p
= (char *) ecalloc(len
, sizeof(char));
200 SNPRINTF3(newstr
, len
, "%c%s%c", openquote
, s
, closequote
);
208 * Add the escape char.
221 * Return a pathname that points to a specified file in a specified directory.
222 * Return NULL if the file does not exist in the directory.
225 dirfile(dirname
, filename
)
234 if (dirname
== NULL
|| *dirname
== '\0')
237 * Construct the full pathname.
239 len
= strlen(dirname
) + strlen(filename
) + 2;
240 pathname
= (char *) calloc(len
, sizeof(char));
241 if (pathname
== NULL
)
243 SNPRINTF3(pathname
, len
, "%s%s%s", dirname
, PATHNAME_SEP
, filename
);
245 * Make sure the file exists.
247 qpathname
= shell_unquote(pathname
);
248 f
= open(qpathname
, OPEN_READ
);
262 * Return the full pathname of the given file in the "home directory".
268 register char *pathname
;
271 * Try $HOME/filename.
273 pathname
= dirfile(lgetenv("HOME"), filename
);
274 if (pathname
!= NULL
)
278 * Try $INIT/filename.
280 pathname
= dirfile(lgetenv("INIT"), filename
);
281 if (pathname
!= NULL
)
284 #if MSDOS_COMPILER || OS2
286 * Look for the file anywhere on search path.
288 pathname
= (char *) calloc(_MAX_PATH
, sizeof(char));
289 #if MSDOS_COMPILER==DJGPPC
291 char *res
= searchpath(filename
);
295 strcpy(pathname
, res
);
298 _searchenv(filename
, "PATH", pathname
);
300 if (*pathname
!= '\0')
308 * Expand a string, substituting any "%" with the current filename,
309 * and any "#" with the previous filename.
310 * But a string of N "%"s is just replaced with N-1 "%"s.
311 * Likewise for a string of N "#"s.
312 * {{ This is a lot of work just to support % and #. }}
318 register char *fr
, *to
;
323 #define fchar_ifile(c) \
324 ((c) == '%' ? curr_ifile : \
325 (c) == '#' ? old_ifile : NULL_IFILE)
328 * Make one pass to see how big a buffer we
329 * need to allocate for the expanded string.
332 for (fr
= s
; *fr
!= '\0'; fr
++)
338 if (fr
> s
&& fr
[-1] == *fr
)
341 * Second (or later) char in a string
342 * of identical chars. Treat as normal.
345 } else if (fr
[1] != *fr
)
348 * Single char (not repeated). Treat specially.
350 ifile
= fchar_ifile(*fr
);
351 if (ifile
== NULL_IFILE
)
354 n
+= strlen(get_filename(ifile
));
357 * Else it is the first char in a string of
358 * identical chars. Just discard it.
367 e
= (char *) ecalloc(n
+1, sizeof(char));
370 * Now copy the string, expanding any "%" or "#".
373 for (fr
= s
; *fr
!= '\0'; fr
++)
379 if (fr
> s
&& fr
[-1] == *fr
)
382 } else if (fr
[1] != *fr
)
384 ifile
= fchar_ifile(*fr
);
385 if (ifile
== NULL_IFILE
)
389 strcpy(to
, get_filename(ifile
));
404 #if TAB_COMPLETE_FILENAME
407 * Return a blank-separated list of filenames which "complete"
420 * Complete the filename "s" by globbing "s*".
422 #if MSDOS_COMPILER && (MSDOS_COMPILER == MSOFTC || MSDOS_COMPILER == BORLANDC)
424 * But in DOS, we have to glob "s*.*".
425 * But if the final component of the filename already has
426 * a dot in it, just do "s*".
427 * (Thus, "FILE" is globbed as "FILE*.*",
428 * but "FILE.A" is globbed as "FILE.A*").
433 for (slash
= s
+strlen(s
)-1; slash
> s
; slash
--)
434 if (*slash
== *PATHNAME_SEP
|| *slash
== '/')
437 fpat
= (char *) ecalloc(len
, sizeof(char));
438 if (strchr(slash
, '.') == NULL
)
439 SNPRINTF1(fpat
, len
, "%s*.*", s
);
441 SNPRINTF1(fpat
, len
, "%s*", s
);
445 int len
= strlen(s
) + 2;
446 fpat
= (char *) ecalloc(len
, sizeof(char));
447 SNPRINTF1(fpat
, len
, "%s*", s
);
451 s
= shell_unquote(qs
);
452 if (strcmp(s
,fpat
) == 0)
455 * The filename didn't expand.
467 * Try to determine if a file is "binary".
468 * This is just a guess, and we need not try too hard to make it accurate.
482 if (lseek(f
, (off_t
)0, SEEK_SET
) == BAD_LSEEK
)
484 n
= read(f
, data
, sizeof(data
));
486 for (p
= data
; p
< pend
; )
488 LWCHAR c
= step_char(&p
, +1, pend
);
489 if (ctldisp
== OPT_ONPLUS
&& IS_CSI_START(c
))
492 c
= step_char(&p
, +1, pend
);
493 } while (p
< pend
&& is_ansi_middle(c
));
494 } else if (binary_char(c
))
498 * Call it a binary file if there are more than 5 binary characters
499 * in the first 256 bytes of the file.
501 return (bin_count
> 5);
505 * Try to determine the size of a file by seeking to the end.
513 spos
= lseek(f
, (off_t
)0, SEEK_END
);
514 if (spos
== BAD_LSEEK
)
515 return (NULL_POSITION
);
516 return ((POSITION
) spos
);
520 * Read a string from a file.
521 * Return a pointer to the string in memory.
533 * Make a guess about how many chars in the string
534 * and allocate a buffer to hold it.
537 buf
= (char *) ecalloc(len
, sizeof(char));
540 if ((ch
= getc(fd
)) == '\n' || ch
== EOF
)
542 if (p
- buf
>= len
-1)
545 * The string is too big to fit in the buffer we have.
546 * Allocate a new buffer, twice as big.
550 p
= (char *) ecalloc(len
, sizeof(char));
554 p
= buf
+ strlen(buf
);
569 * Execute a shell command.
570 * Return a pointer to a pipe connected to the shell command's standard output.
581 shell
= lgetenv("SHELL");
582 if (shell
!= NULL
&& *shell
!= '\0')
588 * Read the output of <$SHELL -c cmd>.
589 * Escape any metacharacters in the command.
591 esccmd
= shell_quote(cmd
);
594 fd
= popen(cmd
, "r");
597 int len
= strlen(shell
) + strlen(esccmd
) + 5;
598 scmd
= (char *) ecalloc(len
, sizeof(char));
599 SNPRINTF3(scmd
, len
, "%s %s %s", shell
, shell_coption(), esccmd
);
601 fd
= popen(scmd
, "r");
607 fd
= popen(cmd
, "r");
610 * Redirection in `popen' might have messed with the
611 * standard devices. Restore binary input mode.
617 #endif /* HAVE_POPEN */
621 * Expand a filename, doing any system-specific metacharacter substitutions.
630 ofilename
= fexpand(filename
);
633 filename
= shell_unquote(ofilename
);
635 #ifdef DECL_GLOB_LIST
638 * The globbing function returns a list of names.
645 GLOB_LIST(filename
, list
);
646 if (GLOB_LIST_FAILED(list
))
651 length
= 1; /* Room for trailing null byte */
652 for (SCAN_GLOB_LIST(list
, p
))
654 INIT_GLOB_LIST(list
, p
);
655 qfilename
= shell_quote(p
);
656 if (qfilename
!= NULL
)
658 length
+= strlen(qfilename
) + 1;
662 gfilename
= (char *) ecalloc(length
, sizeof(char));
663 for (SCAN_GLOB_LIST(list
, p
))
665 INIT_GLOB_LIST(list
, p
);
666 qfilename
= shell_quote(p
);
667 if (qfilename
!= NULL
)
669 sprintf(gfilename
+ strlen(gfilename
), "%s ", qfilename
);
674 * Overwrite the final trailing space with a null terminator.
677 GLOB_LIST_DONE(list
);
680 #ifdef DECL_GLOB_NAME
683 * The globbing function returns a single name, and
684 * is called multiple times to walk thru all names.
691 DECL_GLOB_NAME(fnd
,drive
,dir
,fname
,ext
,handle
)
693 GLOB_FIRST_NAME(filename
, &fnd
, handle
);
694 if (GLOB_FIRST_FAILED(handle
))
700 _splitpath(filename
, drive
, dir
, fname
, ext
);
702 gfilename
= (char *) ecalloc(len
, sizeof(char));
705 n
= strlen(drive
) + strlen(dir
) + strlen(fnd
.GLOB_NAME
) + 1;
706 pathname
= (char *) ecalloc(n
, sizeof(char));
707 SNPRINTF3(pathname
, n
, "%s%s%s", drive
, dir
, fnd
.GLOB_NAME
);
708 qpathname
= shell_quote(pathname
);
710 if (qpathname
!= NULL
)
712 n
= strlen(qpathname
);
713 while (p
- gfilename
+ n
+ 2 >= len
)
716 * No room in current buffer.
717 * Allocate a bigger one.
721 p
= (char *) ecalloc(len
, sizeof(char));
722 strcpy(p
, gfilename
);
725 p
= gfilename
+ strlen(gfilename
);
727 strcpy(p
, qpathname
);
732 } while (GLOB_NEXT_NAME(handle
, &fnd
) == 0);
735 * Overwrite the final trailing space with a null terminator.
738 GLOB_NAME_DONE(handle
);
744 * We get the shell to glob the filename for us by passing
745 * an "echo" command to the shell and reading its output.
754 esc
= get_meta_escape();
755 if (strlen(esc
) == 0)
757 esc
= shell_quote(esc
);
763 lessecho
= lgetenv("LESSECHO");
764 if (lessecho
== NULL
|| *lessecho
== '\0')
765 lessecho
= "lessecho";
767 * Invoke lessecho, and read its output (a globbed list of filenames).
769 len
= strlen(lessecho
) + strlen(ofilename
) + (7*strlen(metachars())) + 24;
770 cmd
= (char *) ecalloc(len
, sizeof(char));
771 SNPRINTF4(cmd
, len
, "%s -p0x%x -d0x%x -e%s ", lessecho
, openquote
, closequote
, esc
);
773 for (s
= metachars(); *s
!= '\0'; s
++)
774 sprintf(cmd
+ strlen(cmd
), "-n0x%x ", *s
);
775 sprintf(cmd
+ strlen(cmd
), "-- %s", ofilename
);
781 * Cannot create the pipe.
782 * Just return the original (fexpanded) filename.
787 gfilename
= readfd(fd
);
789 if (*gfilename
== '\0')
798 * No globbing functions at all. Just use the fexpanded filename.
800 gfilename
= save(filename
);
810 * See if we should open a "replacement file"
811 * instead of the file we're about to open.
814 open_altfile(filename
, pf
, pfd
)
830 if (!use_lessopen
|| secure
)
833 if ((lessopen
= lgetenv("LESSOPEN")) == NULL
)
835 if (*lessopen
== '|')
838 * If LESSOPEN starts with a |, it indicates
839 * a "pipe preprocessor".
842 error("LESSOPEN pipe is not supported", NULL_PARG
);
849 if (*lessopen
== '-') {
851 * Lessopen preprocessor will accept "-" as a filename.
855 if (strcmp(filename
, "-") == 0)
859 len
= strlen(lessopen
) + strlen(filename
) + 2;
860 cmd
= (char *) ecalloc(len
, sizeof(char));
861 SNPRINTF1(cmd
, len
, lessopen
, filename
);
867 * Cannot create the pipe.
878 * Read one char to see if the pipe will produce any data.
879 * If it does, push the char back on the pipe.
883 if (read(f
, &c
, 1) != 1)
886 * Pipe is empty. This means there is no alt file.
901 * Pipe is empty. This means there is no alt file.
905 #endif /* HAVE_POPEN */
909 * Close a replacement file.
912 close_altfile(altfilename
, filename
, pipefd
)
929 * The pclose function of OS/2 emx sometimes fails.
930 * Send SIGINT to the piped process before closing it.
932 kill(((FILE*)pipefd
)->_pid
, SIGINT
);
934 pclose((FILE*) pipefd
);
936 if ((lessclose
= lgetenv("LESSCLOSE")) == NULL
)
938 len
= strlen(lessclose
) + strlen(filename
) + strlen(altfilename
) + 2;
939 cmd
= (char *) ecalloc(len
, sizeof(char));
940 SNPRINTF2(cmd
, len
, lessclose
, filename
, altfilename
);
949 * Is the specified file a directory?
957 filename
= shell_unquote(filename
);
963 r
= stat(filename
, &statbuf
);
964 isdir
= (r
>= 0 && S_ISDIR(statbuf
.st_mode
));
971 f
= open(filename
, S_IREAD
| S_IFDIR
);
983 * Returns NULL if the file can be opened and
984 * is an ordinary file, otherwise an error message
985 * (if it cannot be opened or is a directory, etc.)
991 register char *m
= NULL
;
993 filename
= shell_unquote(filename
);
994 if (!force_open
&& is_dir(filename
))
996 static char is_a_dir
[] = " is a directory";
998 m
= (char *) ecalloc(strlen(filename
) + sizeof(is_a_dir
),
1000 strcpy(m
, filename
);
1001 strcat(m
, is_a_dir
);
1006 struct stat statbuf
;
1008 r
= stat(filename
, &statbuf
);
1011 m
= errno_message(filename
);
1012 } else if (force_open
)
1015 } else if (!S_ISREG(statbuf
.st_mode
))
1017 static char not_reg
[] = " is not a regular file (use -f to see it)";
1018 m
= (char *) ecalloc(strlen(filename
) + sizeof(not_reg
),
1020 strcpy(m
, filename
);
1030 * Return the size of a file, as cheaply as possible.
1031 * In Unix, we can stat the file.
1038 struct stat statbuf
;
1040 if (fstat(f
, &statbuf
) >= 0)
1041 return ((POSITION
) statbuf
.st_size
);
1046 if ((size
= (long) _gs_size(f
)) >= 0)
1047 return ((POSITION
) size
);
1050 return (seek_filesize(f
));
1063 * Return last component of a pathname.
1066 last_component(name
)
1071 for (slash
= name
+ strlen(name
); slash
> name
; )
1074 if (*slash
== *PATHNAME_SEP
|| *slash
== '/')