/*****************************************************************************\
* $Id: argv.c,v 1.14 2010-02-08 22:02:31 chu11 Exp $
*****************************************************************************
* Copyright (C) 2007-2015 Lawrence Livermore National Security, LLC.
* Copyright (C) 2003-2007 The Regents of the University of California.
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
* Written by Albert Chu <chu11@llnl.gov>
* UCRL-CODE-155698
*
* This file is part of Ipmipower, a remote power control utility.
* For details, see http://www.llnl.gov/linux/.
*
* The code in this file began with the code in the Powerman project.
* See below for original copyright information.
*
* Ipmipower 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 3 of the License, or (at your
* option) any later version.
*
* Ipmipower 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 Ipmipower. If not, see <http://www.gnu.org/licenses/>.
*****************************************************************************
* Copyright (C) 2003 The Regents of the University of California.
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
* Written by Andrew Uselton (uselton2@llnl.gov>
* UCRL-CODE-2002-008.
*
* This file is part of PowerMan, a remote power management program.
* For details, see <http://www.llnl.gov/linux/powerman/>.
*
* PowerMan 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.
*
* PowerMan 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 PowerMan; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
\*****************************************************************************/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif /* HAVE_CONFIG_H */
#if STDC_HEADERS
#include <string.h>
#include <ctype.h>
#endif /* STDC_HEADERS */
#include <errno.h>
#include <assert.h>
#include "argv.h"
#include "freeipmi-portability.h"
/* make a copy of the first word in str and advance str past it */
static char *_nextargv(char **strp, char *ignore)
{
char *str = *strp;
char *word;
int len;
char *cpy = NULL;
while (*str && (isspace(*str) || strchr(ignore, *str)))
str++;
word = str;
while (*str && !(isspace(*str) || strchr(ignore, *str)))
str++;
len = str - word;
if (len > 0) {
if (!(cpy = (char *)malloc(len + 1))) {
fprintf (stderr, "malloc: %s", strerror (errno));
exit (EXIT_FAILURE);
}
memcpy(cpy, word, len);
cpy[len] = '\0';
}
*strp = str;
return cpy;
}
/* return number of space seperated words in str */
static int _sizeargv(char *str, char *ignore)
{
int count = 0;
do {
while (*str && (isspace(*str) || strchr(ignore, *str)))
str++;
if (*str)
count++;
while (*str && !(isspace(*str) || strchr(ignore, *str)))
str++;
} while (*str);
return count;
}
/* Create a null-terminated argv array given a command line.
* Characters in the 'ignore' set are treated like white space.
*/
char **argv_create(char *cmdline, char *ignore)
{
int argc = _sizeargv(cmdline, ignore);
char **argv;
int i;
if (!(argv = (char **)malloc(sizeof(char *) * (argc + 1)))) {
fprintf (stderr, "malloc: %s", strerror (errno));
exit (EXIT_FAILURE);
}
for (i = 0; i < argc; i++) {
argv[i] = _nextargv(&cmdline, ignore);
assert(argv[i] != NULL);
}
argv[i] = NULL;
return argv;
}
/* Destroy a null-terminated argv array.
*/
void argv_destroy(char **argv)
{
int i;
for (i = 0; argv[i] != NULL; i++)
free((void *)argv[i]);
free((void *)argv);
}
/*
* vi:tabstop=4 shiftwidth=4 expandtab
*/