2 * Copyright (C) 1984-2007 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
));
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
== '/')
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
= 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.
476 unsigned char data
[256];
480 if (lseek(f
, (off_t
)0, SEEK_SET
) == BAD_LSEEK
)
482 n
= read(f
, data
, sizeof(data
));
483 for (i
= 0; i
< n
; i
++)
486 if (ctldisp
== OPT_ONPLUS
&& IS_CSI_START(c
))
488 while (++i
< n
&& is_ansi_middle(data
[i
]))
490 } else if (binary_char(c
))
494 * Call it a binary file if there are more than 5 binary characters
495 * in the first 256 bytes of the file.
497 return (bin_count
> 5);
501 * Try to determine the size of a file by seeking to the end.
509 spos
= lseek(f
, (off_t
)0, SEEK_END
);
510 if (spos
== BAD_LSEEK
)
511 return (NULL_POSITION
);
512 return ((POSITION
) spos
);
516 * Read a string from a file.
517 * Return a pointer to the string in memory.
529 * Make a guess about how many chars in the string
530 * and allocate a buffer to hold it.
533 buf
= (char *) ecalloc(len
, sizeof(char));
536 if ((ch
= getc(fd
)) == '\n' || ch
== EOF
)
538 if (p
- buf
>= len
-1)
541 * The string is too big to fit in the buffer we have.
542 * Allocate a new buffer, twice as big.
546 p
= (char *) ecalloc(len
, sizeof(char));
550 p
= buf
+ strlen(buf
);
565 * Execute a shell command.
566 * Return a pointer to a pipe connected to the shell command's standard output.
577 shell
= lgetenv("SHELL");
578 if (shell
!= NULL
&& *shell
!= '\0')
584 * Read the output of <$SHELL -c cmd>.
585 * Escape any metacharacters in the command.
587 esccmd
= shell_quote(cmd
);
590 fd
= popen(cmd
, "r");
593 int len
= strlen(shell
) + strlen(esccmd
) + 5;
594 scmd
= (char *) ecalloc(len
, sizeof(char));
595 SNPRINTF3(scmd
, len
, "%s %s %s", shell
, shell_coption(), esccmd
);
597 fd
= popen(scmd
, "r");
603 fd
= popen(cmd
, "r");
606 * Redirection in `popen' might have messed with the
607 * standard devices. Restore binary input mode.
613 #endif /* HAVE_POPEN */
617 * Expand a filename, doing any system-specific metacharacter substitutions.
626 ofilename
= fexpand(filename
);
629 filename
= shell_unquote(ofilename
);
631 #ifdef DECL_GLOB_LIST
634 * The globbing function returns a list of names.
641 GLOB_LIST(filename
, list
);
642 if (GLOB_LIST_FAILED(list
))
647 length
= 1; /* Room for trailing null byte */
648 for (SCAN_GLOB_LIST(list
, p
))
650 INIT_GLOB_LIST(list
, p
);
651 qfilename
= shell_quote(p
);
652 if (qfilename
!= NULL
)
654 length
+= strlen(qfilename
) + 1;
658 gfilename
= (char *) ecalloc(length
, sizeof(char));
659 for (SCAN_GLOB_LIST(list
, p
))
661 INIT_GLOB_LIST(list
, p
);
662 qfilename
= shell_quote(p
);
663 if (qfilename
!= NULL
)
665 sprintf(gfilename
+ strlen(gfilename
), "%s ", qfilename
);
670 * Overwrite the final trailing space with a null terminator.
673 GLOB_LIST_DONE(list
);
676 #ifdef DECL_GLOB_NAME
679 * The globbing function returns a single name, and
680 * is called multiple times to walk thru all names.
687 DECL_GLOB_NAME(fnd
,drive
,dir
,fname
,ext
,handle
)
689 GLOB_FIRST_NAME(filename
, &fnd
, handle
);
690 if (GLOB_FIRST_FAILED(handle
))
696 _splitpath(filename
, drive
, dir
, fname
, ext
);
698 gfilename
= (char *) ecalloc(len
, sizeof(char));
701 n
= strlen(drive
) + strlen(dir
) + strlen(fnd
.GLOB_NAME
) + 1;
702 pathname
= (char *) ecalloc(n
, sizeof(char));
703 SNPRINTF3(pathname
, n
, "%s%s%s", drive
, dir
, fnd
.GLOB_NAME
);
704 qpathname
= shell_quote(pathname
);
706 if (qpathname
!= NULL
)
708 n
= strlen(qpathname
);
709 while (p
- gfilename
+ n
+ 2 >= len
)
712 * No room in current buffer.
713 * Allocate a bigger one.
717 p
= (char *) ecalloc(len
, sizeof(char));
718 strcpy(p
, gfilename
);
721 p
= gfilename
+ strlen(gfilename
);
723 strcpy(p
, qpathname
);
728 } while (GLOB_NEXT_NAME(handle
, &fnd
) == 0);
731 * Overwrite the final trailing space with a null terminator.
734 GLOB_NAME_DONE(handle
);
740 * We get the shell to glob the filename for us by passing
741 * an "echo" command to the shell and reading its output.
750 esc
= get_meta_escape();
751 if (strlen(esc
) == 0)
753 esc
= shell_quote(esc
);
759 lessecho
= lgetenv("LESSECHO");
760 if (lessecho
== NULL
|| *lessecho
== '\0')
761 lessecho
= "lessecho";
763 * Invoke lessecho, and read its output (a globbed list of filenames).
765 len
= strlen(lessecho
) + strlen(ofilename
) + (7*strlen(metachars())) + 24;
766 cmd
= (char *) ecalloc(len
, sizeof(char));
767 SNPRINTF4(cmd
, len
, "%s -p0x%x -d0x%x -e%s ", lessecho
, openquote
, closequote
, esc
);
769 for (s
= metachars(); *s
!= '\0'; s
++)
770 sprintf(cmd
+ strlen(cmd
), "-n0x%x ", *s
);
771 sprintf(cmd
+ strlen(cmd
), "-- %s", ofilename
);
777 * Cannot create the pipe.
778 * Just return the original (fexpanded) filename.
783 gfilename
= readfd(fd
);
785 if (*gfilename
== '\0')
794 * No globbing functions at all. Just use the fexpanded filename.
796 gfilename
= save(filename
);
806 * See if we should open a "replacement file"
807 * instead of the file we're about to open.
810 open_altfile(filename
, pf
, pfd
)
826 if (!use_lessopen
|| secure
)
829 if ((lessopen
= lgetenv("LESSOPEN")) == NULL
)
831 if (strcmp(filename
, "-") == 0)
833 if (*lessopen
== '|')
836 * If LESSOPEN starts with a |, it indicates
837 * a "pipe preprocessor".
843 error("LESSOPEN pipe is not supported", NULL_PARG
);
848 len
= strlen(lessopen
) + strlen(filename
) + 2;
849 cmd
= (char *) ecalloc(len
, sizeof(char));
850 SNPRINTF1(cmd
, len
, lessopen
, filename
);
856 * Cannot create the pipe.
867 * Read one char to see if the pipe will produce any data.
868 * If it does, push the char back on the pipe.
872 if (read(f
, &c
, 1) != 1)
875 * Pipe is empty. This means there is no alt file.
890 * Pipe is empty. This means there is no alt file.
894 #endif /* HAVE_POPEN */
898 * Close a replacement file.
901 close_altfile(altfilename
, filename
, pipefd
)
918 * The pclose function of OS/2 emx sometimes fails.
919 * Send SIGINT to the piped process before closing it.
921 kill(((FILE*)pipefd
)->_pid
, SIGINT
);
923 pclose((FILE*) pipefd
);
925 if ((lessclose
= lgetenv("LESSCLOSE")) == NULL
)
927 len
= strlen(lessclose
) + strlen(filename
) + strlen(altfilename
) + 2;
928 cmd
= (char *) ecalloc(len
, sizeof(char));
929 SNPRINTF2(cmd
, len
, lessclose
, filename
, altfilename
);
938 * Is the specified file a directory?
946 filename
= shell_unquote(filename
);
952 r
= stat(filename
, &statbuf
);
953 isdir
= (r
>= 0 && S_ISDIR(statbuf
.st_mode
));
960 f
= open(filename
, S_IREAD
| S_IFDIR
);
972 * Returns NULL if the file can be opened and
973 * is an ordinary file, otherwise an error message
974 * (if it cannot be opened or is a directory, etc.)
980 register char *m
= NULL
;
982 filename
= shell_unquote(filename
);
983 if (!force_open
&& is_dir(filename
))
985 static char is_a_dir
[] = " is a directory";
987 m
= (char *) ecalloc(strlen(filename
) + sizeof(is_a_dir
),
997 r
= stat(filename
, &statbuf
);
1000 m
= errno_message(filename
);
1001 } else if (force_open
)
1004 } else if (!S_ISREG(statbuf
.st_mode
))
1006 static char not_reg
[] = " is not a regular file (use -f to see it)";
1007 m
= (char *) ecalloc(strlen(filename
) + sizeof(not_reg
),
1009 strcpy(m
, filename
);
1019 * Return the size of a file, as cheaply as possible.
1020 * In Unix, we can stat the file.
1027 struct stat statbuf
;
1029 if (fstat(f
, &statbuf
) >= 0)
1030 return ((POSITION
) statbuf
.st_size
);
1035 if ((size
= (long) _gs_size(f
)) >= 0)
1036 return ((POSITION
) size
);
1039 return (seek_filesize(f
));