home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 1 / GoldFishApril1994_CD2.img / d4xx / d441 / dme / util / autorefs.c
C/C++ Source or Header  |  1991-01-24  |  4KB  |  205 lines

  1.  
  2. /*
  3.  *  AUTOREFS refsfile docfile docfile docfile
  4.  *
  5.  *  Given one or more autodoc or .H files (e.g. intuition.doc) or include
  6.  *  files (e.g. exec/types.h), this program appends to a dme.refs file
  7.  *  <refsfile> appropriate lines.
  8.  *
  9.  *  AUTOREFS determines the file type from the extension (.h for header
  10.  *  files, otherwise assumed to be a doc file).
  11.  */
  12.  
  13. #include <stdio.h>
  14. #include <string.h>
  15.  
  16. char *SetSName(char *, char *);
  17.  
  18. main(xac, xav)
  19. int xac;
  20. char *xav[];
  21. {
  22.     short i;
  23.     FILE *fi;
  24.     FILE *fo;
  25.     int ac;
  26.     char **av;
  27.  
  28.     expand_args(xac, xav, &ac, &av);
  29.  
  30.     if (ac == 1) {
  31.     puts("autorefs outfile docfile docfile ...");
  32.     puts("AmigaDOS wildcarding works too, btw");
  33.     exit(1);
  34.     }
  35.     fo = fopen(av[1], "a");
  36.     if (!fo) {
  37.     printf("unable to open %s for append\n", av[1]);
  38.     exit(1);
  39.     }
  40.     for (i = 2; i < ac; ++i) {
  41.     char *file = av[i];
  42.     short len = strlen(file);
  43.     short doth = 0;
  44.  
  45.     if (len >= 2 && (file[len-1] == 'h' || file[len-1] == 'H') && file[len-2] == '.')
  46.         doth = 1;
  47.  
  48.     fi = fopen(file, "r");
  49.     if (fi) {
  50.         if (doth) {
  51.         printf("Scanning .H  file: %s\n", file);
  52.         scanhfile(fi, fo, file);
  53.         } else {
  54.         printf("Scanning DOC file: %s\n", file);
  55.         scandocfile(fi, fo, file);
  56.         }
  57.         fclose(fi);
  58.     } else {
  59.         printf("Unable to read %s\n", file);
  60.     }
  61.     }
  62.     return(0);
  63. }
  64.  
  65. /*
  66.  *  Find the headers for each function entry and generate a DME.REFS
  67.  *  entry for it.  The @@<N> is a short form seek position (this field
  68.  *  normally holds a search string).
  69.  */
  70.  
  71. scandocfile(fi, fo, filename)
  72. FILE *fi;
  73. FILE *fo;
  74. char *filename;
  75. {
  76.     char buf[256];
  77.     long pos = 0;
  78.     short lastLineFF = 0;
  79.  
  80.     while (fgets(buf, 256, fi)) {
  81.     short len = strlen(buf) - 1;
  82.     char *ptr = buf + len;
  83.     char *header, *tail;
  84.  
  85.     buf[len] = 0;
  86.     while (ptr != buf && ptr[-1] != ' ' && ptr[-1] != 9)
  87.         --ptr;
  88.     if (ptr != buf && *ptr && strncmp(buf, ptr, strlen(ptr)) == 0) {
  89.         header = ptr;
  90.         for (ptr = buf + len; ptr != buf && IsAlphaNum(ptr[-1]); --ptr);
  91.         tail = ptr;
  92.         fprintf(fo, "%-20s (^l) %s @@%ld\n", tail, filename, pos);
  93.     } else if (ptr == buf && lastLineFF) {
  94.         for (ptr = buf + len; ptr != buf && IsAlphaNum(ptr[-1]); --ptr);
  95.         fprintf(fo, "%-20s (^l) %s @@%ld\n", ptr, filename, pos);
  96.     }
  97.     if (buf[0] == ('l'&0x1F))
  98.         lastLineFF = 1;
  99.     else
  100.         lastLineFF = 0;
  101.     pos = ftell(fi);
  102.     }
  103. }
  104.  
  105. /*
  106.  *  Find each structure definition (stupid search, assume struct on left
  107.  *  hand side) then generate dme.refs entry from the end point of the
  108.  *  previous structure to the beginning of the next structure.    That is,
  109.  *  the reference refers to the structure and all fields before and after
  110.  *  it until the next structure (before and after).
  111.  */
  112.  
  113. scanhfile(fi, fo, filename)
  114. FILE *fi;
  115. FILE *fo;
  116. char *filename;
  117. {
  118.     static char buf[256];
  119.     static char sname[128];
  120.     static char lname[128];
  121.     long lin  = 1;
  122.     long lin1;
  123.     long lin2 = 1;
  124.     long pos  = 0;
  125.     long pos1;
  126.     long pos2 = 0;
  127.     short snameisvalid = 0;
  128.     short newsname = 0;
  129.  
  130.     while (fgets(buf, 256, fi)) {
  131.     char *ptr = buf;
  132.  
  133.     if ((ptr = strstr(buf, "struct")) || (ptr = strstr(buf, "union"))) {
  134.         if (ptr[0] == 's')
  135.         ++ptr;
  136.         ptr += 5;
  137.  
  138.         ptr = SetSName(lname, ptr);
  139.  
  140.         /*
  141.          *    search for '{'
  142.          */
  143.  
  144.         {
  145.         while (*ptr == ' ' || *ptr == '\t' || *ptr == '\n')
  146.             ++ptr;
  147.         if (*ptr == 0) {
  148.             short c = ' ';
  149.             long savpos = ftell(fi);
  150.             while (c == ' ' || c == '\t' || c == '\n')
  151.             c = getc(fi);
  152.             ptr[0] = c;
  153.             ptr[1] = 0;
  154.             fseek(fi, savpos, 0);
  155.         }
  156.         }
  157.  
  158.         if (*ptr == '{' && lname[0]) {
  159.         if (snameisvalid)
  160.             fprintf(fo, "%-20s %3ld %s @@%ld\n", sname, lin-lin1, filename, pos1);
  161.         strcpy(sname, lname);
  162.         snameisvalid = 0;
  163.         newsname = 1;
  164.         pos1 = pos2;
  165.         lin1 = lin2;
  166.         }
  167.     }
  168.     pos = ftell(fi);
  169.     ++lin;
  170.  
  171.     if (strstr(buf, "};")) {
  172.         pos2 = pos;
  173.         lin2 = lin;
  174.         snameisvalid = newsname;
  175.     }
  176.     }
  177.     if (snameisvalid)
  178.     fprintf(fo, "%-20s %3ld %s @@%ld\n", sname, lin-lin1, filename, pos1);
  179. }
  180.  
  181. char *
  182. SetSName(buf, ptr)
  183. char *buf, *ptr;
  184. {
  185.     while (*ptr == ' ' || *ptr == 9)
  186.     ++ptr;
  187.     while (*ptr && *ptr != '\n' && *ptr != ' ' && *ptr != 9)
  188.     *buf++ = *ptr++;
  189.     *buf = 0;
  190.     return(ptr);
  191. }
  192.  
  193. IsAlphaNum(c)
  194. char c;
  195. {
  196.     if ((c >= 'a' && c <= 'z') ||
  197.     (c >= 'A' && c <= 'Z') ||
  198.     (c >= '0' && c <= '9') ||
  199.     (c == '_') || (c == '(') || (c == ')')
  200.     )
  201.     return(1);
  202.     return(0);
  203. }
  204.  
  205.