260 lines
5.7 KiB
C
Executable File
260 lines
5.7 KiB
C
Executable File
/*
|
||
* Copyright 2008, 2011 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/>.
|
||
*/
|
||
|
||
#include "amiga/os3support.h"
|
||
|
||
#include <proto/exec.h>
|
||
#include <proto/timer.h>
|
||
|
||
#include <stdio.h>
|
||
#include <stdbool.h>
|
||
#include <pbl.h>
|
||
|
||
#include "utils/errors.h"
|
||
|
||
#include "amiga/schedule.h"
|
||
|
||
struct nscallback
|
||
{
|
||
struct TimeVal tv;
|
||
void *callback;
|
||
void *p;
|
||
struct TimeRequest *treq;
|
||
};
|
||
|
||
PblHeap *schedule_list;
|
||
|
||
static void ami_remove_timer_event(struct nscallback *nscb)
|
||
{
|
||
if(!nscb) return;
|
||
|
||
if(nscb->treq)
|
||
{
|
||
if(CheckIO((struct IORequest *)nscb->treq)==NULL)
|
||
AbortIO((struct IORequest *)nscb->treq);
|
||
|
||
WaitIO((struct IORequest *)nscb->treq);
|
||
FreeVec(nscb->treq);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Unschedule a callback.
|
||
*
|
||
* \param callback callback function
|
||
* \param p user parameter, passed to callback function
|
||
*
|
||
* All scheduled callbacks matching both callback and p are removed.
|
||
*/
|
||
|
||
static nserror schedule_remove(void (*callback)(void *p), void *p)
|
||
{
|
||
PblIterator *iterator;
|
||
struct nscallback *nscb;
|
||
bool restoreheap = false;
|
||
|
||
/* check there is something on the list to remove */
|
||
if (schedule_list == NULL)
|
||
{
|
||
return NSERROR_OK;
|
||
}
|
||
|
||
if(pblHeapIsEmpty(schedule_list))
|
||
{
|
||
return NSERROR_OK;
|
||
}
|
||
|
||
iterator = pblHeapIterator(schedule_list);
|
||
|
||
while ((nscb = pblIteratorNext(iterator)) != -1)
|
||
{
|
||
if((nscb->callback == callback) && (nscb->p == p))
|
||
{
|
||
ami_remove_timer_event(nscb);
|
||
pblIteratorRemove(iterator);
|
||
FreeVec(nscb);
|
||
restoreheap = true;
|
||
}
|
||
};
|
||
|
||
pblIteratorFree(iterator);
|
||
|
||
if(restoreheap)
|
||
{
|
||
pblHeapConstruct(schedule_list);
|
||
}
|
||
|
||
return NSERROR_OK;
|
||
}
|
||
|
||
static void schedule_remove_all(void)
|
||
{
|
||
PblIterator *iterator;
|
||
struct nscallback *nscb;
|
||
|
||
if(pblHeapIsEmpty(schedule_list)) return;
|
||
|
||
iterator = pblHeapIterator(schedule_list);
|
||
|
||
while ((nscb = pblIteratorNext(iterator)) != -1)
|
||
{
|
||
ami_remove_timer_event(nscb);
|
||
pblIteratorRemove(iterator);
|
||
FreeVec(nscb);
|
||
};
|
||
|
||
pblIteratorFree(iterator);
|
||
}
|
||
|
||
static int ami_schedule_compare(const void *prev, const void *next)
|
||
{
|
||
struct nscallback *nscb1 = *(struct nscallback **)prev;
|
||
struct nscallback *nscb2 = *(struct nscallback **)next;
|
||
|
||
return CmpTime(&nscb1->tv, &nscb2->tv);
|
||
}
|
||
|
||
|
||
/* exported function documented in amiga/schedule.h */
|
||
void schedule_run(BOOL poll)
|
||
{
|
||
struct nscallback *nscb;
|
||
void (*callback)(void *p);
|
||
void *p;
|
||
struct TimeVal tv;
|
||
|
||
nscb = pblHeapGetFirst(schedule_list);
|
||
|
||
if(nscb == -1) return;
|
||
|
||
if(poll)
|
||
{
|
||
/* Ensure the scheduled event time has passed (CmpTime<=0)
|
||
* For timer signalled events this must *always* be true,
|
||
* so we save some time by only checking if we're polling.
|
||
*/
|
||
|
||
GetSysTime(&tv);
|
||
if(CmpTime(&tv, &nscb->tv) > 0) return;
|
||
}
|
||
|
||
callback = nscb->callback;
|
||
p = nscb->p;
|
||
ami_remove_timer_event(nscb);
|
||
pblHeapRemoveFirst(schedule_list);
|
||
FreeVec(nscb);
|
||
callback(p);
|
||
}
|
||
|
||
/* exported function documented in amiga/schedule.h */
|
||
BOOL ami_schedule_create(void)
|
||
{
|
||
schedule_list = pblHeapNew();
|
||
if(schedule_list == PBL_ERROR_OUT_OF_MEMORY) return false;
|
||
|
||
pblHeapSetCompareFunction(schedule_list, ami_schedule_compare);
|
||
}
|
||
|
||
/* exported function documented in amiga/schedule.h */
|
||
void ami_schedule_free(void)
|
||
{
|
||
schedule_remove_all();
|
||
pblHeapFree(schedule_list); // this should be empty at this point
|
||
schedule_list = NULL;
|
||
}
|
||
|
||
/* exported function documented in amiga/schedule.h */
|
||
void ami_schedule_open_timer(void)
|
||
{
|
||
msgport = AllocSysObjectTags(ASOT_PORT,
|
||
ASO_NoTrack,FALSE,
|
||
TAG_DONE);
|
||
|
||
tioreq = (struct TimeRequest *)AllocSysObjectTags(ASOT_IOREQUEST,
|
||
ASOIOR_Size,sizeof(struct TimeRequest),
|
||
ASOIOR_ReplyPort,msgport,
|
||
ASO_NoTrack,FALSE,
|
||
TAG_DONE);
|
||
|
||
OpenDevice("timer.device", UNIT_WAITUNTIL, (struct IORequest *)tioreq, 0);
|
||
|
||
TimerBase = (struct Device *)tioreq->Request.io_Device;
|
||
ITimer = (struct TimerIFace *)GetInterface((struct Library *)TimerBase,"main",1,NULL);
|
||
}
|
||
|
||
/* exported function documented in amiga/schedule.h */
|
||
void ami_schedule_close_timer(void)
|
||
{
|
||
if(ITimer)
|
||
{
|
||
DropInterface((struct Interface *)ITimer);
|
||
}
|
||
|
||
CloseDevice((struct IORequest *) tioreq);
|
||
FreeSysObject(ASOT_IOREQUEST,tioreq);
|
||
FreeSysObject(ASOT_PORT,msgport);
|
||
}
|
||
|
||
/* exported function documented in amiga/schedule.h */
|
||
nserror ami_schedule(int t, void (*callback)(void *p), void *p)
|
||
{
|
||
struct nscallback *nscb;
|
||
struct TimeVal tv;
|
||
ULONG time_us = 0;
|
||
|
||
if(schedule_list == NULL)
|
||
{
|
||
return NSERROR_INIT_FAILED;
|
||
}
|
||
|
||
if(t < 0)
|
||
{
|
||
return schedule_remove(callback, p);
|
||
}
|
||
|
||
nscb = AllocVecTagList(sizeof(struct nscallback), NULL);
|
||
if(!nscb)
|
||
{
|
||
return NSERROR_NOMEM;
|
||
}
|
||
|
||
time_us = t * 1000; /* t converted to <20>s */
|
||
|
||
nscb->tv.Seconds = time_us / 1000000;
|
||
nscb->tv.Microseconds = time_us % 1000000;
|
||
|
||
GetSysTime(&tv);
|
||
AddTime(&nscb->tv,&tv); // now contains time when event occurs
|
||
|
||
if(nscb->treq = AllocVecTagList(sizeof(struct TimeRequest), NULL))
|
||
{
|
||
*nscb->treq = *tioreq;
|
||
nscb->treq->Request.io_Command=TR_ADDREQUEST;
|
||
nscb->treq->Time.Seconds=nscb->tv.Seconds; // secs
|
||
nscb->treq->Time.Microseconds=nscb->tv.Microseconds; // micro
|
||
SendIO((struct IORequest *)nscb->treq);
|
||
}
|
||
|
||
nscb->callback = callback;
|
||
nscb->p = p;
|
||
|
||
pblHeapInsert(schedule_list, nscb);
|
||
|
||
return NSERROR_OK;
|
||
}
|