]> git.pond.sub.org Git - empserver/blob - src/lib/gen/parse.c
409c6f137fd37b4638a70b87d7293899c464a6fe
[empserver] / src / lib / gen / parse.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2006, 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 files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future 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 #include <config.h>
35
36 #include <ctype.h>
37 #include "prototypes.h"
38
39 /*
40  * Parse user command in BUF.
41  * BUF is UTF-8.
42  * Set ARG[0] to point to the command name.
43  * Set ARG[1..N] to point to arguments, where N is the number of
44  * arguments.  Set ARG[N+1..127] to NULL.
45  * If *CONDP is not null, recognize conditional argument syntax, and
46  * set *CONDP to the conditional argument if present, else NULL.
47  * Command name and arguments are copied into SPACE[], whose size must
48  * be at least strlen(BUF) + 1.
49  * If *REDIR is not null, recognize redirection syntax, and set *REDIR
50  * to UTF-8 redirection string if present, else NULL.
51  * Return number of slots used in ARG[], or -1 on error.
52  */
53 int
54 parse(char *buf, char **arg, char **condp, char *space, char **redir)
55 {
56     char *bp2;
57     char *bp1 = space;
58     int fs;
59     int quoted;
60     int argnum;
61
62     if (redir)
63         *redir = 0;
64     if (condp != NULL)
65         *condp = NULL;
66     for (argnum = 0; *buf && argnum < 127;) {
67         while (isspace(*buf))
68             buf++;
69         if (!*buf)
70             break;
71         if (redir && (*buf == '>' || *buf == '|')) {
72             *redir = buf;
73             break;
74         }
75         quoted = 0;
76         for (bp2 = bp1; *buf;) {
77             if (!quoted && isspace(*buf)) {
78                 buf++;
79                 break;
80             }
81             if (*buf == '"') {
82                 quoted = !quoted;
83                 buf++;
84             } else {
85                 if (*buf >= 0x20 && *buf <= 0x7e)
86                     *bp1++ = *buf++;
87                 else
88                     buf++;
89             }
90         }
91         *bp1++ = 0;
92         if (*bp2 == '?' && condp != NULL) {
93             *condp = bp2 + 1;
94         } else {
95             arg[argnum] = bp2;
96             argnum++;
97         }
98     }
99     for (fs = argnum; fs < 128; fs++)
100         arg[fs] = NULL;
101     return argnum;
102 }