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.
19 extern char *every_first_cmd
;
20 extern int any_display
;
21 extern int force_open
;
24 extern IFILE curr_ifile
;
25 extern IFILE old_ifile
;
26 extern struct scrpos initial_scrpos
;
27 extern void constant
*ml_examine
;
28 #if SPACES_IN_FILENAMES
29 extern char openquote
;
30 extern char closequote
;
35 extern int force_logfile
;
36 extern char *namelogfile
;
39 char *curr_altfilename
= NULL
;
40 static void *curr_altpipe
;
44 * Textlist functions deal with a list of words separated by spaces.
45 * init_textlist sets up a textlist structure.
46 * forw_textlist uses that structure to iterate thru the list of
47 * words, returning each one as a standard null-terminated string.
48 * back_textlist does the same, but runs thru the list backwards.
51 init_textlist(tlist
, str
)
52 struct textlist
*tlist
;
56 #if SPACES_IN_FILENAMES
59 char *esc
= get_meta_escape();
60 int esclen
= strlen(esc
);
63 tlist
->string
= skipsp(str
);
64 tlist
->endstring
= tlist
->string
+ strlen(tlist
->string
);
65 for (s
= str
; s
< tlist
->endstring
; s
++)
67 #if SPACES_IN_FILENAMES
71 } else if (esclen
> 0 && s
+ esclen
< tlist
->endstring
&&
72 strncmp(s
, esc
, esclen
) == 0)
76 } else if (delim_quoted
)
80 } else /* (!delim_quoted) */
95 forw_textlist(tlist
, prev
)
96 struct textlist
*tlist
;
102 * prev == NULL means return the first word in the list.
103 * Otherwise, return the word after "prev".
108 s
= prev
+ strlen(prev
);
109 if (s
>= tlist
->endstring
)
113 if (s
>= tlist
->endstring
)
119 back_textlist(tlist
, prev
)
120 struct textlist
*tlist
;
126 * prev == NULL means return the last word in the list.
127 * Otherwise, return the word before "prev".
130 s
= tlist
->endstring
;
131 else if (prev
<= tlist
->string
)
137 if (s
<= tlist
->string
)
139 while (s
[-1] != '\0' && s
> tlist
->string
)
145 * Close the current input file.
150 struct scrpos scrpos
;
152 if (curr_ifile
== NULL_IFILE
)
156 * Save the current position so that we can return to
157 * the same position if we edit this file again.
160 if (scrpos
.pos
!= NULL_POSITION
)
162 store_pos(curr_ifile
, &scrpos
);
166 * Close the file descriptor, unless it is a pipe.
170 * If we opened a file using an alternate name,
171 * do special stuff to close it.
173 if (curr_altfilename
!= NULL
)
175 close_altfile(curr_altfilename
, get_filename(curr_ifile
),
177 free(curr_altfilename
);
178 curr_altfilename
= NULL
;
180 curr_ifile
= NULL_IFILE
;
184 * Edit a new file (given its name).
185 * Filename == "-" means standard input.
186 * Filename == NULL means just close the current file.
192 if (filename
== NULL
)
193 return (edit_ifile(NULL_IFILE
));
194 return (edit_ifile(get_ifile(filename
, curr_ifile
)));
198 * Edit a new file (given its IFILE).
199 * ifile == NULL means just close the current file.
211 char *qopen_filename
;
214 IFILE was_curr_ifile
;
217 if (ifile
== curr_ifile
)
220 * Already have the correct file open.
226 * We must close the currently open file now.
227 * This is necessary to make the open_altfile/close_altfile pairs
228 * nest properly (or rather to avoid nesting at all).
229 * {{ Some stupid implementations of popen() mess up if you do:
230 * fA = popen("A"); fB = popen("B"); pclose(fA); pclose(fB); }}
235 was_curr_ifile
= save_curr_ifile();
236 if (curr_ifile
!= NULL_IFILE
)
238 chflags
= ch_getflags();
240 if ((chflags
& CH_HELPFILE
) && held_ifile(was_curr_ifile
) <= 1)
243 * Don't keep the help file in the ifile list.
245 del_ifile(was_curr_ifile
);
246 was_curr_ifile
= old_ifile
;
250 if (ifile
== NULL_IFILE
)
253 * No new file to open.
254 * (Don't set old_ifile, because if you call edit_ifile(NULL),
255 * you're supposed to have saved curr_ifile yourself,
256 * and you'll restore it if necessary.)
258 unsave_ifile(was_curr_ifile
);
262 filename
= save(get_filename(ifile
));
264 * See if LESSOPEN specifies an "alternate" file to open.
267 alt_filename
= open_altfile(filename
, &f
, &alt_pipe
);
268 open_filename
= (alt_filename
!= NULL
) ? alt_filename
: filename
;
269 qopen_filename
= shell_unquote(open_filename
);
272 if (alt_pipe
!= NULL
)
275 * The alternate "file" is actually a pipe.
276 * f has already been set to the file descriptor of the pipe
277 * in the call to open_altfile above.
278 * Keep the file descriptor open because it was opened
279 * via popen(), and pclose() wants to close it.
281 chflags
|= CH_POPENED
;
282 } else if (strcmp(open_filename
, "-") == 0)
285 * Use standard input.
286 * Keep the file descriptor open because we can't reopen it.
289 chflags
|= CH_KEEPOPEN
;
291 * Must switch stdin to BINARY mode.
294 #if MSDOS_COMPILER==DJGPPC
296 * Setting stdin to binary by default causes
297 * Ctrl-C to not raise SIGINT. We must undo
300 __djgpp_set_ctrl_c(1);
302 } else if (strcmp(open_filename
, FAKE_HELPFILE
) == 0)
305 chflags
|= CH_HELPFILE
;
306 } else if ((parg
.p_string
= bad_file(open_filename
)) != NULL
)
309 * It looks like a bad file. Don't try to open it.
314 if (alt_filename
!= NULL
)
316 close_altfile(alt_filename
, filename
, alt_pipe
);
320 free(qopen_filename
);
323 * Re-open the current file.
325 if (was_curr_ifile
== ifile
)
328 * Whoops. The "current" ifile is the one we just deleted.
333 reedit_ifile(was_curr_ifile
);
335 } else if ((f
= open(qopen_filename
, OPEN_READ
)) < 0)
338 * Got an error trying to open it.
340 parg
.p_string
= errno_message(filename
);
346 chflags
|= CH_CANSEEK
;
347 if (!force_open
&& !opened(ifile
) && bin_file(f
))
350 * Looks like a binary file.
351 * Ask user if we should proceed.
353 parg
.p_string
= filename
;
354 answer
= query("\"%s\" may be a binary file. See it anyway? ",
356 if (answer
!= 'y' && answer
!= 'Y')
363 free(qopen_filename
);
367 * Get the saved position for the file.
369 if (was_curr_ifile
!= NULL_IFILE
)
371 old_ifile
= was_curr_ifile
;
372 unsave_ifile(was_curr_ifile
);
375 curr_altfilename
= alt_filename
;
376 curr_altpipe
= alt_pipe
;
377 set_open(curr_ifile
); /* File has been opened */
378 get_pos(curr_ifile
, &initial_scrpos
);
382 if (!(chflags
& CH_HELPFILE
))
385 if (namelogfile
!= NULL
&& is_tty
)
386 use_logfile(namelogfile
);
388 if (every_first_cmd
!= NULL
)
389 ungetsc(every_first_cmd
);
392 no_display
= !any_display
;
399 * Output is to a real tty.
403 * Indicate there is nothing displayed yet.
410 cmd_addhist(ml_examine
, filename
);
411 if (no_display
&& errmsgs
> 0)
414 * We displayed some messages on error output
415 * (file descriptor 2; see error() function).
416 * Before erasing the screen contents,
417 * display the file name and wait for a keystroke.
419 parg
.p_string
= filename
;
428 * Edit a space-separated list of files.
429 * For each filename in the list, enter it into the ifile list.
430 * Then edit the first one.
441 struct textlist tl_files
;
442 struct textlist tl_gfiles
;
444 save_ifile
= save_curr_ifile();
445 good_filename
= NULL
;
448 * Run thru each filename in the list.
449 * Try to glob the filename.
450 * If it doesn't expand, just try to open the filename.
451 * If it does expand, try to open each name in that list.
453 init_textlist(&tl_files
, filelist
);
455 while ((filename
= forw_textlist(&tl_files
, filename
)) != NULL
)
457 gfilelist
= lglob(filename
);
458 init_textlist(&tl_gfiles
, gfilelist
);
460 while ((gfilename
= forw_textlist(&tl_gfiles
, gfilename
)) != NULL
)
462 if (edit(gfilename
) == 0 && good_filename
== NULL
)
463 good_filename
= get_filename(curr_ifile
);
468 * Edit the first valid filename in the list.
470 if (good_filename
== NULL
)
472 unsave_ifile(save_ifile
);
475 if (get_ifile(good_filename
, curr_ifile
) == curr_ifile
)
478 * Trying to edit the current file; don't reopen it.
480 unsave_ifile(save_ifile
);
483 reedit_ifile(save_ifile
);
484 return (edit(good_filename
));
488 * Edit the first file in the command line (ifile) list.
493 curr_ifile
= NULL_IFILE
;
494 return (edit_next(1));
498 * Edit the last file in the command line (ifile) list.
503 curr_ifile
= NULL_IFILE
;
504 return (edit_prev(1));
509 * Edit the n-th next or previous file in the command line (ifile) list.
512 edit_istep(h
, n
, dir
)
520 * Skip n filenames, then try to edit each filename.
524 next
= (dir
> 0) ? next_ifile(h
) : prev_ifile(h
);
527 if (edit_ifile(h
) == 0)
530 if (next
== NULL_IFILE
)
533 * Reached end of the ifile list.
540 * Interrupt breaks out, if we're in a long
541 * list of files that can't be opened.
548 * Found a file that we can edit.
558 return (edit_istep(h
, n
, +1));
565 return edit_istep(curr_ifile
, n
, +1);
573 return (edit_istep(h
, n
, -1));
580 return edit_istep(curr_ifile
, n
, -1);
584 * Edit a specific file in the command line (ifile) list.
595 if ((h
= next_ifile(h
)) == NULL_IFILE
)
598 * Reached end of the list without finding it.
602 } while (get_index(h
) != n
);
604 return (edit_ifile(h
));
610 if (curr_ifile
!= NULL_IFILE
)
611 hold_ifile(curr_ifile
, 1);
616 unsave_ifile(save_ifile
)
619 if (save_ifile
!= NULL_IFILE
)
620 hold_ifile(save_ifile
, -1);
624 * Reedit the ifile which was previously open.
627 reedit_ifile(save_ifile
)
634 * Try to reopen the ifile.
635 * Note that opening it may fail (maybe the file was removed),
636 * in which case the ifile will be deleted from the list.
637 * So save the next and prev ifiles first.
639 unsave_ifile(save_ifile
);
640 next
= next_ifile(save_ifile
);
641 prev
= prev_ifile(save_ifile
);
642 if (edit_ifile(save_ifile
) == 0)
645 * If can't reopen it, open the next input file in the list.
647 if (next
!= NULL_IFILE
&& edit_inext(next
, 0) == 0)
650 * If can't open THAT one, open the previous input file in the list.
652 if (prev
!= NULL_IFILE
&& edit_iprev(prev
, 0) == 0)
655 * If can't even open that, we're stuck. Just quit.
661 * Edit standard input.
668 error("Missing filename (\"less --help\" for help)", NULL_PARG
);
675 * Copy a file directly to standard output.
676 * Used if standard output is not a tty.
683 while ((c
= ch_forw_get()) != EOI
)
691 * If the user asked for a log file and our input file
692 * is standard input, create the log file.
693 * We take care not to blindly overwrite an existing file.
696 use_logfile(filename
)
703 if (ch_getflags() & CH_CANSEEK
)
705 * Can't currently use a log file on a file that can seek.
710 * {{ We could use access() here. }}
712 filename
= shell_unquote(filename
);
713 exists
= open(filename
, OPEN_READ
);
715 exists
= (exists
>= 0);
718 * Decide whether to overwrite the log file or append to it.
719 * If it doesn't exist we "overwrite" it.
721 if (!exists
|| force_logfile
)
724 * Overwrite (or create) the log file.
730 * Ask user what to do.
732 parg
.p_string
= filename
;
733 answer
= query("Warning: \"%s\" exists; Overwrite, Append or Don't log? ", &parg
);
741 * Overwrite: create the file.
743 logfile
= creat(filename
, 0644);
747 * Append: open the file and seek to the end.
749 logfile
= open(filename
, OPEN_APPEND
);
750 if (lseek(logfile
, (off_t
)0, 2) == BAD_LSEEK
)
769 answer
= query("Overwrite, Append, or Don't log? (Type \"O\", \"A\", \"D\" or \"q\") ", NULL_PARG
);
776 * Error in opening logfile.
778 parg
.p_string
= filename
;
779 error("Cannot write to \"%s\"", &parg
);