2 This file is part of PulseAudio.
4 Copyright 2004-2006 Lennart Poettering
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 2.1 of the License,
9 or (at your option) any later version.
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public License
17 along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
29 #include <pulse/xmalloc.h>
30 #include <pulse/gccmacro.h>
32 #include <pulsecore/dynarray.h>
33 #include <pulsecore/macro.h>
35 #include "tokenizer.h"
37 static void token_free(void *p, void *userdata) {
41 static void parse(pa_dynarray*a, const char *s, unsigned args) {
43 const char delimiter[] = " \t\n\r";
52 p = s+strspn(s, delimiter);
53 while (*p && (infty || args >= 2)) {
54 size_t l = strcspn(p, delimiter);
55 char *n = pa_xstrndup(p, l);
56 pa_dynarray_append(a, n);
58 p += strspn(p, delimiter);
63 char *n = pa_xstrdup(p);
64 pa_dynarray_append(a, n);
68 pa_tokenizer* pa_tokenizer_new(const char *s, unsigned args) {
71 a = pa_dynarray_new();
73 return (pa_tokenizer*) a;
76 void pa_tokenizer_free(pa_tokenizer *t) {
77 pa_dynarray *a = (pa_dynarray*) t;
80 pa_dynarray_free(a, token_free, NULL);
83 const char *pa_tokenizer_get(pa_tokenizer *t, unsigned i) {
84 pa_dynarray *a = (pa_dynarray*) t;
87 return pa_dynarray_get(a, i);