2020-09-19 11:55:23 +00:00
|
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
|
2016-01-12 08:00:58 +00:00
|
|
|
#include "InfoScreen.h"
|
|
|
|
|
2020-09-19 11:55:23 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2016-01-12 08:00:58 +00:00
|
|
|
#include "CRT.h"
|
|
|
|
#include "IncSet.h"
|
|
|
|
#include "ListItem.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "Object.h"
|
|
|
|
#include "ProvideCurses.h"
|
2020-10-14 18:21:09 +00:00
|
|
|
#include "XUtils.h"
|
2016-01-12 08:00:58 +00:00
|
|
|
|
|
|
|
|
2017-07-23 02:41:19 +00:00
|
|
|
static const char* const InfoScreenFunctions[] = {"Search ", "Filter ", "Refresh", "Done ", NULL};
|
2016-01-12 08:00:58 +00:00
|
|
|
|
2017-07-23 02:41:19 +00:00
|
|
|
static const char* const InfoScreenKeys[] = {"F3", "F4", "F5", "Esc"};
|
2016-01-12 08:00:58 +00:00
|
|
|
|
|
|
|
static int InfoScreenEvents[] = {KEY_F(3), KEY_F(4), KEY_F(5), 27};
|
|
|
|
|
2020-10-07 17:02:15 +00:00
|
|
|
InfoScreen* InfoScreen_init(InfoScreen* this, const Process* process, FunctionBar* bar, int height, const char* panelHeader) {
|
2016-01-12 08:00:58 +00:00
|
|
|
this->process = process;
|
|
|
|
if (!bar) {
|
|
|
|
bar = FunctionBar_new(InfoScreenFunctions, InfoScreenKeys, InfoScreenEvents);
|
|
|
|
}
|
|
|
|
this->display = Panel_new(0, 1, COLS, height, false, Class(ListItem), bar);
|
|
|
|
this->inc = IncSet_new(bar);
|
|
|
|
this->lines = Vector_new(this->display->items->type, true, DEFAULT_SIZE);
|
|
|
|
Panel_setHeader(this->display, panelHeader);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
InfoScreen* InfoScreen_done(InfoScreen* this) {
|
|
|
|
Panel_delete((Object*)this->display);
|
|
|
|
IncSet_delete(this->inc);
|
|
|
|
Vector_delete(this->lines);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2020-08-20 19:58:14 +00:00
|
|
|
void InfoScreen_drawTitled(InfoScreen* this, const char* fmt, ...) {
|
2016-01-12 08:00:58 +00:00
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
2020-10-02 16:12:31 +00:00
|
|
|
|
|
|
|
char* title = xMalloc(COLS + 1);
|
|
|
|
int len = vsnprintf(title, COLS + 1, fmt, ap);
|
|
|
|
if (len > COLS) {
|
|
|
|
memset(&title[COLS - 3], '.', 3);
|
|
|
|
}
|
|
|
|
|
2016-01-12 08:00:58 +00:00
|
|
|
attrset(CRT_colors[METER_TEXT]);
|
|
|
|
mvhline(0, 0, ' ', COLS);
|
2020-10-02 16:12:31 +00:00
|
|
|
mvwprintw(stdscr, 0, 0, title);
|
2016-01-12 08:00:58 +00:00
|
|
|
attrset(CRT_colors[DEFAULT_COLOR]);
|
2016-06-23 16:25:58 +00:00
|
|
|
this->display->needsRedraw = true;
|
2020-11-23 15:23:18 +00:00
|
|
|
Panel_draw(this->display, true, true);
|
2016-01-12 08:00:58 +00:00
|
|
|
IncSet_drawBar(this->inc);
|
2020-10-02 16:12:31 +00:00
|
|
|
free(title);
|
2016-01-12 08:00:58 +00:00
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InfoScreen_addLine(InfoScreen* this, const char* line) {
|
|
|
|
Vector_add(this->lines, (Object*) ListItem_new(line, 0));
|
|
|
|
const char* incFilter = IncSet_filter(this->inc);
|
2020-11-01 00:09:51 +00:00
|
|
|
if (!incFilter || String_contains_i(line, incFilter)) {
|
2020-10-31 22:28:02 +00:00
|
|
|
Panel_add(this->display, Vector_get(this->lines, Vector_size(this->lines) - 1));
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2016-01-12 08:00:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void InfoScreen_appendLine(InfoScreen* this, const char* line) {
|
2020-10-31 22:28:02 +00:00
|
|
|
ListItem* last = (ListItem*)Vector_get(this->lines, Vector_size(this->lines) - 1);
|
2016-01-12 08:00:58 +00:00
|
|
|
ListItem_append(last, line);
|
|
|
|
const char* incFilter = IncSet_filter(this->inc);
|
2020-11-01 00:09:51 +00:00
|
|
|
if (incFilter && Panel_get(this->display, Panel_size(this->display) - 1) != (Object*)last && String_contains_i(line, incFilter)) {
|
2016-01-12 08:00:58 +00:00
|
|
|
Panel_add(this->display, (Object*)last);
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2016-01-12 08:00:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void InfoScreen_run(InfoScreen* this) {
|
|
|
|
Panel* panel = this->display;
|
|
|
|
|
2020-10-31 22:28:02 +00:00
|
|
|
if (As_InfoScreen(this)->scan)
|
|
|
|
InfoScreen_scan(this);
|
|
|
|
|
2016-01-12 08:00:58 +00:00
|
|
|
InfoScreen_draw(this);
|
|
|
|
|
|
|
|
bool looping = true;
|
|
|
|
while (looping) {
|
|
|
|
|
2020-11-23 15:23:18 +00:00
|
|
|
Panel_draw(panel, true, true);
|
2016-01-12 08:00:58 +00:00
|
|
|
|
2018-02-18 13:38:49 +00:00
|
|
|
if (this->inc->active) {
|
2020-10-31 22:28:02 +00:00
|
|
|
(void) move(LINES - 1, CRT_cursorX);
|
2018-02-18 13:38:49 +00:00
|
|
|
}
|
2016-05-19 19:09:47 +00:00
|
|
|
set_escdelay(25);
|
2016-01-12 08:00:58 +00:00
|
|
|
int ch = getch();
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2016-01-12 08:00:58 +00:00
|
|
|
if (ch == ERR) {
|
|
|
|
if (As_InfoScreen(this)->onErr) {
|
|
|
|
InfoScreen_onErr(this);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ch == KEY_MOUSE) {
|
|
|
|
MEVENT mevent;
|
|
|
|
int ok = getmouse(&mevent);
|
2020-08-19 08:10:16 +00:00
|
|
|
if (ok == OK) {
|
2016-01-12 08:00:58 +00:00
|
|
|
if (mevent.y >= panel->y && mevent.y < LINES - 1) {
|
|
|
|
Panel_setSelected(panel, mevent.y - panel->y + panel->scrollV);
|
|
|
|
ch = 0;
|
2020-08-20 05:16:47 +00:00
|
|
|
} else if (mevent.y == LINES - 1) {
|
2016-01-12 08:00:58 +00:00
|
|
|
ch = IncSet_synthesizeEvent(this->inc, mevent.x);
|
2020-06-11 16:41:13 +00:00
|
|
|
}
|
2020-10-20 11:14:32 +00:00
|
|
|
}
|
2016-01-12 08:00:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this->inc->active) {
|
|
|
|
IncSet_handleKey(this->inc, ch, panel, IncSet_getListItemValue, this->lines);
|
|
|
|
continue;
|
|
|
|
}
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2016-01-12 08:00:58 +00:00
|
|
|
switch(ch) {
|
|
|
|
case ERR:
|
|
|
|
continue;
|
|
|
|
case KEY_F(3):
|
|
|
|
case '/':
|
|
|
|
IncSet_activate(this->inc, INC_SEARCH, panel);
|
|
|
|
break;
|
|
|
|
case KEY_F(4):
|
|
|
|
case '\\':
|
|
|
|
IncSet_activate(this->inc, INC_FILTER, panel);
|
|
|
|
break;
|
|
|
|
case KEY_F(5):
|
|
|
|
clear();
|
2020-11-01 00:09:51 +00:00
|
|
|
if (As_InfoScreen(this)->scan)
|
|
|
|
InfoScreen_scan(this);
|
|
|
|
|
2016-01-12 08:00:58 +00:00
|
|
|
InfoScreen_draw(this);
|
|
|
|
break;
|
|
|
|
case '\014': // Ctrl+L
|
|
|
|
clear();
|
|
|
|
InfoScreen_draw(this);
|
|
|
|
break;
|
|
|
|
case 'q':
|
|
|
|
case 27:
|
|
|
|
case KEY_F(10):
|
|
|
|
looping = false;
|
|
|
|
break;
|
|
|
|
case KEY_RESIZE:
|
2020-10-31 22:28:02 +00:00
|
|
|
Panel_resize(panel, COLS, LINES - 2);
|
|
|
|
if (As_InfoScreen(this)->scan)
|
|
|
|
InfoScreen_scan(this);
|
2020-11-01 00:09:51 +00:00
|
|
|
|
2016-01-12 08:00:58 +00:00
|
|
|
InfoScreen_draw(this);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (As_InfoScreen(this)->onKey && InfoScreen_onKey(this, ch)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Panel_onKey(panel, ch);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|