104 lines
2.9 KiB
C
104 lines
2.9 KiB
C
/*
|
|
* Empire - A multi-player, client/server Internet based war game.
|
|
* Copyright (C) 1986-2008, Dave Pare, Jeff Bailey, Thomas Ruschak,
|
|
* Ken Stevens, Steve McClure
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
* ---
|
|
*
|
|
* See files README, COPYING and CREDITS in the root of the source
|
|
* tree for related information and legal notices. It is expected
|
|
* that future projects/authors will amend these files as needed.
|
|
*
|
|
* ---
|
|
*
|
|
* parse.c: Parse an Empire command line
|
|
*
|
|
* Known contributors to this file:
|
|
*
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include <ctype.h>
|
|
#include "prototypes.h"
|
|
|
|
/*
|
|
* Parse user command in BUF.
|
|
* BUF is UTF-8.
|
|
* Command name and arguments are copied into SPACE[], whose size must
|
|
* be at least strlen(BUF) + 1.
|
|
* Set ARG[0] to the zero-terminated command name.
|
|
* Set ARG[1..N] to the zero-terminated arguments, where N is the
|
|
* number of arguments. Set ARG[N+1..127] to NULL.
|
|
* Set TAIL[0..N] to beginning of ARG[0] in BUF[].
|
|
* If CONDP is not null, recognize conditional argument syntax, and
|
|
* set *CONDP to the conditional argument if present, else NULL.
|
|
* If REDIR is not null, recognize redirection syntax, and set *REDIR
|
|
* to UTF-8 redirection string if present, else NULL.
|
|
* Return number of slots used in ARG[], or -1 on error.
|
|
*/
|
|
int
|
|
parse(char *buf, char *space, char **arg,
|
|
char **tail, char **condp, char **redir)
|
|
{
|
|
int i, quoted, argnum;
|
|
|
|
if (redir)
|
|
*redir = NULL;
|
|
if (condp)
|
|
*condp = NULL;
|
|
|
|
for (argnum = 0; argnum < 127;) {
|
|
for (; isspace(*(unsigned char *)buf); buf++) ;
|
|
if (!*buf)
|
|
break;
|
|
|
|
/* recognize redirection syntax */
|
|
if (redir && (*buf == '>' || *buf == '|')) {
|
|
*redir = buf;
|
|
break;
|
|
}
|
|
|
|
if (condp && *buf == '?') {
|
|
buf++;
|
|
*condp = space;
|
|
} else {
|
|
if (tail)
|
|
tail[argnum] = buf;
|
|
arg[argnum++] = space;
|
|
}
|
|
|
|
/* copy argument */
|
|
quoted = 0;
|
|
for (; *buf && (quoted || !isspace(*(unsigned char *)buf)); buf++) {
|
|
if (*buf == '"')
|
|
quoted = !quoted;
|
|
else if (*buf >= 0x20 && *buf <= 0x7e)
|
|
*space++ = *buf;
|
|
/* else funny character; ignore */
|
|
}
|
|
*space++ = 0;
|
|
}
|
|
|
|
for (i = argnum; i < 128; i++) {
|
|
arg[i] = NULL;
|
|
if (tail)
|
|
tail[i] = NULL;
|
|
}
|
|
|
|
return argnum;
|
|
}
|