X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/b12be54a68a7738d948d866eb7b9231f8e55a12e..132a5a4a47f9dbc7c52ee15234d70258c59ccf8e:/lib/kvp.c diff --git a/lib/kvp.c b/lib/kvp.c index 471de78..748c47e 100644 --- a/lib/kvp.c +++ b/lib/kvp.c @@ -1,28 +1,29 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004, 2005 Richard Kettlewell + * Copyright (C) 2004, 2005, 2007, 2008 Richard Kettlewell * - * This program is free software; you can redistribute it and/or modify + * 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 + * the Free Software Foundation, either version 3 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, see . + */ +/** @file lib/kvp.c + * @brief Linked list of key-value pairs * - * 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. + * Also supports URL encoding/decoding (of raw strings and kvp lists). * - * 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 + * For large sets of keys, see @ref lib/hash.c. */ -#include -#include "types.h" - -#include -#include +#include "common.h" #include "mem.h" #include "kvp.h" @@ -128,7 +129,7 @@ int urlencode(struct sink *sink, const char *s, size_t n) { * @param s String to encode * @return Encoded string */ -const char *urlencodestring(const char *s) { +char *urlencodestring(const char *s) { struct dynstr d; dynstr_init(&d); @@ -140,13 +141,14 @@ const char *urlencodestring(const char *s) { /** @brief URL-decode @p s * @param s String to decode * @param ns Length of string - * @return Decoded string + * @return Decoded string or NULL */ -const char *urldecodestring(const char *s, size_t ns) { +char *urldecodestring(const char *s, size_t ns) { struct dynstr d; dynstr_init(&d); - urldecode(sink_dynstr(&d), s, ns); + if(urldecode(sink_dynstr(&d), s, ns)) + return NULL; dynstr_terminate(&d); return d.vec; } @@ -204,6 +206,25 @@ const char *kvp_get(const struct kvp *kvp, const char *name) { return kvp ? kvp->value : 0; } +struct kvp *kvp_make(const char *name, ...) { + const char *value; + struct kvp *kvp = 0, *k; + va_list ap; + + va_start(ap, name); + while(name) { + value = va_arg(ap, const char *); + k = xmalloc(sizeof *k); + k->name = name; + k->value = value ? xstrdup(value) : value; + k->next = kvp; + kvp = k; + name = va_arg(ap, const char *); + } + va_end(ap); + return kvp; +} + /* Local Variables: c-basic-offset:2