Is there a C library function that I can use to parse a piece of text and obtain values for argv and argc, as if the text had been passed to an application on the command line?

This doesn't have to work on Windows, just Linux - I also don't care about quoting of arguments.

link|improve this question

For what platform? How command lines get parsed into argc/argv is quite different between Windows and UNIX-based systems, for example. On UNIX, the shell typically transforms the command-line significantly, including doing globbing (file pattern expansion) as well as variable substituion. On Windows the file pattern expansion is not done by the shell (unless you're using something like cygwin or MKS Toolkit, of course). – Laurence Gonsalves Nov 10 '09 at 9:18
If you don't even need to handle quoted args, I really would suggest coding your own function rather than introducing a 3rd party library just for this task. – Remo.D Nov 10 '09 at 10:15
Did you try getopt()? (man 3 getopt). You can see most of UNIX/Linux standard tools sources for examples, HUGE number of them. Even man page (at least Linux one) contains decent example. There is also number of wrappers (you see recommendations here) but getopt() seems to be the only one available for ANY UNIX platform (actually it seems to be part of POSIX standard). – Roman Nikitchenko Nov 10 '09 at 11:26
If ur still interested and want industrial strength from scratch, in small code package. Search this page for nargv By far best solution I have seen here from pure c code. Please Vote this Answer Up! So others may find it. – Triston J. Taylor Apr 9 at 10:32
feedback

7 Answers

up vote 4 down vote accepted

If glib solution is overkill for your case you may consider coding one yourself.

Then you can:

  • scan the string and count how many arguments there are (and you get your argc)
  • allocate an array of char * (for your argv)
  • rescan the string, assign the pointers in the allocated array and replace spaces with '\0' (if you can't modify the string containing the arguments, you should duplicate it).
  • don't forget to free what you have allocated!

The diagram below should clarify (hopefully):

             aa bbb ccc "dd d" ee         <- original string

             aa0bbb0ccc00dd d00ee0        <- transformed string
             |  |   |    |     |
   argv[0] __/  /   /    /     /
   argv[1] ____/   /    /     /
   argv[2] _______/    /     /
   argv[3] ___________/     /
   argv[4] ________________/

A possible API could be:

    char **parseargs(char *arguments, int *argc);
    void   freeparsedargs(char **argv);

You will need additional considerations to implement freeparsedargs() safely.

If your string is very long and you don't want to scan twice you may consider alteranatives like allocating more elements for the argv arrays (and reallocating if needed).

EDIT: Proposed solution (desn't handle quoted argument).

    #include <stdio.h>

    static int setargs(char *args, char **argv)
    {
       int count = 0;

       while (isspace(*args)) ++args;
       while (*args) {
         if (argv) argv[count] = args;
         while (*args && !isspace(*args)) ++args;
         if (argv && *args) *args++ = '\0';
         while (isspace(*args)) ++args;
         count++;
       }
       return count;
    }

    char **parsedargs(char *args, int *argc)
    {
       char **argv = NULL;
       int    argn = 0;

       if (args && *args
        && (args = strdup(args))
        && (argn = setargs(args,NULL))
        && (argv = malloc((argn+1) * sizeof(char *)))) {
          *argv++ = args;
          argn = setargs(args,argv);
       }

       if (args && !argv) free(args);

       *argc = argn;
       return argv;
    }

    void freeparsedargs(char **argv)
    {
      if (argv) {
        free(argv[-1]);
        free(argv-1);
      } 
    }

    int main(int argc, char *argv[])
    {
      int i;
      char **av;
      int ac;
      char *as = NULL;

      if (argc > 1) as = argv[1];

      av = parsedargs(as,&ac);
      printf("== %d\n",ac);
      for (i = 0; i < ac; i++)
        printf("[%s]\n",av[i]);

      freeparsedargs(av);
      exit(0);
    }
link|improve this answer
... so why not use standard getopt(3) as many tools already do? – Roman Nikitchenko Nov 10 '09 at 20:08
3  
because getopt does a different job. It takes an array of arguments and look for options into it. This question is about splitting a string of "arguments" into an array of char * which is something that getopt is not able to do – Remo.D Nov 10 '09 at 20:28
If you transform input string like that you can't do string concatenation with quotes" like "this' or 'this. See my answer for a full featured solution. – Triston J. Taylor Apr 9 at 18:32
feedback

The always-wonderful glib has g_shell_parse_args() which sounds like what you're after.

If you're not interested in even quoting, this might be overkill. All you need to do is tokenize, using whitespace as a token character. Writing a simple routine to do that shouldn't take long, really.

If you're not super-stingy on memory, doing it in one pass without reallocations should be easy; just assume a worst-case of every second character being a space, thus assuming a string of n characters contains at most (n + 1) / 2 arguments, and (of course) at most n bytes of argument text (excluding terminators).

link|improve this answer
feedback

I'm surprised nobody has provided the simplest answer using standard POSIX functionality:

http://www.opengroup.org/onlinepubs/9699919799/functions/wordexp.html

link|improve this answer
feedback

Matt Peitrek's LIBTINYC has a module called argcargv.cpp that takes a string and parses it out to the argument array taking quoted arguments into account. Note that it's Windows-specific, but it's pretty simple so should be easy to move to whatever platform you want.

link|improve this answer
With the small problem that is C++ and not C :) – Remo.D Nov 10 '09 at 9:14
Rename the file to argcargv.c and it's C. Literally. – Michael Burr Nov 10 '09 at 15:10
feedback

Unfortunately C++ but for others which might search for this kind of library i recommend:

ParamContainer - easy-to-use command-line parameter parser

Really small and really easy.

p.addParam("long-name", 'n', ParamContainer::regular, 
           "parameter description", "default_value");

programname --long-name=value

cout << p["long-name"];
>> value

From my experience:

  • very useful and simple
  • stable on production
  • well tested (by me)
link|improve this answer
That's interesting: second answer suggesting a C++ solution to a C question ... – Remo.D Nov 10 '09 at 9:25
You're right, I've post it because when I was looking at sources some time ago, I remember it was generic, OOD free code, it looked almost like C. But I think its worth to keep this here. – bua Nov 10 '09 at 9:37
feedback

I ended up writing a function to do this myself, I don't think its very good but it works for my purposes - feel free to suggest improvements for anyone else who needs this in the future:

void parseCommandLine(char* cmdLineTxt, char*** argv, int* argc){
    int count = 1;

    char *cmdLineCopy = strdupa(cmdLineTxt);
    char* match = strtok(cmdLineCopy, " ");
 // First, count the number of arguments
    while(match != NULL){
        count++;
        match = strtok(NULL, " ");
    }

    *argv = malloc(sizeof(char*) * (count+1));
    (*argv)[count] = 0;
    **argv = strdup("test"); // The program name would normally go in here

    if (count > 1){
        int i=1;
        cmdLineCopy = strdupa(cmdLineTxt);
        match = strtok(cmdLineCopy, " ");
        do{
            (*argv)[i++] = strdup(match);
            match = strtok(NULL, " ");
        } while(match != NULL);
     }

    *argc = count;
}
link|improve this answer
I like the brevity of your solution but I'm not a big fan of strtok() or strdupa(). I'm also not very clear on what the strdup("test") is for. The major drawback to me seems the fact that you have many strdup and, hence, you will have to do many free() when done. I posted an alternative version in my answer, just in case it may be useful for somebody. – Remo.D Nov 10 '09 at 16:42
feedback

New Argument Vectors (nargv)

The original poster stated he did not want quoted string support. Well, I do, and its not too difficult to implement, along with quote escapes. To prove my point, I provide the following code sample without warranty. You (not being an author or benefactor of the code) may not claim any copyright to this code.

file: nargv_internal.h

/*
 * nargv_internal.h
 *
 *  Created on: Apr 9, 2012
 *      Author: Triston J. Taylor (pc.wiz.tt@gmail.com)
 */

// This file is needed by nargv.c/cpp

#ifndef NARGV_INTERNAL_H_

    #define NARGV_INTERNAL_H_

    // reserve 10K combined memory for Argument processing.
    #define NARGV_TABLE_SIZE 512     // 512 Vectors = 2kb
    #define NARGV_BUFFER_SIZE 8192 // 8192 bytes = 8kb

#endif /* NARGV_INTERNAL_H_ */


file: nargv.c / nargv.cpp

//============================================================================
// Name         : nargv.c/cpp
// Author       : Triston J. Taylor (pc.wiz.tt@gmail.com)
// Version      : 0.0.9
// Copyright    : (C) Triston J. Taylor 2012. All Rights Reserved
//============================================================================
// Description  : New Argument Vectors
//
//                Parse a shell style string into an argument vector table.
//
//============================================================================
// Header       : nargv.h
//============================================================================
// Public Calls : nargv, nargv_error, nargv_error_index,
//                nargv_buffer_size, nargv_table_size
//============================================================================

#include <string.h>
#include <stdlib.h>
#include <stdio.h>

#include "nargv_internal.h"

static char *InternalArgTable[NARGV_TABLE_SIZE],
            InternalBuffer[NARGV_BUFFER_SIZE];

static int erased = 0, finalIndex = 0, InternalArgCount = 0;

static bool stream_escaped(register char *stream, register unsigned long index, register char escape) {
    register bool escaped = false;
    if (!stream) return escaped;
    while (index != 0) {
        index--;
        if (*(stream+index) == escape) {
            escaped = !escaped;
            continue;
        }
        return escaped;
    }
    return escaped;
}

static char *unescaped_match(char match, char *buffer, unsigned long index, unsigned long length) {
    for (; index < length; index++) {
       if (*(buffer+index) == match) {
           if (stream_escaped(buffer, index, '\\')) {
               continue;
           } else {
               return (buffer+index);
           }
       }
    }
    return 0;
}

static void mem_shiftr(char *ptr, register char *ceil, unsigned long offset, unsigned long amount, bool zfill) {

    register char *source = (ptr+offset+amount);
    register char *destination = (ptr+offset);

    while (source < ceil)  {

        *(destination) = *(source);
        destination++; source++;

    }

    if (!zfill) return;

    // zero fill;
    while (destination < ceil) {
        *destination = 0;
        destination++;
    }

}

int nargv_error_index() {
    return finalIndex + erased;
}

int nargv_buffer_size() {
    return NARGV_BUFFER_SIZE;
}

int nargv_table_size() {
    return NARGV_TABLE_SIZE;
}

static void nargv_unterminated_string_error(char *progname, char *input) {

    const char *errstr1 = ": syntax error: unterminated string literal: ";
    const char *errstr2 = ": ";

    int i, voidWidth = (strlen(progname) + strlen(errstr1)) - (strlen(progname) + strlen(errstr2)) + (finalIndex + erased);

    fprintf(stderr, "%s: parse argument string failure:\n", progname);
    fprintf(stderr, "%s%s%s\n", progname, errstr1, input);
    fprintf(stderr, "%s%s", progname, errstr2);

    for (i = 0; i < voidWidth; i++) fprintf(stderr, ".");
    fprintf(stderr, "^\n");

}

bool nargv_error(char *progname, char *input, int error) {

    const char *explanation;

    switch (error) {

        case '"': case '\'':
             nargv_unterminated_string_error(progname, input);
             goto Goodbye;
        break;

        case 1:
             explanation = "Invalid String Pointer";
        break;

        case 2:
             explanation = "New Argument Vector Pointer is NULL";
        break;

        case 3:
             explanation = "New Argument Count Pointer is NULL";
        break;

        case 4:
             explanation = "New Argument Vector Source Pointer is NULL";
        break;

        case 5:
             explanation = "Source Argument String too large";
        break;

        case 6:
             explanation = "Argument Vector Count exceeds storage space";
        break;

        default:
             return false;
        break;

    }

    fprintf(stderr,"%s: parse argument string: initialization error: %s\n", progname, explanation);

Goodbye:

    fflush(stderr);
    return true;

}

int nargv(char *strIn, char ***nargvOut, int *nargcOut) {

    register int failure = 0;

    register unsigned long BufferIndex = 0;
    register unsigned long BufferLen = 0;

    register char Symbol = 0;

    char *CurrentArgument = 0, *StringTerminator = 0;

    if (!strIn) {
        failure = 1;       // invalid string pointer
        goto fail;
    }

    if (!nargvOut) {
       failure = 2;    // invalid argv[] pointer
       goto fail;
    }

    if (!nargcOut) {
        failure = 3;    // invalid count pointer
        goto fail;
    }

    BufferLen = strlen(strIn);

    if (BufferLen == 0) {
        failure = 4;   // empty string
        goto fail;
    }

    if (BufferLen > NARGV_BUFFER_SIZE) {
        failure = 5; // buffer overflow detected
        goto fail;
    }

    // Internalize the input string for mangling.
    strcpy(InternalBuffer, strIn);

    erased = finalIndex = 0;

    for (BufferIndex = 0; BufferIndex <= BufferLen; BufferIndex++) {

        if (InternalArgCount == NARGV_TABLE_SIZE) {
            failure = 6; // no vector table entries available
            goto fail;
        }

        Symbol = *(InternalBuffer+BufferIndex);

        switch (Symbol) {

            case ' ': case '\t': case '\n': case '\0':  // space tab newline or zero

                if (Symbol) *(InternalBuffer+BufferIndex) = '\0'; // mark zero.

                if (CurrentArgument) {
                    InternalArgTable[InternalArgCount++] = CurrentArgument;
                    CurrentArgument = 0;
                }

            break;

            case '"': case '\'':  // "shell quoted"

                // look backwards for odd slashes
                if (stream_escaped(InternalBuffer, BufferIndex, '\\')) {

                   if (!CurrentArgument) { // begin a new argument.
                       CurrentArgument = (InternalBuffer+BufferIndex);
                   }

                   BufferIndex--; // set destination: escape index
                   mem_shiftr(InternalBuffer, InternalBuffer + BufferLen,
                              BufferIndex, 1, true
                   );

                   erased++;

                   break;

                }

                if (Symbol == '"' ) {
                    StringTerminator = unescaped_match(Symbol, InternalBuffer, BufferIndex + 1, BufferLen);
                } else {
                    StringTerminator = strchr(InternalBuffer + BufferIndex + 1, Symbol);
                }

                if (!StringTerminator) {
                    failure = Symbol;   // unterminated quoted literal
                    goto fail;
                }

                if (!CurrentArgument) {

                    *(InternalBuffer+BufferIndex) = '\0';

                    BufferIndex++;

                    CurrentArgument = (InternalBuffer + BufferIndex);

                    mem_shiftr(StringTerminator, InternalBuffer + BufferLen, 0, 1, true);
                    StringTerminator--;

                    erased++;

                } else { // literal concatenation, shift entire string, overwriting quotes.

                    // shift up the first series
                    mem_shiftr(InternalBuffer, StringTerminator, BufferIndex, 1, false);

                    StringTerminator--; // destination is now before terminator

                    // shift up the second series filling the buffer remains with zeroes.
                    mem_shiftr(StringTerminator, InternalBuffer + BufferLen, 0, 2, true);

                    erased += 2;

                }

                BufferIndex = (StringTerminator - InternalBuffer);

                break;

            default:

                if (!CurrentArgument) CurrentArgument = (InternalBuffer+BufferIndex);
                break;

        }

    }

    *nargcOut = InternalArgCount;
    *nargvOut = InternalArgTable;

    return 0;

fail:

    *nargcOut = 0;
    *nargvOut = 0;

    finalIndex = BufferIndex;

    return failure;

}

#ifdef NARGV_TEST_APP

// A simple app that parses the first argument given, as an argument string.
int main(int argc, char *argv[]) {

    char **nargvOut;

    int nargcOut;
    int err, i;

    printf("* New Argument Vectors Test Results\n\n");

    err = nargv(argv[1], &nargvOut, &nargcOut);

    if (err) {
        nargv_error(argv[0], argv[1], err);
       return err;
    }

    printf("Argument String: %s\n", argv[1]);
    printf("Parsed Argument Count: %i\n\nParsed Argument Strings:\n\n", nargcOut);

    for (i = 0; i != nargcOut; i++) {
        printf("\tnargvOut[%i]: %s\n", i, nargvOut[i]);
    }

    printf("\n");

}

#endif


file: nargv.h

/*
 * nargv.h
 *
 *  Created on: Apr 9, 2012
 *      Author:  Triston J. Taylor (pc.wiz.tt@gmail.com)
 */

#ifndef NARGV_H_
#define NARGV_H_

/*
 * Retrieve the char position in source, at which error occurs.
 */
extern int nargv_error_index();

/*
 * Retrieve the size of the internal string buffer
 */
extern int nargv_buffer_size();

/*
 * Retrieve the size of the argument vector table
 */
extern int nargv_table_size();

/*
 * Call the built in error reporter
 */
extern bool nargv_error(char *progname, char *input, int error);

/*
 * Parse an argument string
 */
extern int nargv(char *strIn, char ***nargvOut, int *nargcOut);

#endif /* NARGV_H_ */

To compile nargv as a standalone testbed, define NARGV_TEST_APP at compilation.

To use nargv in your program #include "nargv.h". Compile and link to nargv.o.

This is my first %100 written from scratch project in C.

NARGV Supports:

  • String Concatenation: "This "is" a single"' argument.'
  • Escaped Double Quotes in Quoted String: "He \"was\" a fine man"
  • Backslashes in Quoted Literals: 'this ends in backslash\'
  • Bare escaped quotes: \'"ello world! Starts with an apostrophe"
  • Unquoted Space, Tab, Newline as delimiters
  • Alternate Quote Symbol Embedding: "Don't start a new quote!"
  • Backslash Escapes: "Escape This backslash \\"
  • Null Arguments: empty quoted parameters '' or ""
  • Syntax Checking: Detects unpaired quotations with respect to backslash escapes.
  • Full Featured Error Reporter: Print diagnostics about last parse/init error.
  • Configurable Internal String and Vector buffers


Note 1: Backslashes that are not escaping a single or double quote are left to the caller for processing. No environment variables are expanded. The purpose of nargv is simply to parse a shell style string into a collection of arguments.

Note 2: The nargv_error() procedure does not report the source index position of the error as a number, but it can be retrieved via nargv_error_index().

Note 3: Trying to test the inputs from the command line is not a good idea. The shell will parse the input producing undesirable results. Instead, launch nargv as a shell script interpreter via shell script:

#!./nargv arguments ...

where arguments is the text to be parsed.

Running the above script will produce:

* New Argument Vectors Test Results

Argument String: arguments ...
Parsed Argument Count: 2

Parsed Argument Strings:

    nargvOut[0]: arguments
    nargvOut[1]: ...


Sample Syntax Error Report:

$ ./nargv '"Hello World!'

./nargv: parse argument string failure:
./nargv: syntax error: unterminated string literal: "Hello World!
./nargv: ...........................................^
link|improve this answer
This is basicly an 'inlined' recursive descent parser. My reason for writing this code is that when the shell launches a script interpreter, everything on the first line after the shebang is supplied to the interpreter as a single argument which must be parsed by the interpreter. So, there ya go. You could say its overkill to support backslashes and quotes, but I'll say its robust, rough & ready. – Triston J. Taylor Apr 9 at 10:23
Of course, backslashes are literals inside single quotes. But may be used to escape single quotes outside of a single quoted string. – Triston J. Taylor Apr 9 at 11:30
Successive delimiters are rightfully ignored, so that empty strings do not appear in output, unless directly implied via '' or "" (empty single or double quotes respectively). – Triston J. Taylor Apr 9 at 11:59
This code is incredibly small for all the features it packs in. Most of this code consists of the test application, error reporting and diagnostics. – Triston J. Taylor Apr 9 at 12:23
Even though I just began c programming a few weeks ago, my experience with 32-bit x86 assembler coding.... Should be self evident. – Triston J. Taylor Apr 9 at 12:36
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.