Ported xdr-4.0-mingw5 back to Linux.
[portablexdr.git] / xdr_stdio.c
1 /* @(#)xdr_stdio.c      2.1 88/07/29 4.0 RPCSRC */
2 /*
3  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
4  * unrestricted use provided that this legend is included on all tape
5  * media and as a part of the software program in whole or part.  Users
6  * may copy or modify Sun RPC without charge, but are not authorized
7  * to license or distribute it to anyone else except as part of a product or
8  * program developed by the user.
9  * 
10  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
11  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
12  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
13  * 
14  * Sun RPC is provided with no support and without any obligation on the
15  * part of Sun Microsystems, Inc. to assist in its use, correction,
16  * modification or enhancement.
17  * 
18  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
19  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
20  * OR ANY PART THEREOF.
21  * 
22  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
23  * or profits or other special, indirect and consequential damages, even if
24  * Sun has been advised of the possibility of such damages.
25  * 
26  * Sun Microsystems, Inc.
27  * 2550 Garcia Avenue
28  * Mountain View, California  94043
29  */
30 #if !defined(lint) && defined(SCCSIDS)
31 static char sccsid[] = "@(#)xdr_stdio.c 1.16 87/08/11 Copyr 1984 Sun Micro";
32 #endif
33
34 /*
35  * xdr_stdio.c, XDR implementation on standard i/o file.
36  *
37  * Copyright (C) 1984, Sun Microsystems, Inc.
38  *
39  * This set of routines implements a XDR on a stdio stream.
40  * XDR_ENCODE serializes onto the stream, XDR_DECODE de-serializes
41  * from the stream.
42  */
43
44 #include <config.h>
45
46 #include <stdio.h>
47
48 #ifdef HAVE_WINSOCK2_H
49 #include <winsock2.h>
50 #endif
51
52 #ifdef HAVE_ARPA_INET_H
53 #include <arpa/inet.h>
54 #endif
55
56 #include <rpc/types.h>
57 #include <rpc/xdr.h>
58
59 #if defined(__CYGWIN32__) || defined(__MINGW32__)
60 #include <stdlib.h>
61 #include <fcntl.h>
62 unsigned int _CRT_fmode = _O_BINARY;
63 #endif
64
65 static bool_t   xdrstdio_getlong();
66 static bool_t   xdrstdio_putlong();
67 static bool_t   xdrstdio_getbytes();
68 static bool_t   xdrstdio_putbytes();
69 static u_int    xdrstdio_getpos();
70 static bool_t   xdrstdio_setpos();
71 static long *   xdrstdio_inline();
72 static void     xdrstdio_destroy();
73
74 /*
75  * Ops vector for stdio type XDR
76  */
77 static struct xdr_ops   xdrstdio_ops = {
78         xdrstdio_getlong,       /* deseraialize a long int */
79         xdrstdio_putlong,       /* seraialize a long int */
80         xdrstdio_getbytes,      /* deserialize counted bytes */
81         xdrstdio_putbytes,      /* serialize counted bytes */
82         xdrstdio_getpos,        /* get offset in the stream */
83         xdrstdio_setpos,        /* set offset in the stream */
84         xdrstdio_inline,        /* prime stream for inline macros */
85         xdrstdio_destroy        /* destroy stream */
86 };
87
88 /*
89  * Initialize a stdio xdr stream.
90  * Sets the xdr stream handle xdrs for use on the stream file.
91  * Operation flag is set to op.
92  */
93 void
94 xdrstdio_create(xdrs, file, op)
95         register XDR *xdrs;
96         FILE *file;
97         enum xdr_op op;
98 {
99
100         xdrs->x_op = op;
101         xdrs->x_ops = &xdrstdio_ops;
102         xdrs->x_private = (caddr_t)file;
103         xdrs->x_handy = 0;
104         xdrs->x_base = 0;
105 }
106
107 /*
108  * Destroy a stdio xdr stream.
109  * Cleans up the xdr stream handle xdrs previously set up by xdrstdio_create.
110  */
111 static void
112 xdrstdio_destroy(xdrs)
113         register XDR *xdrs;
114 {
115         (void)fflush((FILE *)xdrs->x_private);
116         /* xx should we close the file ?? */
117 };
118
119 static bool_t
120 xdrstdio_getlong(xdrs, lp)
121         XDR *xdrs;
122         register long *lp;
123 {
124
125         if (fread((caddr_t)lp, sizeof(long), 1, (FILE *)xdrs->x_private) != 1)
126                 return (FALSE);
127 #ifndef mc68000
128         *lp = ntohl(*lp);
129 #endif
130         return (TRUE);
131 }
132
133 static bool_t
134 xdrstdio_putlong(xdrs, lp)
135         XDR *xdrs;
136         long *lp;
137 {
138
139 #ifndef mc68000
140         long mycopy = htonl(*lp);
141         lp = &mycopy;
142 #endif
143         if (fwrite((caddr_t)lp, sizeof(long), 1, (FILE *)xdrs->x_private) != 1)
144                 return (FALSE);
145         return (TRUE);
146 }
147
148 static bool_t
149 xdrstdio_getbytes(xdrs, addr, len)
150         XDR *xdrs;
151         caddr_t addr;
152         u_int len;
153 {
154
155         if ((len != 0) && (fread(addr, (int)len, 1, (FILE *)xdrs->x_private) != 1))
156                 return (FALSE);
157         return (TRUE);
158 }
159
160 static bool_t
161 xdrstdio_putbytes(xdrs, addr, len)
162         XDR *xdrs;
163         caddr_t addr;
164         u_int len;
165 {
166
167         if ((len != 0) && (fwrite(addr, (int)len, 1, (FILE *)xdrs->x_private) != 1))
168                 return (FALSE);
169         return (TRUE);
170 }
171
172 static u_int
173 xdrstdio_getpos(xdrs)
174         XDR *xdrs;
175 {
176
177         return ((u_int) ftell((FILE *)xdrs->x_private));
178 }
179
180 static bool_t
181 xdrstdio_setpos(xdrs, pos) 
182         XDR *xdrs;
183         u_int pos;
184
185
186         return ((fseek((FILE *)xdrs->x_private, (long)pos, 0) < 0) ?
187                 FALSE : TRUE);
188 }
189
190 static long *
191 xdrstdio_inline(xdrs, len)
192         XDR *xdrs;
193         u_int len;
194 {
195
196         /*
197          * Must do some work to implement this: must insure
198          * enough data in the underlying stdio buffer,
199          * that the buffer is aligned so that we can indirect through a
200          * long *, and stuff this pointer in xdrs->x_buf.  Doing
201          * a fread or fwrite to a scratch buffer would defeat
202          * most of the gains to be had here and require storage
203          * management on this buffer, so we don't do this.
204          */
205         return (NULL);
206 }