1 #if !defined(lint) && !defined(DOS)
2 static char rcsid
[] = "$Id: browse.c 942 2008-03-04 18:21:33Z hubert@u.washington.edu $";
6 * ========================================================================
7 * Copyright 2006-2008 University of Washington
8 * Copyright 2013-2015 Eduardo Chappa
10 * Licensed under the Apache License, Version 2.0 (the "License");
11 * you may not use this file except in compliance with the License.
12 * You may obtain a copy of the License at
14 * http://www.apache.org/licenses/LICENSE-2.0
16 * ========================================================================
18 * Program: Routines to support file browser in pico and Pine composer
23 * Misc. thoughts (mss, 5 Apr 92)
25 * This is supposed to be just a general purpose browser, equally
26 * callable from either pico or the pine composer. Someday, it could
27 * even be used to "wrap" the unix file business for really novice
28 * users. The stubs are here for renaming, copying, creating directories,
29 * deleting, undeleting (thought is delete just moves files to
30 * ~/.pico.deleted directory or something and undelete offers the
31 * files in there for undeletion: kind of like the mac trashcan).
35 * Since the full path name is always maintained and referencing ".."
36 * stats the path stripped of its trailing name, the unpleasantness of
37 * symbolic links is hidden.
39 * Fleshed out the file managements stuff (mss, 24 June 92)
44 #include "../c-client/mail.h"
45 #include "../c-client/rfc822.h"
46 #include "../pith/osdep/collate.h"
47 #include "../pith/charconv/filesys.h"
48 #include "../pith/conf.h"
52 #if defined(bsd) || defined(lnx)
58 * directory cell structure
61 char *fname
; /* file name */
62 unsigned mode
; /* file's mode */
63 char size
[16]; /* file's size in s */
70 * master browser structure
72 static struct bmaster
{
73 struct fcell
*head
; /* first cell in list */
74 struct fcell
*bottom
; /* last cell in list */
75 struct fcell
*top
; /* cell in top left */
76 struct fcell
*current
; /* currently selected */
77 int longest
; /* longest file name (in screen width) */
78 int fpl
; /* file names per line */
79 int cpf
; /* chars / file / line */
81 char dname
[NLINE
]; /* this dir's name (UTF-8) */
82 char *names
; /* malloc'd name array (UTF-8) */
84 } *gmp
; /* global master ptr */
88 * title for exported browser display
90 static char *browser_title
= NULL
;
93 struct bmaster
*getfcells(char *, int);
94 void PaintCell(int, int, int, struct fcell
*, int);
95 void PaintBrowser(struct bmaster
*, int, int *, int *);
96 void BrowserKeys(void);
97 void layoutcells(struct bmaster
*);
98 void percdircells(struct bmaster
*);
99 int PlaceCell(struct bmaster
*, struct fcell
*, int *, int *);
100 void zotfcells(struct fcell
*);
101 void zotmaster(struct bmaster
**);
102 struct fcell
*FindCell(struct bmaster
*, char *, int);
103 int sisin(char *, char *);
104 void p_chdir(struct bmaster
*);
105 void BrowserAnchor(char *);
106 void ClearBrowserScreen(void);
107 void BrowserRunChild(char *, char *);
108 int fcell_is_selected(struct fcell
*, struct bmaster
*);
109 void add_cell_to_lmlist(struct fcell
*, struct bmaster
*);
110 void del_cell_from_lmlist(struct fcell
*, struct bmaster
*);
113 static KEYMENU menu_browse
[] = {
114 {"?", N_("Get Help"), KS_SCREENHELP
}, {NULL
, NULL
, KS_NONE
},
115 {NULL
, NULL
, KS_NONE
}, {"-", N_("Prev Pg"), KS_PREVPAGE
},
116 {"D", N_("Delete"), KS_NONE
}, {"C",N_("Copy"), KS_NONE
},
117 {NULL
, NULL
, KS_NONE
}, {NULL
, NULL
, KS_NONE
},
118 {"W", N_("Where is"), KS_NONE
}, {"Spc", N_("Next Pg"), KS_NEXTPAGE
},
119 {"R", N_("Rename"), KS_NONE
}, {NULL
, NULL
, KS_NONE
}
128 #define DIRWORD "dir"
129 #define PARENTDIR "parent"
130 #define SELECTWORD "SELECT"
134 * Default pager used by the stand-alone file browser.
136 #define BROWSER_PAGER ((gmode & MDFKEY) ? "pine -k -F" : "pine -F")
140 * function key mappings for callable browser
142 static UCS bfmappings
[2][12][2] = { { { F1
, '?'}, /* stand alone */
143 { F2
, NODATA
}, /* browser function */
144 { F3
, 'q'}, /* key mappings... */
154 { { F1
, '?'}, /* callable browser */
155 { F2
, NODATA
}, /* function key */
156 { F3
, 'e'}, /* mappings... */
169 * Browser help for pico (pine composer help handed to us by pine)
171 static char *BrowseHelpText
[] = {
172 /* TRANSLATORS: The next several lines go together. The ~ characters
173 should be left in front of the characters they cause to be bold. */
174 N_("Help for Browse Command"),
176 N_(" Pico's file browser is used to select a file from the"),
177 N_(" file system for inclusion in the edited text."),
179 N_("~ Both directories and files are displayed. Press ~S"),
180 N_("~ or ~R~e~t~u~r~n to select a file or directory. When a file"),
181 N_(" is selected during the \"Read File\" command, it is"),
182 N_(" inserted into edited text. Answering \"yes\" to the"),
183 N_(" verification question after a directory is selected causes"),
184 N_(" the contents of that directory to be displayed for selection."),
186 N_(" The file named \"..\" is special, and means the \"parent\""),
187 N_(" of the directory being displayed. Select this directory"),
188 N_(" to move upward in the directory tree."),
190 N_("End of Browser Help."),
196 * Help for standalone browser (pilot)
198 static char *sa_BrowseHelpText
[] = {
199 /* TRANSLATORS: Some more help text */
200 N_("Help for Pilot (PIne's Looker-upper Of Things"),
202 N_(" Pilot is a simple, display-oriented file system browser based on the"),
203 N_("~ Alpine message system composer. As with Alpine, commands are displayed at"),
204 N_("~ the bottom of the screen, and context-sensitive help is provided."),
206 N_("~ Pilot displays the current working directory at the top of the screen."),
207 N_("~ The directory's contents are displayed in columns of file name, file"),
208 N_("~ size pairs. Names that are directories are indicated by the name"),
209 N_("~ ~(~d~i~r~) in place of the file size. The parent of the current working"),
210 N_("~ directory is indicated by the file name ~.~. and size of ~(~p~a~r~e~n~t~ ~d~i~r~)."),
211 N_("~ File names that are symbolic links to other files are displayed with a"),
212 N_("~ file size of ~-~-."),
214 N_(" The following function keys are available in Pilot:"),
216 N_("~ ~? Display this help text."),
217 N_("~ ~Q Quit Pilot."),
219 N_("~ ~V View the currently selected file or open the selected directory."),
220 N_("~ Note: Pilot invokes ~p~i~n~e ~-~F, or the program defined by the ~P~A~G~E~R"),
221 N_("~ environment variable, to view the file."),
222 N_("~ ~L Launch an external application program."),
224 N_("~ ~W Search for a file by name."),
225 N_("~ ~- Scroll up one page."),
226 N_("~ ~S~p~a~c~e Scroll down one page."),
227 N_("~ ~N,~^~F Move forward (right) one column."),
228 N_("~ ~P,~^~B Move back (left) one column."),
229 N_("~ ~^~N Move down one row."),
230 N_("~ ~^~P Move up one row."),
232 N_("~ ~D Delete the selected file."),
233 N_("~ ~R Rename the selected file or directory."),
234 N_("~ ~C Copy the selected file."),
235 N_("~ ~E Edit the selected file."),
236 N_("~ Note: Pilot invokes ~p~i~c~o, or the program defined by the ~E~D~I~T~O~R"),
237 N_("~ environment variable, to edit the file."),
239 N_("End of Pilot Help."),
246 * pico_file_browse - Exported version of FileBrowse below.
249 pico_file_browse(PICO
*pdata
, char *dir
, size_t dirlen
, char *fn
, size_t fnlen
,
250 char *sz
, size_t szlen
, int flags
)
256 gmode
= pdata
->pine_flags
| MDEXTFB
;
259 /* only init screen bufs for display and winch handler */
264 term
.t_mrow
= Pmaster
->menu_rows
;
265 if(Pmaster
->oper_dir
)
266 strncpy(opertree
, Pmaster
->oper_dir
, NLINE
);
269 fixpath(opertree
, sizeof(opertree
));
272 /* install any necessary winch signal handler */
275 snprintf(title_buf
, sizeof(title_buf
), "%s FILE", pdata
->pine_anchor
);
276 set_browser_title(title_buf
);
277 rv
= FileBrowse(dir
, dirlen
, fn
, fnlen
, sz
, szlen
, flags
, NULL
);
278 set_browser_title(NULL
);
279 vttidy(); /* clean up tty handling */
280 zotdisplay(); /* and display structures */
281 Pmaster
= NULL
; /* and global config structure */
288 * FileBrowse - display contents of given directory dir
291 * dir points to initial dir to browse.
292 * dirlen- buffer size of dir
293 * fn initial file name.
294 * fnlen- buffer size of fn
297 * dir points to currently selected directory (without
298 * trailing file system delimiter)
299 * fn points to currently selected file
300 * sz points to size of file if ptr passed was non-NULL
303 * Special dispensation for FB_LMODE. If the caller sets
304 * FB_LMODEPOS, and the caller passes a non-null lmreturn,
305 * then the return values will be in lmreturn instead of
306 * in dir and fn. The caller is responsible for freeing
307 * the contents of lmreturn.
309 * 1 if a file's been selected
310 * 0 if no files selected
311 * -1 if there were problems
314 FileBrowse(char *dir
, size_t dirlen
, char *fn
, size_t fnlen
,
315 char *sz
, size_t szlen
, int fb_flags
, LMLIST
**lmreturn
)
319 int row
, col
, crow
, ccol
;
320 int bsearch
; /* search forward by default */
321 char *p
, *envp
, child
[NLINE
], tmp
[NLINE
];
331 if((gmode
&MDTREE
) && !in_oper_tree(dir
)){
333 emlwrite(_("\007Can't read outside of %s in restricted mode"), &eml
);
339 /* fix up function key mapping table */
340 /* fix up key menu labels */
343 /* build contents of cell structures */
344 if((gmp
= getfcells(dir
, fb_flags
)) == NULL
)
349 if((tp
= FindCell(gmp
, fn
, 0)) != NULL
){
351 PlaceCell(gmp
, gmp
->current
, &row
, &col
);
356 PaintBrowser(gmp
, 0, &crow
, &ccol
);
358 while(1){ /* the big loop */
359 if(!(gmode
&MDSHOCUR
)){
360 crow
= term
.t_nrow
-term
.t_mrow
;
364 if(!(gmode
&MDSHOCUR
))
365 movecursor(crow
, ccol
);
366 else if(gmp
->flags
& FB_LMODEPOS
){
367 if(gmp
->flags
& FB_LMODE
&& gmp
->current
->mode
!= FIODIR
)
368 movecursor(crow
, ccol
+1);
370 movecursor(crow
, ccol
+4);
373 movecursor(crow
, ccol
);
378 /* cause bottom three lines to repaint */
379 PaintBrowser(gmp
, 0, &crow
, &ccol
);
382 if(km_popped
){ /* temporarily change to cause menu to paint */
384 movecursor(term
.t_nrow
-2, 0); /* clear status line */
393 mouse_in_content(KEY_MOUSE
, -1, -1, 0, 0);
394 register_mfunc(mouse_in_content
,2,0,term
.t_nrow
-(term
.t_mrow
+1),
399 clear_mfunc(mouse_in_content
);
403 if(Pmaster
->newmail
&& (c
== NODATA
|| time_to_check())){
404 if((*Pmaster
->newmail
)(c
== NODATA
? 0 : 2, 1) >= 0){
407 if(km_popped
){ /* restore display */
409 PaintBrowser(gmp
, 0, &crow
, &ccol
);
414 rv
= (*Pmaster
->showmsg
)(c
);
417 if(rv
) /* Did showmsg corrupt the display? */
418 PaintBrowser(gmp
, 0, &crow
, &ccol
); /* Yes, repaint */
424 if(gmp
->flags
& FB_LMODEPOS
){
425 if(gmp
->flags
& FB_LMODE
&& gmp
->current
->mode
!= FIODIR
)
426 movecursor(crow
, ccol
+1);
428 movecursor(crow
, ccol
+4);
431 movecursor(crow
, ccol
);
435 if(get_input_timeout() && (c
== NODATA
|| time_to_check()))
437 emlwrite(_("You may possibly have new mail."), NULL
);
448 /* clear bottom three lines */
449 movecursor(term
.t_nrow
-2, 0);
451 movecursor(term
.t_nrow
-1, 0);
453 movecursor(term
.t_nrow
, 0);
458 if(c
== NODATA
) /* GetKey timed out */
461 (*Pmaster
->keybinput
)();
464 if(mpresf
){ /* blast old messages */
465 if(mpresf
++ > MESSDELAY
){ /* every few keystrokes */
470 /* process commands */
471 switch(new_c
= normalize_cmd(c
,bfmappings
[(gmode
&MDBRONLY
)?0:1],2)){
473 case KEY_RIGHT
: /* move right */
475 case (CTRL
|'F'): /* forward */
478 if(gmp
->current
->next
== NULL
){
483 PlaceCell(gmp
, gmp
->current
, &row
, &col
);
484 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 0);
485 gmp
->current
= gmp
->current
->next
;
486 if(PlaceCell(gmp
, gmp
->current
, &row
, &col
)){
487 PaintBrowser(gmp
, 1, &crow
, &ccol
);
490 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 1);
496 case KEY_LEFT
: /* move left */
497 case (CTRL
|'B'): /* back */
500 if(gmp
->current
->prev
== NULL
){
505 PlaceCell(gmp
, gmp
->current
, &row
, &col
);
506 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 0);
507 gmp
->current
= gmp
->current
->prev
;
508 if(PlaceCell(gmp
, gmp
->current
, &row
, &col
)){
509 PaintBrowser(gmp
, 1, &crow
, &ccol
);
512 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 1);
518 case (CTRL
|'A'): /* beginning of line */
526 PlaceCell(gmp
, gmp
->current
, &row
, &col
);
527 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 0);
529 if(PlaceCell(gmp
, tp
, &row
, &col
)){
530 PaintBrowser(gmp
, 1, &crow
, &ccol
);
533 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 1);
539 case (CTRL
|'E'): /* end of line */
542 while(i
+gmp
->cpf
<= gmp
->cpf
* gmp
->fpl
){
548 PlaceCell(gmp
, gmp
->current
, &row
, &col
);
549 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 0);
551 if(PlaceCell(gmp
, tp
, &row
, &col
)){
552 PaintBrowser(gmp
, 1, &crow
, &ccol
);
555 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 1);
561 case (CTRL
|'V'): /* page forward */
566 i
= term
.t_nrow
- term
.t_mrow
- 2;
568 while(i
-- && tp
->next
!= NULL
){
570 while(++j
<= gmp
->fpl
&& tp
->next
!= NULL
)
577 PlaceCell(gmp
, gmp
->current
, &row
, &col
);
578 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 0);
580 if(PlaceCell(gmp
, tp
, &row
, &col
)){
581 PaintBrowser(gmp
, 1, &crow
, &ccol
);
584 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 1);
591 case (CTRL
|'Y'): /* page backward */
595 i
= term
.t_nrow
- term
.t_mrow
- 4;
596 while(i
-- && tp
!= NULL
){
598 while(j
-- && tp
!= NULL
)
602 if(tp
|| (gmp
->current
!= gmp
->top
)){ /* clear old hilite */
603 PlaceCell(gmp
, gmp
->current
, &row
, &col
);
604 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 0);
607 if(tp
) /* new page ! */
609 else if(gmp
->current
!= gmp
->top
) /* goto top of page */
610 gmp
->current
= gmp
->top
;
611 else /* do nothing */
614 if(PlaceCell(gmp
, gmp
->current
, &row
, &col
)){
615 PaintBrowser(gmp
, 1, &crow
, &ccol
);
618 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 1);
626 case (CTRL
|'N'): /* next */
630 if(tp
->next
== NULL
){
637 if(i
!= -1) /* can't go down */
640 PlaceCell(gmp
, gmp
->current
, &row
, &col
);
641 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 0);
643 if(PlaceCell(gmp
, tp
, &row
, &col
)){
644 PaintBrowser(gmp
, 1, &crow
, &ccol
);
647 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 1);
654 case (CTRL
|'P'): /* previous */
663 PlaceCell(gmp
, gmp
->current
, &row
, &col
);
664 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 0);
666 if(PlaceCell(gmp
, tp
, &row
, &col
)){
667 PaintBrowser(gmp
, 1, &crow
, &ccol
);
670 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 1);
678 mouse_get_last (NULL
, &mousep
);
679 if (mousep
.doubleclick
) {
683 row
= mousep
.row
-= 2; /* Adjust for header*/
685 i
= row
* gmp
->fpl
+ (col
/ gmp
->cpf
); /* Count from top */
686 tp
= gmp
->top
; /* start at top. */
687 for (; i
> 0 && tp
!= NULL
; --i
) /* Count cells. */
689 if (tp
!= NULL
) { /* Valid cell? */
690 PlaceCell(gmp
, gmp
->current
, &row
, &col
);
691 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 0);
693 if(PlaceCell(gmp
, tp
, &row
, &col
)){
694 PaintBrowser(gmp
, 1, &crow
, &ccol
);
697 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 1);
706 case 'e': /* exit or edit */
708 if(gmode
&MDBRONLY
){ /* run "pico" */
709 snprintf(child
, sizeof(child
), "%s%c%s", gmp
->dname
, C_FILESEP
,
710 gmp
->current
->fname
);
711 /* make sure selected isn't a directory or executable */
712 if(!LikelyASCII(child
)){
713 emlwrite(_("Can't edit non-text file. Try Launch."), NULL
);
717 if((envp
= (char *) getenv("EDITOR")) != NULL
)
718 snprintf(tmp
, sizeof(tmp
), "%s \'%s\'", envp
, child
);
720 snprintf(tmp
, sizeof(tmp
), "pico%s%s%s \'%s\'",
721 (gmode
& MDFKEY
) ? " -f" : "",
722 (gmode
& MDSHOCUR
) ? " -g" : "",
723 (gmode
& MDMOUSE
) ? " -m" : "",
726 BrowserRunChild(tmp
, gmp
->dname
); /* spawn pico */
727 PaintBrowser(gmp
, 0, &crow
, &ccol
); /* redraw browser */
736 case 'q': /* user exits wrong */
746 case 'x': /* toggle selection */
748 if(!(gmp
->flags
& FB_LMODE
)){
749 if(gmp
->flags
& FB_LMODEPOS
)
750 emlwrite(_("\007Type L command to use ListMode"), NULL
);
757 if(gmp
->current
->mode
== FIODIR
){
758 emlwrite(_("\007Can't Set directories"), NULL
);
762 if(fcell_is_selected(gmp
->current
, gmp
))
763 del_cell_from_lmlist(gmp
->current
, gmp
);
765 add_cell_to_lmlist(gmp
->current
, gmp
);
767 PlaceCell(gmp
, gmp
->current
, &row
, &col
);
768 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 1);
771 case 'l': /* run Command */
772 case 'L': /* or ListMode */
773 if(gmp
->flags
& FB_LMODEPOS
){
774 if(gmp
->flags
& FB_LMODE
){
776 * Unless we make it so you can get out of ListMode
777 * once you're in ListMode, this must be an error.
779 emlwrite(_("\007Already in ListMode"), NULL
);
783 gmp
->flags
|= FB_LMODE
;
784 PaintBrowser(gmp
, 0, &crow
, &ccol
);
790 if(!(gmode
&MDBRONLY
)){
795 /* add subcommands to invoke pico and insert selected filename */
796 /* perhaps: add subcmd to scroll command history */
800 snprintf(child
, sizeof(child
), "%s%c%s", gmp
->dname
, C_FILESEP
,
801 gmp
->current
->fname
);
803 static EXTRAKEYS opts
[] = {
804 {"^X", N_("Add Name"), CTRL
|'X', KS_NONE
},
805 {NULL
, NULL
, 0, KS_NONE
},
808 status
= mlreply_utf8(_("Command to execute: "),
809 tmp
, NLINE
, QNORML
, opts
);
812 emlwrite(_("\007No help yet!"), NULL
);
813 /* remove break and sleep after help text is installed */
817 strncat(tmp
, child
, sizeof(tmp
)-strlen(tmp
)-1);
818 tmp
[sizeof(tmp
)-1] = '\0';
821 PaintBrowser(gmp
, 0, &crow
, &ccol
);
824 emlwrite(_("Command cancelled"), NULL
);
832 emlwrite(_("No command specified"), NULL
);
836 BrowserRunChild(tmp
, gmp
->dname
);
837 PaintBrowser(gmp
, 0, &crow
, &ccol
);
847 case 'd': /* delete */
849 if(gmp
->current
->mode
== FIODIR
){
850 /* BUG: if dir is empty it should be deleted */
851 emlwrite(_("\007Can't delete a directory"), NULL
);
855 if(gmode
&MDSCUR
){ /* not allowed! */
856 emlwrite(_("Delete not allowed in restricted mode"),NULL
);
860 snprintf(child
, sizeof(child
), "%s%c%s", gmp
->dname
, C_FILESEP
,
861 gmp
->current
->fname
);
864 while(i
++ < 2){ /* verify twice!! */
866 if(fexist(child
, "w", (off_t
*)NULL
) != FIOSUC
){
867 strncpy(tmp
, _("File is write protected! OVERRIDE"), sizeof(tmp
));
868 tmp
[sizeof(tmp
)-1] = '\0';
871 /* TRANSLATORS: This is a question, Delete file <filename> */
872 snprintf(tmp
, sizeof(tmp
), _("Delete file \"%.*s\""), NLINE
- 20, child
);
875 strncpy(tmp
, _("File CANNOT be UNdeleted! Really delete"), sizeof(tmp
));
876 tmp
[sizeof(tmp
)-1] = '\0';
879 if((status
= mlyesno_utf8(tmp
, FALSE
)) != TRUE
){
880 emlwrite((status
== ABORT
)
881 ? _("Delete Cancelled")
882 : _("File Not Deleted"),
889 if(our_unlink(child
) < 0){
890 eml
.s
= errstr(errno
);
891 emlwrite(_("Delete Failed: %s"), &eml
);
893 else{ /* fix up pointers and redraw */
896 gmp
->current
= tp
->next
;
897 if((tp
->next
->prev
= tp
->prev
) != NULL
)
898 tp
->prev
->next
= tp
->next
;
901 gmp
->current
= tp
->prev
;
902 if((tp
->prev
->next
= tp
->next
) != NULL
)
903 tp
->next
->prev
= tp
->prev
;
907 gmp
->head
= tp
->next
;
909 if(tp
== gmp
->bottom
)
910 gmp
->bottom
= tp
->prev
;
913 tp
->next
= tp
->prev
= NULL
;
914 if(tp
!= gmp
->current
)
917 if((tp
= FindCell(gmp
, gmp
->current
->fname
, 0)) != NULL
){
919 PlaceCell(gmp
, gmp
->current
, &row
, &col
);
922 PaintBrowser(gmp
, 1, &crow
, &ccol
);
930 case '?': /* HELP! */
932 if(term
.t_mrow
== 0){
940 VARS_TO_SAVE
*saved_state
;
942 saved_state
= save_pico_state();
943 (*Pmaster
->helper
)(Pmaster
->browse_help
,
944 _("Help for Browsing"), 1);
946 restore_pico_state(saved_state
);
947 free_pico_state(saved_state
);
950 else if(gmode
&MDBRONLY
)
951 pico_help(sa_BrowseHelpText
, _("Browser Help"), 1);
953 pico_help(BrowseHelpText
, _("Help for Browsing"), 1);
954 /* fall thru to repaint everything */
957 PaintBrowser(gmp
, 0, &crow
, &ccol
);
960 case 'g': /* jump to a directory */
971 /* TRANSLATORS: A prompt asking for a directory to
973 status
= mlreply_utf8(_("Directory to go to: "), child
, NLINE
, QNORML
,
978 emlwrite(_("\007No help yet!"), NULL
);
979 /* remove break and sleep after help text is installed */
983 PaintBrowser(gmp
, 0, &crow
, &ccol
);
986 emlwrite(_("Goto cancelled"), NULL
);
994 strncpy(child
, gethomedir(NULL
), sizeof(child
));
995 child
[sizeof(child
)-1] = '\0';
998 if(!compresspath(gmp
->dname
, child
, sizeof(child
))){
1000 emlwrite(_("Invalid Directory: %s"), &eml
);
1004 if((gmode
&MDSCUR
) && homeless(child
)){
1005 emlwrite(_("Restricted mode browsing limited to home directory"),NULL
);
1009 if((gmode
&MDTREE
) && !in_oper_tree(child
)){
1011 emlwrite(_("\007 Can't go outside of %s in restricted mode"),
1016 if(isdir(child
, (long *) NULL
, NULL
)){
1017 if((mp
= getfcells(child
, fb_flags
)) == NULL
){
1018 /* getfcells should explain what happened */
1025 PaintBrowser(gmp
, 0, &crow
, &ccol
);
1029 emlwrite(_("\007Not a directory: \"%s\""), &eml
);
1042 if(gmode
&MDSCUR
){ /* not allowed! */
1043 emlwrite(_("Add not allowed in restricted mode"),NULL
);
1049 /* pass in default filename */
1051 strncpy(child
, fn
, sizeof(child
) - 1);
1052 child
[sizeof(child
) - 1] = '\0';
1057 switch(status
=mlreply_utf8(_("Name of file to add: "), child
, NLINE
,
1060 emlwrite(_("\007No help yet!"), NULL
);
1061 /* remove break and sleep after help text is installed */
1065 PaintBrowser(gmp
, 0, &crow
, &ccol
);
1068 emlwrite(_("Add File Cancelled"), NULL
);
1073 * Support default filename. A return of 'FALSE' means
1074 * 'No change in filename' which is fine if we have
1075 * provided a default.
1076 * John Berthels <john.berthels@nexor.co.uk>
1082 if(child
[0] == '\0'){
1083 emlwrite(_("No file named. Add Cancelled."), NULL
);
1087 if(!compresspath(gmp
->dname
, child
, sizeof(child
))){
1088 emlwrite(_("Too many ..'s in name"), NULL
);
1092 if((gmode
&MDTREE
) && !in_oper_tree(child
)){
1094 emlwrite(_("\007Restricted mode allows Add in %s only"),
1099 if((status
= fexist(child
, "w", (off_t
*)NULL
)) == FIOSUC
){
1100 snprintf(tmp
, sizeof(tmp
), _("File \"%.*s\" already exists!"),
1102 emlwrite(tmp
, NULL
);
1105 else if(status
!= FIOFNF
){
1106 fioperr(status
, child
);
1110 if(ffwopen(child
, FALSE
) != FIOSUC
){
1111 /* ffwopen should've complained */
1114 else{ /* highlight new file */
1117 emlwrite(_("Added File \"%s\""), &eml
);
1119 if((p
= strrchr(child
, C_FILESEP
)) == NULL
){
1120 emlwrite(_("Problems refiguring browser"), NULL
);
1126 strncpy(tmp
, child
, sizeof(tmp
));
1127 tmp
[sizeof(tmp
)-1] = '\0';
1129 while((child
[j
++] = *++p
) != '\0')
1133 strncpy(tmp
, S_FILESEP
, sizeof(tmp
));
1134 tmp
[sizeof(tmp
)-1] = '\0';
1138 * new file in same dir? if so, refigure files
1141 if(!strcmp(tmp
, gmp
->dname
)){
1142 if((mp
= getfcells(gmp
->dname
, fb_flags
)) == NULL
)
1143 /* getfcells should explain what happened */
1148 if((tp
= FindCell(gmp
, child
, 0)) != NULL
){
1150 PlaceCell(gmp
, gmp
->current
, &row
, &col
);
1153 PaintBrowser(gmp
, 1, &crow
, &ccol
);
1165 case 'c': /* copy */
1167 if(gmp
->current
->mode
== FIODIR
){
1168 emlwrite(_("\007Can't copy a directory"), NULL
);
1172 if(gmode
&MDSCUR
){ /* not allowed! */
1173 emlwrite(_("Copy not allowed in restricted mode"),NULL
);
1182 switch(status
=mlreply_utf8(_("Name of new copy: "), child
, NLINE
,
1185 emlwrite(_("\007No help yet!"), NULL
);
1186 /* remove break and sleep after help text is installed */
1190 PaintBrowser(gmp
, 0, &crow
, &ccol
);
1193 emlwrite(_("Make Copy Cancelled"), NULL
);
1203 if(child
[0] == '\0'){
1204 emlwrite(_("No destination, file not copied"), NULL
);
1208 if(!strcmp(gmp
->current
->fname
, child
)){
1209 emlwrite(_("\007Can't copy file on to itself!"), NULL
);
1213 if(!compresspath(gmp
->dname
, child
, sizeof(child
))){
1214 emlwrite(_("Too many ..'s in name"), NULL
);
1218 if((gmode
&MDTREE
) && !in_oper_tree(child
)){
1220 emlwrite(_("\007Restricted mode allows Copy in %s only"),
1225 if((status
= fexist(child
, "w", (off_t
*)NULL
)) == FIOSUC
){
1226 /* TRANSLATORS: A question: File <filename> exists! Replace? */
1227 snprintf(tmp
, sizeof(tmp
), _("File \"%.*s\" exists! OVERWRITE"),
1229 if((status
= mlyesno_utf8(tmp
, 0)) != TRUE
){
1230 emlwrite((status
== ABORT
)
1231 ? _("Make copy cancelled")
1232 : _("File Not Renamed"),
1237 else if(status
!= FIOFNF
){
1238 fioperr(status
, child
);
1242 snprintf(tmp
, sizeof(tmp
), "%s%c%s", gmp
->dname
, C_FILESEP
,
1243 gmp
->current
->fname
);
1245 if(copy(tmp
, child
) < 0){
1246 /* copy() will report any error messages */
1249 else{ /* highlight new file */
1251 emlwrite(_("File copied to %s"), &eml
);
1253 if((p
= strrchr(child
, C_FILESEP
)) == NULL
){
1254 emlwrite(_("Problems refiguring browser"), NULL
);
1259 strncpy(tmp
, (p
== child
) ? S_FILESEP
: child
, sizeof(tmp
));
1260 tmp
[sizeof(tmp
)-1] = '\0';
1263 * new file in same dir? if so, refigure files
1266 if(!strcmp(tmp
, gmp
->dname
)){
1267 strncpy(child
, gmp
->current
->fname
, sizeof(child
));
1268 child
[sizeof(child
)-1] = '\0';
1269 if((mp
= getfcells(gmp
->dname
, fb_flags
)) == NULL
)
1270 /* getfcells should explain what happened */
1275 if((tp
= FindCell(gmp
, child
, 0)) != NULL
){
1277 PlaceCell(gmp
, gmp
->current
, &row
, &col
);
1280 PaintBrowser(gmp
, 1, &crow
, &ccol
);
1291 case 'r': /* rename */
1295 if(!strcmp(gmp
->current
->fname
, "..")){
1296 emlwrite(_("\007Can't rename \"..\""), NULL
);
1300 if(gmode
&MDSCUR
){ /* not allowed! */
1301 emlwrite(_("Rename not allowed in restricted mode"),NULL
);
1305 strncpy(child
, gmp
->current
->fname
, sizeof(child
));
1306 child
[sizeof(child
)-1] = '\0';
1310 switch(status
=mlreply_utf8(_("Rename file to: "), child
, NLINE
, QFFILE
,
1313 emlwrite(_("\007No help yet!"), NULL
);
1314 /* remove break and sleep after help text is installed */
1318 PaintBrowser(gmp
, 0, &crow
, &ccol
);
1321 emlwrite(_("Rename cancelled"), NULL
);
1328 if(child
[0] == '\0' || status
== FALSE
){
1333 if(!compresspath(gmp
->dname
, child
, sizeof(child
))){
1334 emlwrite(_("Too many ..'s in name"), NULL
);
1338 if((gmode
&MDTREE
) && !in_oper_tree(child
)){
1340 emlwrite(_("\007Restricted mode allows Rename in %s only"),
1345 status
= fexist(child
, "w", (off_t
*)NULL
);
1346 if(status
== FIOSUC
|| status
== FIOFNF
){
1347 if(status
== FIOSUC
){
1348 snprintf(tmp
, sizeof(tmp
), _("File \"%.*s\" exists! OVERWRITE"),
1351 if((status
= mlyesno_utf8(tmp
, FALSE
)) != TRUE
){
1352 emlwrite((status
== ABORT
)
1353 ? _("Rename cancelled")
1360 snprintf(tmp
, sizeof(tmp
), "%s%c%s", gmp
->dname
, C_FILESEP
,
1361 gmp
->current
->fname
);
1363 if(our_rename(tmp
, child
) < 0){
1364 eml
.s
= errstr(errno
);
1365 emlwrite(_("Rename Failed: %s"), &eml
);
1368 if((p
= strrchr(child
, C_FILESEP
)) == NULL
){
1369 emlwrite(_("Problems refiguring browser"), NULL
);
1374 strncpy(tmp
, (p
== child
) ? S_FILESEP
: child
, sizeof(tmp
));
1375 tmp
[sizeof(tmp
)-1] = '\0';
1377 if((mp
= getfcells(tmp
, fb_flags
)) == NULL
)
1378 /* getfcells should explain what happened */
1384 if((tp
= FindCell(gmp
, ++p
, 0)) != NULL
){
1386 PlaceCell(gmp
, gmp
->current
, &row
, &col
);
1389 PaintBrowser(gmp
, 1, &crow
, &ccol
);
1394 fioperr(status
, child
);
1404 case 'v': /* stand-alone */
1405 case 'V': /* browser "view" */
1406 case 's': /* user "select" */
1411 if(((new_c
== 'S' || new_c
== 's') && (gmode
&MDBRONLY
))
1412 || ((new_c
== 'V' || new_c
== 'v') && !(gmode
&MDBRONLY
)))
1415 if(gmp
->current
->mode
== FIODIR
){
1417 strncpy(tmp
, gmp
->dname
, sizeof(tmp
));
1418 tmp
[sizeof(tmp
)-1] = '\0';
1419 p
= gmp
->current
->fname
;
1420 if(p
[0] == '.' && p
[1] == '.' && p
[2] == '\0'){
1421 if((p
=strrchr(tmp
, C_FILESEP
)) != NULL
){
1424 if((gmode
&MDTREE
) && !in_oper_tree(tmp
)){
1427 _("\007Can't visit %s in restricted mode"),
1432 strncpy(child
, &p
[1], sizeof(child
));
1433 child
[sizeof(child
)-1] = '\0';
1436 #if defined(DOS) || defined(OS2)
1437 (p
== tmp
|| (tmp
[1] == ':' && tmp
[2] == '\0'))
1442 #if defined(DOS) || defined(OS2)
1444 strncat(tmp
, S_FILESEP
, sizeof(tmp
)-strlen(tmp
)-1);
1445 tmp
[sizeof(tmp
)-1] = '\0';
1449 strncpy(tmp
, S_FILESEP
, sizeof(tmp
));
1450 tmp
[sizeof(tmp
)-1] = '\0';
1454 emlwrite(_("\007Can't move up a directory"),
1461 else if((fb_flags
&FB_SAVE
) && p
[0] == '.' && p
[1] == '\0'){
1462 if ((strlen(gmp
->dname
) < dirlen
) &&
1463 (strlen(gmp
->current
->fname
) < fnlen
)){
1464 strncpy(dir
, gmp
->dname
, dirlen
);
1465 dir
[dirlen
-1] = '\0';
1469 return(0); /* just change the directory, still return no selection */
1472 if(tmp
[1] != '\0'){ /* were in root? */
1473 strncat(tmp
, S_FILESEP
, sizeof(tmp
)-strlen(tmp
)-1);
1474 tmp
[sizeof(tmp
)-1] = '\0';
1477 strncat(tmp
, gmp
->current
->fname
, sizeof(tmp
)-strlen(tmp
));
1478 tmp
[sizeof(tmp
)-1] = '\0';
1481 if((mp
= getfcells(tmp
, fb_flags
)) == NULL
)
1482 /* getfcells should explain what happened */
1485 if(gmp
->flags
& FB_LMODE
){
1486 mp
->flags
|= FB_LMODE
;
1496 if((tp
= FindCell(gmp
, child
, 0)) != NULL
){
1498 PlaceCell(gmp
, gmp
->current
, &row
, &col
);
1502 emlwrite(_("\007Problem finding dir \"%s\""), &eml
);
1506 PaintBrowser(gmp
, 0, &crow
, &ccol
);
1510 snprintf(b
, sizeof(b
), "Select/View \" .. %s %s\" to return to previous directory.", PARENTDIR
, DIRWORD
);
1516 else if(gmode
&MDBRONLY
){
1517 snprintf(child
, sizeof(child
), "%s%c%s", gmp
->dname
, C_FILESEP
,
1518 gmp
->current
->fname
);
1520 if(LikelyASCII(child
)){
1521 snprintf(tmp
, sizeof(tmp
), "%s \'%s\'",
1522 (envp
= (char *) getenv("PAGER"))
1523 ? envp
: BROWSER_PAGER
, child
);
1524 BrowserRunChild(tmp
, gmp
->dname
);
1525 PaintBrowser(gmp
, 0, &crow
, &ccol
);
1530 else{ /* just return */
1531 if(gmp
->flags
& FB_LMODEPOS
){
1534 emlwrite("Programming error, called FileBrowse with LMODEPOS but no lmreturn", NULL
);
1539 /* user actually used ListMode, the list is finished */
1540 if(gmp
->flags
& FB_LMODE
){
1543 emlwrite(_("No files are selected, use \"X\" to mark files for selection"), NULL
);
1547 *lmreturn
= gmp
->lm
;
1550 else{ /* construct an lmreturn for user */
1554 if((new=(LMLIST
*)malloc(sizeof(*new))) == NULL
1555 || (new->fname
=malloc(gmp
->current
->fname
? (flen
=strlen(gmp
->current
->fname
))+1 : 1)) == NULL
1556 || (new->dir
=malloc((dlen
=strlen(gmp
->dname
))+1)) == NULL
){
1557 emlwrite("\007Can't malloc space for filename", NULL
);
1562 gmp
->current
->fname
? gmp
->current
->fname
: "", flen
);
1563 new->fname
[flen
] = '\0';
1564 strncpy(new->dir
, gmp
->dname
, dlen
);
1565 new->dir
[dlen
] = '\0';
1566 strncpy(new->size
, gmp
->current
->size
, sizeof(new->size
));
1567 new->size
[sizeof(new->size
)-1] = '\0';
1576 if ((strlen(gmp
->dname
) < dirlen
) &&
1577 (strlen(gmp
->current
->fname
) < fnlen
)){
1578 strncpy(dir
, gmp
->dname
, dirlen
);
1579 dir
[dirlen
-1] = '\0';
1580 strncpy(fn
, gmp
->current
->fname
, fnlen
);
1587 if(sz
!= NULL
){ /* size uninteresting */
1588 strncpy(sz
, gmp
->current
->size
, szlen
);
1597 case 'w': /* Where is */
1604 switch(readpattern(_("File name to find"), FALSE
, bsearch
)){
1606 emlwrite(_("\007No help yet!"), NULL
);
1607 /* remove break and sleep after help text is installed */
1611 PaintBrowser(gmp
, 0, &crow
, &ccol
);
1614 bsearch
= bsearch
== 0 ? 1 : 0;
1616 case (CTRL
|'Y'): /* first first cell */
1617 for(tp
= gmp
->top
; tp
->prev
; tp
= tp
->prev
)
1621 /* fall thru to repaint */
1626 if((i
= term
.t_nrow
- term
.t_mrow
- 2) <= 0)
1629 while(i
-- && tp
->next
){
1631 while(++j
<= gmp
->fpl
&& tp
->next
)
1640 emlwrite(_("Searched to end of directory"), NULL
);
1643 emlwrite(_("Searched to start of directory"), NULL
);
1646 PlaceCell(gmp
, gmp
->current
, &row
, &col
);
1647 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 0);
1649 if(PlaceCell(gmp
, gmp
->current
, &row
, &col
)){
1650 PaintBrowser(gmp
, 1, &crow
, &ccol
);
1653 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 1);
1659 i
++; /* make sure we jump out */
1662 emlwrite(_("Whereis cancelled"), NULL
);
1674 utf8
= ucs4_to_utf8_cpystr(pat
);
1676 if(utf8
&& (tp
= FindCell(gmp
, utf8
, bsearch
)) != NULL
){
1677 PlaceCell(gmp
, gmp
->current
, &row
, &col
);
1678 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 0);
1681 if(PlaceCell(gmp
, tp
, &row
, &col
)){ /* top changed */
1682 PaintBrowser(gmp
, 1, &crow
, &ccol
);
1685 PaintCell(row
, col
, gmp
->cpf
, gmp
->current
, 1);
1693 emlwrite(_("\"%s\" not found"), &eml
);
1697 fs_give((void **) &utf8
);
1711 #if defined MOUSE && !defined(_WINDOWS)
1712 toggle_xterm_mouse(0,1);
1721 PaintBrowser(gmp
, 0, &crow
, &ccol
);
1723 } /* fall thru with error! */
1725 default: /* what? */
1729 case NODATA
: /* no op */
1737 * getfcells - make a master browser struct and fill it in
1738 * return NULL if there's a problem.
1741 getfcells(char *dname
, int fb_flags
)
1743 int i
, /* various return codes */
1745 nentries
= 0; /* number of dir ents */
1747 char *np
, /* names of files in dir */
1748 *dcp
, /* to add file to path */
1750 **filtnames
, /* array filtered names */
1752 struct fcell
*ncp
, /* new cell pointer */
1753 *tcp
; /* trailing cell ptr */
1758 if((mp
=(struct bmaster
*)malloc(sizeof(struct bmaster
))) == NULL
){
1759 emlwrite("\007Can't malloc space for master filename cell", NULL
);
1763 memset(mp
, 0, sizeof(*mp
));
1765 if(dname
[0] == '.' && dname
[1] == '\0'){ /* remember this dir */
1766 if(!getcwd(mp
->dname
, 256))
1767 mp
->dname
[0] = '\0';
1769 else if(dname
[0] == '.' && dname
[1] == '.' && dname
[2] == '\0'){
1770 if(!getcwd(mp
->dname
, 256))
1771 mp
->dname
[0] = '\0';
1773 if((np
= (char *)strrchr(mp
->dname
, C_FILESEP
)) != NULL
)
1779 strncpy(mp
->dname
, dname
, sizeof(mp
->dname
));
1780 mp
->dname
[sizeof(mp
->dname
)-1] = '\0';
1783 mp
->bottom
= mp
->head
= mp
->top
= NULL
;
1784 mp
->cpf
= mp
->fpl
= 0;
1785 mp
->longest
= 5; /* .. must be labeled! */
1786 mp
->flags
= fb_flags
;
1789 emlwrite("Building file list of %s...", &eml
);
1791 if((mp
->names
= getfnames(mp
->dname
, NULL
, &nentries
, errbuf
, sizeof(errbuf
))) == NULL
){
1794 emlwrite(errbuf
, NULL
);
1800 * this is the fun part. build an array of pointers to the fnames we're
1801 * interested in (i.e., do any filtering), then pass that off to be
1802 * sorted before building list of cells...
1804 * right now default filtering on ".*" except "..", but this could
1805 * easily be made a user option later on...
1807 if((filtnames
=(char **)malloc((nentries
+1) * sizeof(char *))) == NULL
){
1808 emlwrite("\007Can't malloc space for name array", NULL
);
1813 i
= 0; /* index of filt'd array */
1820 * Filter dot files? Always filter ".", never filter "..",
1821 * and sometimes fitler ".*"...
1823 if(*np
== '.' && (!(*(np
+1) == '.' && *(np
+2) == '\0')
1824 && !(*(np
+1) == '\0' && (fb_flags
&FB_SAVE
)))
1825 && (*(np
+1) == '\0' || !(gmode
& MDDOTSOK
))){
1826 np
+= strlen(np
) + 1;
1830 filtnames
[i
++] = np
;
1832 ii
= (int) strlen(np
);
1833 if((width
= (int) utf8_width(np
)) > mp
->longest
)
1834 mp
->longest
= width
; /* remember longest */
1836 np
+= ii
+ 1; /* advance name pointer */
1839 nentries
= i
; /* new # of entries */
1842 * sort files case independently
1844 qsort((qsort_t
*)filtnames
, (size_t)nentries
, sizeof(char *), sstrcasecmp
);
1847 * this is so we use absolute path names for stats.
1848 * remember: be careful using dname as directory name, and fix mp->dname
1851 dcp
= (char *) strchr(mp
->dname
, '\0');
1852 if(dcp
== mp
->dname
|| dcp
[-1] != C_FILESEP
){
1860 while(nentries
--){ /* stat filtered files */
1861 /* get a new cell */
1862 if((ncp
=(struct fcell
*)malloc(sizeof(struct fcell
))) == NULL
){
1863 emlwrite("\007Can't malloc cells for browser!", NULL
);
1864 zotfcells(mp
->head
); /* clean up cells */
1865 free((char *) filtnames
);
1867 return(NULL
); /* bummer. */
1870 ncp
->next
= ncp
->prev
= NULL
;
1872 if(mp
->head
== NULL
){ /* tie it onto the list */
1873 mp
->head
= mp
->top
= mp
->current
= ncp
;
1883 /* fill in the new cell */
1884 ncp
->fname
= filtnames
[i
++];
1886 /* fill in file's mode */
1887 if ((flength
= strlen(ncp
->fname
) + 1 + strlen(dname
)) < sizeof(mp
->dname
)){
1888 strncpy(&dcp
[1], ncp
->fname
, sizeof(mp
->dname
)-(dcp
+1-mp
->dname
)); /* use absolute path! */
1889 mp
->dname
[sizeof(mp
->dname
)-1] = '\0';
1893 if((tmpstr
= (char *)malloc((flength
+1)*sizeof(char))) == NULL
){
1894 emlwrite("\007Can't malloc cells for temp buffer!", NULL
);
1895 zotfcells(mp
->head
); /* clean up cells */
1896 free((char *) filtnames
);
1898 return(NULL
); /* bummer. */
1901 strncpy(tmpstr
, dname
, flength
);
1902 tmpstr
[flength
] = '\0';
1903 tmpstr
= strncat(tmpstr
, S_FILESEP
, flength
+1-1-strlen(tmpstr
));
1904 tmpstr
[flength
] = '\0';
1905 tmpstr
= strncat(tmpstr
, ncp
->fname
, flength
+1-1-strlen(tmpstr
));
1906 tmpstr
[flength
] = '\0';
1909 switch(fexist(tmpstr
, "t", &attsz
)){
1912 snprintf(ncp
->size
, sizeof(ncp
->size
), "(%s%s%s)",
1913 (ncp
->fname
[0] == '.' && ncp
->fname
[1] == '.'
1914 && ncp
->fname
[2] == '\0') ? PARENTDIR
:
1915 ((fb_flags
&FB_SAVE
) && ncp
->fname
[0] == '.' && ncp
->fname
[1] == '\0'
1917 (ncp
->fname
[0] == '.' && ncp
->fname
[1] == '.'
1918 && ncp
->fname
[2] == '\0') ? " " :
1919 ((fb_flags
&FB_SAVE
) && ncp
->fname
[0] == '.' && ncp
->fname
[1] == '\0'
1926 strncpy(ncp
->size
, "--", sizeof(ncp
->size
));
1927 ncp
->size
[sizeof(ncp
->size
)-1] = '\0';
1931 ncp
->mode
= FIOSUC
; /* regular file */
1932 strncpy(ncp
->size
, prettysz(attsz
), sizeof(ncp
->size
));
1933 ncp
->size
[sizeof(ncp
->size
)-1] = '\0';
1937 if (flength
>= NLINE
)
1938 free((char *) tmpstr
);
1941 dcp
[(dcp
== mp
->dname
) ? 1 : 0] = '\0'; /* remember to cap dname */
1942 free((char *) filtnames
); /* 'n blast filt'd array*/
1946 if(strlen(mp
->dname
) < sizeof(browse_dir
)){
1947 strncpy(browse_dir
, mp
->dname
, sizeof(browse_dir
));
1948 browse_dir
[sizeof(browse_dir
)-1] = '\0';
1951 browse_dir
[0] = '\0';
1958 fcell_is_selected(struct fcell
*cell
, struct bmaster
*mp
)
1962 if(cell
&& cell
->fname
){
1963 for(lm
= mp
? mp
->lm
: NULL
; lm
; lm
= lm
->next
){
1964 /* directory has to match */
1965 if(!((mp
->dname
[0] == '\0' && (!lm
->dir
|| lm
->dir
[0] =='\0'))
1966 || (mp
->dname
[0] != '\0' && lm
->dir
&& lm
->dir
[0] !='\0'
1967 && !strcmp(mp
->dname
, lm
->dir
))))
1970 if(lm
->fname
&& !strcmp(cell
->fname
, lm
->fname
))
1980 * Adds a new name to the head of the lmlist
1983 add_cell_to_lmlist(struct fcell
*cell
, struct bmaster
*mp
)
1988 if(mp
&& cell
&& cell
->fname
&& cell
->fname
[0]){
1989 if((new=(LMLIST
*)malloc(sizeof(*new))) == NULL
||
1990 (new->fname
=malloc(sizeof(char)*((flen
=strlen(cell
->fname
))+1))) == NULL
||
1991 (new->dir
=malloc(sizeof(char)*((dlen
=strlen(mp
->dname
))+1))) == NULL
){
1992 emlwrite("\007Can't malloc space for filename", NULL
);
1996 strncpy(new->fname
, cell
->fname
, flen
);
1997 new->fname
[flen
] = '\0';
1998 strncpy(new->dir
, mp
->dname
, dlen
);
1999 new->dir
[dlen
] = '\0';
2000 new->size
[0] = '\0';
2002 strncpy(new->size
, cell
->size
, sizeof(new->size
));
2003 new->size
[sizeof(new->size
)-1] = '\0';
2013 * Deletes a name from the lmlist
2016 del_cell_from_lmlist(struct fcell
*cell
, struct bmaster
*mp
)
2018 LMLIST
*lm
, *lmprev
= NULL
;
2020 if(mp
&& cell
&& cell
->fname
&& cell
->fname
[0])
2021 for(lm
= mp
? mp
->lm
: NULL
; lm
; lm
= lm
->next
){
2022 if(lm
->fname
&& strcmp(cell
->fname
, lm
->fname
) == 0){
2023 free((char *) lm
->fname
);
2025 free((char *) lm
->dir
);
2028 lmprev
->next
= lm
->next
;
2043 * PaintCell - print the given cell at the given location on the display
2044 * the format of a printed cell is:
2049 PaintCell(int row
, int col
,
2050 int sc
, /* screen columns available for this cell */
2051 struct fcell
*cell
, int inverted
)
2053 char buf1
[NLINE
], buf2
[NLINE
];
2055 int need
, l_wid
, f_wid
, f_to_s_wid
, s_wid
;
2061 l_wid
= (gmp
&& ((gmp
->flags
& FB_LMODEPOS
) > 4)) ? 4 : 0;
2062 f_wid
= utf8_width(cell
->fname
? cell
->fname
: "");
2064 s_wid
= utf8_width(cell
->size
? cell
->size
: "");
2066 /* the two is the space between cell columns */
2067 sc
= MIN(sc
-2, term
.t_ncol
-col
);
2070 if(gmp
&& gmp
->flags
& FB_LMODE
&& cell
->mode
!= FIODIR
){
2072 * We have to figure out here if it is selected or not
2073 * and use that to write the X or space.
2076 if(fcell_is_selected(cell
, gmp
))
2085 lbuf
[0] = lbuf
[1] = lbuf
[2] = lbuf
[3] = ' ';
2093 need
= f_wid
+f_to_s_wid
+s_wid
;
2095 /* space between name and size */
2097 f_to_s_wid
+= (sc
-need
);
2100 * If the width isn't enough to handle everything we're just putting a single
2101 * space between fname and size and truncating on the right. That means that
2102 * the sizes in the right hand column won't line up correctly when there is
2103 * a lack of space. Instead, we opt for displaying as much info as possible
2104 * in a slightly discordant way.
2107 movecursor(row
, col
);
2109 ucs
= utf8_to_ucs4_cpystr(lbuf
);
2112 fs_give((void **) &ucs
);
2116 utf8_snprintf(buf1
, sizeof(buf1
), "%*.*w%*.*w%*.*w",
2117 f_wid
, f_wid
, cell
->fname
? cell
->fname
: "",
2118 f_to_s_wid
, f_to_s_wid
, "",
2119 s_wid
, s_wid
, cell
->size
? cell
->size
: "");
2121 utf8_snprintf(buf2
, sizeof(buf2
), "%*.*w", sc
, sc
, buf1
);
2126 ucs
= utf8_to_ucs4_cpystr(buf2
);
2129 fs_give((void **) &ucs
);
2138 * PaintBrowse - with the current data, display the browser. if level == 0
2139 * paint the whole thing, if level == 1 just paint the cells
2143 PaintBrowser(struct bmaster
*mp
, int level
, int *row
, int *col
)
2149 ClearBrowserScreen();
2150 BrowserAnchor(mp
->dname
);
2155 cl
= COMPOSER_TOP_LINE
; /* current display line */
2158 PaintCell(cl
, mp
->cpf
* i
, mp
->cpf
, tp
, tp
== mp
->current
);
2160 if(tp
== mp
->current
){
2170 if(++cl
> term
.t_nrow
-(term
.t_mrow
+1))
2178 while(cl
<= term
.t_nrow
- (term
.t_mrow
+1)){
2182 movecursor(++cl
, 0);
2192 * BrowserKeys - just paints the keyhelp at the bottom of the display
2197 menu_browse
[QUIT_KEY
].name
= (gmode
&MDBRONLY
) ? "Q" : "E";
2198 /* TRANSLATORS: Brwsr is an abbreviation for Browser, which is
2199 a command used to look through something */
2200 menu_browse
[QUIT_KEY
].label
= (gmode
&MDBRONLY
) ? N_("Quit") : N_("Exit Brwsr");
2201 menu_browse
[GOTO_KEY
].name
= (gmode
&MDGOTO
) ? "G" : NULL
;
2202 menu_browse
[GOTO_KEY
].label
= (gmode
&MDGOTO
) ? N_("Goto") : NULL
;
2203 if(gmode
& MDBRONLY
){
2204 menu_browse
[EXEC_KEY
].name
= "L";
2205 menu_browse
[EXEC_KEY
].label
= N_("Launch");
2206 menu_browse
[SELECT_KEY
].name
= "V";
2207 menu_browse
[SELECT_KEY
].label
= "[" N_("View") "]";
2208 menu_browse
[PICO_KEY
].name
= "E";
2209 menu_browse
[PICO_KEY
].label
= N_("Edit");
2212 menu_browse
[SELECT_KEY
].name
= "S";
2213 menu_browse
[SELECT_KEY
].label
= "[" N_("Select") "]";
2214 menu_browse
[PICO_KEY
].name
= "A";
2215 menu_browse
[PICO_KEY
].label
= N_("Add");
2217 if(gmp
&& gmp
->flags
& FB_LMODEPOS
){
2218 if(gmp
&& gmp
->flags
& FB_LMODE
){ /* ListMode is already on */
2219 menu_browse
[EXEC_KEY
].name
= "X";
2220 menu_browse
[EXEC_KEY
].label
= N_("Set/Unset");
2222 else{ /* ListMode is possible */
2223 menu_browse
[EXEC_KEY
].name
= "L";
2224 menu_browse
[EXEC_KEY
].label
= N_("ListMode");
2227 else{ /* No ListMode possible */
2228 menu_browse
[EXEC_KEY
].name
= NULL
;
2229 menu_browse
[EXEC_KEY
].label
= NULL
;
2233 wkeyhelp(menu_browse
);
2238 * layoutcells - figure out max length of cell and how many cells can
2239 * go on a line of the display
2242 layoutcells(struct bmaster
*mp
)
2244 static int wid
= -1;
2246 * Max chars/file. Actually this is max screen cells/file
2247 * Longest name + "(parent dir)"
2250 wid
= MAX(utf8_width(PARENTDIR
),utf8_width(SELECTWORD
)) + utf8_width(DIRWORD
);
2252 mp
->cpf
= mp
->longest
+ wid
+ 3;
2254 if(mp
->flags
& FB_LMODEPOS
) /* "[X] " */
2257 if(gmode
& MDONECOL
){
2263 while(i
*mp
->cpf
- 2 <= term
.t_ncol
) /* no force... */
2264 i
++; /* like brute force! */
2266 mp
->fpl
= i
- 1; /* files per line */
2275 * percdircells - bubble all the directory cells to the top of the
2279 percdircells(struct bmaster
*mp
)
2281 struct fcell
*dirlp
, /* dir cell list pointer */
2282 *lp
, *nlp
; /* cell list ptr and next */
2285 for(lp
= mp
->head
; lp
; lp
= nlp
){
2287 if(lp
->mode
== FIODIR
){
2288 if(lp
->prev
) /* clip from list */
2289 lp
->prev
->next
= lp
->next
;
2292 lp
->next
->prev
= lp
->prev
;
2294 if((lp
->prev
= dirlp
) != NULL
){ /* tie it into dir portion */
2295 if((lp
->next
= dirlp
->next
) != NULL
)
2296 lp
->next
->prev
= lp
;
2302 if((dirlp
= lp
) != mp
->head
)
2303 dirlp
->next
= mp
->head
;
2306 dirlp
->next
->prev
= dirlp
;
2308 mp
->head
= mp
->top
= mp
->current
= dirlp
;
2316 * PlaceCell - given a browser master and a cell, return row and col of the display that
2319 * return 1 if mp->top has changed, x,y relative to new page
2320 * return 0 if otherwise (same page)
2321 * return -1 on error
2324 PlaceCell(struct bmaster
*mp
, struct fcell
*cp
, int *x
, int *y
)
2326 int cl
= COMPOSER_TOP_LINE
; /* current line */
2327 int ci
= 0; /* current index on line */
2332 /* will cp fit on screen? */
2335 if(tp
== cp
){ /* bingo! */
2341 if((tp
= tp
->next
) == NULL
){ /* above top? */
2343 emlwrite("\007Internal error: can't find fname cell", NULL
);
2347 tp
= mp
->top
= mp
->head
; /* try from the top! */
2348 cl
= COMPOSER_TOP_LINE
;
2351 continue; /* start over! */
2355 if(++ci
>= mp
->fpl
){ /* next line? */
2357 if(++cl
> term
.t_nrow
-(term
.t_mrow
+1)){ /* next page? */
2358 ci
= mp
->fpl
; /* tp is at bottom right */
2359 while(ci
--) /* find new top */
2363 cl
= COMPOSER_TOP_LINE
; /* keep checking */
2370 /* not on display! */
2376 * zotfcells - clean up malloc'd cells of file names
2379 zotfcells(struct fcell
*hp
)
2393 * zotmaster - blast the browser master struct
2396 zotmaster(struct bmaster
**mp
)
2399 zotfcells((*mp
)->head
); /* free cells */
2400 zotlmlist((*mp
)->lm
); /* free lmlist */
2402 free((char *)(*mp
)->names
); /* free file names */
2404 free((char *)*mp
); /* free master */
2405 *mp
= NULL
; /* make double sure */
2411 * FindCell - starting from the current cell find the first occurance of
2412 * the given string wrapping around if necessary
2415 FindCell(struct bmaster
*mp
, char *utf8string
, int bsearch
)
2417 struct fcell
*tp
, *fp
;
2419 if(*utf8string
== '\0')
2423 tp
= bsearch
? mp
->current
->prev
: mp
->current
->next
;
2426 if(sisin(tp
->fname
, utf8string
))
2429 tp
= bsearch
? tp
->prev
: tp
->next
;
2432 tp
= bsearch
? mp
->bottom
: mp
->head
;
2433 while(tp
!= mp
->current
&& !fp
){
2434 if(sisin(tp
->fname
, utf8string
))
2437 tp
= bsearch
? tp
->prev
: tp
->next
;
2445 * sisin - case insensitive substring matching function
2447 * We can't really do case-insensitive for non-ascii, so restrict
2448 * that to ascii characters. The strings will be utf8.
2451 sisin(char *bigstr
, char *utf8substr
)
2457 while(bigstr
[j
] == utf8substr
[j
]
2458 || ((unsigned char)bigstr
[j
] < 0x80 && (unsigned char)utf8substr
[j
] < 0x80
2459 && toupper((unsigned char)bigstr
[j
]) == toupper((unsigned char)utf8substr
[j
])))
2460 if(utf8substr
[++j
] == '\0') /* bingo! */
2471 * set_browser_title -
2474 set_browser_title(char *s
)
2481 * BrowserAnchor - draw the browser's anchor line.
2484 BrowserAnchor(char *utf8dir
)
2487 char titlebuf
[NLINE
];
2491 char *br
= "BROWSER";
2492 char *dir
= "Dir: ";
2494 int need
, extra
, avail
;
2495 int title_wid
, b_wid
, t_to_b_wid
, b_to_d_wid
, d_wid
, dot_wid
, dir_wid
, after_dir_wid
;
2496 COLOR_PAIR
*lastc
= NULL
;
2504 snprintf(titlebuf
, sizeof(buf
), " %s", browser_title
);
2506 snprintf(titlebuf
, sizeof(buf
), " ALPINE %s", Pmaster
->pine_version
);
2508 snprintf(titlebuf
, sizeof(buf
), " UW PICO %s", (gmode
&MDBRONLY
) ? "BROWSER" : version
);
2510 title_wid
= utf8_width(titlebuf
);
2512 b_wid
= utf8_width(br
);
2514 d_wid
= utf8_width(dir
);
2516 dir_wid
= utf8_width(pdir
);
2518 need
= title_wid
+t_to_b_wid
+b_wid
+b_to_d_wid
+d_wid
+dot_wid
+dir_wid
;
2520 if(need
> term
.t_ncol
){
2521 extra
= need
- term
.t_ncol
;
2522 t_to_b_wid
-= MIN(extra
, 10);
2523 need
-= MIN(extra
, 10);
2525 if(need
> term
.t_ncol
){
2526 extra
= need
- term
.t_ncol
;
2527 b_to_d_wid
-= MIN(extra
, 2);
2528 need
-= MIN(extra
, 2);
2531 if(need
> term
.t_ncol
){
2532 titlebuf
[0] = titlebuf
[1] = ' ';
2534 title_wid
= utf8_width(titlebuf
);
2537 need
= title_wid
+t_to_b_wid
+b_wid
+b_to_d_wid
+d_wid
+dot_wid
+dir_wid
;
2538 if(need
> term
.t_ncol
){
2539 extra
= need
- term
.t_ncol
;
2540 b_to_d_wid
-= MIN(extra
, 2);
2541 need
-= MIN(extra
, 2);
2544 need
= title_wid
+t_to_b_wid
+b_wid
+b_to_d_wid
+d_wid
+dot_wid
+dir_wid
;
2545 if(need
> term
.t_ncol
){
2551 need
= title_wid
+t_to_b_wid
+b_wid
+b_to_d_wid
+d_wid
+dot_wid
+dir_wid
;
2552 if(need
> term
.t_ncol
)
2555 need
= title_wid
+t_to_b_wid
+b_wid
+b_to_d_wid
+d_wid
+dot_wid
+dir_wid
;
2557 if(need
> term
.t_ncol
&& dir_wid
> 0){
2558 dot_wid
= utf8_width(dots
);
2559 need
= title_wid
+t_to_b_wid
+b_wid
+b_to_d_wid
+d_wid
+dot_wid
+dir_wid
;
2560 while(need
> term
.t_ncol
&& (pdir
= strchr(pdir
+1, C_FILESEP
))){
2561 dir_wid
= utf8_width(pdir
);
2562 need
= title_wid
+t_to_b_wid
+b_wid
+b_to_d_wid
+d_wid
+dot_wid
+dir_wid
;
2565 if(!pdir
){ /* adjust other widths to fill up space */
2566 avail
= term
.t_ncol
- (title_wid
+t_to_b_wid
+b_wid
+b_to_d_wid
+d_wid
+dot_wid
);
2568 utf8_to_width_rhs(dirbuf
, utf8dir
, sizeof(dirbuf
), avail
);
2575 dir_wid
= utf8_width(pdir
);
2580 extra
= term
.t_ncol
- (title_wid
+t_to_b_wid
+b_wid
+b_to_d_wid
+d_wid
+dot_wid
+dir_wid
);
2583 after_dir_wid
= extra
;
2587 utf8_snprintf(buf
, sizeof(buf
), "%*.*w%*.*w%*.*w%*.*w%*.*w%*.*w%*.*w%*.*w",
2588 title_wid
, title_wid
, titlebuf
,
2589 t_to_b_wid
, t_to_b_wid
, "",
2591 b_to_d_wid
, b_to_d_wid
, "",
2593 dot_wid
, dot_wid
, dots
,
2594 dir_wid
, dir_wid
, pdir
,
2595 after_dir_wid
, after_dir_wid
, "");
2597 /* just making sure */
2598 utf8_snprintf(titlebuf
, sizeof(titlebuf
), "%-*.*w", term
.t_ncol
, term
.t_ncol
, buf
);
2601 if(Pmaster
&& Pmaster
->colors
&& Pmaster
->colors
->tbcp
2602 && pico_is_good_colorpair(Pmaster
->colors
->tbcp
)){
2603 lastc
= pico_get_cur_color();
2604 (void) pico_set_colorp(Pmaster
->colors
->tbcp
, PSC_NONE
);
2609 ucs
= utf8_to_ucs4_cpystr(titlebuf
);
2612 fs_give((void **) &ucs
);
2616 (void) pico_set_colorp(lastc
, PSC_NONE
);
2617 free_color_pair(&lastc
);
2625 * ResizeBrowser - handle a resize event
2632 PaintBrowser(gmp
, 0, NULL
, NULL
);
2641 ClearBrowserScreen(void)
2645 for(i
= 0; i
<= term
.t_nrow
; i
++){ /* clear screen */
2653 BrowserRunChild(char *child
, char *dir
)
2659 ClearBrowserScreen();
2662 if(!isdir(dir
, NULL
, &t_in
))
2666 status
= system(child
);
2668 if(t_in
&& isdir(dir
, NULL
, &t_out
) && t_in
< t_out
){
2671 if((mp
= getfcells(dir
, 0)) != NULL
){
2675 /* else getfcells should explain what happened */
2678 /* complain about non-zero exit status */
2679 if((status
>> 8) & 0xff){
2681 movecursor(term
.t_nrow
- 1, 0);
2682 snprintf(tmp
, sizeof(tmp
), "[ \"%.30s\" exit with error value: %d ]",
2683 child
, (status
>> 8) & 0xff);
2685 movecursor(term
.t_nrow
, 0);
2686 pputs_utf8("[ Hit RETURN to continue ]", 1);
2689 while(GetKey() != (CTRL
|'M')){
2698 * imitate pc-pine memory for where we last called the file browser.
2701 p_chdir(struct bmaster
*mp
)
2706 #else /* _WINDOWS */
2710 * pico_file_browse - Exported version of FileBrowse below.
2713 pico_file_browse(PICO
*pdata
, char *dir
, size_t dirlen
, char *fn
, size_t fnlen
,
2714 char *sz
, size_t szlen
, int flags
)
2716 return(FileBrowse(dir
, dirlen
, fn
, fnlen
, sz
, szlen
, flags
, NULL
));
2720 ResizeBrowser (void)
2726 * FileBrowse - Windows version of above function
2729 FileBrowse(char *dir
, size_t dirlen
, char *fn
, size_t fnlen
,
2730 char *sz
, size_t szlen
, int fb_flags
, LMLIST
**lmreturn
)
2736 if (fb_flags
& FB_SAVE
){
2737 rc
= mswin_savefile(dir
, dirlen
, fn
, MIN(dirlen
,fnlen
));
2740 *fn
= '\0'; /* No initial file names for
2742 if(fb_flags
& FB_LMODEPOS
){
2744 * We're going to allow multiple filenames to be returned so
2745 * we don't want to use the passed in fn for that. Instead, make
2746 * a bigger space and use that.
2751 memset(f
, 0, sizeof(f
));
2753 rc
= mswin_multopenfile(dir
, dirlen
, f
, sizeof(f
),
2754 (fb_flags
& FB_ATTACH
) ? NULL
: "Text Files (*.txt)#*.txt");
2757 LMLIST
*lmhead
= NULL
, *new;
2761 * Build an LMLIST to return to the caller.
2763 for(p
= f
; *p
; p
+= strlen(p
)+1){
2765 dlen
= strlen(dir
? dir
: "");
2766 new = (LMLIST
*) fs_get(sizeof(*new));
2767 new->fname
= (char *) fs_get((flen
+1) * sizeof(char));
2768 new->dir
= (char *) fs_get((dlen
+1) * sizeof(char));
2770 strncpy(new->fname
, p
, flen
);
2771 new->fname
[flen
] = '\0';
2772 strncpy(new->dir
, dir
? dir
: "", dlen
);
2773 new->dir
[dlen
] = '\0';
2775 /* build full path to stat file. */
2776 if((strlen(new->dir
) + strlen(S_FILESEP
) +
2777 strlen(new->fname
) + 1) < sizeof(lfn
)){
2778 strncpy(lfn
, new->dir
, sizeof(lfn
));
2779 lfn
[sizeof(lfn
)-1] = '\0';
2780 strncat(lfn
, S_FILESEP
, sizeof(lfn
)-strlen(lfn
)-1);
2781 strncat(lfn
, new->fname
, sizeof(lfn
)-strlen(lfn
)-1);
2782 lfn
[sizeof(lfn
)-1] = '\0';
2783 if(our_stat(lfn
, &sbuf
) < 0)
2784 strncpy(new->size
, "0", 32);
2786 strncpy(new->size
, prettysz((off_t
)sbuf
.st_size
), 32);
2788 new->size
[32-1] = '\0';
2800 rc
= mswin_openfile (dir
, dirlen
, fn
, fnlen
,
2801 (fb_flags
& FB_ATTACH
) ? NULL
: "Text Files (*.txt)#*.txt");
2806 /* build full path to stat file. */
2807 if((strlen(dir
) + strlen(S_FILESEP
) + strlen(fn
) + 1) > NLINE
)
2810 strncpy(lfn
, dir
, sizeof(lfn
));
2811 lfn
[sizeof(lfn
)-1] = '\0';
2812 strncat(lfn
, S_FILESEP
, sizeof(lfn
)-strlen(lfn
)-1);
2813 lfn
[sizeof(lfn
)-1] = '\0';
2814 strncat(lfn
, fn
, sizeof(lfn
)-strlen(lfn
)-1);
2815 lfn
[sizeof(lfn
)-1] = '\0';
2816 if(our_stat(lfn
, &sbuf
) < 0){
2817 strncpy(sz
, "0", szlen
);
2821 strncpy(sz
, prettysz ((off_t
)sbuf
.st_size
), szlen
);
2829 return(rc
? -1 : 0);
2832 #endif /* _WINDOWS */
2836 * LikelyASCII - make a rough guess as to the displayability of the
2840 LikelyASCII(char *file
)
2842 #define LA_TEST_BUF 1024
2843 #define LA_LINE_LIMIT 300
2844 int n
, i
, line
, rv
= FALSE
;
2845 unsigned char buf
[LA_TEST_BUF
];
2849 if((fp
= our_fopen(file
, "rb")) != NULL
){
2851 if((n
= fread(buf
, sizeof(char), LA_TEST_BUF
* sizeof(char), fp
)) > 0
2854 * If we don't hit any newlines in a reasonable number,
2855 * LA_LINE_LIMIT, of characters or the file contains NULLs,
2859 for(i
= line
= 0; i
< n
; i
++)
2860 if((line
= (buf
[i
] == '\n') ? 0 : line
+ 1) >= LA_LINE_LIMIT
2863 emlwrite(_("Can't display non-text file. Try \"Launch\"."),
2870 emlwrite(_("Can't read file: %s"), &eml
);
2877 emlwrite(_("Can't open file: %s"), &eml
);
2885 zotlmlist(LMLIST
*lm
)
2905 * time_to_check - checks the current time against the last time called
2906 * and returns true if the elapsed time is > below.
2907 * Newmail won't necessarily check, but we want to give it
2908 * a chance to check or do a keepalive.
2913 static time_t lasttime
= 0L;
2915 if(!get_input_timeout())
2918 if(time((time_t *) 0) - lasttime
> (Pmaster
? (time_t)(FUDGE
-10) : get_input_timeout())){
2919 lasttime
= time((time_t *) 0);