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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
|
/* $OpenBSD: wsemul_sun.c,v 1.28 2009/09/05 16:51:19 miod Exp $ */
/* $NetBSD: wsemul_sun.c,v 1.11 2000/01/05 11:19:36 drochner Exp $ */
/*
* Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. 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.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Christopher G. Demetriou
* for the NetBSD Project.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF 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 DAMAGE.
*/
/*
* This file implements a sun terminal personality for wscons.
*
* Derived from old rcons code.
* Color support from NetBSD's rcons color code, and wsemul_vt100.
*/
#ifndef SMALL_KERNEL
#define JUMP_SCROLL
#endif
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/time.h>
#include <sys/malloc.h>
#include <sys/fcntl.h>
#include <dev/wscons/wsconsio.h>
#include <dev/wscons/wsdisplayvar.h>
#include <dev/wscons/wsemulvar.h>
#include <dev/wscons/wsksymdef.h>
#include <dev/wscons/ascii.h>
void *wsemul_sun_cnattach(const struct wsscreen_descr *, void *,
int, int, long);
void *wsemul_sun_attach(int, const struct wsscreen_descr *,
void *, int, int, void *, long);
u_int wsemul_sun_output(void *, const u_char *, u_int, int);
int wsemul_sun_translate(void *, keysym_t, const char **);
void wsemul_sun_detach(void *, u_int *, u_int *);
void wsemul_sun_resetop(void *, enum wsemul_resetops);
const struct wsemul_ops wsemul_sun_ops = {
"sun",
wsemul_sun_cnattach,
wsemul_sun_attach,
wsemul_sun_output,
wsemul_sun_translate,
wsemul_sun_detach,
wsemul_sun_resetop
};
#define SUN_EMUL_STATE_NORMAL 0 /* normal processing */
#define SUN_EMUL_STATE_HAVEESC 1 /* seen start of ctl seq */
#define SUN_EMUL_STATE_CONTROL 2 /* processing ctl seq */
#define SUN_EMUL_NARGS 2 /* max # of args to a command */
struct wsemul_sun_emuldata {
const struct wsdisplay_emulops *emulops;
struct wsemul_abortstate abortstate;
void *emulcookie;
void *cbcookie;
int scrcapabilities;
u_int nrows, ncols, crow, ccol;
long defattr; /* default attribute (rendition) */
u_int state; /* processing state */
u_int args[SUN_EMUL_NARGS]; /* command args, if CONTROL */
int nargs; /* number of args */
u_int scrolldist; /* distance to scroll */
long curattr, bkgdattr; /* currently used attribute */
long kernattr; /* attribute for kernel output */
int attrflags, fgcol, bgcol; /* properties of curattr */
#ifdef DIAGNOSTIC
int console;
#endif
};
void wsemul_sun_init(struct wsemul_sun_emuldata *,
const struct wsscreen_descr *, void *, int, int, long);
int wsemul_sun_jump_scroll(struct wsemul_sun_emuldata *, const u_char *,
u_int, int);
void wsemul_sun_reset(struct wsemul_sun_emuldata *);
int wsemul_sun_output_lowchars(struct wsemul_sun_emuldata *, u_char, int);
int wsemul_sun_output_normal(struct wsemul_sun_emuldata *, u_char, int);
void wsemul_sun_output_haveesc(struct wsemul_sun_emuldata *, u_char);
int wsemul_sun_output_control(struct wsemul_sun_emuldata *, u_char);
int wsemul_sun_control(struct wsemul_sun_emuldata *, u_char);
int wsemul_sun_selectattribute(struct wsemul_sun_emuldata *, int, int, int,
long *, long *);
int wsemul_sun_scrollup(struct wsemul_sun_emuldata *, u_int);
struct wsemul_sun_emuldata wsemul_sun_console_emuldata;
/* some useful utility macros */
#define ARG(n,c) \
((n) >= edp->nargs ? 0 : edp->args[(n) + MAX(0, edp->nargs - (c))])
#define NORMALIZE(arg) ((arg) != 0 ? (arg) : 1)
#define COLS_LEFT (edp->ncols - 1 - edp->ccol)
#define ROWS_LEFT (edp->nrows - 1 - edp->crow)
void
wsemul_sun_init(struct wsemul_sun_emuldata *edp,
const struct wsscreen_descr *type, void *cookie, int ccol, int crow,
long defattr)
{
edp->emulops = type->textops;
edp->emulcookie = cookie;
edp->scrcapabilities = type->capabilities;
edp->nrows = type->nrows;
edp->ncols = type->ncols;
edp->crow = crow;
edp->ccol = ccol;
edp->defattr = defattr;
wsemul_reset_abortstate(&edp->abortstate);
}
void
wsemul_sun_reset(struct wsemul_sun_emuldata *edp)
{
edp->state = SUN_EMUL_STATE_NORMAL;
edp->bkgdattr = edp->curattr = edp->defattr;
edp->attrflags = 0;
edp->fgcol = WSCOL_BLACK;
edp->bgcol = WSCOL_WHITE;
edp->scrolldist = 1;
}
void *
wsemul_sun_cnattach(const struct wsscreen_descr *type, void *cookie, int ccol,
int crow, long defattr)
{
struct wsemul_sun_emuldata *edp;
int res;
edp = &wsemul_sun_console_emuldata;
wsemul_sun_init(edp, type, cookie, ccol, crow, defattr);
#ifndef WS_KERNEL_FG
#define WS_KERNEL_FG WSCOL_BLACK
#endif
#ifndef WS_KERNEL_BG
#define WS_KERNEL_BG WSCOL_WHITE
#endif
#ifndef WS_KERNEL_COLATTR
#define WS_KERNEL_COLATTR 0
#endif
#ifndef WS_KERNEL_MONOATTR
#define WS_KERNEL_MONOATTR 0
#endif
if (type->capabilities & WSSCREEN_WSCOLORS)
res = (*edp->emulops->alloc_attr)(cookie,
WS_KERNEL_FG, WS_KERNEL_BG,
WS_KERNEL_COLATTR | WSATTR_WSCOLORS,
&edp->kernattr);
else
res = (*edp->emulops->alloc_attr)(cookie, 0, 0,
WS_KERNEL_MONOATTR,
&edp->kernattr);
if (res)
edp->kernattr = defattr;
edp->cbcookie = NULL;
#ifdef DIAGNOSTIC
edp->console = 1;
#endif
wsemul_sun_reset(edp);
return (edp);
}
void *
wsemul_sun_attach(int console, const struct wsscreen_descr *type, void *cookie,
int ccol, int crow, void *cbcookie, long defattr)
{
struct wsemul_sun_emuldata *edp;
if (console) {
edp = &wsemul_sun_console_emuldata;
#ifdef DIAGNOSTIC
KASSERT(edp->console == 1);
#endif
} else {
edp = malloc(sizeof *edp, M_DEVBUF, M_NOWAIT);
if (edp == NULL)
return (NULL);
wsemul_sun_init(edp, type, cookie, ccol, crow, defattr);
#ifdef DIAGNOSTIC
edp->console = 0;
#endif
}
edp->cbcookie = cbcookie;
wsemul_sun_reset(edp);
return (edp);
}
int
wsemul_sun_output_lowchars(struct wsemul_sun_emuldata *edp, u_char c,
int kernel)
{
u_int n;
int rc = 0;
switch (c) {
case ASCII_NUL:
default:
/* ignore */
break;
case ASCII_BEL: /* "Bell (BEL)" */
wsdisplay_emulbell(edp->cbcookie);
break;
case ASCII_BS: /* "Backspace (BS)" */
if (edp->ccol > 0)
edp->ccol--;
break;
case ASCII_CR: /* "Return (CR)" */
edp->ccol = 0;
break;
case ASCII_HT: /* "Tab (TAB)" */
n = min(8 - (edp->ccol & 7), COLS_LEFT);
if (n != 0) {
WSEMULOP(rc, edp, &edp->abortstate, erasecols,
(edp->emulcookie, edp->crow, edp->ccol, n,
kernel ? edp->kernattr : edp->bkgdattr));
if (rc != 0)
break;
edp->ccol += n;
}
break;
case ASCII_FF: /* "Form Feed (FF)" */
WSEMULOP(rc, edp, &edp->abortstate, eraserows,
(edp->emulcookie, 0, edp->nrows, edp->bkgdattr));
if (rc != 0)
break;
edp->ccol = edp->crow = 0;
break;
case ASCII_VT: /* "Reverse Line Feed" */
if (edp->crow > 0)
edp->crow--;
break;
case ASCII_ESC: /* "Escape (ESC)" */
if (kernel) {
printf("wsemul_sun_output_lowchars: ESC in kernel "
"output ignored\n");
break; /* ignore the ESC */
}
edp->state = SUN_EMUL_STATE_HAVEESC;
break;
case ASCII_LF: /* "Line Feed (LF)" */
/* if the cur line isn't the last, incr and leave. */
if (ROWS_LEFT > 0)
edp->crow++;
else {
rc = wsemul_sun_scrollup(edp, edp->scrolldist);
if (rc != 0)
break;
}
break;
}
return rc;
}
int
wsemul_sun_output_normal(struct wsemul_sun_emuldata *edp, u_char c, int kernel)
{
int rc;
WSEMULOP(rc, edp, &edp->abortstate, putchar,
(edp->emulcookie, edp->crow, edp->ccol,
c, kernel ? edp->kernattr : edp->curattr));
if (rc != 0)
return rc;
if (++edp->ccol >= edp->ncols) {
/* if the cur line isn't the last, incr and leave. */
if (ROWS_LEFT > 0)
edp->crow++;
else {
rc = wsemul_sun_scrollup(edp, edp->scrolldist);
if (rc != 0) {
/* undo line wrap */
edp->ccol--;
return rc;
}
}
edp->ccol = 0;
}
return 0;
}
void
wsemul_sun_output_haveesc(struct wsemul_sun_emuldata *edp, u_char c)
{
switch (c) {
case '[': /* continuation of multi-char sequence */
edp->nargs = 0;
bzero(edp->args, sizeof (edp->args));
edp->state = SUN_EMUL_STATE_CONTROL;
break;
default:
#ifdef DEBUG
printf("ESC%c unknown\n", c);
#endif
edp->state = SUN_EMUL_STATE_NORMAL; /* XXX is this wise? */
break;
}
}
int
wsemul_sun_control(struct wsemul_sun_emuldata *edp, u_char c)
{
u_int n, src, dst;
int flags, fgcol, bgcol;
long attr, bkgdattr;
int rc = 0;
switch (c) {
case '@': /* "Insert Character (ICH)" */
n = min(NORMALIZE(ARG(0,1)), COLS_LEFT + 1);
src = edp->ccol;
dst = edp->ccol + n;
if (dst < edp->ncols) {
WSEMULOP(rc, edp, &edp->abortstate, copycols,
(edp->emulcookie, edp->crow, src, dst,
edp->ncols - dst));
if (rc != 0)
break;
}
WSEMULOP(rc, edp, &edp->abortstate, erasecols,
(edp->emulcookie, edp->crow, src, n, edp->bkgdattr));
break;
case 'A': /* "Cursor Up (CUU)" */
edp->crow -= min(NORMALIZE(ARG(0,1)), edp->crow);
break;
case 'E': /* "Cursor Next Line (CNL)" */
edp->ccol = 0;
/* FALLTHROUGH */
case 'B': /* "Cursor Down (CUD)" */
edp->crow += min(NORMALIZE(ARG(0,1)), ROWS_LEFT);
break;
case 'C': /* "Cursor Forward (CUF)" */
edp->ccol += min(NORMALIZE(ARG(0,1)), COLS_LEFT);
break;
case 'D': /* "Cursor Backward (CUB)" */
edp->ccol -= min(NORMALIZE(ARG(0,1)), edp->ccol);
break;
case 'f': /* "Horizontal And Vertical Position (HVP)" */
case 'H': /* "Cursor Position (CUP)" */
edp->crow = min(NORMALIZE(ARG(0,2)), edp->nrows) - 1;
edp->ccol = min(NORMALIZE(ARG(1,2)), edp->ncols) - 1;
break;
case 'J': /* "Erase in Display (ED)" */
if (ROWS_LEFT > 0) {
WSEMULOP(rc, edp, &edp->abortstate, eraserows,
(edp->emulcookie, edp->crow + 1, ROWS_LEFT,
edp->bkgdattr));
if (rc != 0)
break;
}
/* FALLTHROUGH */
case 'K': /* "Erase in Line (EL)" */
WSEMULOP(rc, edp, &edp->abortstate, erasecols,
(edp->emulcookie, edp->crow, edp->ccol, COLS_LEFT + 1,
edp->bkgdattr));
break;
case 'L': /* "Insert Line (IL)" */
n = min(NORMALIZE(ARG(0,1)), ROWS_LEFT + 1);
src = edp->crow;
dst = edp->crow + n;
if (dst < edp->nrows) {
WSEMULOP(rc, edp, &edp->abortstate, copyrows,
(edp->emulcookie, src, dst, edp->nrows - dst));
if (rc != 0)
break;
}
WSEMULOP(rc, edp, &edp->abortstate, eraserows,
(edp->emulcookie, src, n, edp->bkgdattr));
break;
case 'M': /* "Delete Line (DL)" */
n = min(NORMALIZE(ARG(0,1)), ROWS_LEFT + 1);
src = edp->crow + n;
dst = edp->crow;
if (src < edp->nrows) {
WSEMULOP(rc, edp, &edp->abortstate, copyrows,
(edp->emulcookie, src, dst, edp->nrows - src));
if (rc != 0)
break;
}
WSEMULOP(rc, edp, &edp->abortstate, eraserows,
(edp->emulcookie, dst + edp->nrows - src, n,
edp->bkgdattr));
break;
case 'P': /* "Delete Character (DCH)" */
n = min(NORMALIZE(ARG(0,1)), COLS_LEFT + 1);
src = edp->ccol + n;
dst = edp->ccol;
if (src < edp->ncols) {
WSEMULOP(rc, edp, &edp->abortstate, copycols,
(edp->emulcookie, edp->crow, src, dst,
edp->ncols - src));
if (rc != 0)
break;
}
WSEMULOP(rc, edp, &edp->abortstate, erasecols,
(edp->emulcookie, edp->crow, edp->ncols - n, n,
edp->bkgdattr));
break;
case 'm': /* "Select Graphic Rendition (SGR)" */
flags = edp->attrflags;
fgcol = edp->fgcol;
bgcol = edp->bgcol;
for (n = 0; n < edp->nargs; n++) {
switch (ARG(n,edp->nargs)) {
/* Clear all attributes || End underline */
case 0:
if (n == edp->nargs - 1) {
edp->bkgdattr =
edp->curattr = edp->defattr;
edp->attrflags = 0;
edp->fgcol = WSCOL_BLACK;
edp->bgcol = WSCOL_WHITE;
return 0;
}
flags = 0;
fgcol = WSCOL_BLACK;
bgcol = WSCOL_WHITE;
break;
/* Begin bold */
case 1:
flags |= WSATTR_HILIT;
break;
/* Begin underline */
case 4:
flags |= WSATTR_UNDERLINE;
break;
/* Begin reverse */
case 7:
flags |= WSATTR_REVERSE;
break;
/* ANSI foreground color */
case 30: case 31: case 32: case 33:
case 34: case 35: case 36: case 37:
fgcol = ARG(n,edp->nargs) - 30;
break;
/* ANSI background color */
case 40: case 41: case 42: case 43:
case 44: case 45: case 46: case 47:
bgcol = ARG(n,edp->nargs) - 40;
break;
}
}
setattr:
if (wsemul_sun_selectattribute(edp, flags, fgcol, bgcol, &attr,
&bkgdattr)) {
#ifdef DEBUG
printf("error allocating attr %d/%d/%x\n",
fgcol, bgcol, flags);
#endif
} else {
edp->curattr = attr;
edp->bkgdattr = bkgdattr;
edp->attrflags = flags;
edp->fgcol = fgcol;
edp->bgcol = bgcol;
}
break;
case 'p': /* "Black On White (SUNBOW)" */
flags = 0;
fgcol = WSCOL_BLACK;
bgcol = WSCOL_WHITE;
goto setattr;
case 'q': /* "White On Black (SUNWOB)" */
flags = 0;
fgcol = WSCOL_WHITE;
bgcol = WSCOL_BLACK;
goto setattr;
case 'r': /* "Set Scrolling (SUNSCRL)" */
edp->scrolldist = min(ARG(0,1), edp->nrows);
break;
case 's': /* "Reset Terminal Emulator (SUNRESET)" */
wsemul_sun_reset(edp);
break;
}
return rc;
}
int
wsemul_sun_output_control(struct wsemul_sun_emuldata *edp, u_char c)
{
int oargs;
int rc;
switch (c) {
case '0': case '1': case '2': case '3': case '4': /* argument digit */
case '5': case '6': case '7': case '8': case '9':
/*
* If we receive more arguments than we are expecting,
* discard the earliest arguments.
*/
if (edp->nargs > SUN_EMUL_NARGS - 1) {
bcopy(edp->args + 1, edp->args,
(SUN_EMUL_NARGS - 1) * sizeof(edp->args[0]));
edp->args[edp->nargs = SUN_EMUL_NARGS - 1] = 0;
}
edp->args[edp->nargs] = (edp->args[edp->nargs] * 10) +
(c - '0');
break;
case ';': /* argument terminator */
edp->nargs++;
break;
default: /* end of escape sequence */
oargs = edp->nargs++;
if (edp->nargs > SUN_EMUL_NARGS)
edp->nargs = SUN_EMUL_NARGS;
rc = wsemul_sun_control(edp, c);
if (rc != 0) {
/* undo nargs progress */
edp->nargs = oargs;
return rc;
}
edp->state = SUN_EMUL_STATE_NORMAL;
break;
}
return 0;
}
u_int
wsemul_sun_output(void *cookie, const u_char *data, u_int count, int kernel)
{
struct wsemul_sun_emuldata *edp = cookie;
u_int processed = 0;
u_char c;
#ifdef JUMP_SCROLL
int lines;
#endif
int rc = 0;
#ifdef DIAGNOSTIC
if (kernel && !edp->console)
panic("wsemul_sun_output: kernel output, not console");
#endif
switch (edp->abortstate.state) {
case ABORT_FAILED_CURSOR:
/*
* If we could not display the cursor back, we pretended not
* having been able to display the last character. But this
* is a lie, so compensate here.
*/
data++, count--;
processed++;
wsemul_reset_abortstate(&edp->abortstate);
break;
case ABORT_OK:
/* remove cursor image */
rc = (*edp->emulops->cursor)
(edp->emulcookie, 0, edp->crow, edp->ccol);
if (rc != 0)
return 0;
break;
default:
break;
}
for (; count > 0; data++, count--) {
#ifdef JUMP_SCROLL
switch (edp->abortstate.state) {
case ABORT_FAILED_JUMP_SCROLL:
/*
* If we failed a previous jump scroll attempt, we
* need to try to resume it with the same distance.
* We can not recompute it since there might be more
* bytes in the tty ring, causing a different result.
*/
lines = edp->abortstate.lines;
break;
case ABORT_OK:
/*
* If scrolling is not disabled and we are the bottom of
* the screen, count newlines until an escape sequence
* appears.
*/
if ((edp->state == SUN_EMUL_STATE_NORMAL || kernel) &&
ROWS_LEFT == 0 && edp->scrolldist != 0)
lines = wsemul_sun_jump_scroll(edp, data,
count, kernel);
else
lines = 0;
break;
default:
/*
* If we are recovering a non-scrolling failure,
* do not try to scroll yet.
*/
lines = 0;
break;
}
if (lines > 1) {
wsemul_resume_abort(&edp->abortstate);
rc = wsemul_sun_scrollup(edp, lines);
if (rc != 0) {
wsemul_abort_jump_scroll(&edp->abortstate,
lines);
return processed;
}
wsemul_reset_abortstate(&edp->abortstate);
edp->crow--;
}
#endif
wsemul_resume_abort(&edp->abortstate);
c = *data;
if (c < ' ') {
rc = wsemul_sun_output_lowchars(edp, c, kernel);
if (rc != 0)
break;
processed++;
continue;
}
if (kernel) {
rc = wsemul_sun_output_normal(edp, c, 1);
if (rc != 0)
break;
processed++;
continue;
}
switch (edp->state) {
case SUN_EMUL_STATE_NORMAL:
rc = wsemul_sun_output_normal(edp, c, 0);
break;
case SUN_EMUL_STATE_HAVEESC:
wsemul_sun_output_haveesc(edp, c);
break;
case SUN_EMUL_STATE_CONTROL:
rc = wsemul_sun_output_control(edp, c);
break;
default:
#ifdef DIAGNOSTIC
panic("wsemul_sun: invalid state %d", edp->state);
#else
/* try to recover, if things get screwed up... */
edp->state = SUN_EMUL_STATE_NORMAL;
rc = wsemul_sun_output_normal(edp, c, 0);
#endif
break;
}
if (rc != 0)
break;
processed++;
}
if (rc != 0)
wsemul_abort_other(&edp->abortstate);
else {
/* put cursor image back */
rc = (*edp->emulops->cursor)
(edp->emulcookie, 1, edp->crow, edp->ccol);
if (rc != 0) {
/*
* Fail the last character output, remembering that
* only the cursor operation really needs to be done.
*/
wsemul_abort_cursor(&edp->abortstate);
processed--;
}
}
if (rc == 0)
wsemul_reset_abortstate(&edp->abortstate);
return processed;
}
#ifdef JUMP_SCROLL
int
wsemul_sun_jump_scroll(struct wsemul_sun_emuldata *edp, const u_char *data,
u_int count, int kernel)
{
u_char curchar;
u_int pos, lines;
lines = 0;
pos = edp->ccol;
for (; count != 0; data++, count--) {
curchar = *data;
if (curchar == ASCII_FF ||
curchar == ASCII_VT || curchar == ASCII_ESC)
break;
switch (curchar) {
case ASCII_BS:
if (pos > 0)
pos--;
break;
case ASCII_CR:
pos = 0;
break;
case ASCII_HT:
pos = (pos + 7) & ~7;
if (pos >= edp->ncols)
pos = edp->ncols - 1;
break;
case ASCII_LF:
break;
default:
if (++pos >= edp->ncols) {
pos = 0;
curchar = ASCII_LF;
}
break;
}
if (curchar == ASCII_LF) {
if (++lines >= edp->nrows - 1)
break;
}
}
return lines;
}
#endif
/*
* Get an attribute from the graphics driver.
* Try to find replacements if the desired appearance is not supported.
*/
int
wsemul_sun_selectattribute(struct wsemul_sun_emuldata *edp, int flags,
int fgcol, int bgcol, long *attr, long *bkgdattr)
{
int error;
/*
* Rasops will force white on black as normal output colors, unless
* WSATTR_WSCOLORS is specified. Since Sun console is black on white,
* always use WSATTR_WSCOLORS and our colors, as we know better.
*/
if (!(edp->scrcapabilities & WSSCREEN_WSCOLORS)) {
flags &= ~WSATTR_WSCOLORS;
} else {
flags |= WSATTR_WSCOLORS;
}
error = (*edp->emulops->alloc_attr)(edp->emulcookie, fgcol, bgcol,
flags & WSATTR_WSCOLORS, bkgdattr);
if (error)
return (error);
if ((flags & WSATTR_HILIT) &&
!(edp->scrcapabilities & WSSCREEN_HILIT)) {
flags &= ~WSATTR_HILIT;
if (edp->scrcapabilities & WSSCREEN_WSCOLORS) {
fgcol = WSCOL_RED;
flags |= WSATTR_WSCOLORS;
}
}
if ((flags & WSATTR_UNDERLINE) &&
!(edp->scrcapabilities & WSSCREEN_UNDERLINE)) {
flags &= ~WSATTR_UNDERLINE;
if (edp->scrcapabilities & WSSCREEN_WSCOLORS) {
fgcol = WSCOL_CYAN;
flags &= ~WSATTR_UNDERLINE;
flags |= WSATTR_WSCOLORS;
}
}
if ((flags & WSATTR_BLINK) &&
!(edp->scrcapabilities & WSSCREEN_BLINK)) {
flags &= ~WSATTR_BLINK;
}
if ((flags & WSATTR_REVERSE) &&
!(edp->scrcapabilities & WSSCREEN_REVERSE)) {
flags &= ~WSATTR_REVERSE;
if (edp->scrcapabilities & WSSCREEN_WSCOLORS) {
int help;
help = bgcol;
bgcol = fgcol;
fgcol = help;
flags |= WSATTR_WSCOLORS;
}
}
error = (*edp->emulops->alloc_attr)(edp->emulcookie, fgcol, bgcol,
flags, attr);
if (error)
return (error);
return (0);
}
static const char *sun_fkeys[] = {
"\033[224z", /* F1 */
"\033[225z",
"\033[226z",
"\033[227z",
"\033[228z",
"\033[229z",
"\033[230z",
"\033[231z",
"\033[232z",
"\033[233z",
"\033[234z",
"\033[235z", /* F12 */
};
static const char *sun_lkeys[] = {
"\033[207z", /* KS_Help */
NULL, /* KS_Execute */
"\033[200z", /* KS_Find */
NULL, /* KS_Select */
"\033[193z", /* KS_Again */
"\033[194z", /* KS_Props */
"\033[195z", /* KS_Undo */
"\033[196z", /* KS_Front */
"\033[197z", /* KS_Copy */
"\033[198z", /* KS_Open */
"\033[199z", /* KS_Paste */
"\033[201z", /* KS_Cut */
};
int
wsemul_sun_translate(void *cookie, keysym_t in, const char **out)
{
static char c;
if (KS_GROUP(in) == KS_GROUP_Keypad && (in & 0x80) == 0) {
c = in & 0xff; /* turn into ASCII */
*out = &c;
return (1);
}
if (in >= KS_f1 && in <= KS_f12) {
*out = sun_fkeys[in - KS_f1];
return (6);
}
if (in >= KS_F1 && in <= KS_F12) {
*out = sun_fkeys[in - KS_F1];
return (6);
}
if (in >= KS_KP_F1 && in <= KS_KP_F4) {
*out = sun_fkeys[in - KS_KP_F1];
return (6);
}
if (in >= KS_Help && in <= KS_Cut && sun_lkeys[in - KS_Help] != NULL) {
*out = sun_lkeys[in - KS_Help];
return (6);
}
switch (in) {
case KS_Home:
case KS_KP_Home:
case KS_KP_Begin:
*out = "\033[214z";
return (6);
case KS_End:
case KS_KP_End:
*out = "\033[220z";
return (6);
case KS_Insert:
case KS_KP_Insert:
*out = "\033[247z";
return (6);
case KS_Prior:
case KS_KP_Prior:
*out = "\033[216z";
return (6);
case KS_Next:
case KS_KP_Next:
*out = "\033[222z";
return (6);
case KS_Up:
case KS_KP_Up:
*out = "\033[A";
return (3);
case KS_Down:
case KS_KP_Down:
*out = "\033[B";
return (3);
case KS_Left:
case KS_KP_Left:
*out = "\033[D";
return (3);
case KS_Right:
case KS_KP_Right:
*out = "\033[C";
return (3);
case KS_KP_Delete:
*out = "\177";
return (1);
}
return (0);
}
void
wsemul_sun_detach(void *cookie, u_int *crowp, u_int *ccolp)
{
struct wsemul_sun_emuldata *edp = cookie;
*crowp = edp->crow;
*ccolp = edp->ccol;
if (edp != &wsemul_sun_console_emuldata)
free(edp, M_DEVBUF);
}
void
wsemul_sun_resetop(void *cookie, enum wsemul_resetops op)
{
struct wsemul_sun_emuldata *edp = cookie;
switch (op) {
case WSEMUL_RESET:
wsemul_sun_reset(edp);
break;
case WSEMUL_CLEARSCREEN:
(*edp->emulops->eraserows)(edp->emulcookie, 0, edp->nrows,
edp->bkgdattr);
edp->ccol = edp->crow = 0;
(*edp->emulops->cursor)(edp->emulcookie, 1, 0, 0);
break;
case WSEMUL_CLEARCURSOR:
(*edp->emulops->cursor)(edp->emulcookie, 0, edp->crow,
edp->ccol);
break;
default:
break;
}
}
int
wsemul_sun_scrollup(struct wsemul_sun_emuldata *edp, u_int lines)
{
int rc;
/*
* if we're in wrap-around mode, go to the first
* line and clear it.
*/
if (lines == 0) {
WSEMULOP(rc, edp, &edp->abortstate, eraserows,
(edp->emulcookie, 0, 1, edp->bkgdattr));
if (rc != 0)
return rc;
edp->crow = 0;
return 0;
}
/*
* If the scrolling distance is equal to the screen height
* (usually 34), clear the screen; otherwise, scroll by the
* scrolling distance.
*/
if (lines < edp->nrows) {
WSEMULOP(rc, edp, &edp->abortstate, copyrows,
(edp->emulcookie, lines, 0, edp->nrows - lines));
if (rc != 0)
return rc;
}
WSEMULOP(rc, edp, &edp->abortstate, eraserows,
(edp->emulcookie, edp->nrows - lines, lines, edp->bkgdattr));
if (rc != 0)
return rc;
edp->crow -= lines - 1;
return 0;
}
|