summaryrefslogtreecommitdiffstats
path: root/private/crt32/stdio/fdopen.c
blob: 25681f2571a114b8b022d9f00863219c95cae6da (plain) (blame)
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
/***
*fdopen.c - open a file descriptor as stream
*
*	Copyright (c) 1985-1992, Microsoft Corporation. All rights reserved.
*
*Purpose:
*	defines _fdopen() - opens a file descriptor as a stream, thus allowing
*	buffering, etc.
*
*Revision History:
*	09-02-83  RN	initial version
*	03-02-87  JCR	added support for 'b' and 't' embedded in mode strings
*	09-28-87  JCR	Corrected _iob2 indexing (now uses _iob_index() macro).
*	11-03-87  JCR	Multi-thread support
*	12-11-87  JCR	Added "_LOAD_DS" to declaration
*	05-31-88  PHG	Merged DLL and normal versions
*	06-06-88  JCR	Optimized _iob2 references
*	11-20-89  GJF	Fixed copyright, indents. Added const to type of mode.
*	02-15-90  GJF	_iob[], _iob2[] merge.
*	03-16-90  GJF	Replaced _LOAD_DS with _CALLTYPE1, added #include
*			<cruntime.h> and removed #include <register.h>.
*	07-23-90  SBM	Replaced <assertm.h> by <assert.h>
*	08-24-90  SBM	Added support for 'c' and 'n' flags
*	10-02-90  GJF	New-style function declarator.
*	01-21-91  GJF	ANSI naming.
*	02-14-92  GJF	Replaced _nfile with _nhandle for Win32.
*	05-01-92  DJM	Replaced _nfile with OPEN_MAX for POSIX.
*	08-03-92  GJF	Function name must be "fdopen" for POSIX.
*
*******************************************************************************/

#include <cruntime.h>
#include <stdio.h>
#include <file2.h>
#include <assert.h>
#include <internal.h>
#include <os2dll.h>
#ifdef _POSIX_
#include <limits.h>
#endif

/***
*FILE *_fdopen(filedes, mode) - open a file descriptor as a stream
*
*Purpose:
*	associates a stream with a file handle, thus allowing buffering, etc.
*	The mode must be specified and must be compatible with the mode
*	the file was opened with in the low level open.
*
*Entry:
*	int filedes - handle referring to open file
*	char *mode - file mode to use ("r", "w", "a", etc.)
*
*Exit:
*	returns stream pointer and sets FILE struct fields if successful
*	returns NULL if fails
*
*Exceptions:
*
*******************************************************************************/

#ifdef	_POSIX_
FILE * _CALLTYPE1 fdopen (
#else
FILE * _CALLTYPE1 _fdopen (
#endif
	int filedes,
	REG2 const char *mode
	)
{
	REG1 FILE *stream;
	int whileflag, tbflag, cnflag;
#ifdef MTHREAD
	int index;
#endif

	assert(mode != NULL);

#ifdef	_WIN32_
	assert(filedes < _nhandle);

	if ( (unsigned)filedes >= (unsigned)_nhandle )
		return(NULL);
#else

#ifdef _POSIX_
	assert(filedes < OPEN_MAX);

	if (filedes < 0 || filedes >= OPEN_MAX)
		return(NULL);
#else
	assert(filedes < _nfile);

	if (filedes < 0 || filedes >= _nfile)
		return(NULL);

#endif  /* _POSIX_ */

#endif  /* _WIN32_ */


	/* Find a free stream; stream is returned 'locked'. */

	if ((stream = _getstream()) == NULL)
		return(NULL);

#ifdef MTHREAD
	index = _iob_index(stream);
#endif

	/* First character must be 'r', 'w', or 'a'. */

	switch (*mode) {
	case 'r':
		stream->_flag = _IOREAD;
		break;
	case 'w':
	case 'a':
		stream->_flag = _IOWRT;
		break;
	default:
		stream = NULL;	/* error */
		goto done;
		break;
	}

	/* There can be up to three more optional characters:
	   (1) A single '+' character,
	   (2) One of 'b' and 't' and
	   (3) One of 'c' and 'n'.

	   Note that currently, the 't' and 'b' flags are syntax checked
	   but ignored.  'c' and 'n', however, are correctly supported.
	*/

	whileflag=1;
	tbflag=cnflag=0;
	stream->_flag |= _commode;

	while(*++mode && whileflag)
		switch(*mode) {

		case '+':
			if (stream->_flag & _IORW)
				whileflag=0;
			else {
				stream->_flag |= _IORW;
				stream->_flag &= ~(_IOREAD | _IOWRT);
			}
			break;

		case 'b':
		case 't':
			if (tbflag)
				whileflag=0;
			else
				tbflag=1;
			break;

		case 'c':
			if (cnflag)
				whileflag = 0;
			else {
				cnflag = 1;
				stream->_flag |= _IOCOMMIT;
			}
			break;

		case 'n':
			if (cnflag)
				whileflag = 0;
			else {
				cnflag = 1;
				stream->_flag &= ~_IOCOMMIT;
			}
			break;

		default:
			whileflag=0;
			break;
		}

	_cflush++;  /* force library pre-termination procedure */
	stream->_file = filedes;

/* Common return */

done:
	_unlock_str(index);
	return(stream);
}