2006-07-30 05:43:38 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
2007-04-05 05:22:33 +02:00
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
2006-07-30 05:43:38 +02: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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* a very simple singly-linked-list structure for queues/buffers */
|
|
|
|
|
2008-01-03 08:29:49 +01:00
|
|
|
#include "os_compat.h"
|
2006-07-30 05:43:38 +02:00
|
|
|
#include "sllist.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
|
|
|
static void init_strnode(struct strnode *x, char *s)
|
|
|
|
{
|
|
|
|
x->data = s;
|
|
|
|
x->next = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct strnode *new_strnode(char *s)
|
|
|
|
{
|
2006-08-26 08:25:57 +02:00
|
|
|
struct strnode *x = xmalloc(sizeof(struct strnode));
|
2006-07-30 05:43:38 +02:00
|
|
|
init_strnode(x, s);
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct strnode *new_strnode_dup(char *s, const size_t size)
|
|
|
|
{
|
2006-08-26 08:25:57 +02:00
|
|
|
struct strnode *x = xmalloc(sizeof(struct strnode) + size);
|
2006-07-30 05:43:38 +02:00
|
|
|
x->next = NULL;
|
2006-08-01 06:18:41 +02:00
|
|
|
x->data = ((char *)x + sizeof(struct strnode));
|
2006-07-30 05:43:38 +02:00
|
|
|
memcpy((void *)x->data, (void*)s, size);
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sllnode *new_sllnode(void *s, const size_t size)
|
|
|
|
{
|
2006-08-26 08:25:57 +02:00
|
|
|
struct sllnode *x = xmalloc(sizeof(struct sllnode) + size);
|
2006-07-30 05:43:38 +02:00
|
|
|
x->next = NULL;
|
|
|
|
x->size = size;
|
2006-08-01 06:18:41 +02:00
|
|
|
x->data = ((char *)x + sizeof(struct sllnode));
|
2006-07-30 05:43:38 +02:00
|
|
|
memcpy(x->data, (void *)s, size);
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct strnode *dup_strlist(struct strnode *old)
|
|
|
|
{
|
|
|
|
struct strnode *tmp, *new, *cur;
|
|
|
|
|
|
|
|
tmp = old;
|
|
|
|
cur = new = new_strnode_dup(tmp->data, strlen(tmp->data) + 1);
|
|
|
|
tmp = tmp->next;
|
|
|
|
while (tmp) {
|
|
|
|
cur->next = new_strnode_dup(tmp->data, strlen(tmp->data) + 1);
|
|
|
|
cur = cur->next;
|
|
|
|
tmp = tmp->next;
|
|
|
|
}
|
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
|
|
|
|