home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / comm / tcp / amitcp / src / devtools / rpcgen / rpc_util.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-09  |  3.3 KB  |  156 lines

  1. /*
  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.
  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.  
  31. /*      @(#)rpc_util.h  1.5  90/08/29  (C) 1987 SMI   */
  32.  
  33. /*
  34.  * rpc_util.h, Useful definitions for the RPC protocol compiler 
  35.  */
  36.  
  37. #include <stdlib.h>
  38.  
  39. #define alloc(size)        malloc((unsigned)(size))
  40. #define ALLOC(object)   (object *) malloc(sizeof(object))
  41.  
  42. #define s_print    (void) sprintf
  43. #define f_print (void) fprintf
  44.  
  45. struct list {
  46.     definition *val;
  47.     struct list *next;
  48. };
  49. typedef struct list list;
  50.  
  51. #define PUT 1
  52. #define GET 2
  53.  
  54. /*
  55.  * Global variables 
  56.  */
  57. #define MAXLINESIZE 1024
  58. extern char curline[MAXLINESIZE];
  59. extern char *where;
  60. extern int linenum;
  61.  
  62. extern char *infilename;
  63. extern FILE *fout;
  64. extern FILE *fin;
  65.  
  66. extern list *defined;
  67.  
  68.  
  69. extern bas_type *typ_list_h;
  70. extern bas_type *typ_list_t;
  71.  
  72. /*
  73.  * All the option flags
  74.  */
  75. extern int inetdflag;
  76. extern int pmflag;   
  77. extern int tblflag;
  78. extern int logflag;
  79. extern int newstyle;
  80. extern int Cflag;     /* C++ flag */
  81. extern int tirpcflag; /* flag for generating tirpc code */
  82. extern int inline; /* if this is 0, then do not generate inline code */
  83.  
  84. /*
  85.  * Other flags related with inetd jumpstart.
  86.  */
  87. extern int indefinitewait;
  88. extern int exitnow;
  89. extern int timerflag;
  90.  
  91. extern int nonfatalerrors;
  92.  
  93. #define STOREVAL(list,item)    \
  94.     storeval(list,item)
  95.  
  96. #define FINDVAL(list,item,finder) \
  97.     findval(list, item, finder)
  98.  
  99.  
  100. #ifndef __STDC__
  101. /*
  102.  * rpc_util routines 
  103.  */
  104. void storeval();
  105.  
  106. definition *findval();
  107.  
  108. char *fixtype();
  109. char *stringfix();
  110. char *locase();
  111. void pvname_svc();
  112. void pvname();
  113. void ptype();
  114. int isvectordef();
  115. int streq();
  116. void error();
  117. void expected1();
  118. void expected2();
  119. void expected3();
  120. void tabify();
  121. void record_open();
  122. bas_type *find_type();
  123. /*
  124.  * rpc_cout routines 
  125.  */
  126. void cprint();
  127. void emit();
  128.  
  129. /*
  130.  * rpc_hout routines 
  131.  */
  132. void print_datadef();
  133. void print_funcdef();
  134.  
  135. /*
  136.  * rpc_svcout routines 
  137.  */
  138. void write_most();
  139. void write_register();
  140. void write_rest();
  141. void write_programs();
  142. void write_svc_aux();
  143. void write_inetd_register();
  144. void write_netid_register();
  145. void write_nettype_register();
  146. /*
  147.  * rpc_clntout routines
  148.  */
  149. void write_stubs();
  150.  
  151. /*
  152.  * rpc_tblout routines
  153.  */
  154. void write_tables();
  155. #endif
  156.