2003-01-09 13:36:05 +01:00
|
|
|
/* strlist.c - string helpers
|
2006-04-19 13:26:11 +02:00
|
|
|
* Copyright (C) 1998, 2000, 2001, 2006 Free Software Foundation, Inc.
|
2003-01-09 13:36:05 +01:00
|
|
|
*
|
2011-09-30 12:52:11 +02:00
|
|
|
* This file is part of JNLIB, which is a subsystem of GnuPG.
|
2003-01-09 13:36:05 +01:00
|
|
|
*
|
2006-10-02 13:54:35 +02:00
|
|
|
* JNLIB is free software; you can redistribute it and/or modify it
|
2011-09-30 12:52:11 +02:00
|
|
|
* 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
|
|
|
*
|
2006-10-02 13:54:35 +02:00
|
|
|
* JNLIB 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
|
2011-09-30 12:52:11 +02:00
|
|
|
* General Public License for more details.
|
2003-01-09 13:36:05 +01:00
|
|
|
*
|
2011-09-30 12:52:11 +02: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 <http://www.gnu.org/licenses/>.
|
2003-01-09 13:36:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
#include "libjnlib-config.h"
|
|
|
|
#include "strlist.h"
|
2006-04-19 13:26:11 +02:00
|
|
|
#ifdef JNLIB_NEED_UTF8CONV
|
|
|
|
#include "utf8conv.h"
|
|
|
|
#endif
|
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;
|
|
|
|
jnlib_free(sl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-07 18:51:33 +02:00
|
|
|
/* 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 = jnlib_xmalloc( sizeof *sl + strlen(string));
|
|
|
|
sl->flags = 0;
|
|
|
|
strcpy(sl->d, string);
|
|
|
|
sl->next = *list;
|
|
|
|
*list = sl;
|
|
|
|
return sl;
|
|
|
|
}
|
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
|
2009-10-19 11:18:46 +02:00
|
|
|
/* 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;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
2009-10-19 11:18:46 +02:00
|
|
|
sl = jnlib_malloc (sizeof *sl + strlen (string));
|
|
|
|
if (sl)
|
|
|
|
{
|
|
|
|
sl->flags = 0;
|
|
|
|
strcpy (sl->d, string);
|
|
|
|
sl->next = *list;
|
|
|
|
*list = sl;
|
|
|
|
}
|
|
|
|
return sl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-07 18:51:33 +02:00
|
|
|
/* 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. */
|
2006-04-19 13:26:11 +02:00
|
|
|
#ifdef JNLIB_NEED_UTF8CONV
|
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
|
|
|
{
|
2006-04-19 13:26:11 +02:00
|
|
|
strlist_t sl;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
if (is_utf8)
|
|
|
|
sl = add_to_strlist( list, string );
|
2011-02-04 12:57:53 +01:00
|
|
|
else
|
2006-04-19 13:26:11 +02:00
|
|
|
{
|
|
|
|
char *p = native_to_utf8( string );
|
|
|
|
sl = add_to_strlist( list, p );
|
|
|
|
jnlib_free ( p );
|
2003-01-09 13:36:05 +01:00
|
|
|
}
|
2006-04-19 13:26:11 +02:00
|
|
|
return sl;
|
2003-01-09 13:36:05 +01:00
|
|
|
}
|
2006-04-19 13:26:11 +02:00
|
|
|
#endif /* JNLIB_NEED_UTF8CONV*/
|
2003-01-09 13:36:05 +01:00
|
|
|
|
2009-07-07 18:51:33 +02: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 )
|
2003-01-09 13:36:05 +01:00
|
|
|
{
|
2003-11-17 13:20:11 +01:00
|
|
|
strlist_t r, sl;
|
2003-01-09 13:36:05 +01:00
|
|
|
|
|
|
|
sl = jnlib_xmalloc( sizeof *sl + strlen(string));
|
|
|
|
sl->flags = 0;
|
|
|
|
strcpy(sl->d, string);
|
|
|
|
sl->next = NULL;
|
|
|
|
if( !*list )
|
|
|
|
*list = sl;
|
|
|
|
else {
|
|
|
|
for( r = *list; r->next; r = r->next )
|
|
|
|
;
|
|
|
|
r->next = sl;
|
|
|
|
}
|
|
|
|
return sl;
|
|
|
|
}
|
|
|
|
|
2006-05-23 18:19:43 +02:00
|
|
|
|
|
|
|
#ifdef JNLIB_NEED_UTF8CONV
|
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;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
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 );
|
|
|
|
jnlib_free( 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
|
|
|
}
|
2006-05-23 18:19:43 +02:00
|
|
|
#endif /* JNLIB_NEED_UTF8CONV */
|
2003-01-09 13:36:05 +01:00
|
|
|
|
2003-11-17 13:20:11 +01:00
|
|
|
|
2009-07-07 18:51:33 +02:00
|
|
|
/* 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 = jnlib_xmalloc (sizeof *sl + strlen (list->d));
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-07 18:51:33 +02:00
|
|
|
/* Remove the first item from LIST and return its content in an
|
|
|
|
allocated buffer. This function terminates the process on memory
|
|
|
|
shortage. */
|
2003-06-18 21:56:13 +02:00
|
|
|
char *
|
2003-11-17 13:20:11 +01:00
|
|
|
strlist_pop (strlist_t *list)
|
2003-06-18 21:56:13 +02:00
|
|
|
{
|
|
|
|
char *str=NULL;
|
2003-11-17 13:20:11 +01:00
|
|
|
strlist_t sl=*list;
|
2003-06-18 21:56:13 +02:00
|
|
|
|
|
|
|
if(sl)
|
|
|
|
{
|
|
|
|
str=jnlib_xmalloc(strlen(sl->d)+1);
|
|
|
|
strcpy(str,sl->d);
|
|
|
|
|
|
|
|
*list=sl->next;
|
|
|
|
jnlib_free(sl);
|
|
|
|
}
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|