LINUX: afs_create infinite fetchStatus loop
[pkg-k5-afs_openafs.git] / src / rxgen / rpc_util.c
blobf70c4abb41fe132ebecb44895c8f3fa75d1eb1d0
1 /* @(#)rpc_util.c 1.2 87/11/24 3.9 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.
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.
27 * 2550 Garcia Avenue
28 * Mountain View, California 94043
32 * rpc_util.c, Utility routines for the RPC protocol compiler
33 * Copyright (C) 1987, Sun Microsystems, Inc.
35 #include <afsconfig.h>
36 #include <afs/param.h>
38 #include <roken.h>
40 #include "rpc_scan.h"
41 #include "rpc_parse.h"
42 #include "rpc_util.h"
44 char curline[MAXLINESIZE]; /* current read line */
45 char *where = curline; /* current point in line */
46 int linenum = 0; /* current line number */
48 char *infilename; /* input filename */
50 #define NFILES 6
51 char *outfiles[NFILES]; /* output file names */
52 int nfiles;
54 FILE *fout; /* file pointer of current output */
55 FILE *fin; /* file pointer of current input */
57 list *defined; /* list of defined things */
59 /* static prototypes */
60 static int findit(definition * def, char *type);
61 static char *fixit(char *type, char *orig);
62 static char *locase(char *str);
63 static char *toktostr(tok_kind kind);
64 static void printbuf(void);
65 static void printwhere(void);
69 * Reinitialize the world
71 void
72 reinitialize(void)
74 int i;
75 memset(curline, 0, MAXLINESIZE);
76 where = curline;
77 linenum = 0;
78 defined = NULL;
79 special_defined = typedef_defined = uniondef_defined = NULL;
80 PackageIndex = -1;
81 master_opcodenumber = 99999;
82 master_highest_opcode = 0;
83 no_of_stat_funcs = 0;
84 for (i = 0; i < MAX_PACKAGES; i++) {
85 no_of_stat_funcs_header[i] = 0;
90 * string equality
92 int
93 streq(char *a, char *b)
95 return (strcmp(a, b) == 0);
99 * find a value in a list
101 char *
102 findval(list * lst, char *val, int (*cmp) (definition * def, char *type))
104 for (; lst != NULL; lst = lst->next) {
105 if ((*cmp) ((definition *) lst->val, val)) {
106 return (lst->val);
109 return (NULL);
113 * store a value in a list
115 void
116 storeval(list ** lstp, char *val)
118 list **l;
119 list *lst;
121 for (l = lstp; *l != NULL; l = (list **) & (*l)->next);
122 lst = ALLOC(list);
123 lst->val = val;
124 lst->next = NULL;
125 *l = lst;
129 static int
130 findit(definition * def, char *type)
132 return (streq(def->def_name, type));
136 static char *
137 fixit(char *type, char *orig)
139 definition *def;
141 def = (definition *) FINDVAL(defined, type, findit);
142 if (def == NULL || def->def_kind != DEF_TYPEDEF) {
143 return (orig);
145 switch (def->def.ty.rel) {
146 case REL_VECTOR:
147 return (def->def.ty.old_type);
148 case REL_ALIAS:
149 return (fixit(def->def.ty.old_type, orig));
150 default:
151 return (orig);
155 char *
156 fixtype(char *type)
158 return (fixit(type, type));
161 char *
162 stringfix(char *type)
164 if (streq(type, "string")) {
165 return ("wrapstring");
166 } else {
167 return (type);
171 void
172 ptype(char *prefix, char *type, int follow)
174 if (prefix != NULL) {
175 if (streq(prefix, "enum")) {
176 f_print(fout, "enum ");
177 } else {
178 f_print(fout, "struct ");
181 if (streq(type, "bool")) {
182 f_print(fout, "bool_t ");
183 } else if (streq(type, "string")) {
184 f_print(fout, "char *");
185 } else {
186 f_print(fout, "%s ", follow ? fixtype(type) : type);
192 isvectordef(char *type, relation rel)
194 for (;;) {
195 switch (rel) {
196 case REL_VECTOR:
197 return (!streq(type, "string"));
198 case REL_ARRAY:
199 return (0);
200 case REL_POINTER:
201 return (0);
202 case REL_ALIAS:
203 return (0);
209 static char *
210 locase(char *str)
212 char c;
213 static char buf[100];
214 char *p = buf;
216 while ((c = *str++)) {
217 *p++ = (c >= 'A' && c <= 'Z') ? (c - 'A' + 'a') : c;
219 *p = 0;
220 return (buf);
224 void
225 pvname(char *pname, char *vnum)
227 f_print(fout, "%s_%s", locase(pname), vnum);
232 * print a useful (?) error message, and then die
234 void
235 error(char *msg)
237 printwhere();
238 f_print(stderr, "%s, line %d: ", infilename, linenum);
239 f_print(stderr, "%s\n", msg);
240 crash();
244 * Something went wrong, unlink any files that we may have created and then
245 * die.
247 void
248 crash(void)
250 int i;
252 for (i = 0; i < nfiles; i++) {
253 (void)unlink(outfiles[i]);
255 exit(1);
259 void
260 record_open(char *file)
262 if (nfiles < NFILES) {
263 outfiles[nfiles++] = file;
264 } else {
265 f_print(stderr, "too many files!\n");
266 crash();
270 /* buffer shared for all of the expected* routines */
271 static char expectbuf[100];
274 * error, token encountered was not the expected one
276 void
277 expected1(tok_kind exp1)
279 s_print(expectbuf, "expected '%s'", toktostr(exp1));
280 error(expectbuf);
284 * error, token encountered was not one of two expected ones
286 void
287 expected2(tok_kind exp1, tok_kind exp2)
289 s_print(expectbuf, "expected '%s' or '%s'", toktostr(exp1),
290 toktostr(exp2));
291 error(expectbuf);
295 * error, token encountered was not one of 3 expected ones
297 void
298 expected3(tok_kind exp1, tok_kind exp2, tok_kind exp3)
300 s_print(expectbuf, "expected '%s', '%s' or '%s'", toktostr(exp1),
301 toktostr(exp2), toktostr(exp3));
302 error(expectbuf);
307 * error, token encountered was not one of 4 expected ones
309 void
310 expected4(tok_kind exp1, tok_kind exp2, tok_kind exp3, tok_kind exp4)
312 sprintf(expectbuf, "expected '%s', '%s', '%s', or '%s'", toktostr(exp1),
313 toktostr(exp2), toktostr(exp3), toktostr(exp4));
314 error(expectbuf);
317 void
318 tabify(FILE * f, int tab)
320 if (scan_print)
321 while (tab--) {
322 (void)fputc('\t', f);
326 static token tokstrings[] = {
327 {TOK_IDENT, "identifier"},
328 {TOK_CONST, "const"},
329 {TOK_RPAREN, ")"},
330 {TOK_LPAREN, "("},
331 {TOK_RBRACE, "}"},
332 {TOK_LBRACE, "{"},
333 {TOK_LBRACKET, "["},
334 {TOK_RBRACKET, "]"},
335 {TOK_STAR, "*"},
336 {TOK_COMMA, ","},
337 {TOK_EQUAL, "="},
338 {TOK_COLON, ":"},
339 {TOK_SEMICOLON, ";"},
340 {TOK_UNION, "union"},
341 {TOK_STRUCT, "struct"},
342 {TOK_SWITCH, "switch"},
343 {TOK_CASE, "case"},
344 {TOK_DEFAULT, "default"},
345 {TOK_ENUM, "enum"},
346 {TOK_TYPEDEF, "typedef"},
347 {TOK_INT, "int"},
348 {TOK_SHORT, "short"},
349 {TOK_INT32, "afs_int32"}, /* XXX */
350 {TOK_UNSIGNED, "unsigned"},
351 {TOK_DOUBLE, "double"},
352 {TOK_FLOAT, "float"},
353 {TOK_CHAR, "char"},
354 {TOK_STRING, "string"},
355 {TOK_OPAQUE, "opaque"},
356 {TOK_BOOL, "bool"},
357 {TOK_VOID, "void"},
358 {TOK_PACKAGE, "package"},
359 {TOK_PREFIX, "prefix"},
360 {TOK_STATINDEX, "statindex"},
361 {TOK_SPECIAL, "special"},
362 {TOK_STARTINGOPCODE, "startingopcode"},
363 {TOK_CUSTOMIZED, "customized"},
364 {TOK_PROC, "proc"},
365 {TOK_SPLITPREFIX, "splitprefix"},
366 {TOK_SPLIT, "split"},
367 {TOK_MULTI, "multi"},
368 {TOK_IN, "IN"},
369 {TOK_OUT, "OUT"},
370 {TOK_INOUT, "INOUT"},
371 {TOK_AFSUUID, "afsUUID"},
372 {TOK_EOF, "??????"}
375 static char *
376 toktostr(tok_kind kind)
378 token *sp;
380 for (sp = tokstrings; sp->kind != TOK_EOF && sp->kind != kind; sp++);
381 return (sp->str);
386 static void
387 printbuf(void)
389 char c;
390 int i;
391 int cnt;
393 # define TABSIZE 4
395 for (i = 0; (c = curline[i]); i++) {
396 if (c == '\t') {
397 cnt = 8 - (i % TABSIZE);
398 c = ' ';
399 } else {
400 cnt = 1;
402 while (cnt--) {
403 fputc(c, stderr);
409 static void
410 printwhere(void)
412 int i;
413 char c;
414 int cnt;
416 printbuf();
417 for (i = 0; i < where - curline; i++) {
418 c = curline[i];
419 if (c == '\t') {
420 cnt = 8 - (i % TABSIZE);
421 } else {
422 cnt = 1;
424 while (cnt--) {
425 fputc('^', stderr);
428 fputc('\n', stderr);