lib3270.h
31.4 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
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
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
/*
* "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.
*
* 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., 51 Franklin
* St, Fifth Floor, Boston, MA 02110-1301 USA
*
* Este programa está nomeado como lib3270.h e possui - 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)
*
*/
#ifndef LIB3270_H_INCLUDED
#define LIB3270_H_INCLUDED 1
#include <stdarg.h>
#include <errno.h>
#ifndef ENOTCONN
#define ENOTCONN 126
#endif // !ENOTCONN
#if defined(__GNUC__)
#define LIB3270_GNUC_FORMAT(s,f) __attribute__ ((__format__ (__printf__, s, f)))
#else
#define LIB3270_GNUC_FORMAT(s, f)
#endif
/**
* BIND definitions.
*/
#define LIB3270_BIND_RU 0x31
#define LIB3270_BIND_OFF_PLU_NAME_LEN 26
#define LIB3270_BIND_OFF_PLU_NAME 27
#define LIB3270_BIND_PLU_NAME_MAX 8
/**
* Maximum size for LUNAME
*
*/
#define LIB3270_LUNAME_LENGTH 16
/**
* Character attributes
*/
typedef enum _lib3270_attr
{
LIB3270_ATTR_COLOR_BACKGROUND = 0x0000,
LIB3270_ATTR_COLOR_BLUE = 0x0001,
LIB3270_ATTR_COLOR_RED = 0x0002,
LIB3270_ATTR_COLOR_PINK = 0x0003,
LIB3270_ATTR_COLOR_GREEN = 0x0004,
LIB3270_ATTR_COLOR_TURQUOISE = 0x0005,
LIB3270_ATTR_COLOR_YELLOW = 0x0006,
LIB3270_ATTR_COLOR_WHITE = 0x0007,
LIB3270_ATTR_COLOR_BLACK = 0x0008,
LIB3270_ATTR_COLOR_DARK_BLUE = 0x0009,
LIB3270_ATTR_COLOR_ORANGE = 0x000A,
LIB3270_ATTR_COLOR_PURPLE = 0x000B,
LIB3270_ATTR_COLOR_DARK_GREEN = 0x000C,
LIB3270_ATTR_COLOR_DARK_TURQUOISE = 0x000D,
LIB3270_ATTR_COLOR_MUSTARD = 0x000E,
LIB3270_ATTR_COLOR_GRAY = 0x000F,
LIB3270_ATTR_COLOR = 0x00FF,
LIB3270_ATTR_FIELD = 0x0100,
LIB3270_ATTR_BLINK = 0x0200,
LIB3270_ATTR_UNDERLINE = 0x0400,
LIB3270_ATTR_INTENSIFY = 0x0800,
LIB3270_ATTR_CG = 0x1000,
LIB3270_ATTR_MARKER = 0x2000,
LIB3270_ATTR_BACKGROUND_INTENSITY = 0x4000,
LIB3270_ATTR_SELECTED = 0x8000
} LIB3270_ATTR;
typedef enum _lib3270_toggle
{
LIB3270_TOGGLE_MONOCASE,
LIB3270_TOGGLE_CURSOR_BLINK,
LIB3270_TOGGLE_SHOW_TIMING,
LIB3270_TOGGLE_CURSOR_POS,
LIB3270_TOGGLE_DS_TRACE,
LIB3270_TOGGLE_LINE_WRAP,
LIB3270_TOGGLE_BLANK_FILL,
LIB3270_TOGGLE_SCREEN_TRACE,
LIB3270_TOGGLE_EVENT_TRACE,
LIB3270_TOGGLE_MARGINED_PASTE,
LIB3270_TOGGLE_RECTANGLE_SELECT,
LIB3270_TOGGLE_CROSSHAIR,
LIB3270_TOGGLE_FULL_SCREEN,
LIB3270_TOGGLE_RECONNECT,
LIB3270_TOGGLE_INSERT,
LIB3270_TOGGLE_SMART_PASTE,
LIB3270_TOGGLE_BOLD,
LIB3270_TOGGLE_KEEP_SELECTED,
LIB3270_TOGGLE_UNDERLINE, /**< Show underline ? */
LIB3270_TOGGLE_CONNECT_ON_STARTUP,
LIB3270_TOGGLE_KP_ALTERNATIVE, /**< Keypad +/- move to next/previous field */
LIB3270_TOGGLE_BEEP, /**< Beep on errors */
LIB3270_TOGGLE_VIEW_FIELD, /**< View Field attribute */
LIB3270_TOGGLE_ALTSCREEN, /**< auto resize on altscreen */
LIB3270_TOGGLE_KEEP_ALIVE, /**< Enable network keep-alive with SO_KEEPALIVE */
LIB3270_TOGGLE_NETWORK_TRACE, /**< Enable network in/out trace */
LIB3270_TOGGLE_COUNT
} LIB3270_TOGGLE;
typedef enum _lib3270_direction
{
LIB3270_DIR_UP,
LIB3270_DIR_DOWN,
LIB3270_DIR_LEFT,
LIB3270_DIR_RIGHT,
LIB3270_DIR_END,
} LIB3270_DIRECTION;
/**
* Toggle types.
*
*/
typedef enum _LIB3270_TOGGLE_TYPE
{
LIB3270_TOGGLE_TYPE_INITIAL,
LIB3270_TOGGLE_TYPE_INTERACTIVE,
LIB3270_TOGGLE_TYPE_ACTION,
LIB3270_TOGGLE_TYPE_FINAL,
LIB3270_TOGGLE_TYPE_UPDATE,
LIB3270_TOGGLE_TYPE_USER
} LIB3270_TOGGLE_TYPE;
/**
* OIA Status indicators.
*
*/
typedef enum _lib3270_flag
{
LIB3270_FLAG_BOXSOLID, /**< System available */
LIB3270_FLAG_UNDERA, /**< Control Unit STATUS */
LIB3270_FLAG_TYPEAHEAD,
LIB3270_FLAG_PRINTER, /**< Printer session status */
LIB3270_FLAG_REVERSE,
LIB3270_FLAG_SCRIPT, /**< Script status */
LIB3270_FLAG_COUNT
} LIB3270_FLAG;
/**
* @brief 3270 program messages.
*
*/
typedef enum _LIB3270_MESSAGE
{
LIB3270_MESSAGE_NONE, ///< @brief No message
LIB3270_MESSAGE_SYSWAIT, ///< @brief --
LIB3270_MESSAGE_TWAIT, ///< @brief --
LIB3270_MESSAGE_CONNECTED, ///< @brief Connected
LIB3270_MESSAGE_DISCONNECTED, ///< @brief Disconnected from host
LIB3270_MESSAGE_AWAITING_FIRST, ///< @brief --
LIB3270_MESSAGE_MINUS, ///< @brief --
LIB3270_MESSAGE_PROTECTED, ///< @brief --
LIB3270_MESSAGE_NUMERIC, ///< @brief --
LIB3270_MESSAGE_OVERFLOW, ///< @brief --
LIB3270_MESSAGE_INHIBIT, ///< @brief --
LIB3270_MESSAGE_KYBDLOCK, ///< @brief Keyboard is locked
LIB3270_MESSAGE_X, ///< @brief --
LIB3270_MESSAGE_RESOLVING, ///< @brief Resolving hostname (running DNS query)
LIB3270_MESSAGE_CONNECTING, ///< @brief Connecting to host
LIB3270_MESSAGE_USER
} LIB3270_MESSAGE;
/**
* Pointer modes.
*
* Pointer modes set by library; an application can use it
* as a hint to change the mouse pointer based on connection status.
*
*/
typedef enum _LIB3270_POINTER
{
LIB3270_POINTER_UNLOCKED, /**< Ready for user actions */
LIB3270_POINTER_WAITING, /**< Waiting for host */
LIB3270_POINTER_LOCKED, /**< Locked, can't receive user actions */
LIB3270_POINTER_PROTECTED,
LIB3270_POINTER_MOVE_SELECTION,
LIB3270_POINTER_SELECTION_TOP_LEFT,
LIB3270_POINTER_SELECTION_TOP_RIGHT,
LIB3270_POINTER_SELECTION_TOP,
LIB3270_POINTER_SELECTION_BOTTOM_LEFT,
LIB3270_POINTER_SELECTION_BOTTOM_RIGHT,
LIB3270_POINTER_SELECTION_BOTTOM,
LIB3270_POINTER_SELECTION_LEFT,
LIB3270_POINTER_SELECTION_RIGHT,
LIB3270_POINTER_QUESTION,
LIB3270_POINTER_COUNT
} LIB3270_POINTER;
/**
* connection state
*/
typedef enum lib3270_cstate
{
LIB3270_NOT_CONNECTED, /**< no socket, disconnected */
LIB3270_RESOLVING, /**< resolving hostname */
LIB3270_PENDING, /**< connection pending */
LIB3270_CONNECTED_INITIAL, /**< connected, no mode yet */
LIB3270_CONNECTED_ANSI, /**< connected in NVT ANSI mode */
LIB3270_CONNECTED_3270, /**< connected in old-style 3270 mode */
LIB3270_CONNECTED_INITIAL_E, /**< connected in TN3270E mode, unnegotiated */
LIB3270_CONNECTED_NVT, /**< connected in TN3270E mode, NVT mode */
LIB3270_CONNECTED_SSCP, /**< connected in TN3270E mode, SSCP-LU mode */
LIB3270_CONNECTED_TN3270E /**< connected in TN3270E mode, 3270 mode */
} LIB3270_CSTATE;
/**
* Connect options
*
*/
typedef enum lib3270_option
{
/* Host types */
LIB3270_OPTION_AS400 = 0x0001, /**< AS400 host - Prefix every PF with PA1 */
LIB3270_OPTION_TSO = 0x0002, /**< Host is TSO? */
LIB3270_OPTION_S390 = 0x0006, /**< Host is S390? (TSO included) */
/* Other options */
LIB3270_OPTION_SSL = 0x0010, /**< Secure connection ? */
LIB3270_OPTION_WAIT = 0x8000 /**< Wait for session ready on connect ? */
} LIB3270_OPTION;
#define LIB3270_OPTION_HOST_TYPE 0x0007
#define LIB3270_OPTION_DEFAULTS LIB3270_OPTION_S390
typedef struct _lib3270_option_entry
{
LIB3270_OPTION option;
const char * name;
const char * description;
const char * tooltip;
} LIB3270_OPTION_ENTRY;
/**
* SSL state
*
*/
typedef enum lib3270_ssl_state
{
LIB3270_SSL_UNSECURE, /**< No secure connection */
LIB3270_SSL_SECURE, /**< Connection secure with CA check */
LIB3270_SSL_NEGOTIATED, /**< Connection secure, no CA or self-signed */
LIB3270_SSL_NEGOTIATING, /**< Negotiating SSL */
LIB3270_SSL_UNDEFINED /**< Undefined */
} LIB3270_SSL_STATE;
#define LIB3270_SSL_FAILED LIB3270_SSL_UNSECURE
#ifdef __cplusplus
extern "C" {
#endif
#include <lib3270/config.h>
#if defined( ANDROID )
#define LIB3270_INTERNAL extern __attribute__((visibility("hidden")))
#define LIB3270_EXPORT extern __attribute__((visibility("hidden")))
#elif defined(_WIN32)
#include <windows.h>
#define LIB3270_INTERNAL extern
#define LIB3270_EXPORT extern __declspec (dllexport)
#elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)
#define LIB3270_INTERNAL __hidden extern
#define LIB3270_EXPORT extern
#elif defined (HAVE_GNUC_VISIBILITY)
#define LIB3270_INTERNAL __attribute__((visibility("hidden"))) extern
#define LIB3270_EXPORT __attribute__((visibility("default"))) extern
#else
#error Unable to set visibility attribute
#endif
/* State change IDs. */
typedef enum _lib3270_state
{
LIB3270_STATE_RESOLVING,
LIB3270_STATE_HALF_CONNECT,
LIB3270_STATE_CONNECT,
LIB3270_STATE_3270_MODE,
LIB3270_STATE_LINE_MODE,
LIB3270_STATE_REMODEL,
LIB3270_STATE_PRINTER,
LIB3270_STATE_EXITING,
LIB3270_STATE_CHARSET,
LIB3270_STATE_USER // Always the last one
} LIB3270_STATE;
typedef struct _h3270 H3270;
typedef struct _h3270ft H3270FT;
/**
* Get current screen size.
*
* Get the size of the terminal in rows/cols; this value can differ from
* the model if there's an active "altscreen" with diferent size.
*
* @param h Handle of the desired session.
* @param r Pointer to screen rows.
* @param c Pointer to screen columns.
*
*/
LIB3270_EXPORT void lib3270_get_screen_size(H3270 *h, int *r, int *c);
/**
* Get current screen width in columns.
*
* @param h Handle of the desired session.
*
* @return screen width.
*
*/
LIB3270_EXPORT int lib3270_get_width(H3270 *h);
/**
* Get current screen width in rows.
*
* @param h Handle of the desired session.
*
* @return screen rows.
*
*/
LIB3270_EXPORT int lib3270_get_height(H3270 *h);
LIB3270_EXPORT unsigned int lib3270_get_length(H3270 *h);
/**
* Start a new session (INCOMPLETE).
*
* Initialize session structure, opens a new session.
* WARNING: Multi session ins't yet supported in lib3270, because of this
* this call always return the handle of the same session.
*
* @param model Terminal model.
*
* @return lib3270 internal session structure.
*
*/
LIB3270_EXPORT H3270 * lib3270_session_new(const char *model);
/**
* Destroy session, release memory.
*
* @param h Session handle.
*
*/
LIB3270_EXPORT void lib3270_session_free(H3270 *h);
/**
* Register a state change callback.
*
* @param h Session handle.
* @param tx State ID
* @param func Callback
* @param data Data
*
*/
LIB3270_EXPORT void lib3270_register_schange(H3270 *h,LIB3270_STATE tx, void (*func)(H3270 *, int, void *),void *data);
/**
* Set host id for the connect/reconnect operations.
*
* @param h Session handle.
* @param url URL of host to set in the format tn3270://hostname:service or tn3270s://hostname:service .
*
* @return Processed host url
*
*/
LIB3270_EXPORT const char * lib3270_set_url(H3270 *h, const char *url);
/**
* Get hostname for the connect/reconnect operations.
*
* @param h Session handle.
*
* @return Pointer to host id set (internal data, do not change it)
*
*/
LIB3270_EXPORT const char * lib3270_get_hostname(H3270 *h);
LIB3270_EXPORT void lib3270_set_hostname(H3270 *h, const char *hostname);
/**
* Get service or port for the connect/reconnect operations.
*
* @param h Session handle.
*
* @return Pointer to service name (internal data, do not change it)
*
*/
LIB3270_EXPORT const char * lib3270_get_srvcname(H3270 *h);
LIB3270_EXPORT void lib3270_set_srvcname(H3270 *h, const char *srvc);
LIB3270_EXPORT const char * lib3270_get_url(H3270 *h, char *buffer, int len);
/**
* Get session options.
*
* @param h Session handle.
*
*/
LIB3270_EXPORT LIB3270_OPTION lib3270_get_options(H3270 *hSession);
/**
* Get URL of the hostname for the connect/reconnect operations.
*
* @param h Session handle.
*
* @return Pointer to host URL set (internal data, do not change it)
*
*/
LIB3270_EXPORT const char * lib3270_get_host(H3270 *h);
/**
* Network connect operation, keep main loop running
*
* @param h Session handle.
* @param wait Non zero to wait for connection to be ok.
*
* @return 0 for success, EAGAIN if auto-reconnect is in progress, EBUSY if connected, ENOTCONN if connection has failed, -1 on unexpected failure.
*
*/
LIB3270_EXPORT int lib3270_connect(H3270 *h,int wait);
/**
* Connect to defined host, keep main loop running.
*
* @param hSession Session handle.
* @param hostname Host name.
* @param srvc Service name (telnet if NULL).
* @param opt Session options.
*
* @return 0 for success, EAGAIN if auto-reconnect is in progress, EBUSY if connected, ENOTCONN if connection has failed, -1 on unexpected failure.
*
*/
LIB3270_EXPORT int lib3270_connect_host(H3270 *hSession, const char *hostname, const char *srvc, LIB3270_OPTION opt);
/**
* Disconnect from host.
*
* @param h Session handle.
*
*/
LIB3270_EXPORT int lib3270_disconnect(H3270 *h);
/**
* Get connection state.
*
* @param h Session handle.
*
* @return Connection state.
*
*/
LIB3270_EXPORT LIB3270_CSTATE lib3270_get_connection_state(H3270 *h);
/**
* Pretend that a sequence of keys was entered at the keyboard.
*
* "Pasting" means that the sequence came from the clipboard. Returns are
* ignored; newlines mean "move to beginning of next line"; tabs and formfeeds
* become spaces. Backslashes are not special, but ASCII ESC characters are
* used to signify 3270 Graphic Escapes.
*
* "Not pasting" means that the sequence is a login string specified in the
* hosts file, or a parameter to the String action. Returns are "move to
* beginning of next line"; newlines mean "Enter AID" and the termination of
* processing the string. Backslashes are processed as in C.
*
* @param s String to input.
* @param len Size of the string (or -1 to null terminated strings)
* @param pasting Non zero for pasting (See comments).
*
* @return The number of unprocessed characters or -1 if failed
*/
LIB3270_EXPORT int lib3270_emulate_input(H3270 *session, const char *s, int len, int pasting);
/**
* Set string at current cursor position.
*
* Returns are ignored; newlines mean "move to beginning of next line";
* tabs and formfeeds become spaces. Backslashes are not special
*
* @param h Session handle.
* @param s String to input.
*
* @return Negative if error or number of processed characters.
*
*/
LIB3270_EXPORT int lib3270_set_string(H3270 *h, const unsigned char *str);
#define lib3270_set_text_at(h,r,c,t) lib3270_set_string_at(h,r,c,t)
LIB3270_EXPORT int lib3270_set_string_at(H3270 *h, int row, int col, const unsigned char *str);
LIB3270_EXPORT int lib3270_input_string(H3270 *hSession, const unsigned char *str);
/**
* Set cursor address.
*
* @param h Session handle.
* @param baddr New cursor address.
*
* @return last cursor address.
*
*/
LIB3270_EXPORT int lib3270_set_cursor_address(H3270 *h, int baddr);
/**
* Set cursor position.
*
* @param h Session handle.
* @param row New cursor row.
* @param col New cursor col.
*
* @return last cursor address.
*
*/
LIB3270_EXPORT int lib3270_set_cursor_position(H3270 *h, int row, int col);
/**
* get cursor address.
*
* @param h Session handle.
*
* @return Cursor address.
*
*/
LIB3270_EXPORT int lib3270_get_cursor_address(H3270 *h);
/**
* Move cursor
*
* @param h Session handle.
* @param dir Direction to move
* @param sel Non zero to move and selected to the current cursor position
*
* @return 0 if the movement can be done, non zero if failed.
*/
LIB3270_EXPORT int lib3270_move_cursor(H3270 *h, LIB3270_DIRECTION dir, unsigned char sel);
/**
* Print page
*
* @param h Session Handle.
*
* @return 0 if ok, error code if not.
*
*/
LIB3270_EXPORT int lib3270_print(H3270 *h);
/**
* Get buffer contents.
*
* @param h Session handle.
* @param first First element to get.
* @param last Last element to get.
* @param chr Pointer to buffer which will receive the read chars.
* @param attr Pointer to buffer which will receive the chars attributes.
*
*/
LIB3270_EXPORT int lib3270_get_contents(H3270 *h, int first, int last, unsigned char *chr, unsigned short *attr);
/**
* get toggle state.
*
* @param h Session handle.
* @param ix Toggle id.
*
* @return 0 if the toggle is disabled, non zero if enabled.
*
*/
LIB3270_EXPORT unsigned char lib3270_get_toggle(H3270 *h, LIB3270_TOGGLE ix);
/**
* Set toggle state.
*
* @param h Session handle.
* @param ix Toggle id.
* @param value New toggle state (non zero for true).
*
* @returns 0 if the toggle is already at the state, 1 if the toggle was changed; < 0 on invalid toggle id
*/
LIB3270_EXPORT int lib3270_set_toggle(H3270 *h, LIB3270_TOGGLE ix, int value);
/**
* Translate a string toggle name to the corresponding value.
*
* @param name Toggle name.
*
* @return Toggle ID or -1 if it's invalid.
*
*/
LIB3270_EXPORT LIB3270_TOGGLE lib3270_get_toggle_id(const char *name);
/**
* Get the toggle name as string.
*
* @param id Toggle id
*
* @return Constant string with the toggle name or "" if invalid.
*
*/
LIB3270_EXPORT const char * lib3270_get_toggle_name(LIB3270_TOGGLE ix);
/**
* Get a long description of the toggle.
*
* @return Constant string with the toggle description.
*
*/
LIB3270_EXPORT const char * lib3270_get_toggle_description(LIB3270_TOGGLE ix);
/**
* Get a short description of the toggle (for menus).
*
* @return Constant string with the toggle label.
*
*/
LIB3270_EXPORT const char * lib3270_get_toggle_label(LIB3270_TOGGLE ix);
/**
* Revert toggle status.
*
* @param h Session handle.
* @param ix Toggle id.
*
* @return Toggle status.
*/
LIB3270_EXPORT int lib3270_toggle(H3270 *h, LIB3270_TOGGLE ix);
/**
* @brief IO flags.
*
*/
typedef enum _lib3270_io_event {
LIB3270_IO_FLAG_READ = 0x01,
LIB3270_IO_FLAG_EXCEPTION = 0x02,
LIB3270_IO_FLAG_WRITE = 0x04,
LIB3270_IO_FLAG_MASK = 0x07
} LIB3270_IO_FLAG;
LIB3270_EXPORT void * lib3270_add_poll_fd(H3270 *session, int fd, LIB3270_IO_FLAG flag, void(*call)(H3270 *, int, LIB3270_IO_FLAG, void *), void *userdata );
LIB3270_EXPORT void lib3270_remove_poll(H3270 *session, void *id);
LIB3270_EXPORT void lib3270_remove_poll_fd(H3270 *session, int fd);
LIB3270_EXPORT void lib3270_update_poll_fd(H3270 *session, int fd, LIB3270_IO_FLAG flag);
/** Callback table
*
* Structure with GUI unblocking I/O calls, used to replace the lib3270´s internal ones.
*
*/
struct lib3270_callbacks
{
unsigned short sz;
void * (*AddTimeOut)(H3270 *session, unsigned long interval_ms, void (*proc)(H3270 *session));
void (*RemoveTimeOut)(H3270 *session, void *timer);
void * (*add_poll)(H3270 *session, int fd, LIB3270_IO_FLAG flag, void(*proc)(H3270 *, int, LIB3270_IO_FLAG, void *), void *userdata);
void (*remove_poll)(H3270 *session, void *id);
int (*Wait)(H3270 *hSession, int seconds);
int (*event_dispatcher)(H3270 *session, int wait);
void (*ring_bell)(H3270 *session);
};
/**
* Register application Handlers.
*
* @param cbk Structure with the application I/O handles to set.
*
* @return 0 if ok, error code if not.
*
*/
int LIB3270_EXPORT lib3270_register_handlers(const struct lib3270_callbacks *cbk);
/**
* Register time handlers.
*
* @param add Callback for adding a timeout
* @param rm Callback for removing a timeout
*
*/
void LIB3270_EXPORT lib3270_register_time_handlers(void * (*add)(H3270 *session, unsigned long interval_ms, void (*proc)(H3270 *session)), void (*rm)(H3270 *session, void *timer));
void LIB3270_EXPORT lib3270_register_fd_handlers(void * (*add)(H3270 *session, int fd, LIB3270_IO_FLAG flag, void(*proc)(H3270 *, int, LIB3270_IO_FLAG, void *), void *userdata), void (*rm)(H3270 *, void *id));
/**
* Get program message.
*
* @see LIB3270_MESSAGE
*
* @param h Session handle.
*
* @return Latest program message.
*
*/
LIB3270_EXPORT LIB3270_MESSAGE lib3270_get_program_message(H3270 *h);
/**
* Get connected LU name.
*
* Get the name of the connected LU; the value is internal to lib3270 and
* should not be changed ou freed.
*
* @param h Session handle.
*
* @return conected LU name or NULL if not connected.
*
*/
LIB3270_EXPORT const char * lib3270_get_luname(H3270 *h);
LIB3270_EXPORT int lib3270_has_active_script(H3270 *h);
LIB3270_EXPORT int lib3270_get_typeahead(H3270 *h);
LIB3270_EXPORT int lib3270_get_undera(H3270 *h);
LIB3270_EXPORT int lib3270_get_oia_box_solid(H3270 *h);
LIB3270_EXPORT int lib3270_pconnected(H3270 *h);
LIB3270_EXPORT int lib3270_half_connected(H3270 *h);
LIB3270_EXPORT int lib3270_connected(H3270 *h);
LIB3270_EXPORT int lib3270_disconnected(H3270 *h);
LIB3270_EXPORT int lib3270_in_neither(H3270 *h);
LIB3270_EXPORT int lib3270_in_ansi(H3270 *h);
LIB3270_EXPORT int lib3270_in_3270(H3270 *h);
LIB3270_EXPORT int lib3270_in_sscp(H3270 *h);
LIB3270_EXPORT int lib3270_in_tn3270e(H3270 *h);
LIB3270_EXPORT int lib3270_in_e(H3270 *h);
LIB3270_EXPORT int lib3270_is_ready(H3270 *h);
LIB3270_EXPORT int lib3270_is_connected(H3270 *h);
LIB3270_EXPORT int lib3270_is_secure(H3270 *h);
LIB3270_EXPORT LIB3270_MESSAGE lib3270_lock_status(H3270 *h);
LIB3270_EXPORT LIB3270_SSL_STATE lib3270_get_secure(H3270 *session);
LIB3270_EXPORT long lib3270_get_SSL_verify_result(H3270 *session);
/**
* Call non gui function.
*
* Call informed function in a separate thread, keep gui main loop running until
* the function returns.
*
* @param callback Function to call.
* @param h Related session (for timer indicator)
* @param parm Parameter to be passed to the function.
*
*/
// LIB3270_EXPORT int lib3270_call_thread(int(*callback)(H3270 *h, void *), H3270 *h, void *parm);
/**
* Run main iteration.
*
* Run lib3270 internal iterations, check for network inputs, process signals.
*
* @param h Related session.
* @param wait Wait for signal if not available.
*
*/
LIB3270_EXPORT void lib3270_main_iterate(H3270 *h, int wait);
/**
* @brief Associate user data with 3270 session.
*
*/
LIB3270_EXPORT void lib3270_set_user_data(H3270 *h, void *ptr);
/**
* @brief Get associated user data.
*
*/
LIB3270_EXPORT void * lib3270_get_user_data(H3270 *h);
/**
* Wait for "N" seconds keeping main loop active.
*
* @param seconds Number of seconds to wait.
*
*/
LIB3270_EXPORT int lib3270_wait(H3270 *hSession, int seconds);
/**
* Wait "N" seconds for "ready" state.
*
* @param seconds Number of seconds to wait.
*
* @return 0 if ok, errno code if not.
*
*/
LIB3270_EXPORT int lib3270_wait_for_ready(H3270 *hSession, int seconds);
/**
* "beep" to notify user.
*
* If available play a sound signal do alert user.
*
* @param h Session handle.
*
*/
LIB3270_EXPORT void lib3270_ring_bell(H3270 *session);
/**
* Get lib3270's charset.
*
* @param h Session handle.
*
* @return String with current encoding.
*
*/
LIB3270_EXPORT const char * lib3270_get_display_charset(H3270 *session);
#define lib3270_get_charset(s) lib3270_get_display_charset(s)
LIB3270_EXPORT const char * lib3270_get_default_charset(void);
/**
* Get selected area.
*
* @param h Session Handle.
*
* @return selected text if available, or NULL. Release it with free()
*
*/
LIB3270_EXPORT char * lib3270_get_selected(H3270 *h);
LIB3270_EXPORT char * lib3270_cut_selected(H3270 *hSession);
LIB3270_EXPORT int lib3270_has_selection(H3270 *hSession);
/**
* Get all text inside the terminal.
*
* @param h Session Handle.
* @param offset Start position.
* @param len Text length or -1 to all text.
*
* @return Contents at position if available, or NULL. Release it with lib3270_free()
*
*/
LIB3270_EXPORT char * lib3270_get_text(H3270 *h, int offset, int len);
/**
* Get text at requested position
*
* @param h Session Handle.
* @param row Desired row.
* @param col Desired col.
* @param length Text length
*
* @return Contents at position if available, or NULL. Release it with lib3270_free()
*
*/
LIB3270_EXPORT char * lib3270_get_text_at(H3270 *h, int row, int col, int len);
/**
* Check for text at requested position
*
* @param h Session Handle.
* @param row Desired row.
* @param col Desired col.
* @param text Text to check.
*
* @return Test result from strcmp
*
*/
LIB3270_EXPORT int lib3270_cmp_text_at(H3270 *h, int row, int col, const char *text);
/**
* Get contents of the field at position.
*
* @param h Session Handle.
* @param baddr Reference position.
*
* @return Contents of the entire field, release it with lib3270_free()
*
*/
LIB3270_EXPORT char * lib3270_get_field_at(H3270 *h, int baddr);
/**
* Find the next unprotected field.
*
* @param hSession Session handle.
* @param baddr0 Search start addr (-1 to use current cursor position).
*
* @return address following the unprotected attribute byte, or 0 if no nonzero-width unprotected field can be found.
*
*/
LIB3270_EXPORT int lib3270_get_next_unprotected(H3270 *hSession, int baddr0);
/**
* @brief Check if the screen position is protected.
*
*/
LIB3270_EXPORT int lib3270_get_is_protected(H3270 *hSession, int baddr0);
/**
* Get Check if the screen position is protected.
*
* @param h Session Handle.
* @param row Desired row.
* @param col Desired col.
*
*/
LIB3270_EXPORT int lib3270_get_is_protected_at(H3270 *h, int row, int col);
/**
* Get address of the first blank.
*
* Get address of the first blank after the last nonblank in the
* field, or if the field is full, to the last character in the field.
*
* @param hSession Session handle.
* @param baddr Field address.
*
* @return address of the first blank or -1 if invalid.
*/
LIB3270_EXPORT int lib3270_get_field_end(H3270 *hSession, int baddr);
/**
* Find the buffer address of the field attribute for a given buffer address.
*
* @param h Session handle.
* @param addr Buffer address of the field.
*
* @return field address or -1 if the screen isn't formatted.
*
*/
LIB3270_EXPORT int lib3270_field_addr(H3270 *h, int baddr);
LIB3270_EXPORT int lib3270_field_attribute(H3270 *hSession, int baddr);
/**
* Get the length of the field at given buffer address.
*
* @param h Session handle.
* @param addr Buffer address of the field.
*
* @return field length.
*
*/
LIB3270_EXPORT int lib3270_field_length(H3270 *h, int baddr);
/**
* Get a terminal character and attribute.
*
* @param h Session Handle.
* @param baddr Element address ((element_row*cols)+element_col)
* @param c Pointer to character.
* @param attr Pointer to attribute.
*
* @return 0 if ok or error code.
*
*/
LIB3270_EXPORT int lib3270_get_element(H3270 *h, int baddr, unsigned char *c, unsigned short *attr);
/**
* Get field region
*
* @param h Session handle.
* @param baddr Reference position to get the field start/stop offsets.
* @param start return location for start of selection, as a character offset.
* @param end return location for end of selection, as a character offset.
*
* @return Non 0 if invalid
*
*/
LIB3270_EXPORT int lib3270_get_field_bounds(H3270 *hSession, int baddr, int *start, int *end);
LIB3270_EXPORT int lib3270_get_field_start(H3270 *hSession, int baddr);
LIB3270_EXPORT int lib3270_get_field_len(H3270 *hSession, int baddr);
LIB3270_EXPORT int lib3270_get_word_bounds(H3270 *hSession, int baddr, int *start, int *end);
LIB3270_EXPORT int lib3270_set_model(H3270 *hSession, const char *name);
LIB3270_EXPORT const char * lib3270_get_model(H3270 *session);
LIB3270_EXPORT int lib3270_get_model_number(H3270 *hSession);
LIB3270_EXPORT int lib3270_is_protected(H3270 *h, unsigned int baddr);
LIB3270_EXPORT int lib3270_is_protected_at(H3270 *h, unsigned int row, unsigned int col);
LIB3270_EXPORT int lib3270_action(H3270 *hSession, const char *name);
/**
*
* Overrides the default value for the unlock delay (the delay between the host unlocking the
* keyboard and lib3270 actually performing the unlock).
* The value is in milliseconds; use 0 to turn off the delay completely.
*
* @param session lib3270 session.
* @param Delay in milliseconds.
*
*/
LIB3270_EXPORT void lib3270_set_unlock_delay(H3270 *session, unsigned short delay);
/**
* Alloc/Realloc memory buffer.
*
* Allocate/reallocate an array.
*
* @param elsize Element size.
* @param nelem Number of elements in the array.
* @param ptr Pointer to the actual array.
*
* @return Clean buffer with size for the number of elements.
*
*/
LIB3270_EXPORT void * lib3270_calloc(int elsize, int nelem, void *ptr);
LIB3270_EXPORT void * lib3270_malloc(int len);
LIB3270_EXPORT void * lib3270_realloc(void *p, int len);
LIB3270_EXPORT void * lib3270_replace(void **p, void *ptr);
LIB3270_EXPORT void * lib3270_strdup(const char *str);
/**
* Release allocated memory.
*
* @param p Memory block to release (can be NULL)
*
* @return NULL
*/
LIB3270_EXPORT void * lib3270_free(void *p);
/**
* Get default session handle.
*
* @return Internal's lib3270 session handle.
*
*/
LIB3270_EXPORT H3270 * lib3270_get_default_session_handle(void);
/**
* Get resource string.
*
* @param first_element First element of resource path
* @param ... Resource path (ends with NULL)
*
* @return Resource string (Release with lib3270_free())
*
*/
LIB3270_EXPORT char * lib3270_get_resource_string(H3270 *hSession, const char *first_element, ...);
/**
* Get library version.
*
* @return Version of active library as string.
*
*/
LIB3270_EXPORT const char * lib3270_get_version(void);
/**
* Get source code revision.
*
* @return SVN revision of the current source code.
*
*/
LIB3270_EXPORT const char * lib3270_get_revision(void);
LIB3270_EXPORT char * lib3270_vsprintf(const char *fmt, va_list args);
LIB3270_EXPORT char * lib3270_strdup_printf(const char *fmt, ...);
LIB3270_EXPORT int lib3270_clear_operator_error(H3270 *hSession);
LIB3270_EXPORT void lib3270_set_options(H3270 *hSession, LIB3270_OPTION opt);
LIB3270_EXPORT int lib3270_set_color_type(H3270 *hSession, unsigned short colortype);
LIB3270_EXPORT unsigned short lib3270_get_color_type(H3270 *hSession);
LIB3270_EXPORT int lib3270_set_host_type(H3270 *hSession, const char *name);
LIB3270_EXPORT LIB3270_OPTION lib3270_parse_host_type(const char *name);
LIB3270_EXPORT const LIB3270_OPTION_ENTRY * lib3270_get_option_list(void);
LIB3270_EXPORT LIB3270_POINTER lib3270_get_pointer(H3270 *hSession, int baddr);
/**
* The host is TSO?
*
* @param hSession Session Handle
*
* @return Non zero if the host is TSO.
*
*/
LIB3270_EXPORT int lib3270_is_tso(H3270 *hSession);
#ifdef WIN32
LIB3270_EXPORT const char * lib3270_win32_strerror(int e);
LIB3270_EXPORT const char * lib3270_win32_local_charset(void);
#endif // WIn32
#ifdef __cplusplus
}
#endif
#endif // LIB3270_H_INCLUDED