]> git.pond.sub.org Git - empserver/blob - src/lib/gen/parse.c
Update copyright notice.
[empserver] / src / lib / gen / parse.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2004, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  parse.c: Parse an Empire command line
29  * 
30  *  Known contributors to this file:
31  *     
32  */
33
34 /*
35  * parse empire command line, chop into argp
36  * If values argpp and spacep passed, parse will use them.
37  * otherwise, parse will use static space and global argp.
38  * parse assumes that argpp is a char *buf[16], and that spacep
39  * points to a buf of at least 256 bytes.
40  */
41
42 #include <ctype.h>
43 #include "misc.h"
44 #include "gen.h"
45
46 int
47 parse(register s_char *buf, s_char **argpp, s_char **condp, s_char *space,
48       s_char **redir)
49 {
50     register s_char *bp2;
51     register s_char *bp1 = space;
52     register s_char **arg = argpp;
53     int fs;
54     int quoted;
55     int argnum;
56
57     if (space == 0)
58         return -1;
59     if (redir)
60         *redir = 0;
61     if (condp != 0)
62         *condp = 0;
63     for (argnum = 0; *buf && argnum < 100;) {
64         while (isspace(*buf))
65             buf++;
66         if (!*buf)
67             break;
68         if (redir && (*buf == '>' || *buf == '|')) {
69             *redir = buf;
70             break;
71         }
72         quoted = 0;
73         for (bp2 = bp1; *buf;) {
74             if (!quoted && isspace(*buf)) {
75                 buf++;
76                 break;
77             }
78             if (*buf == '"') {
79                 quoted = !quoted;
80                 buf++;
81             } else {
82                 *bp1++ = *buf++;
83             }
84         }
85         *bp1++ = 0;
86         if (*bp2 == '?' && condp != 0) {
87             *condp = bp2 + 1;
88         } else {
89             arg[argnum] = bp2;
90             argnum++;
91         }
92     }
93     arg[argnum] = 0;
94     for (fs = argnum + 1; fs < 16; fs++)
95         arg[fs] = 0;
96     return argnum;
97 }