summaryrefslogtreecommitdiff
path: root/xts5/src/libXtTest/pshpop.c
blob: 8051f61e023d2ea8cb3ddc2f95c491a28b60faef (plain)
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
/*
Copyright (c) 2005 X.Org Foundation L.L.C.

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
/*
*
* Copyright (c) 2001 The Open Group
* Copyright (c) Applied Testing and Technology, Inc. 1993, 1994, 1995
* Copyright (c) 88open Consortium, Ltd. 1990, 1991, 1992, 1993
* All Rights Reserved.
*
* Project: VSW5
*
* File: xts5/src/lib/libXtTest/pshpop.c
*
* Description:
*	This file contains code to manipulate stdin and stderr
*
* Modifications:
* $Log: pshpop.c,v $
* Revision 1.3  2005-11-03 08:42:02  jmichael
* clean up all vsw5 paths to use xts5 instead.
*
* Revision 1.2  2005/04/21 09:40:42  ajosey
* resync to VSW5.1.5
*
* Revision 8.2  2005/01/20 15:59:56  gwc
* Updated copyright notice
*
* Revision 8.1  2001/02/05 17:36:09  vsx
* use a more portable method to redirect stdout and stderr
*
* Revision 8.0  1998/12/23 23:25:40  mar
* Branch point for Release 5.0.2
*
* Revision 7.0  1998/10/30 22:43:54  mar
* Branch point for Release 5.0.2b1
*
* Revision 6.0  1998/03/02 05:17:59  tbr
* Branch point for Release 5.0.1
*
* Revision 5.0  1998/01/26 03:14:31  tbr
* Branch point for Release 5.0.1b1
*
* Revision 4.0  1995/12/15 08:45:22  tbr
* Branch point for Release 5.0.0
*
* Revision 3.2  1995/12/15  00:43:16  andy
* Prepare for GA Release
*
*/

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <XtTest.h>
#include <fcntl.h>

/*error messages formatted here*/
char ebuf[4096];

static	int	Dup_stdout = -1;	/* Duplicate of stdout fd */
static	int	Dup_stderr = -1;	/* Duplicate of stderr fd */

/* Internal routine to reopen the fd for stdout or stderr */

static int
reopen(pathname, omode, fp)
char *pathname;
int omode;
FILE *fp;
{
	int newfd;

	newfd = open(pathname, omode|O_CREAT|O_TRUNC, S_IRWXU|S_IRWXG|S_IRWXO);
	if (newfd == -1)
		return -1;

	if (fflush(fp) != 0) {
		close(newfd);
		return -1;
	}

	if (dup2(newfd, fileno(fp)) == -1) {
		close(newfd);
		return -1;
	}

	close(newfd);
	return 0;
}

/*
** push_stdout
**	This redirects stdout to a file, but saves a copy
**	of the file descriptor attached to stdout so we can
**	restore it later.
**
** Arguments
**	file	Filename to open stdout to
**	mode	Unused
*/

int push_stdout(file,mode)
char	*file;
char	*mode;
{
	char	pathname[4096];

	if ((Dup_stdout = dup(fileno(stdout))) == -1){
		sprintf(ebuf, "ERROR: push_stdout: dup of fileno(stdout) failed");
		tet_infoline(ebuf);
		tet_result(TET_UNRESOLVED);
		return -1;
	}

	strcpy(pathname, "/tmp/");
	strcat(pathname,file);

	if (reopen(pathname,O_WRONLY,stdout) != 0) {
		dup2(Dup_stdout,fileno(stdout));
		sprintf(ebuf, "ERROR: push_stdout: could not reopen stdout");
		tet_infoline(ebuf);
		tet_result(TET_UNRESOLVED);
		return -1;
	}
	return 0;
}

/*
** pop_stdout
**	Reset stdout back to what it used to point to.
**
** Assumes
**	You want stdout opened for writing...
*/

void pop_stdout()
{
	if (Dup_stdout == -1) {
		sprintf(ebuf, "ERROR: pop_stdout: push_stdout never called");
		tet_infoline(ebuf);
		tet_result(TET_UNRESOLVED);
		return;
	}

	fflush(stdout);
	if (dup2(Dup_stdout,fileno(stdout)) == -1) {
		sprintf(ebuf, "ERROR: pop_stdout: could not restore stdout");
		tet_infoline(ebuf);
		tet_result(TET_UNRESOLVED);
		return;
	}

	close(Dup_stdout);
	Dup_stdout = -1;
}



/*
** push_stderr
**	This redirects stderr to a file, but saves a copy
**	of the file descriptor attached to stderr so we can
**	restore it later.
**
** Arguments
**	file	Filename to open stderr to
**	mode	Unused
*/

