2023-07-27 14:04:50 -04:00
|
|
|
/*===========================================================================
|
2023-08-04 13:54:19 -04:00
|
|
|
Copyright (c) 1998-2000, The Santa Cruz Operation
|
2023-07-27 14:04:50 -04:00
|
|
|
All rights reserved.
|
2023-08-04 13:54:19 -04:00
|
|
|
|
2023-07-27 14:04:50 -04:00
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
*Redistributions of source code must retain the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer.
|
|
|
|
|
|
|
|
*Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer in the documentation
|
|
|
|
and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
*Neither name of The Santa Cruz Operation nor the names of its contributors
|
|
|
|
may be used to endorse or promote products derived from this software
|
2023-08-04 13:54:19 -04:00
|
|
|
without specific prior written permission.
|
2023-07-27 14:04:50 -04:00
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS
|
2023-08-04 15:09:58 -04:00
|
|
|
IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT falseT LIMITED TO,
|
2023-07-27 14:04:50 -04:00
|
|
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
2023-08-04 15:19:25 -04:00
|
|
|
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
|
2023-07-27 14:04:50 -04:00
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
2023-08-04 15:09:58 -04:00
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT falseT LIMITED TO, PROCUREMENT OF
|
2023-07-27 14:04:50 -04:00
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION)
|
|
|
|
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
|
2023-08-04 13:54:19 -04:00
|
|
|
DAMAGE.
|
2023-07-27 14:04:50 -04:00
|
|
|
=========================================================================*/
|
|
|
|
|
2023-08-04 13:49:03 -04:00
|
|
|
/* cscope - interactive C symbol cross-reference
|
2023-07-27 14:04:50 -04:00
|
|
|
*
|
2023-08-04 13:49:03 -04:00
|
|
|
* display functions
|
2023-07-27 14:04:50 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "global.h"
|
|
|
|
#include "build.h"
|
2023-08-11 13:20:52 -04:00
|
|
|
#include "colors.h"
|
2023-07-27 14:04:50 -04:00
|
|
|
|
|
|
|
#ifdef CCS
|
2023-08-04 13:49:03 -04:00
|
|
|
#include "sgs.h" /* ESG_PKG and ESG_REL */
|
2023-07-27 14:04:50 -04:00
|
|
|
#else
|
2023-08-04 13:49:03 -04:00
|
|
|
#include "version.h" /* FILEVERSION and FIXVERSION */
|
2023-07-27 14:04:50 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <ncurses.h>
|
2023-08-04 13:49:03 -04:00
|
|
|
#include <stdarg.h> /* va_list stuff */
|
2023-07-27 14:04:50 -04:00
|
|
|
#include <time.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdarg.h>
|
2023-07-29 09:40:48 -04:00
|
|
|
|
2023-08-09 07:49:11 -04:00
|
|
|
/* XXX */
|
|
|
|
#define MSGLINE 0 /* message line */
|
|
|
|
#define MSGCOL 0 /* message column */
|
|
|
|
|
2023-08-04 13:49:03 -04:00
|
|
|
int subsystemlen = sizeof("Subsystem")-1; /* OGS subsystem name display field length */
|
2023-08-04 14:05:31 -04:00
|
|
|
int booklen = sizeof("Book")-1; /* OGS book name display field length */
|
|
|
|
int filelen = sizeof("File")-1; /* file name display field length */
|
|
|
|
int fcnlen = sizeof("Function")-1; /* function name display field length */
|
|
|
|
int numlen = 0; /* line number display field length */
|
2023-08-04 13:49:03 -04:00
|
|
|
|
2023-08-04 14:05:31 -04:00
|
|
|
int *displine; /* screen line of displayed reference */
|
2023-08-04 13:49:03 -04:00
|
|
|
unsigned int disprefs; /* displayed references */
|
2023-08-04 14:05:31 -04:00
|
|
|
int field; /* input field */
|
2023-08-04 13:49:03 -04:00
|
|
|
unsigned int mdisprefs; /* maximum displayed references */
|
|
|
|
unsigned int nextline; /* next line to be shown */
|
2023-08-04 14:05:31 -04:00
|
|
|
static int bottomline; /* bottom line of page */
|
|
|
|
long searchcount; /* count of files searched */
|
2023-08-04 13:49:03 -04:00
|
|
|
unsigned int totallines; /* total reference lines */
|
2023-07-29 09:40:48 -04:00
|
|
|
unsigned int curdispline = 0;
|
2023-08-08 06:47:02 -04:00
|
|
|
int current_page = 0;
|
2023-08-10 08:36:16 -04:00
|
|
|
int input_mode = INPUT_NORMAL;
|
|
|
|
const char* prompts[] = {
|
|
|
|
[INPUT_NORMAL] = "$ ",
|
|
|
|
[INPUT_APPEND] = "Append to file: ",
|
|
|
|
[INPUT_PIPE] = "Pipe to shell command: ",
|
|
|
|
[INPUT_READ] = "Read from file: ",
|
2023-08-10 15:06:17 -04:00
|
|
|
[INPUT_CHANGE_TO] = "To: ",
|
2023-08-10 08:36:16 -04:00
|
|
|
[INPUT_CHANGE] = "To: "
|
|
|
|
};
|
|
|
|
|
2023-08-10 09:52:28 -04:00
|
|
|
unsigned int topline = 1; /* top line of page */
|
2023-07-29 09:40:48 -04:00
|
|
|
|
2023-08-09 07:49:11 -04:00
|
|
|
/* Selectable windows */
|
2023-07-29 09:40:48 -04:00
|
|
|
WINDOW* winput;
|
|
|
|
WINDOW* wmode;
|
|
|
|
WINDOW* wresult;
|
2023-08-05 05:30:18 -04:00
|
|
|
WINDOW* whelp;
|
2023-08-09 07:49:11 -04:00
|
|
|
/* Selected window pointer */
|
2023-07-29 09:40:48 -04:00
|
|
|
WINDOW** current_window;
|
|
|
|
static WINDOW** last_window;
|
|
|
|
|
|
|
|
static int result_window_height;
|
|
|
|
static int second_col_width;
|
|
|
|
static int first_col_width;
|
|
|
|
static int input_window_height;
|
|
|
|
static int mode_window_height;
|
|
|
|
|
|
|
|
#define WRESULT_TABLE_BODY_START 4
|
2023-07-27 14:04:50 -04:00
|
|
|
|
2023-08-06 07:09:48 -04:00
|
|
|
int window_change;
|
2023-07-27 14:04:50 -04:00
|
|
|
|
2023-08-08 06:47:02 -04:00
|
|
|
/* NOTE: It's declared like this because we dont need a terminating '\00'. */
|
|
|
|
static const char dispchars[] = {
|
|
|
|
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
|
|
|
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
|
|
|
|
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'
|
|
|
|
};
|
|
|
|
int dispchar2int(const char c){
|
|
|
|
const char fst = dispchars[0];
|
|
|
|
const char lst = dispchars[sizeof(dispchars)-1];
|
|
|
|
int r = c - fst;
|
|
|
|
if(r < 0 || lst < r){ return -1; }
|
|
|
|
return r;
|
|
|
|
}
|
2023-08-04 13:49:03 -04:00
|
|
|
|
2023-08-09 07:49:11 -04:00
|
|
|
char lastmsg[MSGLEN + 1]; /* last message displayed */
|
2023-08-04 13:49:03 -04:00
|
|
|
static const char helpstring[] = "Press the ? key for help";
|
2023-08-04 13:54:19 -04:00
|
|
|
static const char selprompt[] =
|
2023-08-04 13:49:03 -04:00
|
|
|
"Select lines to change (press the ? key for help): ";
|
|
|
|
|
2023-08-09 07:49:11 -04:00
|
|
|
struct { /* text of input fields */
|
2023-08-04 13:49:03 -04:00
|
|
|
char *text1;
|
|
|
|
char *text2;
|
2023-08-09 07:49:11 -04:00
|
|
|
} /* Paralel array to "field_searchers", indexed by "field" */
|
|
|
|
fields[FIELDS + 1] = { /* samuel has a search that is not part of the cscope display */
|
2023-08-10 08:36:16 -04:00
|
|
|
{"Find this", "C symbol"},
|
|
|
|
{"Find this", "global definition"},
|
|
|
|
{"Find", "functions called by this function"},
|
|
|
|
{"Find", "functions calling this function"},
|
|
|
|
{"Find this", "text string"},
|
|
|
|
{"Change this", "text string"},
|
|
|
|
{"Find this", "egrep pattern"},
|
|
|
|
{"Find this", "file"},
|
|
|
|
{"Find", "files #including this file"},
|
|
|
|
{"Find", "assignments to this symbol"},
|
|
|
|
{"Find all", "function definitions"}, /* samuel only */
|
2023-07-27 14:04:50 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/* initialize display parameters */
|
|
|
|
void
|
|
|
|
dispinit(void)
|
|
|
|
{
|
2023-08-04 13:49:03 -04:00
|
|
|
/* initialize the curses display package */
|
|
|
|
initscr(); /* initialize the screen */
|
2023-08-11 13:20:52 -04:00
|
|
|
start_color();
|
|
|
|
use_default_colors();
|
|
|
|
easy_init_pair(FRAME);
|
|
|
|
easy_init_pair(PROMPT);
|
|
|
|
easy_init_pair(FIELD);
|
|
|
|
easy_init_pair(FIELD_SELECTED);
|
|
|
|
easy_init_pair(HELP);
|
|
|
|
easy_init_pair(TOOLTIP);
|
|
|
|
easy_init_pair(MESSAGE);
|
|
|
|
easy_init_pair(PATTERN);
|
|
|
|
easy_init_pair(TABLE_HEADER);
|
|
|
|
easy_init_pair(TABLE_ID);
|
|
|
|
easy_init_pair(TABLE_COL_LINE);
|
|
|
|
easy_init_pair(TABLE_COL_FILE);
|
|
|
|
easy_init_pair(TABLE_COL_FUNCTION);
|
|
|
|
easy_init_pair(TABLE_COL_TEXT);
|
|
|
|
easy_init_pair(PAGER_MSG);
|
2023-08-04 13:49:03 -04:00
|
|
|
entercurses();
|
|
|
|
|
|
|
|
/* Calculate section sizes */
|
|
|
|
result_window_height = LINES - 2;
|
|
|
|
input_window_height = 1;
|
|
|
|
mode_window_height = LINES - input_window_height - 2 - 1;
|
|
|
|
first_col_width = 48; // (((COLS - 2)%2 == 0) ? ((COLS-2)/2) : (((COLS-2)/2)+1));
|
|
|
|
second_col_width = COLS - 2 - 1 - first_col_width; //((COLS - 2) / 2) - 1;
|
2023-08-11 13:20:52 -04:00
|
|
|
mdisprefs = result_window_height - WRESULT_TABLE_BODY_START - 1 - 1 - 1;
|
2023-08-04 13:49:03 -04:00
|
|
|
|
|
|
|
if (mdisprefs <= 0) {
|
|
|
|
postfatal("%s: screen too small\n", argv0);
|
2023-08-08 06:47:02 -04:00
|
|
|
/* NOTREACHED */
|
2023-08-04 13:49:03 -04:00
|
|
|
}
|
2023-08-08 06:47:02 -04:00
|
|
|
if(mdisprefs > sizeof(dispchars)){
|
|
|
|
mdisprefs = sizeof(dispchars);
|
2023-08-04 13:49:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* allocate the displayed line array */
|
|
|
|
displine = malloc(mdisprefs * sizeof(*displine));
|
|
|
|
|
|
|
|
/* readline */
|
|
|
|
rlinit();
|
|
|
|
|
|
|
|
/* initialize windows */
|
|
|
|
winput = newwin(input_window_height, first_col_width, 1, 1);
|
|
|
|
wmode = newwin(mode_window_height, first_col_width, input_window_height+1 + 1, 1);
|
|
|
|
wresult = newwin(result_window_height, second_col_width, 1, first_col_width + 1 + 1);
|
2023-08-05 05:30:18 -04:00
|
|
|
whelp = newwin(LINES-2, COLS-2, 1, 1);
|
2023-07-27 14:04:50 -04:00
|
|
|
refresh();
|
2023-07-29 09:40:48 -04:00
|
|
|
|
2023-08-04 13:49:03 -04:00
|
|
|
current_window = &winput;
|
2023-07-27 14:04:50 -04:00
|
|
|
}
|
|
|
|
|
2023-08-06 07:09:48 -04:00
|
|
|
/* enter curses mode */
|
|
|
|
void
|
|
|
|
entercurses(void)
|
|
|
|
{
|
|
|
|
incurses = true;
|
|
|
|
window_change = CH_ALL;
|
|
|
|
|
|
|
|
nonl(); /* don't translate an output \n to \n\r */
|
|
|
|
cbreak(); /* single character input */
|
|
|
|
noecho(); /* don't echo input characters */
|
|
|
|
curs_set(0);
|
|
|
|
clear(); /* clear the screen */
|
|
|
|
mouseinit(); /* initialize any mouse interface */
|
2023-08-10 15:06:17 -04:00
|
|
|
//drawscrollbar(topline, nextline);
|
2023-08-06 07:09:48 -04:00
|
|
|
keypad(stdscr, TRUE); /* enable the keypad */
|
|
|
|
//fixkeypad(); /* fix for getch() intermittently returning garbage */
|
|
|
|
standend(); /* turn off reverse video */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* exit curses mode */
|
|
|
|
void
|
|
|
|
exitcurses(void)
|
|
|
|
{
|
|
|
|
/* clear the bottom line */
|
|
|
|
move(LINES - 1, 0);
|
|
|
|
clrtoeol();
|
|
|
|
refresh();
|
|
|
|
|
|
|
|
/* exit curses and restore the terminal modes */
|
|
|
|
endwin();
|
|
|
|
incurses = false;
|
|
|
|
|
|
|
|
/* restore the mouse */
|
|
|
|
mousecleanup();
|
|
|
|
fflush(stdout);
|
|
|
|
}
|
|
|
|
|
2023-08-05 05:30:18 -04:00
|
|
|
static inline void display_help(){
|
2023-08-11 13:20:52 -04:00
|
|
|
// XXX: this could be optimized by only overriding the buffer if theres an actual change
|
2023-08-05 05:30:18 -04:00
|
|
|
werase(whelp);
|
|
|
|
wmove(whelp, 0, 0);
|
2023-08-11 13:20:52 -04:00
|
|
|
wattron(whelp, COLOR_PAIR(COLOR_PAIR_HELP));
|
2023-08-05 05:30:18 -04:00
|
|
|
waddstr(whelp, help());
|
2023-08-11 13:20:52 -04:00
|
|
|
wattroff(whelp, COLOR_PAIR(COLOR_PAIR_HELP));
|
|
|
|
|
|
|
|
refresh();
|
2023-08-05 05:30:18 -04:00
|
|
|
wrefresh(whelp);
|
2023-08-11 13:20:52 -04:00
|
|
|
|
2023-08-05 05:30:18 -04:00
|
|
|
do_press_any_key = true;
|
|
|
|
}
|
|
|
|
|
2023-08-11 13:20:52 -04:00
|
|
|
static inline void display_frame(const bool border_only){
|
|
|
|
wattron(stdscr, COLOR_PAIR(COLOR_PAIR_FRAME));
|
|
|
|
|
2023-08-04 13:49:03 -04:00
|
|
|
box(stdscr, 0, 0);
|
|
|
|
/* Title*/
|
|
|
|
const int LEFT_PADDING = 5;
|
|
|
|
wmove(stdscr, 0, LEFT_PADDING);
|
2023-07-27 14:04:50 -04:00
|
|
|
#if CCS
|
2023-08-11 13:20:52 -04:00
|
|
|
wprintw(stdscr, "cscope %s", ESG_REL);
|
2023-07-27 14:04:50 -04:00
|
|
|
#else
|
2023-08-04 13:49:03 -04:00
|
|
|
wprintw(stdscr, "Cscope version %d%s", FILEVERSION, FIXVERSION);
|
2023-07-27 14:04:50 -04:00
|
|
|
#endif
|
2023-08-04 13:49:03 -04:00
|
|
|
wmove(stdscr, 0, COLS - (int)sizeof(helpstring) - 3);
|
|
|
|
waddstr(stdscr, helpstring);
|
2023-08-11 13:20:52 -04:00
|
|
|
/* --- */
|
|
|
|
if(!border_only){
|
|
|
|
/* Vertical line */
|
|
|
|
mvaddch(0, first_col_width + 1, ACS_TTEE);
|
|
|
|
for(int i = 0; i < LINES-2; i++){
|
|
|
|
mvaddch(i+1, first_col_width + 1, ACS_VLINE);
|
|
|
|
}
|
|
|
|
mvaddch(LINES-1, first_col_width + 1, ACS_BTEE);
|
|
|
|
/* Horizontal line */
|
|
|
|
wmove(stdscr, input_window_height + 1, 0);
|
|
|
|
addch(ACS_LTEE);
|
|
|
|
for(int i = 0; i < first_col_width; i++){
|
|
|
|
addch(ACS_HLINE);
|
|
|
|
}
|
|
|
|
addch(ACS_RTEE);
|
|
|
|
}
|
|
|
|
|
|
|
|
wattroff(stdscr, COLOR_PAIR(COLOR_PAIR_FRAME));
|
2023-07-27 14:04:50 -04:00
|
|
|
}
|
|
|
|
|
2023-08-01 13:36:53 -04:00
|
|
|
static inline void display_mode(){
|
2023-08-09 07:49:11 -04:00
|
|
|
werase(wmode);
|
|
|
|
|
2023-07-27 14:04:50 -04:00
|
|
|
for(int i = 0; i < FIELDS; ++i){
|
2023-08-04 14:21:45 -04:00
|
|
|
if(i == field){
|
2023-08-11 13:20:52 -04:00
|
|
|
wattron(wmode, COLOR_PAIR(COLOR_PAIR_FIELD_SELECTED) | ATTRIBUTE_FIELD_SELECTED);
|
2023-08-04 14:21:45 -04:00
|
|
|
mvwprintw(wmode, i, 0, "%s %s", fields[i].text1, fields[i].text2);
|
2023-08-11 13:20:52 -04:00
|
|
|
wattroff(wmode, COLOR_PAIR(COLOR_PAIR_FIELD_SELECTED) | ATTRIBUTE_FIELD_SELECTED);
|
2023-08-04 14:21:45 -04:00
|
|
|
}else{
|
2023-08-11 13:20:52 -04:00
|
|
|
wattron(wmode, COLOR_PAIR(COLOR_PAIR_FIELD));
|
2023-08-04 14:21:45 -04:00
|
|
|
mvwprintw(wmode, i, 0, "%s %s", fields[i].text1, fields[i].text2);
|
2023-08-11 13:20:52 -04:00
|
|
|
wattroff(wmode, COLOR_PAIR(COLOR_PAIR_FIELD));
|
2023-08-04 14:21:45 -04:00
|
|
|
}
|
2023-07-27 14:04:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void display_command_field(){
|
2023-08-10 09:01:17 -04:00
|
|
|
werase(winput);
|
2023-08-11 13:20:52 -04:00
|
|
|
wattron(winput, COLOR_PAIR(COLOR_PAIR_PROMPT));
|
2023-08-10 08:36:16 -04:00
|
|
|
mvwaddstr(winput, 0, 0, prompts[input_mode]);
|
2023-08-11 13:20:52 -04:00
|
|
|
wattroff(winput, COLOR_PAIR(COLOR_PAIR_PROMPT));
|
2023-08-04 13:49:03 -04:00
|
|
|
waddstr(winput, rl_line_buffer);
|
2023-07-27 14:04:50 -04:00
|
|
|
}
|
2023-08-07 06:29:03 -04:00
|
|
|
static inline void display_results(){
|
2023-08-05 10:30:21 -04:00
|
|
|
int i;
|
|
|
|
char *s;
|
2023-08-08 06:47:02 -04:00
|
|
|
int screenline; /* screen line number */
|
|
|
|
int srctxtw; /* source line display width */
|
2023-08-05 10:30:21 -04:00
|
|
|
/* column headings */
|
2023-07-27 14:04:50 -04:00
|
|
|
char *subsystem; /* OGS subsystem name */
|
|
|
|
char *book; /* OGS book name */
|
|
|
|
char file[PATHLEN + 1]; /* file name */
|
|
|
|
char function[PATLEN + 1]; /* function name */
|
|
|
|
char linenum[NUMLEN + 1]; /* line number */
|
|
|
|
|
2023-08-09 07:49:11 -04:00
|
|
|
werase(wresult);
|
|
|
|
|
|
|
|
/* --- Display the message --- */
|
|
|
|
if (totallines == 0) { // Its a real message
|
|
|
|
wmove(wresult, MSGLINE, 0);
|
|
|
|
wclrtoeol(wresult);
|
2023-08-11 13:20:52 -04:00
|
|
|
wattron(wresult, COLOR_PAIR(COLOR_PAIR_MESSAGE));
|
2023-08-04 13:49:03 -04:00
|
|
|
waddstr(wresult, lastmsg);
|
2023-08-11 13:20:52 -04:00
|
|
|
wattroff(wresult, COLOR_PAIR(COLOR_PAIR_MESSAGE));
|
2023-08-04 13:49:03 -04:00
|
|
|
return;
|
|
|
|
}
|
2023-08-10 15:06:17 -04:00
|
|
|
if (input_mode == INPUT_CHANGE) { // Its a pattern
|
2023-08-09 07:49:11 -04:00
|
|
|
snprintf(lastmsg, MSGLEN, "Change \"%s\" to \"%s\"", input_line, newpat);
|
2023-08-04 13:49:03 -04:00
|
|
|
} else {
|
2023-08-09 07:49:11 -04:00
|
|
|
snprintf(lastmsg, MSGLEN, "%c%s: %s", toupper((unsigned char)fields[field].text2[0]),
|
2023-08-04 13:49:03 -04:00
|
|
|
fields[field].text2 + 1, input_line);
|
|
|
|
}
|
2023-08-11 13:20:52 -04:00
|
|
|
wattron(wresult, COLOR_PAIR(COLOR_PAIR_PATTERN));
|
2023-08-09 07:49:11 -04:00
|
|
|
waddstr(wresult, lastmsg);
|
2023-08-11 13:20:52 -04:00
|
|
|
wattroff(wresult, COLOR_PAIR(COLOR_PAIR_PATTERN));
|
2023-08-09 07:49:11 -04:00
|
|
|
|
2023-08-05 10:30:21 -04:00
|
|
|
/* --- Display the column headings --- */
|
2023-08-11 13:20:52 -04:00
|
|
|
wattron(wresult, COLOR_PAIR(COLOR_PAIR_TABLE_HEADER));
|
2023-08-04 13:49:03 -04:00
|
|
|
wmove(wresult, 2, 2);
|
2023-08-04 15:09:58 -04:00
|
|
|
if (ogs == true && field != FILENAME) {
|
2023-08-04 13:49:03 -04:00
|
|
|
wprintw(wresult, "%-*s ", subsystemlen, "Subsystem");
|
|
|
|
wprintw(wresult, "%-*s ", booklen, "Book");
|
|
|
|
}
|
|
|
|
if (dispcomponents > 0)
|
|
|
|
wprintw(wresult, "%-*s ", filelen, "File");
|
|
|
|
|
|
|
|
if (field == SYMBOL || field == CALLEDBY || field == CALLING) {
|
|
|
|
wprintw(wresult, "%-*s ", fcnlen, "Function");
|
|
|
|
}
|
|
|
|
if (field != FILENAME) {
|
|
|
|
waddstr(wresult, "Line");
|
|
|
|
}
|
2023-08-11 13:20:52 -04:00
|
|
|
wattroff(wresult, COLOR_PAIR(COLOR_PAIR_TABLE_HEADER));
|
2023-08-04 13:49:03 -04:00
|
|
|
|
2023-08-05 10:30:21 -04:00
|
|
|
/* --- Display table entries --- */
|
2023-08-04 13:49:03 -04:00
|
|
|
wmove(wresult, WRESULT_TABLE_BODY_START, 0);
|
|
|
|
|
|
|
|
/* calculate the source text column */
|
2023-08-05 10:30:21 -04:00
|
|
|
/* NOTE: the +1s are column gaps */
|
2023-08-04 13:49:03 -04:00
|
|
|
srctxtw = second_col_width;
|
|
|
|
srctxtw -= 1+1; // dispchars
|
2023-08-04 15:09:58 -04:00
|
|
|
if (ogs == true) {
|
2023-08-04 13:49:03 -04:00
|
|
|
srctxtw -= subsystemlen+1 + booklen+1;
|
|
|
|
}
|
|
|
|
if (dispcomponents > 0) {
|
|
|
|
srctxtw -= filelen+1;
|
|
|
|
}
|
|
|
|
if (field == SYMBOL || field == CALLEDBY || field == CALLING) {
|
|
|
|
srctxtw -= fcnlen+1;
|
|
|
|
}
|
|
|
|
srctxtw -= numlen+1;
|
|
|
|
|
2023-08-05 10:30:21 -04:00
|
|
|
/* decide where to list from */
|
2023-08-08 14:34:15 -04:00
|
|
|
/* XXX: this error handling migth be redundant*/
|
2023-08-10 15:06:17 -04:00
|
|
|
{
|
|
|
|
int seekerr;
|
|
|
|
do{
|
|
|
|
seekerr = seekpage(current_page);
|
|
|
|
}while(seekerr == -1 && current_page--);
|
|
|
|
}
|
2023-08-05 10:30:21 -04:00
|
|
|
|
2023-08-04 13:54:19 -04:00
|
|
|
/* until the max references have been displayed or
|
2023-08-04 13:49:03 -04:00
|
|
|
there is no more room */
|
|
|
|
for (disprefs = 0, screenline = WRESULT_TABLE_BODY_START;
|
|
|
|
disprefs < mdisprefs && screenline <= result_window_height;
|
|
|
|
++disprefs, ++screenline)
|
|
|
|
{
|
|
|
|
/* read the reference line */
|
|
|
|
if (
|
2023-08-04 14:05:31 -04:00
|
|
|
fscanf(refsfound, "%" PATHLEN_STR "s%" PATHLEN_STR "s%" NUMLEN_STR "s %" TEMPSTRING_LEN_STR "[^\n]",
|
|
|
|
file,
|
|
|
|
function,
|
|
|
|
linenum,
|
|
|
|
tempstring
|
|
|
|
)
|
|
|
|
<
|
|
|
|
4
|
2023-08-06 07:09:48 -04:00
|
|
|
){ break; }
|
2023-08-04 13:49:03 -04:00
|
|
|
++nextline;
|
|
|
|
displine[disprefs] = screenline;
|
2023-08-04 13:54:19 -04:00
|
|
|
|
2023-08-11 13:20:52 -04:00
|
|
|
wattron(wresult, COLOR_PAIR(COLOR_PAIR_TABLE_ID));
|
2023-08-04 13:49:03 -04:00
|
|
|
wprintw(wresult, "%c", dispchars[disprefs]);
|
2023-08-11 13:20:52 -04:00
|
|
|
wattroff(wresult, COLOR_PAIR(COLOR_PAIR_TABLE_ID));
|
2023-08-04 13:49:03 -04:00
|
|
|
|
|
|
|
/* display any change mark */
|
2023-08-10 15:06:17 -04:00
|
|
|
if (input_mode == INPUT_CHANGE && change[topref + disprefs]) {
|
2023-08-04 13:49:03 -04:00
|
|
|
waddch(wresult, '>');
|
|
|
|
} else {
|
2023-08-04 14:05:31 -04:00
|
|
|
waddch(wresult, ' ');
|
2023-08-04 13:49:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* display the file name */
|
2023-08-11 13:20:52 -04:00
|
|
|
wattron(wresult, COLOR_PAIR(COLOR_PAIR_TABLE_COL_FILE));
|
2023-08-04 13:49:03 -04:00
|
|
|
if (field == FILENAME) {
|
2023-08-10 15:06:17 -04:00
|
|
|
wprintw(wresult, "%-*s ", filelen, file);
|
2023-08-04 13:49:03 -04:00
|
|
|
} else {
|
2023-08-10 15:06:17 -04:00
|
|
|
/* if OGS, display the subsystem and book names */
|
|
|
|
if (ogs == true) {
|
|
|
|
ogsnames(file, &subsystem, &book);
|
|
|
|
wprintw(wresult, "%-*.*s ", subsystemlen, subsystemlen, subsystem);
|
|
|
|
wprintw(wresult, "%-*.*s ", booklen, booklen, book);
|
|
|
|
}
|
|
|
|
/* display the requested path components */
|
|
|
|
if (dispcomponents > 0) {
|
|
|
|
wprintw(wresult, "%-*.*s ", filelen, filelen,
|
|
|
|
pathcomponents(file, dispcomponents));
|
|
|
|
}
|
2023-08-04 13:49:03 -04:00
|
|
|
} /* else(field == FILENAME) */
|
2023-08-11 13:20:52 -04:00
|
|
|
wattroff(wresult, COLOR_PAIR(COLOR_PAIR_TABLE_COL_FILE));
|
2023-08-04 13:49:03 -04:00
|
|
|
|
|
|
|
/* display the function name */
|
2023-08-11 13:20:52 -04:00
|
|
|
if(field == SYMBOL || field == CALLEDBY || field == CALLING){
|
|
|
|
wattron(wresult, COLOR_PAIR(COLOR_PAIR_TABLE_COL_FUNCTION));
|
|
|
|
wprintw(wresult, "%-*.*s ", fcnlen, fcnlen, function);
|
|
|
|
wattroff(wresult, COLOR_PAIR(COLOR_PAIR_TABLE_COL_FUNCTION));
|
2023-08-04 13:49:03 -04:00
|
|
|
}
|
2023-08-11 13:20:52 -04:00
|
|
|
if(field == FILENAME){
|
|
|
|
waddch(wresult, '\n'); /* go to next line */
|
|
|
|
continue;
|
2023-08-04 13:49:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* display the line number */
|
2023-08-11 13:20:52 -04:00
|
|
|
wattron(wresult, COLOR_PAIR(COLOR_PAIR_TABLE_COL_LINE));
|
2023-08-04 13:49:03 -04:00
|
|
|
wprintw(wresult, "%*s ", numlen, linenum);
|
2023-08-11 13:20:52 -04:00
|
|
|
wattroff(wresult, COLOR_PAIR(COLOR_PAIR_TABLE_COL_LINE));
|
2023-08-04 13:49:03 -04:00
|
|
|
/* there may be tabs in egrep output */
|
2023-08-11 13:20:52 -04:00
|
|
|
while((s = strchr(tempstring, '\t')) != NULL){
|
|
|
|
*s = ' ';
|
2023-08-04 13:49:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* display the source line */
|
2023-08-11 13:20:52 -04:00
|
|
|
wattron(wresult, COLOR_PAIR(COLOR_PAIR_TABLE_COL_TEXT));
|
2023-08-04 13:49:03 -04:00
|
|
|
s = tempstring;
|
|
|
|
for (;;) {
|
|
|
|
/* if the source line does not fit */
|
|
|
|
if ((i = strlen(s)) > srctxtw) {
|
2023-08-04 13:54:19 -04:00
|
|
|
|
2023-08-04 13:49:03 -04:00
|
|
|
/* find the nearest blank */
|
|
|
|
for (i = srctxtw; s[i] != ' ' && i > 0; --i) {
|
2023-08-04 14:05:31 -04:00
|
|
|
;
|
2023-08-04 13:49:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (i == 0) {
|
2023-08-04 14:05:31 -04:00
|
|
|
i = srctxtw; /* no blank */
|
2023-08-04 13:49:03 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* print up to this point */
|
|
|
|
wprintw(wresult, "%.*s", i, s);
|
|
|
|
s += i;
|
2023-08-04 13:54:19 -04:00
|
|
|
|
2023-08-04 13:49:03 -04:00
|
|
|
/* if line didn't wrap around */
|
|
|
|
if (i < srctxtw) {
|
2023-08-04 14:05:31 -04:00
|
|
|
waddch(wresult, '\n'); /* go to next line */
|
2023-08-04 13:49:03 -04:00
|
|
|
}
|
|
|
|
/* skip blanks */
|
|
|
|
while (*s == ' ') {
|
|
|
|
++s;
|
|
|
|
}
|
|
|
|
/* see if there is more text */
|
|
|
|
if (*s == '\0') {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* if the source line is too long */
|
|
|
|
if (++screenline > result_window_height) {
|
|
|
|
|
|
|
|
/* if this is the first displayed line,
|
|
|
|
display what will fit on the screen */
|
2023-08-10 15:06:17 -04:00
|
|
|
if (topref == nextline-1) {
|
2023-08-10 09:52:28 -04:00
|
|
|
disprefs++;
|
|
|
|
/* break out of two loops */
|
|
|
|
goto endrefs;
|
2023-08-04 13:49:03 -04:00
|
|
|
}
|
2023-08-04 13:54:19 -04:00
|
|
|
|
2023-08-04 13:49:03 -04:00
|
|
|
/* erase the reference */
|
|
|
|
while (--screenline >= displine[disprefs]) {
|
2023-08-04 14:05:31 -04:00
|
|
|
wmove(wresult, screenline, 0);
|
|
|
|
wclrtoeol(wresult);
|
2023-08-04 13:49:03 -04:00
|
|
|
}
|
|
|
|
++screenline;
|
2023-08-04 13:54:19 -04:00
|
|
|
|
2023-08-04 13:49:03 -04:00
|
|
|
/* go back to the beginning of this reference */
|
|
|
|
--nextline;
|
2023-08-08 06:47:02 -04:00
|
|
|
fseek(refsfound, 0, SEEK_SET);
|
2023-08-04 13:49:03 -04:00
|
|
|
goto endrefs;
|
|
|
|
}
|
|
|
|
/* indent the continued source line */
|
|
|
|
wmove(wresult, screenline, second_col_width - srctxtw);
|
|
|
|
} /* for(ever) */
|
|
|
|
} /* for(reference output lines) */
|
2023-08-11 13:20:52 -04:00
|
|
|
wattron(wresult, COLOR_PAIR(COLOR_PAIR_TABLE_COL_TEXT));
|
2023-08-01 13:36:53 -04:00
|
|
|
|
|
|
|
endrefs:
|
2023-08-06 07:09:48 -04:00
|
|
|
/* position the screen cursor for the message */
|
2023-08-04 13:49:03 -04:00
|
|
|
i = result_window_height - 1;
|
|
|
|
if (screenline < i) {
|
|
|
|
waddch(wresult, '\n');
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
wmove(wresult, i, 0);
|
|
|
|
}
|
2023-08-11 13:20:52 -04:00
|
|
|
/* --- display pager message --- */
|
|
|
|
wattron(wresult, COLOR_PAIR(COLOR_PAIR_PAGER_MSG));
|
2023-08-04 13:49:03 -04:00
|
|
|
/* check for more references */
|
|
|
|
i = totallines - nextline + 1;
|
|
|
|
bottomline = nextline;
|
|
|
|
if (i > 0) {
|
2023-08-10 15:06:17 -04:00
|
|
|
wprintw(wresult, "* Lines %d-%d of %d, %d more - press the space bar to display more *", topref, bottomline, totallines, i);
|
2023-08-04 13:49:03 -04:00
|
|
|
}
|
|
|
|
/* if this is the last page of references */
|
2023-08-10 15:06:17 -04:00
|
|
|
else if (current_page > 0 && nextline > totallines) {
|
2023-08-04 13:49:03 -04:00
|
|
|
waddstr(wresult, "* Press the space bar to display the first lines again *");
|
|
|
|
}
|
2023-08-11 13:20:52 -04:00
|
|
|
wattroff(wresult, COLOR_PAIR(COLOR_PAIR_PAGER_MSG));
|
2023-07-29 09:40:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void display_cursor(void){
|
2023-08-04 13:49:03 -04:00
|
|
|
chtype i;
|
|
|
|
int yoffset = 0, xoffset = 0;
|
|
|
|
|
|
|
|
if(current_window == &winput){
|
2023-08-10 08:36:16 -04:00
|
|
|
xoffset = strlen(prompts[input_mode]) + rl_point;
|
2023-08-04 13:49:03 -04:00
|
|
|
}else if(current_window == &wmode){
|
|
|
|
yoffset = field;
|
|
|
|
}else if(current_window == &wresult){
|
|
|
|
yoffset = displine[curdispline];
|
|
|
|
}else{
|
2023-08-10 08:36:16 -04:00
|
|
|
assert("No window selected.");
|
2023-08-04 13:49:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
wmove(*current_window, yoffset, xoffset);
|
|
|
|
|
|
|
|
i = winch(*current_window);
|
|
|
|
i |= A_REVERSE;
|
|
|
|
waddch(*current_window, i);
|
2023-07-29 09:40:48 -04:00
|
|
|
}
|
|
|
|
void
|
|
|
|
horswp_field(void){
|
2023-08-04 13:49:03 -04:00
|
|
|
if(current_window != &wresult){
|
2023-08-04 14:05:31 -04:00
|
|
|
if(current_window == &winput){
|
|
|
|
window_change |= CH_INPUT;
|
|
|
|
}else{
|
|
|
|
window_change |= CH_MODE;
|
|
|
|
}
|
2023-08-04 13:49:03 -04:00
|
|
|
last_window = current_window;
|
|
|
|
current_window = &wresult;
|
|
|
|
}else{
|
|
|
|
current_window = last_window;
|
|
|
|
}
|
2023-08-04 14:05:31 -04:00
|
|
|
window_change |= CH_RESULT;
|
2023-07-29 09:40:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
verswp_field(void){
|
2023-08-04 13:49:03 -04:00
|
|
|
if(current_window == &wresult){ return; }
|
|
|
|
current_window = (current_window == &winput) ? &wmode : &winput;
|
2023-08-04 14:05:31 -04:00
|
|
|
window_change |= CH_INPUT | CH_MODE;
|
2023-07-27 14:04:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* display search progress with default custom format */
|
|
|
|
void
|
|
|
|
progress(char *what, long current, long max)
|
|
|
|
{
|
2023-08-04 14:05:31 -04:00
|
|
|
static long start;
|
2023-08-04 13:49:03 -04:00
|
|
|
long now;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* save the start time */
|
|
|
|
if (searchcount == 0) {
|
|
|
|
start = time(NULL);
|
|
|
|
}
|
|
|
|
if ((now = time(NULL)) - start >= 1)
|
|
|
|
{
|
2023-08-04 15:09:58 -04:00
|
|
|
if (linemode == false)
|
2023-08-04 13:49:03 -04:00
|
|
|
{
|
2023-08-09 07:49:11 -04:00
|
|
|
wmove(wresult, MSGLINE, MSGCOL);
|
2023-08-04 14:05:31 -04:00
|
|
|
wclrtoeol(wresult);
|
|
|
|
waddstr(wresult, what);
|
2023-08-09 07:49:11 -04:00
|
|
|
snprintf(lastmsg, sizeof(lastmsg), "%ld", current);
|
|
|
|
wmove(wresult, MSGLINE, (COLS / 2) - (strlen(lastmsg) / 2));
|
|
|
|
waddstr(wresult, lastmsg);
|
|
|
|
snprintf(lastmsg, sizeof(lastmsg), "%ld", max);
|
|
|
|
wmove(wresult, MSGLINE, COLS - strlen(lastmsg));
|
|
|
|
waddstr(wresult, lastmsg);
|
2023-08-04 14:05:31 -04:00
|
|
|
refresh();
|
2023-08-04 13:49:03 -04:00
|
|
|
}
|
2023-08-04 15:09:58 -04:00
|
|
|
else if (verbosemode == true)
|
2023-08-04 13:49:03 -04:00
|
|
|
{
|
2023-08-09 07:49:11 -04:00
|
|
|
snprintf(lastmsg, sizeof(lastmsg), "> %s %ld of %ld", what, current, max);
|
2023-08-04 13:49:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
start = now;
|
2023-08-04 15:09:58 -04:00
|
|
|
if ((linemode == false) && (incurses == true))
|
2023-08-04 13:49:03 -04:00
|
|
|
{
|
2023-08-09 07:49:11 -04:00
|
|
|
wmove(wresult, MSGLINE, MSGCOL);
|
2023-08-04 14:05:31 -04:00
|
|
|
i = (float)COLS * (float)current / (float)max;
|
|
|
|
|
|
|
|
standout();
|
|
|
|
for (; i > 0; i--)
|
|
|
|
waddch(wresult, inch());
|
|
|
|
standend();
|
|
|
|
refresh();
|
2023-08-04 13:49:03 -04:00
|
|
|
}
|
|
|
|
else
|
2023-08-09 07:49:11 -04:00
|
|
|
if(linemode == false || verbosemode == true){
|
|
|
|
postmsg(lastmsg);
|
|
|
|
}
|
2023-08-04 13:49:03 -04:00
|
|
|
}
|
|
|
|
++searchcount;
|
2023-07-27 14:04:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* print error message on system call failure */
|
|
|
|
void
|
2023-08-04 13:54:19 -04:00
|
|
|
myperror(char *text)
|
2023-07-27 14:04:50 -04:00
|
|
|
{
|
2023-08-04 13:49:03 -04:00
|
|
|
char *s;
|
2023-07-27 14:04:50 -04:00
|
|
|
|
|
|
|
s = strerror(errno);
|
|
|
|
|
2023-08-09 07:49:11 -04:00
|
|
|
(void) snprintf(lastmsg, sizeof(lastmsg), "%s: %s", text, s);
|
|
|
|
postmsg(lastmsg);
|
2023-07-27 14:04:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* postmsg clears the message line and prints the message */
|
|
|
|
|
|
|
|
void
|
2023-08-04 13:54:19 -04:00
|
|
|
postmsg(char *msg)
|
2023-07-27 14:04:50 -04:00
|
|
|
{
|
2023-08-04 15:09:58 -04:00
|
|
|
if (linemode == true || incurses == false) {
|
2023-08-09 07:49:11 -04:00
|
|
|
printf("%s\n", msg);
|
2023-08-04 13:49:03 -04:00
|
|
|
fflush(stdout);
|
|
|
|
}
|
|
|
|
else {
|
2023-08-09 07:49:11 -04:00
|
|
|
window_change |= CH_RESULT;
|
2023-08-04 13:49:03 -04:00
|
|
|
}
|
2023-08-09 07:49:11 -04:00
|
|
|
UNUSED(strncpy(lastmsg, msg, sizeof(lastmsg) - 1));
|
2023-07-27 14:04:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* clearmsg2 clears the second message line */
|
|
|
|
void
|
|
|
|
clearmsg2(void)
|
|
|
|
{
|
2023-08-04 15:09:58 -04:00
|
|
|
if (linemode == false) {
|
2023-08-04 13:49:03 -04:00
|
|
|
wmove(wresult, MSGLINE + 1, 0);
|
|
|
|
wclrtoeol(wresult);
|
|
|
|
}
|
2023-07-27 14:04:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* postmsg2 clears the second message line and prints the message */
|
|
|
|
void
|
2023-08-04 13:54:19 -04:00
|
|
|
postmsg2(char *msg)
|
2023-07-27 14:04:50 -04:00
|
|
|
{
|
2023-08-04 15:09:58 -04:00
|
|
|
if (linemode == true) {
|
2023-08-04 13:49:03 -04:00
|
|
|
(void) printf("%s\n", msg);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
clearmsg2();
|
|
|
|
waddstr(wresult, msg);
|
|
|
|
wrefresh(wresult);
|
|
|
|
}
|
2023-07-27 14:04:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* display an error mesg - stdout or on second msg line */
|
|
|
|
void
|
2023-08-04 13:54:19 -04:00
|
|
|
posterr(char *msg, ...)
|
2023-07-27 14:04:50 -04:00
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
char errbuf[MSGLEN];
|
2023-08-04 13:54:19 -04:00
|
|
|
|
2023-07-27 14:04:50 -04:00
|
|
|
va_start(ap, msg);
|
2023-08-04 15:09:58 -04:00
|
|
|
if (linemode == true || incurses == false)
|
2023-07-27 14:04:50 -04:00
|
|
|
{
|
2023-08-04 13:54:19 -04:00
|
|
|
(void) vfprintf(stderr, msg, ap);
|
2023-08-04 13:49:03 -04:00
|
|
|
(void) fputc('\n', stderr);
|
2023-07-27 14:04:50 -04:00
|
|
|
} else {
|
|
|
|
vsnprintf(errbuf, sizeof(errbuf), msg, ap);
|
2023-08-04 13:54:19 -04:00
|
|
|
postmsg2(errbuf);
|
2023-07-27 14:04:50 -04:00
|
|
|
}
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* display a fatal error mesg -- stderr *after* shutting down curses */
|
|
|
|
void
|
|
|
|
postfatal(const char *msg, ...)
|
|
|
|
{
|
2023-08-04 13:49:03 -04:00
|
|
|
va_list ap;
|
|
|
|
char errbuf[MSGLEN];
|
2023-07-27 14:04:50 -04:00
|
|
|
|
2023-08-04 13:49:03 -04:00
|
|
|
va_start(ap, msg);
|
|
|
|
vsnprintf(errbuf, sizeof(errbuf), msg, ap);
|
|
|
|
/* restore the terminal to its original mode */
|
2023-08-04 15:09:58 -04:00
|
|
|
if (incurses == true) {
|
2023-08-04 13:49:03 -04:00
|
|
|
exitcurses();
|
|
|
|
}
|
2023-07-27 14:04:50 -04:00
|
|
|
|
2023-08-04 13:49:03 -04:00
|
|
|
/* display fatal error messages */
|
|
|
|
fprintf(stderr,"%s",errbuf);
|
2023-07-27 14:04:50 -04:00
|
|
|
|
2023-08-04 13:49:03 -04:00
|
|
|
/* shut down */
|
|
|
|
myexit(1);
|
2023-07-27 14:04:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* get the OGS subsystem and book names */
|
|
|
|
void
|
|
|
|
ogsnames(char *file, char **subsystem, char **book)
|
|
|
|
{
|
2023-08-04 14:05:31 -04:00
|
|
|
static char buf[PATHLEN + 1];
|
2023-08-04 13:49:03 -04:00
|
|
|
char *s, *slash;
|
|
|
|
|
|
|
|
*subsystem = *book = "";
|
|
|
|
(void) strcpy(buf,file);
|
|
|
|
s = buf;
|
|
|
|
if (*s == '/') {
|
|
|
|
++s;
|
|
|
|
}
|
|
|
|
while ((slash = strchr(s, '/')) != NULL) {
|
|
|
|
*slash = '\0';
|
|
|
|
if ((int)strlen(s) >= 3 && strncmp(slash - 3, ".ss", 3) == 0) {
|
2023-08-04 14:05:31 -04:00
|
|
|
*subsystem = s;
|
|
|
|
s = slash + 1;
|
|
|
|
if ((slash = strchr(s, '/')) != NULL) {
|
|
|
|
*book = s;
|
|
|
|
*slash = '\0';
|
|
|
|
}
|
|
|
|
break;
|
2023-08-04 13:49:03 -04:00
|
|
|
}
|
|
|
|
s = slash + 1;
|
|
|
|
}
|
2023-07-27 14:04:50 -04:00
|
|
|
}
|
2023-08-10 15:06:17 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
display(void)
|
|
|
|
{
|
|
|
|
//drawscrollbar(topline, nextline); /* display the scrollbar */
|
|
|
|
|
|
|
|
if(window_change){
|
|
|
|
if(window_change == CH_HELP){
|
2023-08-11 13:20:52 -04:00
|
|
|
display_frame(true);
|
2023-08-10 15:06:17 -04:00
|
|
|
display_help();
|
2023-08-11 13:20:52 -04:00
|
|
|
/* Do not display over the help msg and
|
|
|
|
* rely on setting CH_ALL for the next display
|
|
|
|
*/
|
|
|
|
window_change = CH_ALL;
|
2023-08-10 15:06:17 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
/**/
|
|
|
|
if(window_change == CH_ALL){
|
2023-08-11 13:20:52 -04:00
|
|
|
display_frame(false);
|
2023-08-10 15:06:17 -04:00
|
|
|
}
|
|
|
|
if(window_change & CH_INPUT){
|
|
|
|
display_command_field();
|
|
|
|
}
|
|
|
|
if(window_change & CH_RESULT){
|
|
|
|
display_results();
|
|
|
|
}
|
|
|
|
if(window_change & CH_MODE){
|
|
|
|
display_mode();
|
|
|
|
}
|
|
|
|
|
|
|
|
display_cursor();
|
|
|
|
|
|
|
|
refresh();
|
|
|
|
wrefresh(winput);
|
|
|
|
wrefresh(wmode);
|
|
|
|
wrefresh(wresult);
|
|
|
|
}
|
|
|
|
|
|
|
|
window_change = CH_NONE;
|
|
|
|
}
|