chiark / gitweb /
xacpi-simple is not acpi any more
[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 <ian@davenant.greenend.org.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 3,
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, consult the Free Software
19  * Foundation's website at www.fsf.org, or the GNU Project website at
20  * www.gnu.org.
21  */
22
23 #include <stdio.h>
24 #include <string.h>
25 #include <stdarg.h>
26 #include <stdlib.h>
27
28 #include "myopt.h"
29
30 void badusage(const char *fmt, ...) {
31   va_list al;
32   
33   va_start(al,fmt);
34   vfprintf(stderr,fmt,al);
35   va_end(al);
36   fputc('\n',stderr);
37   usagemessage();
38   exit(-1);
39 }
40
41 void myopt(const char *const **argvp, const struct cmdinfo *cmdinfos) {
42   const struct cmdinfo *cip;
43   const char *p, *value;
44   int l;
45
46   ++(*argvp);
47   while ((p= **argvp) && *p == '-') {
48     ++(*argvp);
49     if (!strcmp(p,"--")) break;
50     if (*++p == '-') {
51       ++p; value=0;
52       for (cip= cmdinfos;
53            cip->olong || cip->oshort;
54            cip++) {
55         if (!cip->olong) continue;
56         if (!strcmp(p,cip->olong)) break;
57         l= strlen(cip->olong);
58         if (!strncmp(p,cip->olong,l) &&
59             (p[l]== ((cip->takesvalue==2) ? '-' : '='))) { value=p+l+1; break; }
60       }
61       if (!cip->olong) badusage("unknown option --%s",p);
62       if (cip->takesvalue) {
63         if (!value) {
64           value= *(*argvp)++;
65           if (!value) badusage("--%s option takes a value",cip->olong);
66         }
67         if (cip->call) cip->call(cip,value);
68         else *cip->sassignto= value;
69       } else {
70         if (value) badusage("--%s option does not take a value",cip->olong);
71         if (cip->call) cip->call(cip,0);
72         else *cip->iassignto= cip->arg;
73       }
74     } else {
75       while (*p) {
76         for (cip= cmdinfos; (cip->olong || cip->oshort) && *p != cip->oshort; cip++);
77         if (!cip->oshort) badusage("unknown option -%c",*p);
78         p++;
79         if (cip->takesvalue) {
80           if (!*p) {
81             value= *(*argvp)++;
82             if (!value) badusage("-%c option takes a value",cip->oshort);
83           } else {
84             value= p; p="";
85             if (*value == '=') value++;
86           }
87           if (cip->call) cip->call(cip,value);
88           else *cip->sassignto= value;
89         } else {
90           if (*p == '=') badusage("-%c option does not take a value",cip->oshort);
91           if (cip->call) cip->call(cip,0);
92           else *cip->iassignto= cip->arg;
93         }
94       }
95     }
96   }
97 }