-
Notifications
You must be signed in to change notification settings - Fork 16
/
fbpad.c
458 lines (433 loc) · 9.82 KB
/
fbpad.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
/*
* FBPAD FRAMEBUFFER VIRTUAL TERMINAL
*
* Copyright (C) 2009-2024 Ali Gholami Rudi <ali at rudi dot ir>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <poll.h>
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/wait.h>
#include <termios.h>
#include <unistd.h>
#include <linux/vt.h>
#include "conf.h"
#include "fbpad.h"
#include "draw.h"
#define CTRLKEY(x) ((x) - 96)
#define POLLFLAGS (POLLIN | POLLHUP | POLLERR | POLLNVAL)
#define NTAGS (sizeof(tags) - 1)
#define NTERMS (NTAGS * 2)
#define TERMOPEN(i) (term_fd(terms[i]))
#define TERMSNAP(i) (strchr(TAGS_SAVED, tags[(i) % NTAGS]))
static char tags[] = TAGS;
static struct term *terms[NTERMS];
static int tops[NTAGS]; /* top terms of tags */
static int split[NTAGS]; /* terms are shown together */
static int ctag; /* current tag */
static int ltag; /* the last tag */
static int exitit;
static int hidden; /* do not touch the framebuffer */
static int locked;
static int taglock; /* disable tag switching */
static char pass[1024];
static int passlen;
static int cmdmode; /* execute a command and exit */
static int readchar(void)
{
char b;
if (read(0, &b, 1) > 0)
return (unsigned char) b;
return -1;
}
/* the current terminal */
static int cterm(void)
{
return tops[ctag] * NTAGS + ctag;
}
/* tag's active terminal */
static int tterm(int n)
{
return tops[n] * NTAGS + n;
}
/* the other terminal in the same tag */
static int aterm(int n)
{
return n < NTAGS ? n + NTAGS : n - NTAGS;
}
/* the next terminal */
static int nterm(void)
{
int n = (cterm() + 1) % NTERMS;
while (n != cterm()) {
if (TERMOPEN(n))
break;
n = (n + 1) % NTERMS;
}
return n;
}
/* term struct of cterm() */
static struct term *tmain(void)
{
return TERMOPEN(cterm()) ? terms[cterm()] : NULL;
}
#define BRWID 2
#define BRCLR 0xff0000
static void t_conf(int idx)
{
int h1 = fb_rows() / 2 / pad_crows() * pad_crows();
int h2 = fb_rows() - h1 - 4 * BRWID;
int w1 = fb_cols() / 2 / pad_ccols() * pad_ccols();
int w2 = fb_cols() - w1 - 4 * BRWID;
int tag = idx % NTAGS;
int top = idx < NTAGS;
if (split[tag] == 0)
pad_conf(0, 0, fb_rows(), fb_cols());
if (split[tag] == 1)
pad_conf(top ? BRWID : h1 + 3 * BRWID, BRWID,
top ? h1 : h2, fb_cols() - 2 * BRWID);
if (split[tag] == 2)
pad_conf(BRWID, top ? BRWID : w1 + 3 * BRWID,
fb_rows() - 2 * BRWID, top ? w1 : w2);
}
static void t_hide(int idx, int save)
{
if (save && TERMOPEN(idx))
term_hide(terms[idx]);
if (save && TERMOPEN(idx) && TERMSNAP(idx))
scr_snap(idx);
term_save(terms[idx]);
}
/* show=0 (hidden), show=1 (visible), show=2 (load), show=3 (redraw) */
static int t_show(int idx, int show)
{
t_conf(idx);
term_load(terms[idx], show > 0);
if (show == 2) /* redraw if scr_load() fails */
show += !TERMOPEN(idx) || !TERMSNAP(idx) || scr_load(idx);
if (show > 0)
term_redraw(show == 3);
if ((show == 2 || show == 3) && TERMOPEN(idx))
term_show(terms[idx]);
return show;
}
/* switch active terminal; hide oidx and show nidx */
static int t_hideshow(int oidx, int save, int nidx, int show)
{
int otag = oidx % NTAGS;
int ntag = nidx % NTAGS;
int ret;
t_hide(oidx, save);
if (show && split[otag] && otag == ntag)
pad_border(0, BRWID);
ret = t_show(nidx, show);
if (show && split[ntag])
pad_border(BRCLR, BRWID);
return ret;
}
/* set cterm() */
static void t_set(int n)
{
if (cterm() == n || cmdmode)
return;
if (taglock && ctag != n % NTAGS)
return;
if (ctag != n % NTAGS)
ltag = ctag;
if (ctag == n % NTAGS) {
if (split[n % NTAGS])
t_hideshow(cterm(), 0, n, 1);
else
t_hideshow(cterm(), 1, n, 2);
} else {
int draw = t_hideshow(cterm(), 1, n, 2);
if (split[n % NTAGS]) {
t_hideshow(n, 0, aterm(n), draw == 2 ? 1 : 2);
t_hideshow(aterm(n), 0, n, 1);
}
}
ctag = n % NTAGS;
tops[ctag] = n / NTAGS;
}
static void t_split(int n)
{
split[ctag] = n;
t_hideshow(cterm(), 0, aterm(cterm()), 3);
t_hideshow(aterm(cterm()), 1, cterm(), 3);
}
static void t_exec(char **args, int swsig)
{
if (!tmain())
term_exec(args, swsig);
}
static void listtags(void)
{
/* colors for tags based on their number of terminals */
int fg = 0x96cb5c, bg = 0x516f7b;
int colors[] = {0x173f4f, fg, 0x68cbc0 | FN_B};
int c = 0;
int r = pad_rows() - 1;
int i;
pad_put('T', r, c++, fg | FN_B, bg);
pad_put('A', r, c++, fg | FN_B, bg);
pad_put('G', r, c++, fg | FN_B, bg);
pad_put('S', r, c++, fg | FN_B, bg);
pad_put(':', r, c++, fg | FN_B, bg);
pad_put(' ', r, c++, fg | FN_B, bg);
for (i = 0; i < NTAGS && c + 2 < pad_cols(); i++) {
int nt = 0;
if (TERMOPEN(i))
nt++;
if (TERMOPEN(aterm(i)))
nt++;
pad_put(i == ctag ? '(' : ' ', r, c++, fg, bg);
if (TERMSNAP(i))
pad_put(tags[i], r, c++, !nt ? bg : colors[nt], colors[0]);
else
pad_put(tags[i], r, c++, colors[nt], bg);
pad_put(i == ctag ? ')' : ' ', r, c++, fg, bg);
}
for (; c < pad_cols(); c++)
pad_put(' ', r, c, fg, bg);
}
static void directkey(void)
{
char *shell[32] = SHELL;
char *mail[32] = MAIL;
char *editor[32] = EDITOR;
int c = readchar();
if (PASS && locked) {
if (c == '\r') {
pass[passlen] = '\0';
if (!strcmp(PASS, pass))
locked = 0;
passlen = 0;
return;
}
if (isprint(c) && passlen + 1 < sizeof(pass))
pass[passlen++] = c;
return;
}
if (c == ESC) {
switch ((c = readchar())) {
case 'c':
t_exec(shell, 0);
return;
case ';':
t_exec(shell, 1);
return;
case 'm':
t_exec(mail, 0);
return;
case 'e':
t_exec(editor, 0);
return;
case 'j':
case 'k':
t_set(aterm(cterm()));
return;
case 'o':
t_set(tterm(ltag));
return;
case 'p':
listtags();
return;
case '\t':
if (nterm() != cterm())
t_set(nterm());
return;
case CTRLKEY('q'):
exitit = 1;
return;
case 's':
term_screenshot(SCRSHOT);
return;
case 'y':
term_redraw(1);
return;
case CTRLKEY('e'):
term_colors(CLRFILE);
pad_font(FR, FI, FB);
term_redraw(1);
return;
case CTRLKEY('l'):
locked = 1;
passlen = 0;
return;
case CTRLKEY('o'):
taglock = 1 - taglock;
return;
case ',':
term_scrl(pad_rows() / 2);
return;
case '.':
term_scrl(-pad_rows() / 2);
return;
case '=':
t_split(split[ctag] == 1 ? 2 : 1);
return;
case '-':
t_split(0);
return;
default:
if (strchr(tags, c)) {
t_set(tterm(strchr(tags, c) - tags));
return;
}
if (tmain())
term_send(ESC);
}
}
if (c != -1 && tmain())
term_send(c);
}
static void peepterm(int termid)
{
int visible = !hidden && ctag == (termid % NTAGS) && split[ctag];
if (termid != cterm())
t_hideshow(cterm(), 0, termid, visible);
}
static void peepback(int termid)
{
if (termid != cterm())
t_hideshow(termid, 0, cterm(), !hidden);
}
static int pollterms(void)
{
struct pollfd ufds[NTERMS + 1];
int term_idx[NTERMS + 1];
int i;
int n = 1;
ufds[0].fd = 0;
ufds[0].events = POLLIN;
for (i = 0; i < NTERMS; i++) {
if (TERMOPEN(i)) {
ufds[n].fd = term_fd(terms[i]);
ufds[n].events = POLLIN;
term_idx[n++] = i;
}
}
if (poll(ufds, n, 1000) < 1)
return 0;
if (ufds[0].revents & (POLLFLAGS & ~POLLIN))
return 1;
if (ufds[0].revents & POLLIN)
directkey();
for (i = 1; i < n; i++) {
if (!(ufds[i].revents & POLLFLAGS))
continue;
peepterm(term_idx[i]);
if (ufds[i].revents & POLLIN) {
term_read();
} else {
scr_free(term_idx[i]);
term_end();
if (cmdmode)
exitit = 1;
}
peepback(term_idx[i]);
}
return 0;
}
static void mainloop(char **args)
{
struct termios oldtermios, termios;
tcgetattr(0, &termios);
oldtermios = termios;
cfmakeraw(&termios);
tcsetattr(0, TCSAFLUSH, &termios);
term_load(terms[cterm()], 1);
term_redraw(1);
if (args) {
cmdmode = 1;
t_exec(args, 0);
}
while (!exitit)
if (pollterms())
break;
tcsetattr(0, 0, &oldtermios);
}
static void signalreceived(int n)
{
if (exitit)
return;
switch (n) {
case SIGUSR1:
hidden = 1;
t_hide(cterm(), 1);
ioctl(0, VT_RELDISP, 1);
break;
case SIGUSR2:
hidden = 0;
fb_cmap();
if (t_show(cterm(), 2) == 3 && split[ctag]) {
t_hideshow(cterm(), 0, aterm(cterm()), 3);
t_hideshow(aterm(cterm()), 0, cterm(), 1);
}
break;
case SIGCHLD:
while (waitpid(-1, NULL, WNOHANG) > 0)
;
break;
}
}
static void signalsetup(void)
{
struct vt_mode vtm;
vtm.mode = VT_PROCESS;
vtm.waitv = 0;
vtm.relsig = SIGUSR1;
vtm.acqsig = SIGUSR2;
vtm.frsig = 0;
signal(SIGUSR1, signalreceived);
signal(SIGUSR2, signalreceived);
signal(SIGCHLD, signalreceived);
ioctl(0, VT_SETMODE, &vtm);
}
int main(int argc, char **argv)
{
char *hide = "\x1b[2J\x1b[H\x1b[?25l";
char *show = "\x1b[?25h";
char **args = argv + 1;
int i;
if (fb_init(getenv("FBDEV"))) {
fprintf(stderr, "fbpad: failed to initialize the framebuffer\n");
return 1;
}
if (pad_init()) {
fprintf(stderr, "fbpad: cannot find fonts\n");
return 1;
}
for (i = 0; i < NTERMS; i++)
terms[i] = term_make();
write(1, hide, strlen(hide));
signalsetup();
fcntl(0, F_SETFL, fcntl(0, F_GETFL) | O_NONBLOCK);
while (args[0] && args[0][0] == '-')
args++;
mainloop(args[0] ? args : NULL);
write(1, show, strlen(show));
for (i = 0; i < NTERMS; i++)
term_free(terms[i]);
pad_free();
scr_done();
fb_free();
return 0;
}