chiark / gitweb /
b3c216739d072f1670c61332f7f317aaf49f3452
[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 <string.h>
23
24 #include "config.h"
25 #include "myopt.h"
26 #include "dpkg.h"
27
28 void myopt(const char *const **argvp, const struct cmdinfo *cmdinfos) {
29   const struct cmdinfo *cip;
30   const char *p, *value;
31   int l;
32
33   ++(*argvp);
34   while ((p= **argvp) && *p == '-') {
35     ++(*argvp);
36     if (!strcmp(p,"--")) break;
37     if (*++p == '-') {
38       ++p; value=0;
39       for (cip= cmdinfos;
40            cip->olong || cip->oshort;
41            cip++) {
42         if (!cip->olong) continue;
43         if (!strcmp(p,cip->olong)) break;
44         l= strlen(cip->olong);
45         if (!strncmp(p,cip->olong,l) &&
46             (p[l]== ((cip->takesvalue==2) ? '-' : '='))) { value=p+l+1; break; }
47       }
48       if (!cip->olong) badusage("unknown option --%s",p);
49       if (cip->takesvalue) {
50         if (!value) {
51           value= *(*argvp)++;
52           if (!value) badusage("--%s option takes a value",cip->olong);
53         }
54         if (cip->call) cip->call(cip,value);
55         else *cip->sassignto= value;
56       } else {
57         if (value) badusage("--%s option does not take a value",cip->olong);
58         if (cip->call) cip->call(cip,0);
59         else *cip->iassignto= cip->arg;
60       }
61     } else {
62       while (*p) {
63         for (cip= cmdinfos; (cip->olong || cip->oshort) && *p != cip->oshort; cip++);
64         if (!cip->oshort) badusage("unknown option -%c",*p);
65         p++;
66         if (cip->takesvalue) {
67           if (!*p) {
68             value= *(*argvp)++;
69             if (!value) badusage("-%c option takes a value",cip->oshort);
70           } else {
71             value= p; p="";
72             if (*value == '=') value++;
73           }
74           if (cip->call) cip->call(cip,value);
75           else *cip->sassignto= value;
76         } else {
77           if (*p == '=') badusage("-%c option does not take a value",cip->oshort);
78           if (cip->call) cip->call(cip,0);
79           else *cip->iassignto= cip->arg;
80         }
81       }
82     }
83   }
84 }