2004-02-24 00:41:20 +01:00
|
|
|
/* the Music Player Daemon (MPD)
|
2006-07-14 21:37:45 +02:00
|
|
|
* (c)2003-2006 by Warren Dukes (warren.dukes@gmail.com)
|
2004-02-24 00:41:20 +01:00
|
|
|
* This project's homepage is: http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "buffer2array.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2006-07-29 20:55:00 +02:00
|
|
|
#include <ctype.h>
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2006-08-06 15:53:53 +02:00
|
|
|
|
|
|
|
inline static
|
|
|
|
int
|
|
|
|
isWhiteSpace(char c)
|
|
|
|
{
|
|
|
|
return (c == ' ' || c == '\t');
|
|
|
|
}
|
|
|
|
|
|
|
|
int buffer2array(char *buffer, char *array[], const int max)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2006-07-29 20:55:00 +02:00
|
|
|
int i = 0;
|
|
|
|
char *c = buffer;
|
|
|
|
|
|
|
|
while (*c != '\0' && i < max) {
|
|
|
|
if (*c == '\"') {
|
|
|
|
int escape = 0;
|
|
|
|
array[i++] = ++c;
|
|
|
|
while (*c != '\0') {
|
|
|
|
if (*c == '\"') {
|
2006-08-06 00:06:12 +02:00
|
|
|
if (escape) {
|
2006-07-29 20:55:00 +02:00
|
|
|
memmove(c - 1, c,
|
|
|
|
strlen(c) + 1);
|
2006-08-06 00:06:12 +02:00
|
|
|
if (*c == '"')
|
|
|
|
break;
|
|
|
|
} else {
|
2006-07-29 20:55:00 +02:00
|
|
|
*(c++) = '\0';
|
|
|
|
break;
|
|
|
|
}
|
2006-08-03 06:20:25 +02:00
|
|
|
} else if (*c == '\\' && escape)
|
|
|
|
memmove(c - 1, c, strlen(c) + 1);
|
2006-07-29 20:55:00 +02:00
|
|
|
escape = (*(c++) != '\\') ? 0 : !escape;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
} else {
|
2006-08-06 15:53:53 +02:00
|
|
|
while (isWhiteSpace(*c))
|
2006-07-29 20:55:00 +02:00
|
|
|
++c;
|
|
|
|
array[i++] = c++;
|
|
|
|
if (*c == '\0')
|
|
|
|
return i;
|
2006-08-06 15:53:53 +02:00
|
|
|
while (!isWhiteSpace(*c) && *c != '\0')
|
2006-07-29 20:55:00 +02:00
|
|
|
++c;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2006-07-29 20:55:00 +02:00
|
|
|
if (*c == '\0')
|
|
|
|
return i;
|
|
|
|
*(c++) = '\0';
|
2006-08-06 15:53:53 +02:00
|
|
|
while (isWhiteSpace(*c))
|
2006-07-29 20:55:00 +02:00
|
|
|
++c;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2006-07-29 20:55:00 +02:00
|
|
|
return i;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2006-08-06 00:06:12 +02:00
|
|
|
|
|
|
|
#ifdef UNIT_TEST
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
char *a[4] = { NULL };
|
|
|
|
char *b;
|
|
|
|
int i, max;
|
|
|
|
|
|
|
|
b = strdup("lsinfo \"/some/dir/name \\\"test\\\"\"");
|
2006-08-06 15:53:53 +02:00
|
|
|
max = buffer2array(b, a, 4);
|
2006-08-06 00:06:12 +02:00
|
|
|
assert( !strcmp("lsinfo", a[0]) );
|
|
|
|
assert( !strcmp("/some/dir/name \"test\"", a[1]) );
|
2006-08-06 00:13:54 +02:00
|
|
|
assert( !a[2] );
|
2006-08-06 00:06:12 +02:00
|
|
|
|
|
|
|
b = strdup("lsinfo \"/some/dir/name \\\"test\\\" something else\"");
|
2006-08-06 15:53:53 +02:00
|
|
|
max = buffer2array(b, a, 4);
|
2006-08-06 00:06:12 +02:00
|
|
|
assert( !strcmp("lsinfo", a[0]) );
|
|
|
|
assert( !strcmp("/some/dir/name \"test\" something else", a[1]) );
|
2006-08-06 00:13:54 +02:00
|
|
|
assert( !a[2] );
|
2006-08-06 00:06:12 +02:00
|
|
|
|
|
|
|
b = strdup("lsinfo \"/some/dir\\\\name\"");
|
2006-08-06 15:53:53 +02:00
|
|
|
max = buffer2array(b, a, 4);
|
2006-08-06 00:06:12 +02:00
|
|
|
assert( !strcmp("lsinfo", a[0]) );
|
|
|
|
assert( !strcmp("/some/dir\\name", a[1]) );
|
2006-08-06 00:13:54 +02:00
|
|
|
assert( !a[2] );
|
|
|
|
|
|
|
|
b = strdup("lsinfo \"/some/dir name\"");
|
2006-08-06 15:53:53 +02:00
|
|
|
max = buffer2array(b, a, 4);
|
2006-08-06 00:13:54 +02:00
|
|
|
assert( !strcmp("lsinfo", a[0]) );
|
|
|
|
assert( !strcmp("/some/dir name", a[1]) );
|
|
|
|
assert( !a[2] );
|
|
|
|
|
|
|
|
b = strdup("lsinfo \"\\\"/some/dir\\\"\"");
|
2006-08-06 15:53:53 +02:00
|
|
|
max = buffer2array(b, a, 4);
|
2006-08-06 00:13:54 +02:00
|
|
|
assert( !strcmp("lsinfo", a[0]) );
|
|
|
|
assert( !strcmp("\"/some/dir\"", a[1]) );
|
|
|
|
assert( !a[2] );
|
|
|
|
|
|
|
|
b = strdup("lsinfo \"\\\"/some/dir\\\" x\"");
|
2006-08-06 15:53:53 +02:00
|
|
|
max = buffer2array(b, a, 4);
|
2006-08-06 00:13:54 +02:00
|
|
|
assert( !strcmp("lsinfo", a[0]) );
|
|
|
|
assert( !strcmp("\"/some/dir\" x", a[1]) );
|
|
|
|
assert( !a[2] );
|
2006-08-06 00:06:12 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|