2a8432a00a15d4cd1d70cd4bb00f8ec153d8fb4c
[oweals/cde.git] / cde / lib / tt / lib / util / tt_xdr_utils.C
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 //%%  (c) Copyright 1993, 1994 Hewlett-Packard Company                  
24 //%%  (c) Copyright 1993, 1994 International Business Machines Corp.    
25 //%%  (c) Copyright 1993, 1994 Sun Microsystems, Inc.                   
26 //%%  (c) Copyright 1993, 1994 Novell, Inc.                             
27 //%%  $XConsortium: tt_xdr_utils.C /main/6 1996/08/29 18:08:20 drk $                                                    
28 /*
29  *
30  * tt_xdr_utils.cc
31  *
32  * Copyright (c) 1990 by Sun Microsystems, Inc.
33  */
34 #if defined(ultrix)
35 #include <rpc/types.h>
36 #define bool_t int
37 #endif
38 #include <rpc/rpc.h>
39 #include <util/tt_xdr_utils.h>
40 #include <memory.h>
41 #include "tt_options.h"
42
43 typedef bool_t (*local_xdrproc_t)(XDR *, caddr_t *);
44
45 #ifndef OPT_XDR_LONG_TYPE
46 # define OPT_XDR_LONG_TYPE      long
47 #endif
48 static bool_t
49 tt_x_putlong(XDR *xp, OPT_XDR_LONG_TYPE *)
50 {
51     xp->x_handy += 4;
52     return TRUE;
53 }
54
55 static bool_t
56 /* The second argument is caddr_t and not void * in both SUN, DEC headers
57  * files.
58  * The third agrument is also wrong. Both SUN and DEC system header files
59  * expect int instead of u_int.
60  */
61 tt_x_putbytes(XDR *xp, caddr_t, int len)
62 {
63     xp->x_handy += RNDUP (len);
64     return TRUE;
65 }
66
67 #if defined(ultrix) || defined(__osf__)
68 static int*
69 #else
70 static long *
71 #endif
72 tt_x_inline(XDR *xp, int len)
73 {
74         /* Be paranoid -- some code really expects inline to
75          * always succeed, so we keep a small buffer around
76          * just in case.  Not too paranoid, though -- it's
77          * legal to not support inline!
78          */
79     /* It is better to promote len to caddr_t than demote x_base to
80        int for 64 bit arch.
81     */
82     if (len > 0 && (caddr_t) len < xp->x_base) {
83         xp->x_handy += RNDUP (len);
84 #if defined(ultrix) || defined(__osf__)
85         return (int *) xp->x_private;
86 #else
87         return (long *) xp->x_private;
88 #endif
89     } else
90         return 0;
91 }
92
93
94 unsigned long
95 _tt_xdr_sizeof(xdrproc_t f, void *data)
96 {
97         _Tt_xdr_size_stream x;
98
99         if ((*(local_xdrproc_t)f) ((XDR *)x, (caddr_t *)data) == TRUE) {
100                 return x.getsize();
101         } else {
102                 return 0;
103         }
104 }
105
106 _Tt_xdr_size_stream::
107 _Tt_xdr_size_stream() {
108         memset ((char *)&ops, 0, sizeof ops);
109 #if defined(OPT_BUG_SUNOS_4) || defined(OPT_BUG_HPUX)
110         ops.x_putlong = (int (*)(...))tt_x_putlong;
111         ops.x_putbytes = (int (*)(...))tt_x_putbytes;
112         ops.x_inline = (long *(*)(...))tt_x_inline;
113 #elif defined(OPT_BUG_AIX)
114         ops.x_putlong = (int (*)(XDR *, long *))tt_x_putlong;
115         ops.x_putbytes = (int (*)(XDR *, caddr_t, u_int))tt_x_putbytes;
116         ops.x_inline = (long *(*)(XDR *, u_int))tt_x_inline;
117 #elif defined(OPT_BUG_SUNOS_5)
118         ops.x_putlong = tt_x_putlong;
119         ops.x_putbytes = (bool_t (*)(XDR *, caddr_t, int))tt_x_putbytes;
120         ops.x_inline = tt_x_inline;
121 #elif defined(CRAY)
122         ops.x_putlong = tt_x_putlong;
123         ops.x_putbytes = tt_x_putbytes;
124         ops.x_inline = (inline_t *(*)(...))tt_x_inline;
125 #elif defined(OPT_BUG_USL) || defined(OPT_BUG_UXP)
126         ops.x_putlong = tt_x_putlong;
127         ops.x_putbytes = (bool_t (*)(XDR *, caddr_t, u_int))  tt_x_putbytes;
128 #if defined(OPT_BUG_UW_1)
129         ops.x_inline = (long *(*)(struct __XDR *, const int)) tt_x_inline;
130 #else
131         ops.x_inline = (long *(*)(struct XDR *, int)) tt_x_inline;
132 #endif /* OPT_BUG_UW1 */
133 #else
134         ops.x_putlong = tt_x_putlong;
135         ops.x_putbytes = tt_x_putbytes;
136         ops.x_inline = tt_x_inline;
137 #endif  
138         xdrstream.x_op = XDR_ENCODE;
139         xdrstream.x_ops = &ops;
140         xdrstream.x_handy = 0;
141         xdrstream.x_private = (caddr_t) buf;
142         xdrstream.x_base = (caddr_t) sizeof buf;
143 }
144
145 _Tt_xdr_size_stream::
146 operator XDR *() {
147         return(&xdrstream);
148 }