chiark / gitweb /
works - needs name etc.
[chiark-utils.git] / cprogs / myopt.c
1 /*
2  * libdpkg - Debian packaging suite library routines
3  * myopt.c - my very own option parsing
4  *
5  * Copyright (C) 1994,1995 Ian Jackson <iwj10@cus.cam.ac.uk>
6  *
7  * This is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2,
10  * or (at your option) any later version.
11  *
12  * This is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public
18  * License along with this file; if not, write to the Free Software
19  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21
22 #include <stdio.h>
23 #include <string.h>
24 #include <stdarg.h>
25 #include <stdlib.h>
26
27 #include "myopt.h"
28
29 void badusage(const char *fmt, ...) {
30   va_list al;
31   
32   va_start(al,fmt);
33   vfprintf(stderr,fmt,al);
34   va_end(al);
35   fputc('\n',stderr);
36   usagemessage();
37   exit(-1);
38 }
39
40 void myopt(const char *const **argvp, const struct cmdinfo *cmdinfos) {
41   const struct cmdinfo *cip;
42   const char *p, *value;
43   int l;
44
45   ++(*argvp);
46   while ((p= **argvp) && *p == '-') {
47     ++(*argvp);
48     if (!strcmp(p,"--")) break;
49     if (*++p == '-') {
50       ++p; value=0;
51       for (cip= cmdinfos;
52            cip->olong || cip->oshort;
53            cip++) {
54         if (!cip->olong) continue;
55         if (!strcmp(p,cip->olong)) break;
56         l= strlen(cip->olong);
57         if (!strncmp(p,cip->olong,l) &&
58             (p[l]== ((cip->takesvalue==2) ? '-' : '='))) { value=p+l+1; break; }
59       }
60       if (!cip->olong) badusage("unknown option --%s",p);
61       if (cip->takesvalue) {
62         if (!value) {
63           value= *(*argvp)++;
64           if (!value) badusage("--%s option takes a value",cip->olong);
65         }
66         if (cip->call) cip->call(cip,value);
67         else *cip->sassignto= value;
68       } else {
69         if (value) badusage("--%s option does not take a value",cip->olong);
70         if (cip->call) cip->call(cip,0);
71         else *cip->iassignto= cip->arg;
72       }
73     } else {
74       while (*p) {
75         for (cip= cmdinfos; (cip->olong || cip->oshort) && *p != cip->oshort; cip++);
76         if (!cip->oshort) badusage("unknown option -%c",*p);
77         p++;
78         if (cip->takesvalue) {
79           if (!*p) {
80             value= *(*argvp)++;
81             if (!value) badusage("-%c option takes a value",cip->oshort);
82           } else {
83             value= p; p="";
84             if (*value == '=') value++;
85           }
86           if (cip->call) cip->call(cip,value);
87           else *cip->sassignto= value;
88         } else {
89           if (*p == '=') badusage("-%c option does not take a value",cip->oshort);
90           if (cip->call) cip->call(cip,0);
91           else *cip->iassignto= cip->arg;
92         }
93       }
94     }
95   }
96 }