trace_ds.c
21.5 KB
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
/*
* "Software pw3270, desenvolvido com base nos códigos fontes do WC3270 e X3270
* (Paul Mattes Paul.Mattes@usa.net), de emulação de terminal 3270 para acesso a
* aplicativos mainframe. Registro no INPI sob o nome G3270. Registro no INPI sob o nome G3270.
*
* Copyright (C) <2008> <Banco do Brasil S.A.>
*
* Este programa é software livre. Você pode redistribuí-lo e/ou modificá-lo sob
* os termos da GPL v.2 - Licença Pública Geral GNU, conforme publicado pela
* Free Software Foundation.
*
* Este programa é distribuído na expectativa de ser útil, mas SEM QUALQUER
* GARANTIA; sem mesmo a garantia implícita de COMERCIALIZAÇÃO ou de ADEQUAÇÃO
* A QUALQUER PROPÓSITO EM PARTICULAR. Consulte a Licença Pública Geral GNU para
* obter mais detalhes.
*
* Você deve ter recebido uma cópia da Licença Pública Geral GNU junto com este
* programa; se não, escreva para a Free Software Foundation, Inc., 59 Temple
* Place, Suite 330, Boston, MA, 02111-1307, USA
*
* Este programa está nomeado como trace_ds.c e possui 1089 linhas de código.
*
* Contatos:
*
* perry.werneck@gmail.com (Alexandre Perry de Souza Werneck)
* erico.mendonca@gmail.com (Erico Mascarenhas Mendonça)
* licinio@bb.com.br (Licínio Luis Branco)
* kraucer@bb.com.br (Kraucer Fernandes Mazuco)
* macmiranda@bb.com.br (Marco Aurélio Caldas Miranda)
*
*/
/*
* trace_ds.c
* 3270 data stream tracing.
*
*/
#include "globals.h"
#if defined(X3270_TRACE) /*[*/
#if defined(X3270_DISPLAY) /*[*/
#include <X11/StringDefs.h>
#include <X11/Xaw/Dialog.h>
#endif /*]*/
#if defined(_WIN32) /*[*/
#include <windows.h>
#endif /*]*/
#include <errno.h>
#include <signal.h>
#include <stdarg.h>
#include <fcntl.h>
#include "3270ds.h"
#include "appres.h"
#include "objects.h"
#include "resources.h"
#include "ctlr.h"
#include "charsetc.h"
#include "childc.h"
#include "ctlrc.h"
// #include "menubarc.h"
#include "popupsc.h"
#include "printc.h"
#include "savec.h"
#include "tablesc.h"
#include "telnetc.h"
#include "trace_dsc.h"
#include "utilc.h"
#include "w3miscc.h"
/* Maximum size of a tracefile header. */
#define MAX_HEADER_SIZE (10*1024)
/* Minimum size of a trace file. */
#define MIN_TRACEFILE_SIZE (64*1024)
#define MIN_TRACEFILE_SIZE_NAME "64K"
/* System calls which may not be there. */
#if !defined(HAVE_FSEEKO) /*[*/
#define fseeko(s, o, w) fseek(s, (long)o, w)
#define ftello(s) (off_t)ftell(s)
#endif /*]*/
#include <lib3270/api.h>
/* Statics */
static int dscnt = 0;
#if defined (LIB3270)
HCONSOLE tracewindow_handle = 0;
#elif defined(_WIN32) /*[*/
static HANDLE tracewindow_handle = NULL;
#else /*][*/
static int tracewindow_pid = -1;
#endif /*]*/
static FILE *tracef = NULL;
static FILE *tracef_pipe = NULL;
static char *tracef_bufptr = CN;
static off_t tracef_size = 0;
static off_t tracef_max = 0;
static char *tracef_midpoint_header = CN;
static off_t tracef_midpoint = 0;
static void vwtrace(const char *fmt, va_list args);
static void wtrace(const char *fmt, ...);
static char *create_tracefile_header(const char *mode);
static void stop_tracing(void);
/* Globals */
struct timeval ds_ts;
Boolean trace_skipping = False;
/* display a (row,col) */
const char *
rcba(int baddr)
{
static char buf[16];
(void) sprintf(buf, "(%d,%d)", baddr/h3270.cols + 1, baddr%h3270.cols + 1);
return buf;
}
/* Data Stream trace print, handles line wraps */
static char *tdsbuf = CN;
#define TDS_LEN 75
static void
trace_ds_s(char *s, Boolean can_break)
{
int len = strlen(s);
Boolean nl = False;
if (!toggled(DS_TRACE) || tracef == NULL || !len)
return;
if (s && s[len-1] == '\n') {
len--;
nl = True;
}
if (!can_break && dscnt + len >= 75) {
wtrace("...\n... ");
dscnt = 0;
}
while (dscnt + len >= 75) {
int plen = 75-dscnt;
wtrace("%.*s ...\n... ", plen, s);
dscnt = 4;
s += plen;
len -= plen;
}
if (len) {
wtrace("%.*s", len, s);
dscnt += len;
}
if (nl) {
wtrace("\n");
dscnt = 0;
}
}
void
trace_ds(const char *fmt, ...)
{
va_list args;
if (!toggled(DS_TRACE) || tracef == NULL)
return;
va_start(args, fmt);
/* allocate buffer */
if (tdsbuf == CN)
tdsbuf = Malloc(4096);
/* print out remainder of message */
(void) vsprintf(tdsbuf, fmt, args);
trace_ds_s(tdsbuf, True);
va_end(args);
}
void
trace_ds_nb(const char *fmt, ...)
{
va_list args;
if (!toggled(DS_TRACE) || tracef == NULL)
return;
va_start(args, fmt);
/* allocate buffer */
if (tdsbuf == CN)
tdsbuf = Malloc(4096);
/* print out remainder of message */
(void) vsprintf(tdsbuf, fmt, args);
trace_ds_s(tdsbuf, False);
va_end(args);
}
/* Conditional event trace. */
void
trace_event(const char *fmt, ...)
{
va_list args;
if (!toggled(EVENT_TRACE) || tracef == NULL)
return;
/* print out message */
va_start(args, fmt);
vwtrace(fmt, args);
va_end(args);
}
/* Conditional data stream trace, without line splitting. */
void
trace_dsn(const char *fmt, ...)
{
va_list args;
if (!toggled(DS_TRACE) || tracef == NULL)
return;
/* print out message */
va_start(args, fmt);
vwtrace(fmt, args);
va_end(args);
}
/*
* Write to the trace file, varargs style.
* This is the only function that actually does output to the trace file --
* all others are wrappers around this function.
*/
static void vwtrace(const char *fmt, va_list args)
{
char buf[16384];
vsnprintf(buf,16384,fmt,args);
if(!tracewindow_handle)
tracewindow_handle = console_window_new( _( "Trace Window" ), NULL );
if(tracewindow_handle)
console_window_append(tracewindow_handle,"%s",buf);
if(tracef != NULL)
{
if(fwrite(buf,strlen(buf),1,tracef) != 1)
popup_an_errno(errno,_( "Write to trace file failed\n%s" ),strerror(errno));
}
}
/* Write to the trace file. */
static void
wtrace(const char *fmt, ...)
{
if (tracef != NULL) {
va_list args;
va_start(args, fmt);
vwtrace(fmt, args);
va_end(args);
}
}
static void stop_tracing(void)
{
if (tracef != NULL && tracef != stdout)
(void) fclose(tracef);
tracef = NULL;
if (tracef_pipe != NULL) {
(void) fclose(tracef_pipe);
tracef_pipe = NULL;
}
lib3270_set_toggle(&h3270,DS_TRACE,0);
lib3270_set_toggle(&h3270,EVENT_TRACE,0);
/*
if (toggled(DS_TRACE)) {
toggle_toggle(&appres.toggle[DS_TRACE]);
// menubar_retoggle(&appres.toggle[DS_TRACE]);
}
if (toggled(EVENT_TRACE)) {
toggle_toggle(&appres.toggle[EVENT_TRACE]);
// menubar_retoggle(&appres.toggle[EVENT_TRACE]);
}
*/
}
/* Check for a trace file rollover event. */
void
trace_rollover_check(void)
{
if (tracef == NULL || tracef_max == 0)
return;
/* See if we've reached the midpoint. */
if (!tracef_midpoint) {
if (tracef_size >= tracef_max / 2) {
tracef_midpoint = ftello(tracef);
#if defined(ROLLOVER_DEBUG) /*[*/
printf("midpoint is %lld\n", tracef_midpoint);
#endif /*]*/
tracef_midpoint_header =
create_tracefile_header("rolled over");
}
return;
}
/* See if we've reached a rollover point. */
if (tracef_size >= tracef_max) {
char buf[8*1024];
int nr;
off_t rpos = tracef_midpoint, wpos = 0;
if (!tracef_midpoint)
Error("Tracefile rollover logic error");
#if defined(ROLLOVER_DEBUG) /*[*/
printf("rolling over at %lld\n", tracef_size);
#endif /*]*/
/*
* Overwrite the file with the midpoint header, and the data
* which follows the midpoint.
*/
if (fseeko(tracef, 0, SEEK_SET) < 0) {
popup_an_errno(errno, "trace file fseeko(0) failed");
stop_tracing();
return;
}
wtrace("%s", tracef_midpoint_header);
wpos = ftello(tracef);
if (wpos < 0) {
popup_an_errno(errno, "trace file ftello() failed");
stop_tracing();
return;
}
if (fseeko(tracef, rpos, SEEK_SET) < 0) {
popup_an_errno(errno, "trace file fseeko(%ld) failed",
(long)rpos);
stop_tracing();
return;
}
#if defined(ROLLOVER_DEBUG) /*[*/
printf("rpos = %lld, wpos = %lld\n", rpos, wpos);
#endif /*]*/
while ((nr = fread(buf, 1, sizeof(buf), tracef)) > 0) {
rpos = ftello(tracef);
if (fseeko(tracef, wpos, SEEK_SET) < 0) {
popup_an_errno(errno, "trace file fseeko(%ld) "
"failed", (long)wpos);
stop_tracing();
return;
}
if (fwrite(buf, nr, 1, tracef) < 1)
break;
wpos = ftello(tracef);
if (wpos < 0) {
popup_an_errno(errno, "trace file ftello() "
"failed");
stop_tracing();
return;
}
if (fseeko(tracef, rpos, SEEK_SET) < 0) {
popup_an_errno(errno, "trace file fseeko(%ld)"
"failed", (long)rpos);
stop_tracing();
return;
}
}
if (ferror(tracef)) {
popup_an_errno(errno, "trace file rollover copy "
"failed");
stop_tracing();
return;
}
#if defined(ROLLOVER_DEBUG) /*[*/
printf("final wpos = %lld\n", wpos);
#endif /*]*/
if (ftruncate(fileno(tracef), wpos) < 0) {
popup_an_errno(errno, "trace file ftruncate(%ld) "
"failed", (long)wpos);
stop_tracing();
return;
}
if (fseeko(tracef, wpos, SEEK_SET) < 0) {
popup_an_errno(errno, "trace file fseeko(%ld) failed",
(long)wpos);
stop_tracing();
return;
}
tracef_size = wpos;
tracef_midpoint = wpos;
Replace(tracef_midpoint_header,
create_tracefile_header("rolled over"));
}
}
#if defined(X3270_DISPLAY) /*[*/
static Widget trace_shell = (Widget)NULL;
#endif /*]*/
static int trace_reason;
/* Create a trace file header. */
static char *
create_tracefile_header(const char *mode)
{
char *buf;
time_t clk;
/* Create a buffer and redirect output. */
buf = Malloc(MAX_HEADER_SIZE);
tracef_bufptr = buf;
/* Display current status */
clk = time((time_t *)0);
wtrace("Trace %s %s", mode, ctime(&clk));
wtrace(" Version: %s\n", build);
save_yourself();
// wtrace(" Command: %s\n", command_string);
wtrace(" Model %s", h3270.model_name);
wtrace(", %s display", appres.mono ? "monochrome" : "color");
if (appres.extended)
wtrace(", extended data stream");
wtrace(", %s emulation", appres.m3279 ? "color" : "monochrome");
wtrace(", %s charset", get_charset_name());
if (appres.apl_mode)
wtrace(", APL mode");
wtrace("\n");
if (CONNECTED)
wtrace(" Connected to %s, port %u\n",h3270.current_host, h3270.current_port);
/* Snap the current TELNET options. */
if (net_snap_options()) {
wtrace(" TELNET state:\n");
trace_netdata('<', obuf, obptr - obuf);
}
/* Dump the screen contents and modes into the trace file. */
if (CONNECTED) {
/*
* Note that if the screen is not formatted, we do not
* attempt to save what's on it. However, if we're in
* 3270 SSCP-LU or NVT mode, we'll do a dummy, empty
* write to ensure that the display is in the right
* mode.
*/
if (h3270.formatted) {
wtrace(" Screen contents:\n");
obptr = obuf;
#if defined(X3270_TN3270E) /*[*/
(void) net_add_dummy_tn3270e();
#endif /*]*/
ctlr_snap_buffer();
space3270out(2);
net_add_eor(obuf, obptr - obuf);
obptr += 2;
trace_netdata('<', obuf, obptr - obuf);
obptr = obuf;
#if defined(X3270_TN3270E) /*[*/
(void) net_add_dummy_tn3270e();
#endif /*]*/
if (ctlr_snap_modes()) {
wtrace(" 3270 modes:\n");
space3270out(2);
net_add_eor(obuf, obptr - obuf);
obptr += 2;
trace_netdata('<', obuf, obptr - obuf);
}
}
#if defined(X3270_TN3270E) /*[*/
else if (IN_E) {
obptr = obuf;
if (net_add_dummy_tn3270e()) {
wtrace(" Screen contents:\n");
space3270out(2);
net_add_eor(obuf, obptr - obuf);
obptr += 2;
trace_netdata('<', obuf, obptr - obuf);
}
}
#endif /*]*/
}
wtrace(" Data stream:\n");
/* Return the buffer. */
tracef_bufptr = CN;
return buf;
}
/* Calculate the tracefile maximum size. */
static void
get_tracef_max(void)
{
static Boolean calculated = False;
char *ptr;
Boolean bad = False;
if (calculated)
return;
calculated = True;
if (appres.trace_file_size == CN ||
!strcmp(appres.trace_file_size, "0") ||
!strncasecmp(appres.trace_file_size, "none",
strlen(appres.trace_file_size))) {
tracef_max = 0;
return;
}
tracef_max = strtoul(appres.trace_file_size, &ptr, 0);
if (tracef_max == 0 || ptr == appres.trace_file_size || *(ptr + 1)) {
bad = True;
} else switch (*ptr) {
case 'k':
case 'K':
tracef_max *= 1024;
break;
case 'm':
case 'M':
tracef_max *= 1024 * 1024;
break;
case '\0':
break;
default:
bad = True;
break;
}
if (bad) {
tracef_max = MIN_TRACEFILE_SIZE;
#if defined(X3270_DISPLAY) /*[*/
popup_an_info("Invalid %s '%s', assuming "
MIN_TRACEFILE_SIZE_NAME,
ResTraceFileSize,
appres.trace_file_size);
#endif /*]*/
} else if (tracef_max < MIN_TRACEFILE_SIZE) {
tracef_max = MIN_TRACEFILE_SIZE;
}
}
/* Parse the name '/dev/fd<n>', so we can simulate it. */
static int
get_devfd(const char *pathname)
{
unsigned long fd;
char *ptr;
if (strncmp(pathname, "/dev/fd/", 8))
return -1;
fd = strtoul(pathname + 8, &ptr, 10);
if (ptr == pathname + 8 || *ptr != '\0' || fd < 0)
return -1;
return fd;
}
/* Callback for "OK" button on trace popup */
static void tracefile_callback(Widget w, XtPointer client_data, XtPointer call_data unused)
{
char *tfn = CN;
int devfd = -1;
char *buf;
tfn = (char *)client_data;
tfn = do_subst(tfn, True, True);
if (strchr(tfn, '\'') || ((int)strlen(tfn) > 0 && tfn[strlen(tfn)-1] == '\\'))
{
popup_an_error("Illegal file name: %s", tfn);
Free(tfn);
return;
}
tracef_max = 0;
tracef_midpoint = 0;
Replace(tracef_midpoint_header, CN);
if (!strcmp(tfn, "stdout"))
{
tracef = stdout;
}
else
{
/* Get the trace file maximum. */
get_tracef_max();
/* If there's a limit, the file can't exist. */
if (tracef_max && !access(tfn, R_OK))
{
popup_an_error("Trace file '%s' already exists",tfn);
Free(tfn);
return;
}
/* Open and configure the file. */
if ((devfd = get_devfd(tfn)) >= 0)
tracef = fdopen(dup(devfd), "a");
else
tracef = fopen(tfn, tracef_max? "w+": "a");
if (tracef == (FILE *)NULL)
{
popup_an_errno(errno, tfn);
Free(tfn);
return;
}
(void) SETLINEBUF(tracef);
#if !defined(_WIN32) /*[*/
(void) fcntl(fileno(tracef), F_SETFD, 1);
#endif /*]*/
}
/* Open pw3270's console window */
if(!tracewindow_handle)
tracewindow_handle = console_window_new( tfn, NULL );
Free(tfn);
/* We're really tracing, turn the flag on. */
appres.toggle[trace_reason].value = True;
// appres.toggle[trace_reason].changed = True;
// menubar_retoggle(&appres.toggle[trace_reason]);
/* Display current status. */
buf = create_tracefile_header("started");
wtrace("%s", buf);
Free(buf);
}
#if defined(X3270_DISPLAY) /*[*/
/* Callback for "No File" button on trace popup */
static void
no_tracefile_callback(Widget w, XtPointer client_data,
XtPointer call_data unused)
{
tracefile_callback((Widget)NULL, "", PN);
XtPopdown(trace_shell);
}
#endif /*]*/
/* Open the trace file. */
static void
tracefile_on(int reason, LIB3270_TOGGLE_TYPE tt)
{
char *tracefile_buf = NULL;
char *tracefile;
if (tracef != (FILE *)NULL)
return;
trace_reason = reason;
if (appres.secure && tt != TT_INITIAL) {
tracefile_callback((Widget)NULL, "none", PN);
return;
}
if (appres.trace_file)
{
tracefile = appres.trace_file;
}
else
{
#if defined(_WIN32) /*[*/
tracefile_buf = xs_buffer("%sx3trc.%u.txt", PROGRAM_DATA,getpid());
#else /*][*/
if(appres.trace_dir)
tracefile_buf = xs_buffer("%s/x3trc.%u", appres.trace_dir,getpid());
else
tracefile_buf = xs_buffer("%s/x3trc.%u", ".",getpid());
#endif /*]*/
tracefile = tracefile_buf;
}
#if defined(X3270_DISPLAY) /*[*/
if (tt == TT_INITIAL || tt == TT_ACTION)
#endif /*]*/
{
tracefile_callback((Widget)NULL, tracefile, PN);
if (tracefile_buf != NULL)
Free(tracefile_buf);
return;
}
#if defined(X3270_DISPLAY) /*[*/
if (trace_shell == NULL) {
trace_shell = create_form_popup("trace",
tracefile_callback,
appres.trace_monitor? no_tracefile_callback: NULL,
FORM_NO_WHITE);
XtVaSetValues(XtNameToWidget(trace_shell, ObjDialog),
XtNvalue, tracefile,
NULL);
}
/* Turn the toggle _off_ until the popup succeeds. */
appres.toggle[reason].value = False;
appres.toggle[reason].changed = True;
popup_popup(trace_shell, XtGrabExclusive);
#endif /*]*/
if (tracefile_buf != NULL)
Free(tracefile_buf);
}
/* Close the trace file. */
static void tracefile_off(void)
{
time_t clk;
clk = time((time_t *)0);
wtrace("Trace stopped %s", ctime(&clk));
#if defined (LIB3270)
if(tracewindow_handle != NULL)
{
console_window_delete(tracewindow_handle);
tracewindow_handle = NULL;
}
#elif !defined(_WIN32) /*[*/
if (tracewindow_pid != -1)
(void) kill(tracewindow_pid, SIGKILL);
tracewindow_pid = -1;
#else /*][*/
if (tracewindow_handle != NULL)
{
TerminateProcess(tracewindow_handle, 0);
CloseHandle(tracewindow_handle);
tracewindow_handle = NULL;
}
#endif /*]*/
stop_tracing();
}
void toggle_dsTrace(H3270 *session, struct toggle *t unused, LIB3270_TOGGLE_TYPE tt)
{
/* If turning on trace and no trace file, open one. */
if (toggled(DS_TRACE) && tracef == NULL)
tracefile_on(DS_TRACE, tt);
/* If turning off trace and not still tracing events, close the
trace file. */
else if (!toggled(DS_TRACE) && !toggled(EVENT_TRACE))
tracefile_off();
if (toggled(DS_TRACE))
(void) gettimeofday(&ds_ts, (struct timezone *)NULL);
}
void toggle_eventTrace(H3270 *session, struct toggle *t unused, LIB3270_TOGGLE_TYPE tt)
{
/* If turning on event debug, and no trace file, open one. */
if (toggled(EVENT_TRACE) && tracef == NULL)
tracefile_on(EVENT_TRACE, tt);
/* If turning off event debug, and not tracing the data stream,
close the trace file. */
else if (!toggled(EVENT_TRACE) && !toggled(DS_TRACE))
tracefile_off();
}
/* Screen trace file support. */
#if defined(X3270_DISPLAY) /*[*/
static Widget screentrace_shell = (Widget)NULL;
#endif /*]*/
static FILE *screentracef = (FILE *)0;
/*
* Screen trace function, called when the host clears the screen.
*/
static void
do_screentrace(void)
{
register int i;
if (fprint_screen(screentracef, False, False)) {
for (i = 0; i < h3270.cols; i++)
(void) fputc('=', screentracef);
(void) fputc('\n', screentracef);
}
}
void
trace_screen(void)
{
trace_skipping = False;
if (!toggled(SCREEN_TRACE) || !screentracef)
return;
do_screentrace();
}
/* Called from ANSI emulation code to log a single character. */
void
trace_char(char c)
{
if (!toggled(SCREEN_TRACE) || !screentracef)
return;
(void) fputc(c, screentracef);
}
/*
* Called when disconnecting in ANSI mode, to finish off the trace file
* and keep the next screen clear from re-recording the screen image.
* (In a gross violation of data hiding and modularity, trace_skipping is
* manipulated directly in ctlr_clear()).
*/
void
trace_ansi_disc(void)
{
int i;
(void) fputc('\n', screentracef);
for (i = 0; i < h3270.cols; i++)
(void) fputc('=', screentracef);
(void) fputc('\n', screentracef);
trace_skipping = True;
}
/*
* Screen tracing callback.
* Returns True for success, False for failure.
*/
static Boolean
screentrace_cb(char *tfn)
{
tfn = do_subst(tfn, True, True);
screentracef = fopen(tfn, "a");
if (screentracef == (FILE *)NULL) {
popup_an_errno(errno, tfn);
Free(tfn);
return False;
}
Free(tfn);
(void) SETLINEBUF(screentracef);
#if !defined(_WIN32) /*[*/
(void) fcntl(fileno(screentracef), F_SETFD, 1);
#endif /*]*/
/* We're really tracing, turn the flag on. */
appres.toggle[SCREEN_TRACE].value = True;
// appres.toggle[SCREEN_TRACE].changed = True;
// menubar_retoggle(&appres.toggle[SCREEN_TRACE]);
return True;
}
/*
#if defined(X3270_DISPLAY)
// Callback for "OK" button on screentrace popup
static void
screentrace_callback(Widget w unused, XtPointer client_data,
XtPointer call_data unused)
{
if (screentrace_cb(XawDialogGetValueString((Widget)client_data)))
XtPopdown(screentrace_shell);
}
// Callback for second "OK" button on screentrace popup
static void
onescreen_callback(Widget w, XtPointer client_data, XtPointer call_data unused)
{
char *tfn;
if (w)
tfn = XawDialogGetValueString((Widget)client_data);
else
tfn = (char *)client_data;
tfn = do_subst(tfn, True, True);
screentracef = fopen(tfn, "a");
if (screentracef == (FILE *)NULL) {
popup_an_errno(errno, tfn);
XtFree(tfn);
return;
}
(void) fcntl(fileno(screentracef), F_SETFD, 1);
XtFree(tfn);
// Save the current image, once.
do_screentrace();
// Close the file, we're done.
(void) fclose(screentracef);
screentracef = (FILE *)NULL;
if (w)
XtPopdown(screentrace_shell);
}
#endif */
void toggle_screenTrace(H3270 *session, struct toggle *t unused, LIB3270_TOGGLE_TYPE tt)
{
char *tracefile_buf = NULL;
char *tracefile;
if (toggled(SCREEN_TRACE)) {
if (appres.screentrace_file)
tracefile = appres.screentrace_file;
else {
#if defined(_WIN32) /*[*/
tracefile_buf = xs_buffer("%sx3scr.%u.txt",PROGRAM_DATA, getpid());
#else /*][*/
if(appres.trace_dir)
tracefile_buf = xs_buffer("%s/x3scr.%u",appres.trace_dir, getpid());
else
tracefile_buf = xs_buffer("%s/x3scr.%u",".", getpid());
#endif /*]*/
tracefile = tracefile_buf;
}
if (tt == TT_INITIAL || tt == TT_ACTION) {
(void) screentrace_cb(NewString(tracefile));
if (tracefile_buf != NULL)
Free(tracefile_buf);
return;
}
#if defined(X3270_DISPLAY) /*[*/
if (screentrace_shell == NULL) {
screentrace_shell = create_form_popup("screentrace",
screentrace_callback, onescreen_callback,
FORM_NO_WHITE);
XtVaSetValues(XtNameToWidget(screentrace_shell,
ObjDialog),
XtNvalue, tracefile,
NULL);
}
appres.toggle[SCREEN_TRACE].value = False;
appres.toggle[SCREEN_TRACE].changed = True;
popup_popup(screentrace_shell, XtGrabExclusive);
#endif /*]*/
} else {
if (ctlr_any_data() && !trace_skipping)
do_screentrace();
(void) fclose(screentracef);
}
if (tracefile_buf != NULL)
Free(tracefile_buf);
}
#endif /*]*/