2008-08-03 20:12:01 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2005,2008 Chris Young <chris@unsatisfactorysoftware.co.uk>
|
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf 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; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2015-01-19 00:11:00 +03:00
|
|
|
#include "amiga/os3support.h"
|
|
|
|
|
2014-11-11 02:33:08 +03:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2008-08-03 20:12:01 +04:00
|
|
|
#include <proto/exec.h>
|
|
|
|
#include <exec/lists.h>
|
|
|
|
#include <exec/nodes.h>
|
2011-04-30 23:05:11 +04:00
|
|
|
|
2015-01-19 00:11:00 +03:00
|
|
|
#include "amiga/misc.h"
|
2008-08-03 20:12:01 +04:00
|
|
|
#include "amiga/object.h"
|
|
|
|
|
2015-08-05 20:13:04 +03:00
|
|
|
#ifdef __amigaos4__
|
2015-08-06 01:42:20 +03:00
|
|
|
#define nsList MinList
|
2015-08-05 20:13:04 +03:00
|
|
|
#define NewnsList NewMinList
|
|
|
|
#else
|
2015-08-06 01:42:20 +03:00
|
|
|
#define nsList List
|
2015-08-05 20:13:04 +03:00
|
|
|
#define NewnsList NewList
|
|
|
|
#endif
|
|
|
|
|
2015-08-06 01:42:20 +03:00
|
|
|
/* Slightly abstract MinList initialisation */
|
|
|
|
void ami_NewMinList(struct MinList *list)
|
2008-08-03 20:12:01 +04:00
|
|
|
{
|
2015-08-06 01:42:20 +03:00
|
|
|
if(list == NULL) return;
|
|
|
|
NewnsList((struct nsList *)list);
|
|
|
|
}
|
2015-08-05 20:13:04 +03:00
|
|
|
|
2015-08-06 01:42:20 +03:00
|
|
|
/* Allocate and initialise a new MinList */
|
|
|
|
struct MinList *ami_AllocMinList(void)
|
|
|
|
{
|
|
|
|
struct MinList *objlist = (struct MinList *)AllocVecTagList(sizeof(struct nsList), NULL);
|
|
|
|
if(objlist == NULL) return NULL;
|
|
|
|
ami_NewMinList(objlist);
|
|
|
|
return objlist;
|
|
|
|
}
|
2015-08-05 20:13:04 +03:00
|
|
|
|
2015-08-06 01:42:20 +03:00
|
|
|
struct MinList *NewObjList(void)
|
|
|
|
{
|
|
|
|
struct MinList *objlist = ami_AllocMinList();
|
2008-08-03 20:12:01 +04:00
|
|
|
return(objlist);
|
|
|
|
}
|
|
|
|
|
2015-08-06 01:42:20 +03:00
|
|
|
struct nsObject *AddObject(struct MinList *objlist, ULONG otype)
|
2008-08-03 20:12:01 +04:00
|
|
|
{
|
|
|
|
struct nsObject *dtzo;
|
|
|
|
|
2015-01-19 00:11:00 +03:00
|
|
|
dtzo = (struct nsObject *)ami_misc_allocvec_clear(sizeof(struct nsObject), 0);
|
2008-08-03 20:12:01 +04:00
|
|
|
|
|
|
|
AddTail((struct List *)objlist,(struct Node *)dtzo);
|
|
|
|
|
|
|
|
dtzo->Type = otype;
|
|
|
|
|
|
|
|
return(dtzo);
|
|
|
|
}
|
|
|
|
|
2016-01-16 03:00:57 +03:00
|
|
|
void ObjectCallback(struct nsObject *dtzo, void (*callback)(void *nso))
|
|
|
|
{
|
|
|
|
dtzo->callback = callback;
|
|
|
|
}
|
|
|
|
|
2014-11-11 02:33:08 +03:00
|
|
|
static void DelObjectInternal(struct nsObject *dtzo, BOOL free_obj)
|
2008-08-03 20:12:01 +04:00
|
|
|
{
|
|
|
|
Remove((struct Node *)dtzo);
|
2016-01-16 03:00:57 +03:00
|
|
|
if(dtzo->callback != NULL) dtzo->callback(dtzo->objstruct);
|
2010-10-05 23:14:46 +04:00
|
|
|
if(dtzo->objstruct && free_obj) FreeVec(dtzo->objstruct);
|
2011-04-30 23:05:11 +04:00
|
|
|
if(dtzo->dtz_Node.ln_Name) free(dtzo->dtz_Node.ln_Name);
|
2008-08-03 20:12:01 +04:00
|
|
|
FreeVec(dtzo);
|
|
|
|
dtzo = NULL;
|
|
|
|
}
|
|
|
|
|
2010-10-05 23:14:46 +04:00
|
|
|
void DelObject(struct nsObject *dtzo)
|
|
|
|
{
|
|
|
|
DelObjectInternal(dtzo, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DelObjectNoFree(struct nsObject *dtzo)
|
|
|
|
{
|
|
|
|
DelObjectInternal(dtzo, FALSE);
|
|
|
|
}
|
|
|
|
|
2015-08-06 01:42:20 +03:00
|
|
|
void FreeObjList(struct MinList *objlist)
|
2008-08-03 20:12:01 +04:00
|
|
|
{
|
|
|
|
struct nsObject *node;
|
|
|
|
struct nsObject *nnode;
|
|
|
|
|
2015-08-05 20:13:04 +03:00
|
|
|
if(IsMinListEmpty((struct MinList *)objlist)) return;
|
2008-10-06 22:20:16 +04:00
|
|
|
node = (struct nsObject *)GetHead((struct List *)objlist);
|
2008-08-03 20:12:01 +04:00
|
|
|
|
2014-11-11 02:33:08 +03:00
|
|
|
do {
|
2009-11-16 02:11:41 +03:00
|
|
|
nnode=(struct nsObject *)GetSucc((struct Node *)node);
|
2008-08-03 20:12:01 +04:00
|
|
|
DelObject(node);
|
2014-11-11 02:33:08 +03:00
|
|
|
} while((node=nnode));
|
2008-08-03 20:12:01 +04:00
|
|
|
|
|
|
|
FreeVec(objlist);
|
|
|
|
}
|