1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-09-19 14:41:41 +02:00
gnupg/common/strlist.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

364 lines
7.5 KiB
C
Raw Normal View History

2003-01-09 13:36:05 +01:00
/* strlist.c - string helpers
* Copyright (C) 1998, 2000, 2001, 2006 Free Software Foundation, Inc.
* Copyright (C) 2015, 2024 g10 Code GmbH
2003-01-09 13:36:05 +01:00
*
* This file is part of GnuPG.
2003-01-09 13:36:05 +01:00
*
* GnuPG is free software; you can redistribute and/or modify this
* part of GnuPG under the terms of either
*
* - the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 3 of the License, or (at
* your option) any later version.
*
* or
*
* - 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.
*
* or both in parallel, as here.
2003-01-09 13:36:05 +01:00
*
* GnuPG is distributed in the hope that it will be useful, but
2006-10-02 13:54:35 +02:00
* 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.
2003-01-09 13:36:05 +01:00
*
* You should have received a copies of the GNU General Public License
* and the GNU Lesser General Public License along with this program;
* if not, see <https://www.gnu.org/licenses/>.
* SPDX-License-Identifier: (LGPL-3.0-or-later OR GPL-2.0-or-later)
2003-01-09 13:36:05 +01:00
*/
#include <config.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <ctype.h>
#include "util.h"
#include "common-defs.h"
2003-01-09 13:36:05 +01:00
#include "strlist.h"
#include "utf8conv.h"
#include "mischelp.h"
2003-01-09 13:36:05 +01:00
void
2003-11-17 13:20:11 +01:00
free_strlist( strlist_t sl )
2003-01-09 13:36:05 +01:00
{
2003-11-17 13:20:11 +01:00
strlist_t sl2;
2003-01-09 13:36:05 +01:00
for(; sl; sl = sl2 ) {
sl2 = sl->next;
xfree(sl);
2003-01-09 13:36:05 +01:00
}
}
void
free_strlist_wipe (strlist_t sl)
{
strlist_t sl2;
for(; sl; sl = sl2 ) {
sl2 = sl->next;
wipememory (sl, sizeof *sl + strlen (sl->d));
xfree(sl);
}
}
/* Add STRING to the LIST at the front. This function terminates the
process on memory shortage. */
2003-11-17 13:20:11 +01:00
strlist_t
add_to_strlist( strlist_t *list, const char *string )
2003-01-09 13:36:05 +01:00
{
2003-11-17 13:20:11 +01:00
strlist_t sl;
2003-01-09 13:36:05 +01:00
sl = xmalloc( sizeof *sl + strlen(string));
2003-01-09 13:36:05 +01:00
sl->flags = 0;
strcpy(sl->d, string);
sl->next = *list;
*list = sl;
return sl;
}
/* Add STRING to the LIST at the front. This function returns NULL
and sets ERRNO on memory shortage. */
strlist_t
add_to_strlist_try (strlist_t *list, const char *string)
{
strlist_t sl;
sl = xtrymalloc (sizeof *sl + strlen (string));
if (sl)
{
sl->flags = 0;
strcpy (sl->d, string);
sl->next = *list;
*list = sl;
}
return sl;
}
/* Same as add_to_strlist() but if IS_UTF8 is *not* set, a conversion
to UTF-8 is done. This function terminates the process on memory
shortage. */
2003-11-17 13:20:11 +01:00
strlist_t
add_to_strlist2( strlist_t *list, const char *string, int is_utf8 )
2003-01-09 13:36:05 +01:00
{
strlist_t sl;
if (is_utf8)
sl = add_to_strlist( list, string );
else
{
char *p = native_to_utf8( string );
sl = add_to_strlist( list, p );
xfree ( p );
2003-01-09 13:36:05 +01:00
}
return sl;
2003-01-09 13:36:05 +01:00
}
/* Add STRING to the LIST at the end. This function terminates the
process on memory shortage. */
2003-11-17 13:20:11 +01:00
strlist_t
append_to_strlist( strlist_t *list, const char *string )
{
strlist_t sl;
sl = append_to_strlist_try (list, string);
if (!sl)
xoutofcore ();
return sl;
}
/* Core of append_to_strlist_try which take the length of the string.
* Return the item added to the end of the list. Or NULL in case of
* an error. */
static strlist_t
do_append_to_strlist (strlist_t *list, const char *string, size_t stringlen)
2003-01-09 13:36:05 +01:00
{
strlist_t r, sl;
2003-01-09 13:36:05 +01:00
sl = xtrymalloc (sizeof *sl + stringlen);
if (!sl)
return NULL;
sl->flags = 0;
memcpy (sl->d, string, stringlen);
sl->d[stringlen] = 0;
sl->next = NULL;
if (!*list)
*list = sl;
else
{
for (r = *list; r->next; r = r->next)
;
r->next = sl;
2003-01-09 13:36:05 +01:00
}
return sl;
}
/* Add STRING to the LIST at the end. */
strlist_t
append_to_strlist_try (strlist_t *list, const char *string)
{
return do_append_to_strlist (list, string, strlen (string));
2003-01-09 13:36:05 +01:00
}
2006-05-23 18:19:43 +02:00
2003-11-17 13:20:11 +01:00
strlist_t
append_to_strlist2( strlist_t *list, const char *string, int is_utf8 )
2003-01-09 13:36:05 +01:00
{
2006-05-23 18:19:43 +02:00
strlist_t sl;
2006-05-23 18:19:43 +02:00
if( is_utf8 )
sl = append_to_strlist( list, string );
else
{
char *p = native_to_utf8 (string);
sl = append_to_strlist( list, p );
xfree( p );
2003-01-09 13:36:05 +01:00
}
2006-05-23 18:19:43 +02:00
return sl;
2003-01-09 13:36:05 +01:00
}
2003-11-17 13:20:11 +01:00
/* Tokenize STRING using the delimiters from DELIM and append each
* token to the string list LIST. On success a pinter into LIST with
* the first new token is returned. Returns NULL on error and sets
* ERRNO. Take care, an error with ENOENT set mean that no tokens
* were found in STRING. */
strlist_t
tokenize_to_strlist (strlist_t *list, const char *string, const char *delim)
{
const char *s, *se;
size_t n;
strlist_t newlist = NULL;
strlist_t tail;
s = string;
do
{
se = strpbrk (s, delim);
if (se)
n = se - s;
else
n = strlen (s);
if (!n)
continue; /* Skip empty string. */
tail = do_append_to_strlist (&newlist, s, n);
if (!tail)
{
free_strlist (newlist);
return NULL;
}
trim_spaces (tail->d);
if (!*tail->d) /* Remove new but empty item from the list. */
{
tail = strlist_prev (newlist, tail);
if (tail)
{
free_strlist (tail->next);
tail->next = NULL;
}
else if (newlist)
{
free_strlist (newlist);
newlist = NULL;
}
continue;
}
}
while (se && (s = se + 1));
if (!newlist)
{
/* Not items found. Indicate this by returnning NULL with errno
* set to ENOENT. */
gpg_err_set_errno (ENOENT);
return NULL;
}
/* Append NEWLIST to LIST. */
if (!*list)
*list = newlist;
else
{
for (tail = *list; tail->next; tail = tail->next)
;
tail->next = newlist;
}
return newlist;
}
/* Return a copy of LIST. This function terminates the process on
memory shortage.*/
2003-11-17 13:20:11 +01:00
strlist_t
strlist_copy (strlist_t list)
{
strlist_t newlist = NULL, sl, *last;
last = &newlist;
for (; list; list = list->next)
{
sl = xmalloc (sizeof *sl + strlen (list->d));
2003-11-17 13:20:11 +01:00
sl->flags = list->flags;
strcpy(sl->d, list->d);
sl->next = NULL;
*last = sl;
last = &sl;
}
return newlist;
}
strlist_t
strlist_prev( strlist_t head, strlist_t node )
2003-01-09 13:36:05 +01:00
{
2003-11-17 13:20:11 +01:00
strlist_t n;
2003-01-09 13:36:05 +01:00
for(n=NULL; head && head != node; head = head->next )
n = head;
return n;
}
2003-11-17 13:20:11 +01:00
strlist_t
strlist_last( strlist_t node )
2003-01-09 13:36:05 +01:00
{
if( node )
for( ; node->next ; node = node->next )
;
return node;
}
/* Remove the first item from LIST and return its content in an
allocated buffer. This function terminates the process on memory
shortage. */
char *
2003-11-17 13:20:11 +01:00
strlist_pop (strlist_t *list)
{
char *str=NULL;
2003-11-17 13:20:11 +01:00
strlist_t sl=*list;
if(sl)
{
str = xmalloc(strlen(sl->d)+1);
strcpy(str,sl->d);
*list=sl->next;
xfree(sl);
}
return str;
}
/* Return the first element of the string list HAYSTACK whose string
matches NEEDLE. If no elements match, return NULL. */
strlist_t
strlist_find (strlist_t haystack, const char *needle)
{
for (;
haystack;
haystack = haystack->next)
if (strcmp (haystack->d, needle) == 0)
return haystack;
return NULL;
}
int
strlist_length (strlist_t list)
{
int i;
for (i = 0; list; list = list->next)
i ++;
return i;
}
/* Reverse the list *LIST in place. */
strlist_t
strlist_rev (strlist_t *list)
{
strlist_t l = *list;
strlist_t lrev = NULL;
while (l)
{
strlist_t tail = l->next;
l->next = lrev;
lrev = l;
l = tail;
}
*list = lrev;
return lrev;
}