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
|
/*
* Copyright 1990, 1991 by the Massachusetts Institute of Technology and
* UniSoft Group Limited.
*
* Permission to use, copy, modify, distribute, and sell this software and
* its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appear in all copies and that
* both that copyright notice and this permission notice appear in
* supporting documentation, and that the names of MIT and UniSoft not be
* used in advertising or publicity pertaining to distribution of the
* software without specific, written prior permission. MIT and UniSoft
* make no representations about the suitability of this software for any
* purpose. It is provided "as is" without express or implied warranty.
*
* $XConsortium$
*/
/*
* ***************************************************************************
* Copyright 1988 by Sequent Computer Systems, Inc., Portland, Oregon *
* *
* *
* All Rights Reserved *
* *
* Permission to use, copy, modify, and distribute this software and its *
* documentation for any purpose and without fee is hereby granted, *
* provided that the above copyright notice appears in all copies and that *
* both that copyright notice and this permission notice appear in *
* supporting documentation, and that the name of Sequent not be used *
* in advertising or publicity pertaining to distribution or use of the *
* software without specific, written prior permission. *
* *
* SEQUENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING *
* ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL *
* SEQUENT BE LIABLE FOR ANY SPECIAL, 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. *
* ***************************************************************************
*/
/*
* $Header: XstlibInt.h 1.23 89/04/17 $
*/
#include "Xstlib.h"
#include <stdio.h>
#include <errno.h>
#ifndef NULL
#define NULL 0
#endif
void Copy_Padded_String16();
void Copy_Padded_String8();
void SendIt();
void Send_String16();
void Send_TextItem16();
void Send_TextItem8();
void Send_Value_List();
unsigned char unpack1();
unsigned short unpack2();
unsigned long unpack4();
void pack1();
void pack2();
void pack4();
void packpad();
void XstIOError();
int Xst_Read();
void squeeze_me_in();
/* 128 bytes per reply plus 32736 longwords for reply data (just big enough
to do GetRootImage on NCD terminal) */
#define OBUFSIZE (4*32768+128) /* Output buffer size (for sending on the wire) */
#define IBUFSIZE OBUFSIZE /* input buffer size (max reply size) */
/* the following magic number makes the GetImage reply able to be shown */
/* this is a temporary quick fix */
#define PRTBUFSIZ 1024 /* Print buffer size (for Show_* routines) */
#define XTESTKNOBS "XTestKnobs" /* file to change default test
reporting parameters */
#define SERVER_DEF "" /* the X server */
/*
* Macros for sending messages to the display server via the
* 'Display' structure buffer
*
*/
#define send1(cl,val) *((Get_Display(cl)->bufptr)++) = (unsigned char) val
#define send2(cl,val) pack2(&(Get_Display(cl)->bufptr),(short)val,Xst_clients[cl].cl_swap)
#define send4(cl,val) pack4(&(Get_Display(cl)->bufptr),(long)val,Xst_clients[cl].cl_swap)
#define send2_lsb(cl,val) pack2_lsb(&(Get_Display(cl)->bufptr),(short)val)
#define sendpad(cl,cnt) bzero(Get_Display(cl)->bufptr,cnt);\
Get_Display(cl)->bufptr += cnt
/*
* Defines used in Show_* for creating a print buffer.
*/
#define BPRINTF1(fmt) Log_Debug2(fmt);
#define VBPRINTF1(fmt) Log_Debug3(fmt);
#define BPRINTF2(fmt,var) Log_Debug2((fmt),(var));
#define VBPRINTF2(fmt,var) Log_Debug3((fmt),(var));
#define FORMAT8 8
#define FORMAT16 16
#define FORMAT32 32
#define FORMATtimecoord 1
#define FORMATrgb 2
#define FORMATpoint 3
#define FORMATrectangle 4
#define FORMATarc 5
#define FORMATcoloritem 6
#define FORMATfontprop 7
#define FORMATcharinfo 9
/*
* Defines used to indicate unimplemented functions - their
* appearance in the log file indicates use of a portion of
* a library routine which has not been completely fleshed out.
*/
#define CANT_MAKE(structname,eltname) \
{\
char ebuf[132];\
sprintf(ebuf,"\tCANT_MAKE (%s->%s)\n",structname,eltname);\
Log_Debug(ebuf);\
}
#define CANT_SEND(structname,eltname) \
{\
char ebuf[132];\
sprintf(ebuf,"\tCANT_SEND (%s->%s)\n",structname,eltname);\
Log_Debug(ebuf);\
}
#define CANT_SHOW(structname,eltname) \
{\
char ebuf[132];\
sprintf(ebuf,"\tCANT_SHOW (%s->%s)\n",structname,eltname);\
Log_Debug(ebuf);\
}
/*
* Safety net for all defaults in switch statements - this indicates
* an internal error in the library
*/
#define DEFAULT_ERROR \
{\
char ebuf[132];\
sprintf(ebuf,"\tDEFAULT_ERROR(file = %s, line = %d)\n",__FILE__,__LINE__);\
Log_Msg(ebuf);\
Delete();\
}
/*
* Externs for test-wide globals
*/
extern char *Xst_server_node; /* the X server */
extern int Xst_required_byte_sex;/* byte sex wanted */
extern int Xst_timeout_value; /* seconds that Expect will wait */
extern int Xst_visual_check; /* seconds to delay at Visual_Check calls */
extern int Xst_byte_sex; /* client byte sex for this connection */
extern int Xst_error_count; /* number of calls to Log_Error */
extern int Xst_delete_count; /* number of calls to Log_Del */
extern int Xst_untested_count; /* indicates to Log_Close that Untested called */
extern char *Xst_def_font8; /* default 8-bit font to use */
extern char *Xst_def_font16; /* default 16-bit font to use */
extern int Xst_protocol_version;
extern int Xst_protocol_revision;
extern int Xst_override;
/*
* Timer assignments
*/
#define EXPECT_TIMER_ID 1
#define VISUAL_CHECK_TIMER 2
#define CONNECT_TIMER_ID 3
|