]> git.pond.sub.org Git - empserver/blob - src/lib/gen/parse.c
Import of Empire 4.2.12
[empserver] / src / lib / gen / parse.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, 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, s_char **redir)
48 {
49         register s_char *bp2;
50         register s_char *bp1 = space;
51         register s_char **arg = argpp;
52         int     fs;
53         int     quoted;
54         int     argnum;
55
56         if (space == 0)
57                 return -1;
58         if (redir)
59                 *redir = 0;
60         if (condp != 0)
61                 *condp = 0;
62         for (argnum=0; *buf && argnum < 100; ) {
63                 arg[argnum] = bp1;
64                 argnum++;
65                 while (isspace(*buf))
66                         buf++;
67                 if (redir && (*buf == '>' || *buf == '|')) {
68                         *redir = buf;
69                         argnum--;
70                         arg[argnum] = 0;
71                         break;
72                 }
73                 quoted = 0;
74                 for (bp2 = bp1; *buf; ) {
75                     if (!quoted && isspace(*buf)) {
76                                 buf++;
77                                 break;
78                         }
79                         if (*buf == '"'){
80                                 quoted = !quoted;
81                                 buf++;
82                         } else {
83                                 *bp1++ = *buf++;
84                         }
85                 }
86                 *bp1++ = 0;
87                 if (*bp2 == '?' && condp != 0) {
88                         *condp = bp2 + 1;
89                         argnum--;
90                 }
91         }
92         arg[argnum] = 0;
93         for (fs = argnum + 1; fs < 16; fs++)
94                 arg[fs] = 0;
95         return argnum;
96 }