1995-04-27 12:50:35 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1994, Paul Richards.
|
1995-05-30 08:29:07 +00:00
|
|
|
*
|
1995-04-27 12:50:35 +00:00
|
|
|
* All rights reserved.
|
1995-05-30 08:29:07 +00:00
|
|
|
*
|
1995-04-27 12:50:35 +00:00
|
|
|
* This software may be used, modified, copied, distributed, and sold, in both
|
|
|
|
* source and binary form provided that the above copyright and these terms
|
|
|
|
* are retained, verbatim, as the first lines of this file. Under no
|
|
|
|
* circumstances is the author responsible for the proper functioning of this
|
|
|
|
* software, nor does the author assume any responsibility for damages
|
|
|
|
* incurred with its use.
|
2001-05-10 17:14:29 +00:00
|
|
|
*
|
|
|
|
* $FreeBSD$
|
1995-04-27 12:50:35 +00:00
|
|
|
*/
|
|
|
|
|
2006-08-07 23:35:49 +00:00
|
|
|
#include "sade.h"
|
1995-04-27 12:50:35 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <fcntl.h>
|
1995-05-26 08:41:52 +00:00
|
|
|
#include <sys/errno.h>
|
1995-04-27 12:50:35 +00:00
|
|
|
#include <sys/ioctl.h>
|
2000-10-08 21:34:00 +00:00
|
|
|
#include <sys/consio.h>
|
1995-04-27 12:50:35 +00:00
|
|
|
|
1996-08-01 10:58:54 +00:00
|
|
|
#define VTY_STATUS_LINE 24
|
|
|
|
#define TTY_STATUS_LINE 23
|
|
|
|
|
1997-07-31 11:08:47 +00:00
|
|
|
static void
|
2006-08-09 09:12:01 +00:00
|
|
|
prompt_term(char **termp)
|
1997-07-31 11:08:47 +00:00
|
|
|
{
|
2006-08-08 13:45:46 +00:00
|
|
|
char str[80];
|
1997-07-31 11:08:47 +00:00
|
|
|
|
|
|
|
printf("\nPlease set your TERM variable before running this program.\n");
|
|
|
|
printf("Defaulting to an ANSI compatible terminal - please press RETURN\n");
|
2007-03-06 09:32:41 +00:00
|
|
|
fgets(str, sizeof(str), stdin); /* Just to make it interactive */
|
1997-07-31 11:08:47 +00:00
|
|
|
*termp = (char *)"ansi";
|
|
|
|
}
|
|
|
|
|
1995-04-27 12:50:35 +00:00
|
|
|
int
|
|
|
|
set_termcap(void)
|
|
|
|
{
|
|
|
|
char *term;
|
1995-05-18 15:29:47 +00:00
|
|
|
int stat;
|
2008-05-23 14:24:33 +00:00
|
|
|
struct winsize ws;
|
1995-04-27 12:50:35 +00:00
|
|
|
|
|
|
|
term = getenv("TERM");
|
1995-05-18 15:29:47 +00:00
|
|
|
stat = ioctl(STDERR_FILENO, GIO_COLOR, &ColorDisplay);
|
1995-06-11 19:33:05 +00:00
|
|
|
|
2001-09-22 18:07:47 +00:00
|
|
|
if (isDebug())
|
2008-05-11 07:13:08 +00:00
|
|
|
DebugFD = open("sade.debug", O_WRONLY|O_CREAT|O_TRUNC, 0644);
|
1997-02-15 15:40:37 +00:00
|
|
|
else
|
|
|
|
DebugFD = -1;
|
1996-06-11 08:02:09 +00:00
|
|
|
if (DebugFD < 0)
|
|
|
|
DebugFD = open("/dev/null", O_RDWR, 0);
|
1995-06-11 19:33:05 +00:00
|
|
|
|
1996-09-26 21:07:11 +00:00
|
|
|
if (!OnVTY || (stat < 0)) {
|
1995-05-18 15:29:47 +00:00
|
|
|
if (!term) {
|
2006-08-09 09:12:01 +00:00
|
|
|
char *term;
|
1997-07-31 11:08:47 +00:00
|
|
|
|
2006-08-09 09:12:01 +00:00
|
|
|
prompt_term(&term);
|
1997-07-31 11:08:47 +00:00
|
|
|
if (setenv("TERM", term, 1) < 0)
|
1995-04-27 12:50:35 +00:00
|
|
|
return -1;
|
|
|
|
}
|
1997-09-16 10:14:23 +00:00
|
|
|
if (DebugFD < 0)
|
|
|
|
DebugFD = open("/dev/null", O_RDWR, 0);
|
1995-05-05 23:47:47 +00:00
|
|
|
}
|
|
|
|
else {
|
1995-06-11 19:33:05 +00:00
|
|
|
int i, on;
|
|
|
|
|
1996-03-21 09:30:18 +00:00
|
|
|
if (getpid() == 1) {
|
|
|
|
DebugFD = open("/dev/ttyv1", O_WRONLY);
|
1997-09-16 10:14:23 +00:00
|
|
|
if (DebugFD != -1) {
|
|
|
|
on = 1;
|
|
|
|
i = ioctl(DebugFD, TIOCCONS, (char *)&on);
|
|
|
|
msgDebug("ioctl(%d, TIOCCONS, NULL) = %d (%s)\n",
|
|
|
|
DebugFD, i, !i ? "success" : strerror(errno));
|
|
|
|
}
|
1996-03-21 09:30:18 +00:00
|
|
|
}
|
2000-06-05 13:17:23 +00:00
|
|
|
|
|
|
|
#ifdef PC98
|
|
|
|
if (!term) {
|
|
|
|
if (setenv("TERM", "cons25w", 1) < 0)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#else
|
1995-05-18 15:29:47 +00:00
|
|
|
if (ColorDisplay) {
|
|
|
|
if (!term) {
|
2009-11-13 05:54:55 +00:00
|
|
|
if (setenv("TERM", "xterm", 1) < 0)
|
1995-05-18 15:29:47 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (!term) {
|
2009-11-13 11:28:54 +00:00
|
|
|
if (setenv("TERM", "vt100", 1) < 0)
|
1995-05-18 15:29:47 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2000-06-05 13:17:23 +00:00
|
|
|
#endif
|
1995-04-27 12:50:35 +00:00
|
|
|
}
|
2008-05-23 14:24:33 +00:00
|
|
|
if (ioctl(0, TIOCGWINSZ, &ws) == -1) {
|
1996-08-01 10:58:54 +00:00
|
|
|
msgDebug("Unable to get terminal size - errno %d\n", errno);
|
2008-05-23 14:24:33 +00:00
|
|
|
ws.ws_row = 0;
|
1996-08-01 10:58:54 +00:00
|
|
|
}
|
2008-05-23 14:24:33 +00:00
|
|
|
StatusLine = ws.ws_row ? ws.ws_row - 1: (OnVTY ? VTY_STATUS_LINE : TTY_STATUS_LINE);
|
1995-04-27 12:50:35 +00:00
|
|
|
return 0;
|
|
|
|
}
|