dbug_ana.c
上传用户:jmzj888
上传日期:2007-01-02
资源大小:220k
文件大小:19k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Analyze the profile file (cmon.out) written out by the dbug
  3.  * routines with profiling enabled.
  4.  *
  5.  * Copyright June 1987, Binayak Banerjee
  6.  * All rights reserved.
  7.  *
  8.  * This program may be freely distributed under the same terms and
  9.  * conditions as Fred Fish's Dbug package.
  10.  *
  11.  * Compile with -- cc -O -s -o %s analyze.c
  12.  *
  13.  * Analyze will read an trace file created by the dbug package
  14.  * (when run with traceing enabled).  It will then produce a
  15.  * summary on standard output listing the name of each traced
  16.  * function, the number of times it was called, the percentage
  17.  * of total calls, the time spent executing the function, the
  18.  * proportion of the total time and the 'importance'.  The last
  19.  * is a metric which is obtained by multiplying the proportions
  20.  * of calls and the proportions of time for each function.  The
  21.  * greater the importance, the more likely it is that a speedup
  22.  * could be obtained by reducing the time taken by that function.
  23.  *
  24.  * Note that the timing values that you obtain are only rough
  25.  * measures.  The overhead of the dbug package is included
  26.  * within.  However, there is no need to link in special profiled
  27.  * libraries and the like.
  28.  *
  29.  * CHANGES:
  30.  *
  31.  * 2-Mar-89: fnf
  32.  * Changes to support tracking of stack usage.  This required
  33.  * reordering the fields in the profile log file to make
  34.  * parsing of different record types easier.  Corresponding
  35.  * changes made in dbug runtime library.  Also used this
  36.  * opportunity to reformat the code more to my liking (my
  37.  * apologies to Binayak Banerjee for "uglifying" his code).
  38.  *
  39.  * 24-Jul-87: fnf
  40.  * Because I tend to use functions names like
  41.  * "ExternalFunctionDoingSomething", I've rearranged the
  42.  * printout to put the function name last in each line, so
  43.  * long names don't screw up the formatting unless they are
  44.  * *very* long and wrap around the screen width...
  45.  *
  46.  * 24-Jul-87: fnf
  47.  * Modified to put out table very similar to Unix profiler
  48.  * by default, but also puts out original verbose table
  49.  * if invoked with -v flag.
  50.  */
  51. #include <global.h>
  52. static char *my_name;
  53. static int verbose;
  54. /*
  55.  * Structure of the stack.
  56.  */
  57. #define PRO_FILE "dbugmon.out" /* Default output file name */
  58. #define STACKSIZ 100 /* Maximum function nesting */
  59. #define MAXPROCS 10000 /* Maximum number of function calls */
  60. # ifdef BSD
  61. # include <sysexits.h>
  62. # else
  63. # define EX_SOFTWARE 1
  64. # define EX_DATAERR 1
  65. # define EX_USAGE 1
  66. # define EX_OSERR 1
  67. # define EX_IOERR 1
  68. # define EX_OK 0
  69. # endif
  70. #define __MERF_OO_ "%s: Malloc Failed in %s: %dn"
  71. #define MALLOC(Ptr,Num,Typ) do /* Malloc w/error checking & exit */ 
  72. if (!(Ptr = (Typ *)malloc((Num)*(sizeof(Typ))))) 
  73. {fprintf(stderr,__MERF_OO_,my_name,__FILE__,__LINE__);
  74. exit(EX_OSERR);} while(0)
  75. #define Malloc(Ptr,Num,Typ) do /* Weaker version of above */
  76. if (!(Ptr = (Typ *)malloc((Num)*(sizeof(Typ))))) 
  77. fprintf(stderr,__MERF_OO_,my_name,__FILE__,__LINE__);
  78.  while(0)
  79. #define FILEOPEN(Fp,Fn,Mod) do /* File open with error exit */ 
  80. if (!(Fp = fopen(Fn,Mod)))
  81. {fprintf(stderr,"%s: Couldn't open %sn",my_name,Fn);
  82. exit(EX_IOERR);} while(0)
  83. #define Fileopen(Fp,Fn,Mod) do /* Weaker version of above */ 
  84. if(!(Fp = fopen(Fn,Mod))) 
  85. fprintf(stderr,"%s: Couldn't open %sn",my_name,Fn);
  86. while(0)
  87. struct stack_t {
  88.     unsigned int pos; /* which function? */
  89.     unsigned long time; /* Time that this was entered */
  90.     unsigned long children; /* Time spent in called funcs */
  91. };
  92. static struct stack_t fn_stack[STACKSIZ+1];
  93. static unsigned int stacktop = 0; /* Lowest stack position is a dummy */
  94. static unsigned long tot_time = 0;
  95. static unsigned long tot_calls = 0;
  96. static unsigned long highstack = 0;
  97. static unsigned long lowstack = (ulong) ~0;
  98. /*
  99.  * top() returns a pointer to the top item on the stack.
  100.  * (was a function, now a macro)
  101.  */
  102. #define top() &fn_stack[stacktop]
  103. /*
  104.  * Push - Push the given record on the stack.
  105.  */
  106. void push (name_pos, time_entered)
  107. register unsigned int name_pos;
  108. register unsigned long time_entered;
  109. {
  110.     register struct stack_t *t;
  111.     DBUG_ENTER("push");
  112.     if (++stacktop > STACKSIZ) {
  113. fprintf (DBUG_FILE,"%s: stack overflow (%s:%d)n",
  114. my_name, __FILE__, __LINE__);
  115. exit (EX_SOFTWARE);
  116.     }
  117.     DBUG_PRINT ("push", ("%d %ld",name_pos,time_entered));
  118.     t = &fn_stack[stacktop];
  119.     t -> pos = name_pos;
  120.     t -> time = time_entered;
  121.     t -> children = 0;
  122.     DBUG_VOID_RETURN;
  123. }
  124. /*
  125.  * Pop - pop the top item off the stack, assigning the field values
  126.  * to the arguments. Returns 0 on stack underflow, or on popping first
  127.  * item off stack.
  128.  */
  129. unsigned int pop (name_pos, time_entered, child_time)
  130. register unsigned int *name_pos;
  131. register unsigned long *time_entered;
  132. register unsigned long *child_time;
  133. {
  134.     register struct stack_t *temp;
  135.     register unsigned int rtnval;
  136.     DBUG_ENTER ("pop");
  137.     if (stacktop < 1) {
  138. rtnval = 0;
  139.     } else {
  140. temp =  &fn_stack[stacktop];
  141. *name_pos = temp->pos;
  142. *time_entered = temp->time;
  143. *child_time = temp->children;
  144. DBUG_PRINT ("pop", ("%d %d %d",*name_pos,*time_entered,*child_time));
  145. rtnval = stacktop--;
  146.     }
  147.     DBUG_RETURN (rtnval);
  148. }
  149. /*
  150.  * We keep the function info in another array (serves as a simple
  151.  * symbol table)
  152.  */
  153. struct module_t {
  154.     char *name;
  155.     unsigned long m_time;
  156.     unsigned long m_calls;
  157.     unsigned long m_stkuse;
  158. };
  159. static struct module_t modules[MAXPROCS];
  160. /*
  161.  * We keep a binary search tree in order to look up function names
  162.  * quickly (and sort them at the end.
  163.  */
  164. struct bnode {
  165.     unsigned int lchild; /* Index of left subtree */
  166.     unsigned int rchild; /* Index of right subtree */
  167.     unsigned int pos; /* Index of module_name entry */
  168. };
  169. static struct bnode s_table[MAXPROCS];
  170. static unsigned int n_items = 0; /* No. of items in the array so far */
  171. /*
  172.  * Need a function to allocate space for a string and squirrel it away.
  173.  */
  174. char *strsave (s)
  175. char *s;
  176. {
  177.     register char *retval;
  178.     register unsigned int len;
  179.     DBUG_ENTER ("strsave");
  180.     DBUG_PRINT ("strsave", ("%s",s));
  181.     if (!s || (len = strlen (s)) == 0) {
  182. DBUG_RETURN (0);
  183.     }
  184.     MALLOC (retval, ++len, char);
  185.     strcpy (retval, s);
  186.     DBUG_RETURN (retval);
  187. }
  188. /*
  189.  * add() - adds m_name to the table (if not already there), and returns
  190.  * the index of its location in the table.  Checks s_table (which is a
  191.  * binary search tree) to see whether or not it should be added.
  192.  */
  193. unsigned int add (m_name)
  194. char *m_name;
  195. {
  196.     register unsigned int ind = 0;
  197.     register int cmp;
  198.     DBUG_ENTER ("add");
  199.     if (n_items == 0) { /* First item to be added */
  200. s_table[0].pos = ind;
  201. s_table[0].lchild = s_table[0].rchild = MAXPROCS;
  202. addit:
  203. modules[n_items].name = strsave (m_name);
  204. modules[n_items].m_time = 0;
  205. modules[n_items].m_calls = 0;
  206. modules[n_items].m_stkuse = 0;
  207. DBUG_RETURN (n_items++);
  208.     }
  209.     while (cmp = strcmp (m_name,modules[ind].name)) {
  210. if (cmp < 0) { /* In left subtree */
  211.     if (s_table[ind].lchild == MAXPROCS) {
  212. /* Add as left child */
  213. if (n_items >= MAXPROCS) {
  214.     fprintf (DBUG_FILE,
  215.     "%s: Too many functions being profiledn",
  216.      my_name);
  217.     exit (EX_SOFTWARE);
  218. }
  219. s_table[n_items].pos = s_table[ind].lchild = n_items;
  220. s_table[n_items].lchild = s_table[n_items].rchild = MAXPROCS;
  221. #ifdef notdef
  222. modules[n_items].name = strsave (m_name);
  223. modules[n_items].m_time = modules[n_items].m_calls = 0;
  224. DBUG_RETURN (n_items++);
  225. #else
  226. goto addit;
  227. #endif
  228.     }
  229.     ind = s_table[ind].lchild; /* else traverse l-tree */
  230. } else {
  231.     if (s_table[ind].rchild == MAXPROCS) {
  232. /* Add as right child */
  233. if (n_items >= MAXPROCS) {
  234.     fprintf (DBUG_FILE,
  235.      "%s: Too many functions being profiledn",
  236.      my_name);
  237.     exit (EX_SOFTWARE);
  238. }
  239. s_table[n_items].pos = s_table[ind].rchild = n_items;
  240. s_table[n_items].lchild = s_table[n_items].rchild = MAXPROCS;
  241. #ifdef notdef
  242. modules[n_items].name = strsave (m_name);
  243. modules[n_items].m_time = modules[n_items].m_calls = 0;
  244. DBUG_RETURN (n_items++);
  245. #else
  246. goto addit;
  247. #endif
  248.     }
  249.     ind = s_table[ind].rchild; /* else traverse r-tree */
  250. }
  251.     }
  252.     DBUG_RETURN (ind);
  253. }
  254. /*
  255.  * process() - process the input file, filling in the modules table.
  256.  */
  257. void process (inf)
  258. FILE *inf;
  259. {
  260.   char buf[BUFSIZ];
  261.   char fn_name[64]; /* Max length of fn_name */
  262.   unsigned long fn_time;
  263.   unsigned long fn_sbot;
  264.   unsigned long fn_ssz;
  265.   unsigned long lastuse;
  266.   unsigned int pos;
  267.   unsigned long time;
  268.   unsigned int oldpos;
  269.   unsigned long oldtime;
  270.   unsigned long oldchild;
  271.   struct stack_t *t;
  272.   DBUG_ENTER ("process");
  273.   while (fgets (buf,BUFSIZ,inf) != NULL) {
  274.     switch (buf[0]) {
  275.     case 'E':
  276.       sscanf (buf+2, "%ld %64s", &fn_time, fn_name);
  277.       DBUG_PRINT ("erec", ("%ld %s", fn_time, fn_name));
  278.       pos = add (fn_name);
  279.       push (pos, fn_time);
  280.       break;
  281.     case 'X':
  282.       sscanf (buf+2, "%ld %64s", &fn_time, fn_name);
  283.       DBUG_PRINT ("xrec", ("%ld %s", fn_time, fn_name));
  284.       pos = add (fn_name);
  285.       /*
  286.        * An exited function implies that all stacked
  287.        * functions are also exited, until the matching
  288.        * function is found on the stack.
  289.        */
  290.       while (pop (&oldpos, &oldtime, &oldchild)) {
  291. DBUG_PRINT ("popped", ("%d %d", oldtime, oldchild));
  292. time = fn_time - oldtime;
  293. t = top ();
  294. t -> children += time;
  295. DBUG_PRINT ("update", ("%s", modules[t -> pos].name));
  296. DBUG_PRINT ("update", ("%d", t -> children));
  297. time -= oldchild;
  298. modules[oldpos].m_time += time;
  299. modules[oldpos].m_calls++;
  300. tot_time += time;
  301. tot_calls++;
  302. if (pos == oldpos) {
  303.   goto next_line; /* Should be a break2 */
  304. }
  305.       }
  306.       /*
  307.        * Assume that item seen started at time 0.
  308.        * (True for function main).  But initialize
  309.        * it so that it works the next time too.
  310.        */
  311.       t = top ();
  312.       time = fn_time - t -> time - t -> children;
  313.       t -> time = fn_time; t -> children = 0;
  314.       modules[pos].m_time += time;
  315.       modules[pos].m_calls++;
  316.       tot_time += time;
  317.       tot_calls++;
  318.       break;
  319.     case 'S':
  320.       sscanf (buf+2, "%lx %lx %64s", &fn_sbot, &fn_ssz, fn_name);
  321.       DBUG_PRINT ("srec", ("%lx %lx %s", fn_sbot, fn_ssz, fn_name));
  322.       pos = add (fn_name);
  323.       lastuse = modules[pos].m_stkuse;
  324. #if 0
  325.       /*
  326.        *  Needs further thought.  Stack use is determined by
  327.        *  difference in stack between two functions with DBUG_ENTER
  328.        *  macros.  If A calls B calls C, where A and C have the
  329.        *  macros, and B doesn't, then B's stack use will be lumped
  330.        *  in with either A's or C's.  If somewhere else A calls
  331.        *  C directly, the stack use will seem to change.  Just
  332.        *  take the biggest for now...
  333.        */
  334.       if (lastuse > 0 && lastuse != fn_ssz) {
  335. fprintf (stderr,
  336.  "warning - %s stack use changed (%lx to %lx)n",
  337.  fn_name, lastuse, fn_ssz);
  338.       }
  339. #endif
  340.       if (fn_ssz > lastuse) {
  341. modules[pos].m_stkuse = fn_ssz;
  342.       }
  343.       if (fn_sbot > highstack) {
  344. highstack = fn_sbot;
  345.       } else if (fn_sbot < lowstack) {
  346. lowstack = fn_sbot;
  347.       }
  348.       break;
  349.     default:
  350.       fprintf (stderr, "unknown record type '%s'n", buf[0]);
  351.       break;
  352.     }
  353.   next_line:;
  354.   }
  355.   /*
  356.    * Now, we've hit eof.  If we still have stuff stacked, then we
  357.    * assume that the user called exit, so give everything the exited
  358.    * time of fn_time.
  359.    */
  360.   while (pop (&oldpos,&oldtime,&oldchild)) {
  361.     time = fn_time - oldtime;
  362.     t = top ();
  363.     t -> children += time;
  364.     time -= oldchild;
  365.     modules[oldpos].m_time += time;
  366.     modules[oldpos].m_calls++;
  367.     tot_time += time;
  368.     tot_calls++;
  369.   }
  370.   DBUG_VOID_RETURN;
  371. }
  372. /*
  373.  * out_header () -- print out the header of the report.
  374.  */
  375. void out_header (outf)
  376. FILE *outf;
  377. {
  378.     DBUG_ENTER ("out_header");
  379.     if (verbose) {
  380. fprintf (outf, "Profile of Executionn");
  381. fprintf (outf, "Execution times are in millisecondsnn");
  382. fprintf (outf, "    Callsttt    Timen");
  383. fprintf (outf, "    -----ttt    ----n");
  384. fprintf (outf, "TimestPercentagetTime SpenttPercentagen");
  385. fprintf (outf, "Calledtof totaltin Functiontof total    ImportancetFunctionn");
  386. fprintf (outf, "======t==========t===========t==========  ==========t========tn");
  387.     } else {
  388. fprintf (outf, "%ld bytes of stack used, from %lx down to %lxnn",
  389.  highstack - lowstack, highstack, lowstack);
  390. fprintf (outf,
  391.  "   %%time     sec   #call ms/call  %%calls  weight   stack  namen");
  392.     }
  393.     DBUG_VOID_RETURN;
  394. }
  395. /*
  396.  * out_trailer () - writes out the summary line of the report.
  397.  */
  398. void out_trailer (outf,sum_calls,sum_time)
  399. FILE *outf;
  400. unsigned long int sum_calls, sum_time;
  401. {
  402.     DBUG_ENTER ("out_trailer");
  403.     if (verbose) {
  404. fprintf (outf, "======t==========t===========t==========t========n");
  405. fprintf (outf, "%6dt%10.2ft%11dt%10.2ftt%-15sn",
  406. sum_calls, 100.0, sum_time, 100.0, "Totals");
  407.     }
  408.     DBUG_VOID_RETURN;
  409. }
  410. /*
  411.  * out_item () - prints out the output line for a single entry,
  412.  * and sets the calls and time fields appropriately.
  413.  */
  414. void out_item (outf, m,called,timed)
  415. FILE *outf;
  416. register struct module_t *m;
  417. unsigned long int *called, *timed;
  418. {
  419.     char *name = m -> name;
  420.     register unsigned int calls = m -> m_calls;
  421.     register unsigned long time = m -> m_time;
  422.     register unsigned long stkuse = m -> m_stkuse;
  423.     unsigned int import;
  424.     double per_time = 0.0;
  425.     double per_calls = 0.0;
  426.     double ms_per_call, ftime;
  427.     DBUG_ENTER ("out_item");
  428.     if (tot_time > 0) {
  429. per_time = (double) (time * 100) / (double) tot_time;
  430.     }
  431.     if (tot_calls > 0) {
  432. per_calls = (double) (calls * 100) / (double) tot_calls;
  433.     }
  434.     import = (unsigned int) (per_time * per_calls);
  435.     if (verbose) {
  436. fprintf (outf, "%6dt%10.2ft%11dt%10.2f  %10dt%-15sn",
  437. calls, per_calls, time, per_time, import, name);
  438.     } else {
  439. ms_per_call = time;
  440. ms_per_call /= calls;
  441. ftime = time;
  442. ftime /= 1000;
  443. fprintf (outf, "%8.2f%8.3f%8u%8.3f%8.2f%8u%8u  %-sn",
  444. per_time, ftime, calls, ms_per_call, per_calls, import,
  445.  stkuse, name);
  446.     }
  447.     *called = calls;
  448.     *timed = time;
  449.     DBUG_VOID_RETURN;
  450. }
  451. /*
  452.  * out_body (outf, root,s_calls,s_time) -- Performs an inorder traversal
  453.  * on the binary search tree (root).  Calls out_item to actually print
  454.  * the item out.
  455.  */
  456. void out_body (outf, root,s_calls,s_time)
  457. FILE *outf;
  458. register unsigned int root;
  459. register unsigned long int *s_calls, *s_time;
  460. {
  461.     unsigned long int calls, time;
  462.     DBUG_ENTER ("out_body");
  463.     DBUG_PRINT ("out_body", ("%d,%d",*s_calls,*s_time));
  464.     if (root == MAXPROCS) {
  465. DBUG_PRINT ("out_body", ("%d,%d",*s_calls,*s_time));
  466.     } else {
  467. while (root != MAXPROCS) {
  468.     out_body (outf, s_table[root].lchild,s_calls,s_time);
  469.     out_item (outf, &modules[s_table[root].pos],&calls,&time);
  470.     DBUG_PRINT ("out_body", ("-- %d -- %d --", calls, time));
  471.     *s_calls += calls;
  472.     *s_time += time;
  473.     root = s_table[root].rchild;
  474. }
  475. DBUG_PRINT ("out_body", ("%d,%d", *s_calls, *s_time));
  476.     }
  477.     DBUG_VOID_RETURN;
  478. }
  479. /*
  480.  * output () - print out a nice sorted output report on outf.
  481.  */
  482. void output (outf)
  483. FILE *outf;
  484. {
  485.     unsigned long int sum_calls = 0;
  486.     unsigned long int sum_time = 0;
  487.     DBUG_ENTER ("output");
  488.     if (n_items == 0) {
  489. fprintf (outf, "%s: No functions to tracen", my_name);
  490. exit (EX_DATAERR);
  491.     }
  492.     out_header (outf);
  493.     out_body (outf, 0,&sum_calls,&sum_time);
  494.     out_trailer (outf, sum_calls,sum_time);
  495.     DBUG_VOID_RETURN;
  496. }
  497. #define usage() fprintf (DBUG_FILE,"Usage: %s [-v] [prof-file]n",my_name)
  498. extern int optind, getopt _A((int argc, char **argv, char *opts));
  499. extern char *optarg;
  500. int main (argc, argv, environ)
  501. int argc;
  502. char *argv[], *environ[];
  503. {
  504.     register int c;
  505.     int badflg = 0;
  506.     FILE *infile;
  507.     FILE *outfile = {stdout};
  508.     DBUG_ENTER ("main");
  509.     DBUG_PROCESS (argv[0]);
  510.     my_name = argv[0];
  511.     while ((c = getopt (argc,argv,"#:v")) != EOF) {
  512. switch (c) {
  513.     case '#': /* Debugging Macro enable */
  514. DBUG_PUSH (optarg);
  515. break;
  516.     case 'v': /* Verbose mode */
  517. verbose++;
  518. break;
  519.     default:
  520. badflg++;
  521. break;
  522. }
  523.     }
  524.     if (badflg) {
  525. usage ();
  526. DBUG_RETURN (EX_USAGE);
  527.     }
  528.     if (optind < argc) {
  529. FILEOPEN (infile, argv[optind], "r");
  530.     } else {
  531. FILEOPEN (infile, PRO_FILE, "r");
  532.     }
  533.     process (infile);
  534.     output (outfile);
  535.     DBUG_RETURN (EX_OK);
  536. }
  537. #if !unix && !xenix /* If not unix, getopt() is probably not available */
  538. /*
  539.  * From std-unix@ut-sally.UUCP (Moderator, John Quarterman) Sun Nov  3 14:34:15 1985
  540.  * Relay-Version: version B 2.10.3 4.3bsd-beta 6/6/85; site gatech.CSNET
  541.  * Posting-Version: version B 2.10.2 9/18/84; site ut-sally.UUCP
  542.  * Path: gatech!akgua!mhuxv!mhuxt!mhuxr!ulysses!allegra!mit-eddie!genrad!panda!talcott!harvard!seismo!ut-sally!std-unix
  543.  * From: std-unix@ut-sally.UUCP (Moderator, John Quarterman)
  544.  * Newsgroups: mod.std.unix
  545.  * Subject: public domain AT&T getopt source
  546.  * Message-ID: <3352@ut-sally.UUCP>
  547.  * Date: 3 Nov 85 19:34:15 GMT
  548.  * Date-Received: 4 Nov 85 12:25:09 GMT
  549.  * Organization: IEEE/P1003 Portable Operating System Environment Committee
  550.  * Lines: 91
  551.  * Approved: jsq@ut-sally.UUCP
  552.  *
  553.  * Here's something you've all been waiting for:  the AT&T public domain
  554.  * source for getopt(3).  It is the code which was given out at the 1985
  555.  * UNIFORUM conference in Dallas.  I obtained it by electronic mail
  556.  * directly from AT&T.  The people there assure me that it is indeed
  557.  * in the public domain.
  558.  *
  559.  * There is no manual page.  That is because the one they gave out at
  560.  * UNIFORUM was slightly different from the current System V Release 2
  561.  * manual page.  The difference apparently involved a note about the
  562.  * famous rules 5 and 6, recommending using white space between an option
  563.  * and its first argument, and not grouping options that have arguments.
  564.  * Getopt itself is currently lenient about both of these things White
  565.  * space is allowed, but not mandatory, and the last option in a group can
  566.  * have an argument.  That particular version of the man page evidently
  567.  * has no official existence, and my source at AT&T did not send a copy.
  568.  * The current SVR2 man page reflects the actual behavor of this getopt.
  569.  * However, I am not about to post a copy of anything licensed by AT&T.
  570.  *
  571.  * I will submit this source to Berkeley as a bug fix.
  572.  *
  573.  * I, personally, make no claims or guarantees of any kind about the
  574.  * following source.  I did compile it to get some confidence that
  575.  * it arrived whole, but beyond that you're on your own.
  576.  *
  577.  */
  578. /*LINTLIBRARY*/
  579. int opterr = 1;
  580. int optind = 1;
  581. int optopt;
  582. char *optarg;
  583. static void _ERR(s,c,argv)
  584. char *s;
  585. int c;
  586. char *argv[];
  587. {
  588. char errbuf[3];
  589. if (opterr) {
  590. errbuf[0] = c;
  591. errbuf[1] = 'n';
  592. (void) fprintf(stderr, "%s", argv[0]);
  593. (void) fprintf(stderr, "%s", s);
  594. (void) fprintf(stderr, "%s", errbuf);
  595. }
  596. }
  597. int getopt(argc, argv, opts)
  598. int argc;
  599. char **argv, *opts;
  600. {
  601. static int sp = 1;
  602. register int c;
  603. register char *cp;
  604. if(sp == 1)
  605. if(optind >= argc ||
  606.    argv[optind][0] != '-' || argv[optind][1] == '')
  607. return(EOF);
  608. else if(strcmp(argv[optind], "--") == 0) {
  609. optind++;
  610. return(EOF);
  611. }
  612. optopt = c = argv[optind][sp];
  613. if(c == ':' || (cp=strchr(opts, c)) == NULL) {
  614. _ERR(": illegal option -- ", c, argv);
  615. if(argv[optind][++sp] == '') {
  616. optind++;
  617. sp = 1;
  618. }
  619. return('?');
  620. }
  621. if(*++cp == ':') {
  622. if(argv[optind][sp+1] != '')
  623. optarg = &argv[optind++][sp+1];
  624. else if(++optind >= argc) {
  625. _ERR(": option requires an argument -- ", c, argv);
  626. sp = 1;
  627. return('?');
  628. } else
  629. optarg = argv[optind++];
  630. sp = 1;
  631. } else {
  632. if(argv[optind][++sp] == '') {
  633. sp = 1;
  634. optind++;
  635. }
  636. optarg = NULL;
  637. }
  638. return(c);
  639. }
  640. #endif /* !unix && !xenix */