/*
* udefchan.c -- part of channels.mod
* user definable channel flags/settings
*
* $Id: udefchan.c,v 1.12 2006-03-28 02:35:50 wcc Exp $
*/
/*
* Copyright (C) 1999 - 2006 Eggheads Development Team
*
* 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.
*/
static int expmem_udef(struct udef_struct *ul)
{
int i = 0;
for (; ul; ul = ul->next) {
i += sizeof(struct udef_struct);
i += strlen(ul->name) + 1;
i += expmem_udef_chans(ul->type, ul->values);
}
return i;
}
static int expmem_udef_chans(int type, struct udef_chans *ul)
{
int i = 0;
for (; ul; ul = ul->next) {
i += sizeof(struct udef_chans);
i += strlen(ul->chan) + 1;
if (type == UDEF_STR && ul->value)
i += strlen((char *) ul->value) + 1;
}
return i;
}
static int getudef(struct udef_chans *ul, char *name)
{
int val = 0;
for (; ul; ul = ul->next)
if (!egg_strcasecmp(ul->chan, name)) {
val = ul->value;
break;
}
return val;
}
static int ngetudef(char *name, char *chan)
{
struct udef_struct *l;
struct udef_chans *ll;
for (l = udef; l; l = l->next)
if (!egg_strcasecmp(l->name, name)) {
for (ll = l->values; ll; ll = ll->next)
if (!egg_strcasecmp(ll->chan, chan))
return ll->value;
break;
}
return 0;
}
static void setudef(struct udef_struct *us, char *name, int value)
{
struct udef_chans *ul, *ul_last = NULL;
for (ul = us->values; ul; ul_last = ul, ul = ul->next)
if (!egg_strcasecmp(ul->chan, name)) {
ul->value = value;
return;
}
ul = nmalloc(sizeof(struct udef_chans));
ul->chan = nmalloc(strlen(name) + 1);
strcpy(ul->chan, name);
ul->value = value;
ul->next = NULL;
if (ul_last)
ul_last->next = ul;
else
us->values = ul;
}
static void initudef(int type, char *name, int defined)
{
struct udef_struct *ul, *ul_last = NULL;
if (strlen(name) < 1)
return;
for (ul = udef; ul; ul_last = ul, ul = ul->next)
if (ul->name && !egg_strcasecmp(ul->name, name)) {
if (defined) {
debug1("UDEF: %s defined", ul->name);
ul->defined = 1;
}
return;
}
debug2("Creating %s (type %d)", name, type);
ul = nmalloc(sizeof(struct udef_struct));
ul->name = nmalloc(strlen(name) + 1);
strcpy(ul->name, name);
if (defined)
ul->defined = 1;
else
ul->defined = 0;
ul->type = type;
ul->values = NULL;
ul->next = NULL;
if (ul_last)
ul_last->next = ul;
else
udef = ul;
}
static void free_udef(struct udef_struct *ul)
{
struct udef_struct *ull;
for (; ul; ul = ull) {
ull = ul->next;
free_udef_chans(ul->values, ul->type);
nfree(ul->name);
nfree(ul);
}
}
static void free_udef_chans(struct udef_chans *ul, int type)
{
struct udef_chans *ull;
for (; ul; ul = ull) {
ull = ul->next;
if (type == UDEF_STR && ul->value)
nfree((void *) ul->value);
nfree(ul->chan);
nfree(ul);
}
}
syntax highlighted by Code2HTML, v. 0.9.1