2008-08-02 18:31:32 +04:00
|
|
|
|
/*
|
2011-02-17 00:29:39 +03:00
|
|
|
|
* Copyright 2008, 2011 Chris Young <chris@unsatisfactorysoftware.co.uk>
|
2008-08-02 18:31:32 +04:00
|
|
|
|
*
|
|
|
|
|
* 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/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2010-12-30 03:53:11 +03:00
|
|
|
|
#include "amiga/os3support.h"
|
2011-02-10 00:52:28 +03:00
|
|
|
|
|
2008-08-03 20:10:10 +04:00
|
|
|
|
#include <proto/exec.h>
|
2011-03-13 22:12:03 +03:00
|
|
|
|
#include <proto/timer.h>
|
2008-08-03 20:10:10 +04:00
|
|
|
|
|
2011-03-13 22:12:03 +03:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdbool.h>
|
2011-02-17 00:29:39 +03:00
|
|
|
|
#include <pbl.h>
|
|
|
|
|
|
2014-03-09 20:14:05 +04:00
|
|
|
|
#include "utils/errors.h"
|
|
|
|
|
|
|
|
|
|
#include "amiga/schedule.h"
|
|
|
|
|
|
2011-02-17 00:29:39 +03:00
|
|
|
|
struct nscallback
|
|
|
|
|
{
|
|
|
|
|
struct TimeVal tv;
|
|
|
|
|
void *callback;
|
|
|
|
|
void *p;
|
|
|
|
|
struct TimeRequest *treq;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
PblHeap *schedule_list;
|
|
|
|
|
|
2014-07-03 03:08:56 +04:00
|
|
|
|
/**
|
|
|
|
|
* Remove timer event
|
|
|
|
|
*
|
|
|
|
|
* \param nscb callback
|
|
|
|
|
*
|
|
|
|
|
* The timer event for the callback is aborted
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static void ami_schedule_remove_timer_event(struct nscallback *nscb)
|
2008-08-02 18:31:32 +04:00
|
|
|
|
{
|
2011-02-17 00:29:39 +03:00
|
|
|
|
if(!nscb) return;
|
2008-08-03 20:10:10 +04:00
|
|
|
|
|
2014-03-08 18:13:27 +04:00
|
|
|
|
if(nscb->treq)
|
2008-09-09 10:25:22 +04:00
|
|
|
|
{
|
2014-03-08 18:13:27 +04:00
|
|
|
|
if(CheckIO((struct IORequest *)nscb->treq)==NULL)
|
|
|
|
|
AbortIO((struct IORequest *)nscb->treq);
|
2011-02-17 00:29:39 +03:00
|
|
|
|
|
2014-03-08 18:13:27 +04:00
|
|
|
|
WaitIO((struct IORequest *)nscb->treq);
|
|
|
|
|
FreeVec(nscb->treq);
|
|
|
|
|
}
|
2008-08-02 18:31:32 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-07-03 03:08:56 +04:00
|
|
|
|
/**
|
|
|
|
|
* Add timer event
|
|
|
|
|
*
|
|
|
|
|
* \param nscb callback
|
|
|
|
|
* \param t time in ms
|
|
|
|
|
*
|
|
|
|
|
* NetSurf will be signalled in t ms for this event.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static nserror ami_schedule_add_timer_event(struct nscallback *nscb, int t)
|
|
|
|
|
{
|
|
|
|
|
struct TimeVal tv;
|
|
|
|
|
ULONG 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
|
|
|
|
|
|
2014-11-11 02:50:28 +03:00
|
|
|
|
if((nscb->treq = AllocVecTagList(sizeof(struct TimeRequest), NULL))) {
|
2014-07-03 03:08:56 +04:00
|
|
|
|
*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);
|
|
|
|
|
} else {
|
|
|
|
|
return NSERROR_NOMEM;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NSERROR_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Locate a scheduled callback
|
|
|
|
|
*
|
|
|
|
|
* \param callback callback function
|
|
|
|
|
* \param p user parameter, passed to callback function
|
|
|
|
|
* \param remove remove callback from the heap
|
|
|
|
|
*
|
|
|
|
|
* A scheduled callback matching both callback and p is returned, or NULL if none present.
|
|
|
|
|
*/
|
|
|
|
|
|
2014-07-02 21:35:16 +04:00
|
|
|
|
static struct nscallback *ami_schedule_locate(void (*callback)(void *p), void *p, bool remove)
|
|
|
|
|
{
|
|
|
|
|
PblIterator *iterator;
|
|
|
|
|
struct nscallback *nscb;
|
|
|
|
|
bool found_cb = false;
|
|
|
|
|
|
|
|
|
|
/* check there is something on the list */
|
|
|
|
|
if (schedule_list == NULL) return NULL;
|
|
|
|
|
if(pblHeapIsEmpty(schedule_list)) return NULL;
|
|
|
|
|
|
|
|
|
|
iterator = pblHeapIterator(schedule_list);
|
|
|
|
|
|
|
|
|
|
while ((nscb = pblIteratorNext(iterator)) != -1) {
|
|
|
|
|
if ((nscb->callback == callback) && (nscb->p == p)) {
|
|
|
|
|
if (remove == true) pblIteratorRemove(iterator);
|
|
|
|
|
found_cb = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
pblIteratorFree(iterator);
|
|
|
|
|
|
|
|
|
|
if (found_cb == true) return nscb;
|
|
|
|
|
else return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-02 21:43:44 +04:00
|
|
|
|
/**
|
|
|
|
|
* Reschedule a callback.
|
2014-07-03 03:08:56 +04:00
|
|
|
|
*
|
|
|
|
|
* \param nscb callback
|
|
|
|
|
* \param t time in ms
|
|
|
|
|
*
|
|
|
|
|
* The nscallback will be rescheduled for t ms.
|
2014-07-02 21:43:44 +04:00
|
|
|
|
*/
|
|
|
|
|
|
2014-07-03 03:08:56 +04:00
|
|
|
|
static nserror ami_schedule_reschedule(struct nscallback *nscb, int t)
|
2014-07-02 21:43:44 +04:00
|
|
|
|
{
|
2014-07-03 03:08:56 +04:00
|
|
|
|
ami_schedule_remove_timer_event(nscb);
|
|
|
|
|
if (ami_schedule_add_timer_event(nscb, t) != NSERROR_OK)
|
|
|
|
|
return NSERROR_NOMEM;
|
2014-07-02 21:43:44 +04:00
|
|
|
|
|
|
|
|
|
pblHeapConstruct(schedule_list);
|
|
|
|
|
return NSERROR_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-03 20:10:10 +04:00
|
|
|
|
/**
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2014-03-08 18:13:27 +04:00
|
|
|
|
static nserror schedule_remove(void (*callback)(void *p), void *p)
|
2008-08-02 18:31:32 +04:00
|
|
|
|
{
|
2008-08-03 20:10:10 +04:00
|
|
|
|
struct nscallback *nscb;
|
2008-11-03 22:21:40 +03:00
|
|
|
|
|
2014-07-02 21:35:16 +04:00
|
|
|
|
nscb = ami_schedule_locate(callback, p, true);
|
2011-02-17 00:29:39 +03:00
|
|
|
|
|
2014-07-02 21:35:16 +04:00
|
|
|
|
if(nscb != NULL) {
|
2014-07-03 03:08:56 +04:00
|
|
|
|
ami_schedule_remove_timer_event(nscb);
|
2014-07-02 21:35:16 +04:00
|
|
|
|
FreeVec(nscb);
|
2014-03-08 18:13:27 +04:00
|
|
|
|
pblHeapConstruct(schedule_list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NSERROR_OK;
|
2008-08-02 18:31:32 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-03-08 18:13:27 +04:00
|
|
|
|
static void schedule_remove_all(void)
|
2011-03-13 22:43:56 +03:00
|
|
|
|
{
|
|
|
|
|
PblIterator *iterator;
|
|
|
|
|
struct nscallback *nscb;
|
|
|
|
|
|
|
|
|
|
if(pblHeapIsEmpty(schedule_list)) return;
|
|
|
|
|
|
|
|
|
|
iterator = pblHeapIterator(schedule_list);
|
|
|
|
|
|
|
|
|
|
while ((nscb = pblIteratorNext(iterator)) != -1)
|
|
|
|
|
{
|
2014-07-03 03:08:56 +04:00
|
|
|
|
ami_schedule_remove_timer_event(nscb);
|
2011-03-13 22:43:56 +03:00
|
|
|
|
pblIteratorRemove(iterator);
|
|
|
|
|
FreeVec(nscb);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
pblIteratorFree(iterator);
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-08 18:13:27 +04:00
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-03 20:10:10 +04:00
|
|
|
|
|
2014-03-08 18:13:27 +04:00
|
|
|
|
/* exported function documented in amiga/schedule.h */
|
2011-02-17 00:29:39 +03:00
|
|
|
|
void schedule_run(BOOL poll)
|
2008-08-02 18:31:32 +04:00
|
|
|
|
{
|
2008-08-03 20:10:10 +04:00
|
|
|
|
struct nscallback *nscb;
|
|
|
|
|
void (*callback)(void *p);
|
2008-08-17 20:24:22 +04:00
|
|
|
|
void *p;
|
2011-03-13 22:12:03 +03:00
|
|
|
|
struct TimeVal tv;
|
2008-08-03 20:10:10 +04:00
|
|
|
|
|
2011-02-17 00:29:39 +03:00
|
|
|
|
nscb = pblHeapGetFirst(schedule_list);
|
2008-08-03 20:10:10 +04:00
|
|
|
|
|
2011-02-19 20:19:38 +03:00
|
|
|
|
if(nscb == -1) return;
|
2008-08-03 20:10:10 +04:00
|
|
|
|
|
2014-11-11 02:50:28 +03:00
|
|
|
|
if(poll) {
|
2011-02-17 00:29:39 +03:00
|
|
|
|
/* 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;
|
2014-07-03 03:08:56 +04:00
|
|
|
|
ami_schedule_remove_timer_event(nscb);
|
2011-02-17 00:29:39 +03:00
|
|
|
|
pblHeapRemoveFirst(schedule_list);
|
|
|
|
|
FreeVec(nscb);
|
|
|
|
|
callback(p);
|
2008-08-02 18:31:32 +04:00
|
|
|
|
}
|
2008-09-08 22:14:14 +04:00
|
|
|
|
|
2014-11-11 02:50:28 +03:00
|
|
|
|
static void ami_schedule_open_timer(void)
|
2011-02-19 20:19:38 +03:00
|
|
|
|
{
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-11 02:50:28 +03:00
|
|
|
|
static void ami_schedule_close_timer(void)
|
2011-02-19 20:19:38 +03:00
|
|
|
|
{
|
2014-07-03 03:08:56 +04:00
|
|
|
|
if(ITimer) DropInterface((struct Interface *)ITimer);
|
2011-02-19 20:19:38 +03:00
|
|
|
|
CloseDevice((struct IORequest *) tioreq);
|
|
|
|
|
FreeSysObject(ASOT_IOREQUEST,tioreq);
|
|
|
|
|
FreeSysObject(ASOT_PORT,msgport);
|
|
|
|
|
}
|
2014-03-08 18:13:27 +04:00
|
|
|
|
|
2014-11-11 02:50:28 +03:00
|
|
|
|
/* exported function documented in amiga/schedule.h */
|
|
|
|
|
bool ami_schedule_create(void)
|
|
|
|
|
{
|
|
|
|
|
ami_schedule_open_timer();
|
|
|
|
|
schedule_list = pblHeapNew();
|
|
|
|
|
if(schedule_list == PBL_ERROR_OUT_OF_MEMORY) return false;
|
|
|
|
|
|
|
|
|
|
pblHeapSetCompareFunction(schedule_list, ami_schedule_compare);
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
|
|
|
|
|
ami_schedule_close_timer();
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-08 18:13:27 +04:00
|
|
|
|
/* exported function documented in amiga/schedule.h */
|
|
|
|
|
nserror ami_schedule(int t, void (*callback)(void *p), void *p)
|
|
|
|
|
{
|
|
|
|
|
struct nscallback *nscb;
|
|
|
|
|
|
2014-07-02 21:43:44 +04:00
|
|
|
|
if(schedule_list == NULL) return NSERROR_INIT_FAILED;
|
|
|
|
|
if (t < 0) return schedule_remove(callback, p);
|
|
|
|
|
|
2014-11-11 02:50:28 +03:00
|
|
|
|
if ((nscb = ami_schedule_locate(callback, p, false))) {
|
2014-07-03 03:08:56 +04:00
|
|
|
|
return ami_schedule_reschedule(nscb, t);
|
2014-03-08 18:13:27 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nscb = AllocVecTagList(sizeof(struct nscallback), NULL);
|
2014-07-02 21:43:44 +04:00
|
|
|
|
if(!nscb) return NSERROR_NOMEM;
|
2014-03-08 18:13:27 +04:00
|
|
|
|
|
2014-07-03 03:08:56 +04:00
|
|
|
|
if (ami_schedule_add_timer_event(nscb, t) != NSERROR_OK)
|
|
|
|
|
return NSERROR_NOMEM;
|
2014-03-08 18:13:27 +04:00
|
|
|
|
|
|
|
|
|
nscb->callback = callback;
|
|
|
|
|
nscb->p = p;
|
|
|
|
|
|
|
|
|
|
pblHeapInsert(schedule_list, nscb);
|
|
|
|
|
|
|
|
|
|
return NSERROR_OK;
|
|
|
|
|
}
|
2014-07-02 21:35:16 +04:00
|
|
|
|
|