2 * Copyright (C) 1984-2015 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, see the README file.
12 * Routines to mess around with filenames (and files).
13 * Much of this is very OS dependent.
20 #if MSDOS_COMPILER==WIN32C && !defined(_MSC_VER)
23 #if MSDOS_COMPILER==DJGPPC
26 #define _MAX_PATH PATH_MAX
42 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
45 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
50 extern int force_open
;
52 extern int use_lessopen
;
55 extern IFILE curr_ifile
;
56 extern IFILE old_ifile
;
57 #if SPACES_IN_FILENAMES
58 extern char openquote
;
59 extern char closequote
;
63 * Remove quotes around a filename.
72 name
= p
= (char *) ecalloc(strlen(str
)+1, sizeof(char));
73 if (*str
== openquote
)
78 if (*str
== closequote
)
80 if (str
[1] != closequote
)
88 char *esc
= get_meta_escape();
89 int esclen
= (int) strlen(esc
);
92 if (esclen
> 0 && strncmp(str
, esc
, esclen
) == 0)
102 * Get the shell's escape character.
109 s
= lgetenv("LESSMETAESCAPE");
116 * Get the characters which the shell considers to be "metacharacters".
121 static char *mchars
= NULL
;
125 mchars
= lgetenv("LESSMETACHARS");
127 mchars
= DEF_METACHARS
;
133 * Is this a shell metacharacter?
139 return (strchr(metachars(), c
) != NULL
);
143 * Insert a backslash before each metacharacter in a string.
152 char *esc
= get_meta_escape();
153 int esclen
= (int) strlen(esc
);
158 * Determine how big a string we need to allocate.
160 len
= 1; /* Trailing null byte */
161 for (p
= s
; *p
!= '\0'; p
++)
164 if (*p
== openquote
|| *p
== closequote
)
171 * We've got a metachar, but this shell
172 * doesn't support escape chars. Use quotes.
178 * Allow space for the escape char.
188 * We can't quote a string that contains quotes.
191 len
= (int) strlen(s
) + 3;
194 * Allocate and construct the new string.
196 newstr
= p
= (char *) ecalloc(len
, sizeof(char));
199 SNPRINTF3(newstr
, len
, "%c%s%c", openquote
, s
, closequote
);
207 * Add the escape char.
220 * Return a pathname that points to a specified file in a specified directory.
221 * Return NULL if the file does not exist in the directory.
224 dirfile(dirname
, filename
)
233 if (dirname
== NULL
|| *dirname
== '\0')
236 * Construct the full pathname.
238 len
= (int) (strlen(dirname
) + strlen(filename
) + 2);
239 pathname
= (char *) calloc(len
, sizeof(char));
240 if (pathname
== NULL
)
242 SNPRINTF3(pathname
, len
, "%s%s%s", dirname
, PATHNAME_SEP
, filename
);
244 * Make sure the file exists.
246 qpathname
= shell_unquote(pathname
);
247 f
= open(qpathname
, OPEN_READ
);
261 * Return the full pathname of the given file in the "home directory".
267 register char *pathname
;
270 * Try $HOME/filename.
272 pathname
= dirfile(lgetenv("HOME"), filename
);
273 if (pathname
!= NULL
)
277 * Try $INIT/filename.
279 pathname
= dirfile(lgetenv("INIT"), filename
);
280 if (pathname
!= NULL
)
283 #if MSDOS_COMPILER || OS2
285 * Look for the file anywhere on search path.
287 pathname
= (char *) calloc(_MAX_PATH
, sizeof(char));
288 #if MSDOS_COMPILER==DJGPPC
290 char *res
= searchpath(filename
);
294 strcpy(pathname
, res
);
297 _searchenv(filename
, "PATH", pathname
);
299 if (*pathname
!= '\0')
307 * Expand a string, substituting any "%" with the current filename,
308 * and any "#" with the previous filename.
309 * But a string of N "%"s is just replaced with N-1 "%"s.
310 * Likewise for a string of N "#"s.
311 * {{ This is a lot of work just to support % and #. }}
317 register char *fr
, *to
;
322 #define fchar_ifile(c) \
323 ((c) == '%' ? curr_ifile : \
324 (c) == '#' ? old_ifile : NULL_IFILE)
327 * Make one pass to see how big a buffer we
328 * need to allocate for the expanded string.
331 for (fr
= s
; *fr
!= '\0'; fr
++)
337 if (fr
> s
&& fr
[-1] == *fr
)
340 * Second (or later) char in a string
341 * of identical chars. Treat as normal.
344 } else if (fr
[1] != *fr
)
347 * Single char (not repeated). Treat specially.
349 ifile
= fchar_ifile(*fr
);
350 if (ifile
== NULL_IFILE
)
353 n
+= (int) strlen(get_filename(ifile
));
356 * Else it is the first char in a string of
357 * identical chars. Just discard it.
366 e
= (char *) ecalloc(n
+1, sizeof(char));
369 * Now copy the string, expanding any "%" or "#".
372 for (fr
= s
; *fr
!= '\0'; fr
++)
378 if (fr
> s
&& fr
[-1] == *fr
)
381 } else if (fr
[1] != *fr
)
383 ifile
= fchar_ifile(*fr
);
384 if (ifile
== NULL_IFILE
)
388 strcpy(to
, get_filename(ifile
));
403 #if TAB_COMPLETE_FILENAME
406 * Return a blank-separated list of filenames which "complete"
419 * Complete the filename "s" by globbing "s*".
421 #if MSDOS_COMPILER && (MSDOS_COMPILER == MSOFTC || MSDOS_COMPILER == BORLANDC)
423 * But in DOS, we have to glob "s*.*".
424 * But if the final component of the filename already has
425 * a dot in it, just do "s*".
426 * (Thus, "FILE" is globbed as "FILE*.*",
427 * but "FILE.A" is globbed as "FILE.A*").
432 for (slash
= s
+strlen(s
)-1; slash
> s
; slash
--)
433 if (*slash
== *PATHNAME_SEP
|| *slash
== '/')
435 len
= (int) strlen(s
) + 4;
436 fpat
= (char *) ecalloc(len
, sizeof(char));
437 if (strchr(slash
, '.') == NULL
)
438 SNPRINTF1(fpat
, len
, "%s*.*", s
);
440 SNPRINTF1(fpat
, len
, "%s*", s
);
444 int len
= (int) strlen(s
) + 2;
445 fpat
= (char *) ecalloc(len
, sizeof(char));
446 SNPRINTF1(fpat
, len
, "%s*", s
);
450 s
= shell_unquote(qs
);
451 if (strcmp(s
,fpat
) == 0)
454 * The filename didn't expand.
466 * Try to determine if a file is "binary".
467 * This is just a guess, and we need not try too hard to make it accurate.
481 if (lseek(f
, (off_t
)0, SEEK_SET
) == BAD_LSEEK
)
483 n
= read(f
, data
, sizeof(data
));
488 bin_count
= utf_bin_count(data
, n
);
492 for (p
= data
; p
< pend
; )
494 LWCHAR c
= step_char(&p
, +1, pend
);
495 if (ctldisp
== OPT_ONPLUS
&& IS_CSI_START(c
))
498 c
= step_char(&p
, +1, pend
);
499 } while (p
< pend
&& is_ansi_middle(c
));
500 } else if (binary_char(c
))
505 * Call it a binary file if there are more than 5 binary characters
506 * in the first 256 bytes of the file.
508 return (bin_count
> 5);
512 * Try to determine the size of a file by seeking to the end.
520 spos
= lseek(f
, (off_t
)0, SEEK_END
);
521 if (spos
== BAD_LSEEK
)
522 return (NULL_POSITION
);
523 return ((POSITION
) spos
);
527 * Read a string from a file.
528 * Return a pointer to the string in memory.
540 * Make a guess about how many chars in the string
541 * and allocate a buffer to hold it.
544 buf
= (char *) ecalloc(len
, sizeof(char));
547 if ((ch
= getc(fd
)) == '\n' || ch
== EOF
)
549 if (p
- buf
>= len
-1)
552 * The string is too big to fit in the buffer we have.
553 * Allocate a new buffer, twice as big.
557 p
= (char *) ecalloc(len
, sizeof(char));
561 p
= buf
+ strlen(buf
);
576 * Execute a shell command.
577 * Return a pointer to a pipe connected to the shell command's standard output.
588 shell
= lgetenv("SHELL");
589 if (shell
!= NULL
&& *shell
!= '\0')
595 * Read the output of <$SHELL -c cmd>.
596 * Escape any metacharacters in the command.
598 esccmd
= shell_quote(cmd
);
601 fd
= popen(cmd
, "r");
604 int len
= (int) (strlen(shell
) + strlen(esccmd
) + 5);
605 scmd
= (char *) ecalloc(len
, sizeof(char));
606 SNPRINTF3(scmd
, len
, "%s %s %s", shell
, shell_coption(), esccmd
);
608 fd
= popen(scmd
, "r");
614 fd
= popen(cmd
, "r");
617 * Redirection in `popen' might have messed with the
618 * standard devices. Restore binary input mode.
624 #endif /* HAVE_POPEN */
628 * Expand a filename, doing any system-specific metacharacter substitutions.
637 ofilename
= fexpand(filename
);
640 filename
= shell_unquote(ofilename
);
642 #ifdef DECL_GLOB_LIST
645 * The globbing function returns a list of names.
652 GLOB_LIST(filename
, list
);
653 if (GLOB_LIST_FAILED(list
))
658 length
= 1; /* Room for trailing null byte */
659 for (SCAN_GLOB_LIST(list
, p
))
661 INIT_GLOB_LIST(list
, p
);
662 qfilename
= shell_quote(p
);
663 if (qfilename
!= NULL
)
665 length
+= strlen(qfilename
) + 1;
669 gfilename
= (char *) ecalloc(length
, sizeof(char));
670 for (SCAN_GLOB_LIST(list
, p
))
672 INIT_GLOB_LIST(list
, p
);
673 qfilename
= shell_quote(p
);
674 if (qfilename
!= NULL
)
676 sprintf(gfilename
+ strlen(gfilename
), "%s ", qfilename
);
681 * Overwrite the final trailing space with a null terminator.
684 GLOB_LIST_DONE(list
);
687 #ifdef DECL_GLOB_NAME
690 * The globbing function returns a single name, and
691 * is called multiple times to walk thru all names.
698 DECL_GLOB_NAME(fnd
,drive
,dir
,fname
,ext
,handle
)
700 GLOB_FIRST_NAME(filename
, &fnd
, handle
);
701 if (GLOB_FIRST_FAILED(handle
))
707 _splitpath(filename
, drive
, dir
, fname
, ext
);
709 gfilename
= (char *) ecalloc(len
, sizeof(char));
712 n
= (int) (strlen(drive
) + strlen(dir
) + strlen(fnd
.GLOB_NAME
) + 1);
713 pathname
= (char *) ecalloc(n
, sizeof(char));
714 SNPRINTF3(pathname
, n
, "%s%s%s", drive
, dir
, fnd
.GLOB_NAME
);
715 qpathname
= shell_quote(pathname
);
717 if (qpathname
!= NULL
)
719 n
= (int) strlen(qpathname
);
720 while (p
- gfilename
+ n
+ 2 >= len
)
723 * No room in current buffer.
724 * Allocate a bigger one.
728 p
= (char *) ecalloc(len
, sizeof(char));
729 strcpy(p
, gfilename
);
732 p
= gfilename
+ strlen(gfilename
);
734 strcpy(p
, qpathname
);
739 } while (GLOB_NEXT_NAME(handle
, &fnd
) == 0);
742 * Overwrite the final trailing space with a null terminator.
745 GLOB_NAME_DONE(handle
);
751 * We get the shell to glob the filename for us by passing
752 * an "echo" command to the shell and reading its output.
761 esc
= get_meta_escape();
762 if (strlen(esc
) == 0)
764 esc
= shell_quote(esc
);
770 lessecho
= lgetenv("LESSECHO");
771 if (lessecho
== NULL
|| *lessecho
== '\0')
772 lessecho
= "lessecho";
774 * Invoke lessecho, and read its output (a globbed list of filenames).
776 len
= (int) (strlen(lessecho
) + strlen(ofilename
) + (7*strlen(metachars())) + 24);
777 cmd
= (char *) ecalloc(len
, sizeof(char));
778 SNPRINTF4(cmd
, len
, "%s -p0x%x -d0x%x -e%s ", lessecho
, openquote
, closequote
, esc
);
780 for (s
= metachars(); *s
!= '\0'; s
++)
781 sprintf(cmd
+ strlen(cmd
), "-n0x%x ", *s
);
782 sprintf(cmd
+ strlen(cmd
), "-- %s", ofilename
);
788 * Cannot create the pipe.
789 * Just return the original (fexpanded) filename.
794 gfilename
= readfd(fd
);
796 if (*gfilename
== '\0')
805 * No globbing functions at all. Just use the fexpanded filename.
807 gfilename
= save(filename
);
817 * Return number of %s escapes in a string.
818 * Return a large number if there are any other % escapes besides %s.
826 while (*lessopen
!= '\0')
828 if (*lessopen
== '%')
830 if (lessopen
[1] == '%')
832 else if (lessopen
[1] == 's')
843 * See if we should open a "replacement file"
844 * instead of the file we're about to open.
847 open_altfile(filename
, pf
, pfd
)
863 if (!use_lessopen
|| secure
)
866 if ((lessopen
= lgetenv("LESSOPEN")) == NULL
)
868 while (*lessopen
== '|')
871 * If LESSOPEN starts with a |, it indicates
872 * a "pipe preprocessor".
875 error("LESSOPEN pipe is not supported", NULL_PARG
);
882 if (*lessopen
== '-') {
884 * Lessopen preprocessor will accept "-" as a filename.
888 if (strcmp(filename
, "-") == 0)
891 if (num_pct_s(lessopen
) > 1)
893 error("Invalid LESSOPEN variable", NULL_PARG
);
897 len
= (int) (strlen(lessopen
) + strlen(filename
) + 2);
898 cmd
= (char *) ecalloc(len
, sizeof(char));
899 SNPRINTF1(cmd
, len
, lessopen
, filename
);
905 * Cannot create the pipe.
916 * Read one char to see if the pipe will produce any data.
917 * If it does, push the char back on the pipe.
921 if (read(f
, &c
, 1) != 1)
925 * If more than 1 pipe char was specified,
926 * the exit status tells whether the file itself
927 * is empty, or if there is no alt file.
928 * If only one pipe char, just assume no alt file.
930 int status
= pclose(fd
);
931 if (returnfd
> 1 && status
== 0) {
934 return (save(FAKE_EMPTYFILE
));
948 * Pipe is empty. This means there is no alt file.
952 #endif /* HAVE_POPEN */
956 * Close a replacement file.
959 close_altfile(altfilename
, filename
, pipefd
)
976 * The pclose function of OS/2 emx sometimes fails.
977 * Send SIGINT to the piped process before closing it.
979 kill(((FILE*)pipefd
)->_pid
, SIGINT
);
981 pclose((FILE*) pipefd
);
983 if ((lessclose
= lgetenv("LESSCLOSE")) == NULL
)
985 if (num_pct_s(lessclose
) > 2)
987 error("Invalid LESSCLOSE variable", NULL_PARG
);
990 len
= (int) (strlen(lessclose
) + strlen(filename
) + strlen(altfilename
) + 2);
991 cmd
= (char *) ecalloc(len
, sizeof(char));
992 SNPRINTF2(cmd
, len
, lessclose
, filename
, altfilename
);
1001 * Is the specified file a directory?
1009 filename
= shell_unquote(filename
);
1013 struct stat statbuf
;
1015 r
= stat(filename
, &statbuf
);
1016 isdir
= (r
>= 0 && S_ISDIR(statbuf
.st_mode
));
1023 f
= open(filename
, S_IREAD
| S_IFDIR
);
1035 * Returns NULL if the file can be opened and
1036 * is an ordinary file, otherwise an error message
1037 * (if it cannot be opened or is a directory, etc.)
1043 register char *m
= NULL
;
1045 filename
= shell_unquote(filename
);
1046 if (!force_open
&& is_dir(filename
))
1048 static char is_a_dir
[] = " is a directory";
1050 m
= (char *) ecalloc(strlen(filename
) + sizeof(is_a_dir
),
1052 strcpy(m
, filename
);
1053 strcat(m
, is_a_dir
);
1058 struct stat statbuf
;
1060 r
= stat(filename
, &statbuf
);
1063 m
= errno_message(filename
);
1064 } else if (force_open
)
1067 } else if (!S_ISREG(statbuf
.st_mode
))
1069 static char not_reg
[] = " is not a regular file (use -f to see it)";
1070 m
= (char *) ecalloc(strlen(filename
) + sizeof(not_reg
),
1072 strcpy(m
, filename
);
1082 * Return the size of a file, as cheaply as possible.
1083 * In Unix, we can stat the file.
1090 struct stat statbuf
;
1092 if (fstat(f
, &statbuf
) >= 0)
1093 return ((POSITION
) statbuf
.st_size
);
1098 if ((size
= (long) _gs_size(f
)) >= 0)
1099 return ((POSITION
) size
);
1102 return (seek_filesize(f
));
1115 * Return last component of a pathname.
1118 last_component(name
)
1123 for (slash
= name
+ strlen(name
); slash
> name
; )
1126 if (*slash
== *PATHNAME_SEP
|| *slash
== '/')