int push_stderr(file,mode)
char	*file;
char	*mode;
{
	char	pathname[4096];

	if (Dup_stderr != -1)  {
		sprintf(ebuf, "ERROR: push_stderr: stderr has already been pushed\n");
		tet_infoline(ebuf);
		tet_result(TET_UNRESOLVED);
		return -1;
	}

	if ((Dup_stderr = dup(fileno(stderr))) == -1) {
		sprintf(ebuf, "ERROR: push_stderr: dup of fileno(stderr) failed");
		tet_infoline(ebuf);
		tet_result(TET_UNRESOLVED);
		return -1;
	}

	strcpy(pathname, "/tmp/");
	strcat(pathname,file);

	if (reopen(pathname,O_WRONLY,stderr) != 0) {
		dup2(Dup_stderr,fileno(stderr));
		sprintf(ebuf, "ERROR: push_stderr: could not reopen stderr");
		tet_infoline(ebuf);
		tet_result(TET_UNRESOLVED);
		return -1;
	}
	return 0;
}

/*
** pop_stderr
**	Reset stderr back to what it used to point to.
**
** Assumes
**	You want stderr opened for writing...
*/

void pop_stderr()
{
	if (Dup_stderr == -1) {
		sprintf(ebuf, "ERROR: pop_stderr: push_stderr never called");
		tet_infoline(ebuf);
		tet_result(TET_UNRESOLVED);
		return;
	}

	fflush(stderr);
	if (dup2(Dup_stderr,fileno(stderr)) == -1) {
		sprintf(ebuf, "ERROR: pop_stderr: could not restore stderr");
		tet_infoline(ebuf);
		tet_result(TET_UNRESOLVED);
		return;
	}

	close(Dup_stderr);
	Dup_stderr = -1;
}

/***************************************************************************/
/* push_to_devnull() redirects the stdout and stderr to /dev/null          */
/* restore_from_devnull() restores the stdout and stderr                   */
/***************************************************************************/ 

void push_to_devnull(file,mode)
char    *file;
char    *mode;
{
	if ((Dup_stdout = dup(fileno(stdout))) == -1) {
		sprintf(ebuf, "ERROR: push_to_devnull: dup of fileno(stdout) failed");
		tet_infoline(ebuf);
		tet_result(TET_UNRESOLVED);
		return;
	}

	if (reopen(file,O_WRONLY,stdout) != 0) {
		dup2(Dup_stdout,fileno(stdout));
		sprintf(ebuf, "ERROR: push_to_devnull: could not reopen stdout");
		tet_infoline(ebuf);
		tet_result(TET_UNRESOLVED);
		return;
	}

	if (Dup_stderr != -1) {
		sprintf(ebuf, "ERROR: push_to_devnull: stderr has already been pushed\n");
		tet_infoline(ebuf);
		tet_result(TET_UNRESOLVED);
		return;
	}

	if ((Dup_stderr = dup(fileno(stderr))) == -1) {
		sprintf(ebuf, "ERROR: push_to_devnull: dup of fileno(stderr) failed");
		tet_infoline(ebuf);
		tet_result(TET_UNRESOLVED);
		return;
	}

	if (reopen(file,O_WRONLY,stderr) != 0) {
		dup2(Dup_stderr,fileno(stderr));
		sprintf(ebuf, "ERROR: push_to_devnull: could not reopen stderr");
		tet_infoline(ebuf);
		tet_result(TET_UNRESOLVED);
		return;
	}
}

int restore_from_devnull()
{
	if (Dup_stdout == -1) {
			sprintf(ebuf, "ERROR: restore_from_devnull: push_to_devnull never called");
		tet_infoline(ebuf);
		tet_result(TET_UNRESOLVED);
		return -1;
	}

	fflush(stdout);
	if (dup2(Dup_stdout,fileno(stdout)) == -1) {
		sprintf(ebuf, "ERROR: restore_from_devnull: could not restore stdout");
		tet_infoline(ebuf);
		tet_result(TET_UNRESOLVED);
		return -1;
	}

	close(Dup_stdout);
	Dup_stdout = -1;

	if (Dup_stderr == -1) {
		sprintf(ebuf, "ERROR: restore_from_devnull: push_to_devnull never called");
		tet_infoline(ebuf);
		tet_result(TET_UNRESOLVED);
		return -1;
	}

	fflush(stderr);
	if (dup2(Dup_stderr,fileno(stderr)) == -1) {
		sprintf(ebuf, "ERROR: restore_from_devnull: could not restore stderr");
		tet_infoline(ebuf);
		tet_result(TET_UNRESOLVED);
		return -1;
	}

	close(Dup_stderr);
	Dup_stderr = -1;

	return 0;
}