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: ...........................................^
nargvBy 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