facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
320 lines
7.7 KiB
C
320 lines
7.7 KiB
C
/****************************************************************************
|
|
* Copyright 2020-2024,2025 Thomas E. Dickey *
|
|
* Copyright 2007-2010,2017 Free Software Foundation, Inc. *
|
|
* *
|
|
* Permission is hereby granted, free of charge, to any person obtaining a *
|
|
* copy of this software and associated documentation files (the *
|
|
* "Software"), to deal in the Software without restriction, including *
|
|
* without limitation the rights to use, copy, modify, merge, publish, *
|
|
* distribute, distribute with modifications, sublicense, and/or sell *
|
|
* copies of the Software, and to permit persons to whom the Software is *
|
|
* furnished to do so, subject to the following conditions: *
|
|
* *
|
|
* The above copyright notice and this permission notice shall be included *
|
|
* in all copies or substantial portions of the Software. *
|
|
* *
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
|
|
* IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
|
|
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
|
|
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
|
|
* THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
|
|
* *
|
|
* Except as contained in this notice, the name(s) of the above copyright *
|
|
* holders shall not be used in advertising or otherwise to promote the *
|
|
* sale, use or other dealings in this Software without prior written *
|
|
* authorization. *
|
|
****************************************************************************/
|
|
/*
|
|
* $Id: test_instr.c,v 1.17 2025/07/05 15:21:56 tom Exp $
|
|
*
|
|
* Author: Thomas E Dickey
|
|
*
|
|
* Demonstrate the instr functions from the curses library.
|
|
|
|
int instr(char *str);
|
|
int innstr(char *str, int n);
|
|
int winstr(WINDOW *win, char *str);
|
|
int winnstr(WINDOW *win, char *str, int n);
|
|
int mvinstr(int y, int x, char *str);
|
|
int mvinnstr(int y, int x, char *str, int n);
|
|
int mvwinstr(WINDOW *win, int y, int x, char *str);
|
|
int mvwinnstr(WINDOW *win, int y, int x, char *str, int n);
|
|
*/
|
|
|
|
#include <test.priv.h>
|
|
#include <popup_msg.h>
|
|
|
|
#define BASE_Y 6
|
|
#define MAX_COLS 1024
|
|
|
|
static bool
|
|
Quit(int ch)
|
|
{
|
|
return (ch == ERR || ch == 'q' || ch == QUIT || ch == ESCAPE);
|
|
}
|
|
|
|
static void
|
|
show_1st(WINDOW *win, int line, NCURSES_CONST char *buffer)
|
|
{
|
|
MvWAddStr(win, line, 5, buffer);
|
|
}
|
|
|
|
static void
|
|
showmore(WINDOW *win, int line, NCURSES_CONST char *buffer)
|
|
{
|
|
wmove(win, line, 0);
|
|
wclrtoeol(win);
|
|
show_1st(win, line, buffer);
|
|
}
|
|
|
|
static void
|
|
show_help(WINDOW *win)
|
|
{
|
|
static NCURSES_CONST char *msgs[] =
|
|
{
|
|
"Show file contents and a viewport from the variants of winstr."
|
|
,"Use h/j/k/l or arrow keys to move the viewport."
|
|
,""
|
|
,"Other commands:"
|
|
,"+ increases the buffer-size used."
|
|
,"- decreases the buffer-size used."
|
|
,"w opens new window on the next filename."
|
|
,"q quits the current file/window."
|
|
,"? shows this help-window"
|
|
,NULL
|
|
};
|
|
|
|
popup_msg(win, msgs);
|
|
}
|
|
|
|
static int
|
|
recursive_test(int level, char **argv, WINDOW *chrwin, WINDOW *strwin)
|
|
{
|
|
WINDOW *txtbox = NULL;
|
|
WINDOW *txtwin = NULL;
|
|
FILE *fp;
|
|
int ch;
|
|
int txt_x = 0, txt_y = 0;
|
|
int base_y;
|
|
int limit = getmaxx(strwin) - 5;
|
|
|
|
char buffer[MAX_COLS];
|
|
|
|
if (argv[level] == NULL) {
|
|
beep();
|
|
return FALSE;
|
|
}
|
|
|
|
*buffer = '\0';
|
|
if (level > 1) {
|
|
txtbox = newwin(LINES - BASE_Y, COLS - level, BASE_Y, level);
|
|
box(txtbox, 0, 0);
|
|
wnoutrefresh(txtbox);
|
|
|
|
txtwin = derwin(txtbox,
|
|
getmaxy(txtbox) - 2,
|
|
getmaxx(txtbox) - 2,
|
|
1, 1);
|
|
base_y = 0;
|
|
} else {
|
|
txtwin = stdscr;
|
|
base_y = BASE_Y;
|
|
}
|
|
|
|
keypad(txtwin, TRUE); /* enable keyboard mapping */
|
|
(void) cbreak(); /* take input chars one at a time, no wait for \n */
|
|
(void) noecho(); /* don't echo input */
|
|
|
|
txt_y = base_y;
|
|
txt_x = 0;
|
|
wmove(txtwin, txt_y, txt_x);
|
|
|
|
if ((fp = fopen(argv[level], "r")) != NULL) {
|
|
while ((ch = fgetc(fp)) != EOF) {
|
|
if (waddch(txtwin, UChar(ch)) != OK) {
|
|
break;
|
|
}
|
|
}
|
|
fclose(fp);
|
|
} else {
|
|
wprintw(txtwin, "Cannot open:\n%s", argv[1]);
|
|
}
|
|
|
|
while (!Quit(ch = mvwgetch(txtwin, txt_y, txt_x))) {
|
|
switch (ch) {
|
|
case KEY_DOWN:
|
|
case 'j':
|
|
if (txt_y < getmaxy(txtwin) - 1)
|
|
txt_y++;
|
|
else
|
|
beep();
|
|
break;
|
|
case KEY_UP:
|
|
case 'k':
|
|
if (txt_y > base_y)
|
|
txt_y--;
|
|
else
|
|
beep();
|
|
break;
|
|
case KEY_LEFT:
|
|
case 'h':
|
|
if (txt_x > 0)
|
|
txt_x--;
|
|
else
|
|
beep();
|
|
break;
|
|
case KEY_RIGHT:
|
|
case 'l':
|
|
if (txt_x < getmaxx(txtwin) - 1)
|
|
txt_x++;
|
|
else
|
|
beep();
|
|
break;
|
|
case 'w':
|
|
recursive_test(level + 1, argv, chrwin, strwin);
|
|
if (txtbox != NULL) {
|
|
touchwin(txtbox);
|
|
wnoutrefresh(txtbox);
|
|
} else {
|
|
touchwin(txtwin);
|
|
wnoutrefresh(txtwin);
|
|
}
|
|
break;
|
|
case '-':
|
|
if (limit > 0) {
|
|
--limit;
|
|
} else {
|
|
beep();
|
|
}
|
|
break;
|
|
case '+':
|
|
if (limit + 2 < MAX_COLS) {
|
|
++limit;
|
|
} else {
|
|
beep();
|
|
}
|
|
break;
|
|
case HELP_KEY_1:
|
|
show_help(txtwin);
|
|
continue;
|
|
default:
|
|
beep();
|
|
break;
|
|
}
|
|
|
|
MvWPrintw(chrwin, 0, 0, "line:");
|
|
wclrtoeol(chrwin);
|
|
|
|
if (txtwin != stdscr) {
|
|
wmove(txtwin, txt_y, txt_x);
|
|
|
|
if (winstr(txtwin, buffer) != ERR) {
|
|
show_1st(chrwin, 0, buffer);
|
|
}
|
|
if (mvwinstr(txtwin, txt_y, txt_x, buffer) != ERR) {
|
|
showmore(chrwin, 1, buffer);
|
|
}
|
|
} else {
|
|
move(txt_y, txt_x);
|
|
|
|
if (instr(buffer) != ERR) {
|
|
show_1st(chrwin, 0, buffer);
|
|
}
|
|
if (mvinstr(txt_y, txt_x, buffer) != ERR) {
|
|
showmore(chrwin, 1, buffer);
|
|
}
|
|
}
|
|
wnoutrefresh(chrwin);
|
|
|
|
MvWPrintw(strwin, 0, 0, "%4d:", limit);
|
|
wclrtobot(strwin);
|
|
|
|
if (txtwin != stdscr) {
|
|
wmove(txtwin, txt_y, txt_x);
|
|
if (winnstr(txtwin, buffer, limit) != ERR) {
|
|
show_1st(strwin, 0, buffer);
|
|
}
|
|
|
|
if (mvwinnstr(txtwin, txt_y, txt_x, buffer, limit) != ERR) {
|
|
showmore(strwin, 1, buffer);
|
|
}
|
|
} else {
|
|
move(txt_y, txt_x);
|
|
if (innstr(buffer, limit) != ERR) {
|
|
show_1st(strwin, 0, buffer);
|
|
}
|
|
|
|
if (mvinnstr(txt_y, txt_x, buffer, limit) != ERR) {
|
|
showmore(strwin, 1, buffer);
|
|
}
|
|
}
|
|
|
|
wnoutrefresh(strwin);
|
|
}
|
|
if (level > 1) {
|
|
delwin(txtwin);
|
|
delwin(txtbox);
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
static void
|
|
usage(int ok)
|
|
{
|
|
static const char *msg[] =
|
|
{
|
|
"Usage: test_instr [options] [file1 [...]]"
|
|
,""
|
|
,USAGE_COMMON
|
|
};
|
|
size_t n;
|
|
|
|
for (n = 0; n < SIZEOF(msg); n++)
|
|
fprintf(stderr, "%s\n", msg[n]);
|
|
|
|
ExitProgram(ok ? EXIT_SUCCESS : EXIT_FAILURE);
|
|
}
|
|
/* *INDENT-OFF* */
|
|
VERSION_COMMON()
|
|
/* *INDENT-ON* */
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
WINDOW *chrbox;
|
|
WINDOW *chrwin;
|
|
WINDOW *strwin;
|
|
int ch;
|
|
|
|
while ((ch = getopt(argc, argv, OPTS_COMMON)) != -1) {
|
|
switch (ch) {
|
|
default:
|
|
CASE_COMMON;
|
|
/* NOTREACHED */
|
|
}
|
|
}
|
|
|
|
setlocale(LC_ALL, "");
|
|
|
|
if (optind + 1 > argc) {
|
|
fprintf(stderr, "At least one text-file is needed\n");
|
|
usage(FALSE);
|
|
}
|
|
|
|
initscr();
|
|
|
|
chrbox = derwin(stdscr, BASE_Y, COLS, 0, 0);
|
|
box(chrbox, 0, 0);
|
|
wnoutrefresh(chrbox);
|
|
|
|
chrwin = derwin(chrbox, 2, COLS - 2, 1, 1);
|
|
strwin = derwin(chrbox, 2, COLS - 2, 3, 1);
|
|
|
|
recursive_test(optind, argv, chrwin, strwin);
|
|
|
|
endwin();
|
|
ExitProgram(EXIT_SUCCESS);
|
|
}
|