2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part. Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
7 * program developed by the user or with the express written consent of
8 * Sun Microsystems, Inc.
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.
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.
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.
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.
26 * Sun Microsystems, Inc.
28 * Mountain View, California 94043
32 * From: @(#)rpc_cout.c 1.13 89/02/22 (C) 1987 SMI
38 * rpc_cout.c, XDR routine outputter for the RPC protocol compiler
43 #include "rpc_parse.h"
47 static void emit_enum(definition
*def
);
48 static void emit_program(definition
*def
);
49 static void emit_union(definition
*def
);
50 static void emit_struct(definition
*def
);
51 static void emit_typedef(definition
*def
);
52 static int findtype(const definition
*def
, const char *type
);
53 static int undefined(const char *type
);
54 static void print_generic_header(const char *procname
, int pointerp
);
55 static void print_ifopen(int indent
, const char *name
);
56 static void print_ifarg(const char *arg
);
57 static void print_ifsizeof(const char *prefix
, const char *type
);
58 static void print_ifclose(int indent
);
59 static void print_ifstat(int indent
, const char *prefix
, const char *type
,
60 relation rel
, const char *amax
,
61 const char *objname
, const char *name
);
62 static void print_stat(int indent
, declaration
*dec
);
63 static void print_header(definition
*def
);
64 static void print_trailer(void);
65 static char *upcase(const char *str
);
68 * Emit the C-routine for the given definition
73 if (def
->def_kind
== DEF_CONST
) {
76 if (def
->def_kind
== DEF_PROGRAM
) {
80 if(def
->def_kind
== DEF_TYPEDEF
)
82 /* now we need to handle declarations like
83 struct typedef foo foo;
84 since we dont want this to be expanded into 2 calls to xdr_foo */
86 if(strcmp(def
->def
.ty
.old_type
,def
->def_name
)==0)
91 switch (def
->def_kind
) {
111 findtype(const definition
*def
, const char *type
)
114 if (def
->def_kind
== DEF_PROGRAM
|| def
->def_kind
== DEF_CONST
) {
117 return (streq(def
->def_name
, type
));
122 undefined(const char *type
)
126 def
= (definition
*) FINDVAL(defined
, type
, findtype
);
129 return (def
== NULL
);
134 print_generic_header(const char *procname
, int pointerp
)
137 f_print(fout
, "bool_t\n");
139 f_print(fout
, "xdr_%s(", procname
);
140 f_print(fout
, "XDR *xdrs, ");
141 f_print(fout
, "%s ", procname
);
144 f_print(fout
, "objp)\n{\n\n");
146 f_print(fout
, "xdr_%s(xdrs, objp)\n", procname
);
147 f_print(fout
, "\tXDR *xdrs;\n");
148 f_print(fout
, "\t%s ", procname
);
151 f_print(fout
, "objp;\n{\n\n");
156 print_header(definition
*def
)
165 print_generic_header( def
->def_name
,
166 def
->def_kind
!= DEF_TYPEDEF
||
167 !isvectordef(def
->def
.ty
.old_type
, def
->def
.ty
.rel
));
169 /* Now add Inline support */
174 /*May cause lint to complain. but ... */
175 f_print(fout
, "\t register long *buf;\n\n");
180 print_prog_header(proc_list
*plist
)
182 print_generic_header( plist
->args
.argname
, 1 );
188 f_print(fout
, "\treturn (TRUE);\n");
189 f_print(fout
, "}\n");
194 print_ifopen(int indent
, const char *name
)
196 tabify(fout
, indent
);
197 f_print(fout
, " if (!xdr_%s(xdrs", name
);
201 print_ifarg(const char *arg
)
203 f_print(fout
, ", %s", arg
);
207 print_ifsizeof(const char *prefix
, const char *type
)
209 if (streq(type
, "bool")) {
210 f_print(fout
, ", sizeof(bool_t), (xdrproc_t)xdr_bool");
213 f_print(fout
, ", sizeof(");
214 if (undefined(type
) && prefix
) {
215 f_print(fout
, "%s ", prefix
);
217 f_print(fout
, "%s), (xdrproc_t)xdr_%s", type
, type
);
222 print_ifclose(int indent
)
224 f_print(fout
, ")) {\n");
225 tabify(fout
, indent
);
226 f_print(fout
, "\t return (FALSE);\n");
227 tabify(fout
, indent
);
228 f_print(fout
, " }\n");
232 print_ifstat(int indent
, const char *prefix
, const char *type
, relation rel
,
233 const char *amax
, const char *objname
, const char *name
)
235 const char *alt
= NULL
;
239 print_ifopen(indent
, "pointer");
240 print_ifarg("(char **)");
241 f_print(fout
, "%s", objname
);
242 print_ifsizeof(prefix
, type
);
245 if (streq(type
, "string")) {
247 } else if (streq(type
, "opaque")) {
251 print_ifopen(indent
, alt
);
252 print_ifarg(objname
);
254 print_ifopen(indent
, "vector");
255 print_ifarg("(char *)");
256 f_print(fout
, "%s", objname
);
260 print_ifsizeof(prefix
, type
);
264 if (streq(type
, "string")) {
266 } else if (streq(type
, "opaque")) {
269 if (streq(type
, "string")) {
270 print_ifopen(indent
, alt
);
271 print_ifarg(objname
);
274 print_ifopen(indent
, alt
);
276 print_ifopen(indent
, "array");
278 print_ifarg("(char **)");
279 if (*objname
== '&') {
280 f_print(fout
, "%s.%s_val, (u_int *)%s.%s_len",
281 objname
, name
, objname
, name
);
283 f_print(fout
, "&%s->%s_val, (u_int *)&%s->%s_len",
284 objname
, name
, objname
, name
);
289 print_ifsizeof(prefix
, type
);
293 print_ifopen(indent
, type
);
294 print_ifarg(objname
);
297 print_ifclose(indent
);
301 emit_enum(definition
*def
)
305 print_ifopen(1, "enum");
306 print_ifarg("(enum_t *)objp");
311 emit_program(definition
*def
)
317 for (vlist
= def
->def
.pr
.versions
; vlist
!= NULL
;vlist
= vlist
->next
)
318 for(plist
= vlist
->procs
; plist
!= NULL
; plist
= plist
->next
) {
319 if (!newstyle
|| plist
->arg_num
< 2)
320 continue; /* old style, or single argument */
321 print_prog_header(plist
);
322 for (dl
= plist
->args
.decls
; dl
!= NULL
;
324 print_stat(1,&dl
->decl
);
330 emit_union(definition
*def
)
336 const char *vecformat
= "objp->%s_u.%s";
337 const char *format
= "&objp->%s_u.%s";
339 print_stat(1,&def
->def
.un
.enum_decl
);
340 f_print(fout
, "\tswitch (objp->%s) {\n", def
->def
.un
.enum_decl
.name
);
341 for (cl
= def
->def
.un
.cases
; cl
!= NULL
; cl
= cl
->next
) {
343 f_print(fout
, "\tcase %s:\n", cl
->case_name
);
344 if(cl
->contflag
== 1) /* a continued case statement */
347 if (!streq(cs
->type
, "void")) {
348 object
= alloc(strlen(def
->def_name
) + strlen(format
) +
349 strlen(cs
->name
) + 1);
350 if (isvectordef(cs
->type
, cs
->rel
)) {
351 s_print(object
, vecformat
, def
->def_name
,
354 s_print(object
, format
, def
->def_name
,
357 print_ifstat(2, cs
->prefix
, cs
->type
, cs
->rel
, cs
->array_max
,
361 f_print(fout
, "\t\tbreak;\n");
363 dflt
= def
->def
.un
.default_decl
;
365 if (!streq(dflt
->type
, "void")) {
366 f_print(fout
, "\tdefault:\n");
367 object
= alloc(strlen(def
->def_name
) + strlen(format
) +
368 strlen(dflt
->name
) + 1);
369 if (isvectordef(dflt
->type
, dflt
->rel
)) {
370 s_print(object
, vecformat
, def
->def_name
,
373 s_print(object
, format
, def
->def_name
,
377 print_ifstat(2, dflt
->prefix
, dflt
->type
, dflt
->rel
,
378 dflt
->array_max
, object
, dflt
->name
);
380 f_print(fout
, "\t\tbreak;\n");
382 #ifdef __GNU_LIBRARY__
384 f_print(fout
, "\tdefault:\n");
385 f_print(fout
, "\t\tbreak;\n");
389 f_print(fout
, "\tdefault:\n");
390 f_print(fout
, "\t\treturn (FALSE);\n");
393 f_print(fout
, "\t}\n");
397 emit_struct(definition
*def
)
401 decl_list
*cur
= NULL
,*psav
;
409 if(inlineflag
== 0) {
410 for (dl
= def
->def
.st
.decls
; dl
!= NULL
; dl
= dl
->next
)
411 print_stat(1,&dl
->decl
);
416 for (dl
= def
->def
.st
.decls
; dl
!= NULL
; dl
= dl
->next
)
417 if(dl
->decl
.rel
== REL_VECTOR
){
418 f_print(fout
,"\t int i;\n");
423 for (dl
= def
->def
.st
.decls
; dl
!= NULL
; dl
= dl
->next
)
424 if((dl
->decl
.prefix
== NULL
) && ((ptr
=find_type(dl
->decl
.type
))!= NULL
) && ((dl
->decl
.rel
== REL_ALIAS
)||(dl
->decl
.rel
== REL_VECTOR
))){
426 if(dl
->decl
.rel
== REL_ALIAS
)
430 break; /* can be inlined */
434 if(size
>= inlineflag
){
436 break; /* can be inlined */
440 if(size
> inlineflag
)
443 if(can_inline
== 0){ /* can not inline, drop back to old mode */
444 for (dl
= def
->def
.st
.decls
; dl
!= NULL
; dl
= dl
->next
)
445 print_stat(1,&dl
->decl
);
456 f_print(fout
,"\n\t if (xdrs->x_op == XDR_ENCODE) {\n");
458 f_print(fout
,"\n \t return (TRUE);\n\t} else if (xdrs->x_op == XDR_DECODE) {\n");
464 for (dl
= def
->def
.st
.decls
; dl
!= NULL
; dl
= dl
->next
) { /* xxx */
466 /* now walk down the list and check for basic types */
467 if((dl
->decl
.prefix
== NULL
) && ((ptr
=find_type(dl
->decl
.type
))!= NULL
) && ((dl
->decl
.rel
== REL_ALIAS
)||(dl
->decl
.rel
== REL_VECTOR
))){
472 if(dl
->decl
.rel
== REL_ALIAS
)
475 /* this is required to handle arrays */
483 s_print(ptemp
," %s %s * %d",plus
,dl
->decl
.array_max
,ptr
->length
);
485 s_print(ptemp
," %s %s ",plus
,dl
->decl
.array_max
);
487 /*now concatenate to sizestr !!!! */
489 sizestr
=strdup(ptemp
);
491 sizestr
=realloc(sizestr
,strlen(sizestr
)+strlen(ptemp
)+1);
494 f_print(stderr
, "Fatal error : no memory \n");
497 sizestr
=strcat(sizestr
,ptemp
); /*build up length of array */
505 if(sizestr
== NULL
&& size
< inlineflag
){
506 /* don't expand into inline code if size < inlineflag */
508 print_stat(1,&cur
->decl
);
516 /* were already looking at a xdr_inlineable structure */
518 f_print(fout
,"\t buf = XDR_INLINE(xdrs,%d * BYTES_PER_XDR_UNIT);",
523 "\t buf = XDR_INLINE(xdrs,%s * BYTES_PER_XDR_UNIT);",
527 "\t buf = XDR_INLINE(xdrs,(%d + %s)* BYTES_PER_XDR_UNIT);",
530 f_print(fout
,"\n\t if (buf == NULL) {\n");
534 print_stat(2,&cur
->decl
);
538 f_print(fout
,"\n\t }\n\t else {\n");
542 emit_inline(&cur
->decl
,flag
);
546 f_print(fout
,"\t }\n");
548 size
=0;i
=0;sizestr
=NULL
;
549 print_stat(1,&dl
->decl
);
554 if(sizestr
== NULL
&& size
< inlineflag
){
555 /* don't expand into inline code if size < inlineflag */
557 print_stat(1,&cur
->decl
);
563 /* were already looking at a xdr_inlineable structure */
565 f_print(fout
,"\t\tbuf = XDR_INLINE(xdrs,%d * BYTES_PER_XDR_UNIT);",
570 "\t\tbuf = XDR_INLINE(xdrs,%s * BYTES_PER_XDR_UNIT);",
574 "\t\tbuf = XDR_INLINE(xdrs,(%d + %s)* BYTES_PER_XDR_UNIT);",
577 f_print(fout
,"\n\t\tif (buf == NULL) {\n");
581 print_stat(2,&cur
->decl
);
584 f_print(fout
,"\n\t }\n\t else {\n");
588 emit_inline(&cur
->decl
,flag
);
592 f_print(fout
,"\t }\n");
597 f_print(fout
,"\t return(TRUE);\n\t}\n\n");
599 /* now take care of XDR_FREE case */
601 for (dl
= def
->def
.st
.decls
; dl
!= NULL
; dl
= dl
->next
)
602 print_stat(1,&dl
->decl
);
608 emit_typedef(definition
*def
)
610 const char *prefix
= def
->def
.ty
.old_prefix
;
611 const char *type
= def
->def
.ty
.old_type
;
612 const char *amax
= def
->def
.ty
.array_max
;
613 relation rel
= def
->def
.ty
.rel
;
616 print_ifstat(1, prefix
, type
, rel
, amax
, "objp", def
->def_name
);
620 print_stat(int indent
, declaration
*dec
)
622 const char *prefix
= dec
->prefix
;
623 const char *type
= dec
->type
;
624 const char *amax
= dec
->array_max
;
625 relation rel
= dec
->rel
;
628 if (isvectordef(type
, rel
)) {
629 s_print(name
, "objp->%s", dec
->name
);
631 s_print(name
, "&objp->%s", dec
->name
);
633 print_ifstat(indent
, prefix
, type
, rel
, amax
, name
, dec
->name
);
638 emit_inline(declaration
*decl
, int flag
)
641 /*check whether an array or not */
646 emit_single_in_line(decl
,flag
,REL_ALIAS
);
649 f_print(fout
,"\t\t{ register %s *genp; \n",decl
->type
);
650 f_print(fout
,"\t\t for ( i = 0,genp=objp->%s;\n \t\t\ti < %s; i++){\n\t\t",
651 decl
->name
,decl
->array_max
);
652 emit_single_in_line(decl
,flag
,REL_VECTOR
);
653 f_print(fout
,"\t\t }\n\t\t };\n");
656 /* ?... do nothing I guess */
661 emit_single_in_line(declaration
*decl
, int flag
, relation rel
)
664 const char *upp_case
;
667 f_print(fout
,"\t\t IXDR_PUT_");
670 if(rel
== REL_ALIAS
) {
671 f_print(fout
, "\t\t objp->%s = IXDR_GET_", decl
->name
);
674 f_print(fout
,"\t\t *genp++ = IXDR_GET_");
678 upp_case1
= upcase(decl
->type
);
679 upp_case
= upp_case1
;
682 if (!strcmp(upp_case
, "INT")) upp_case
="LONG";
683 if (!strcmp(upp_case
, "U_INT")) upp_case
="U_LONG";
686 if (rel
==REL_ALIAS
) {
687 f_print(fout
,"%s(buf,objp->%s);\n",upp_case
,decl
->name
);
690 f_print(fout
,"%s(buf,*genp++);\n",upp_case
);
694 f_print(fout
,"%s(buf);\n",upp_case
);
701 static char *upcase(const char *str
) {
703 ptr
= malloc(strlen(str
));
705 f_print(stderr
,"malloc failed\n");
710 *ptr
++ = toupper(*str
++);