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/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2011-03-14 01:50:54 +03:00
|
|
|
|
#include "utils/schedule.h"
|
2010-12-30 03:53:11 +03:00
|
|
|
|
#include "amiga/os3support.h"
|
2008-08-03 20:10:10 +04:00
|
|
|
|
#include "amiga/schedule.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>
|
|
|
|
|
|
|
|
|
|
struct nscallback
|
|
|
|
|
{
|
|
|
|
|
struct TimeVal tv;
|
|
|
|
|
void *callback;
|
|
|
|
|
void *p;
|
|
|
|
|
struct TimeRequest *treq;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
PblHeap *schedule_list;
|
|
|
|
|
|
|
|
|
|
void ami_remove_timer_event(struct nscallback *nscb);
|
|
|
|
|
|
2008-08-03 20:10:10 +04:00
|
|
|
|
/**
|
|
|
|
|
* Schedule a callback.
|
|
|
|
|
*
|
|
|
|
|
* \param t interval before the callback should be made / cs
|
|
|
|
|
* \param callback callback function
|
|
|
|
|
* \param p user parameter, passed to callback function
|
|
|
|
|
*
|
|
|
|
|
* The callback function will be called as soon as possible after t cs have
|
|
|
|
|
* passed.
|
|
|
|
|
*/
|
2008-08-02 18:31:32 +04:00
|
|
|
|
|
|
|
|
|
void schedule(int t, void (*callback)(void *p), void *p)
|
|
|
|
|
{
|
2008-08-03 20:10:10 +04:00
|
|
|
|
struct nscallback *nscb;
|
2011-03-13 22:12:03 +03:00
|
|
|
|
struct TimeVal tv;
|
2011-02-26 15:54:56 +03:00
|
|
|
|
ULONG time_us = 0;
|
2008-08-03 20:10:10 +04:00
|
|
|
|
|
2011-03-14 02:20:03 +03:00
|
|
|
|
if(schedule_list == NULL) return;
|
|
|
|
|
|
2011-02-17 00:29:39 +03:00
|
|
|
|
nscb = AllocVec(sizeof(struct nscallback), MEMF_PRIVATE | MEMF_CLEAR);
|
|
|
|
|
if(!nscb) return;
|
2008-08-03 20:10:10 +04:00
|
|
|
|
|
2011-02-26 15:54:56 +03:00
|
|
|
|
time_us = t*10000; /* t converted to <20>s */
|
2008-09-08 22:14:14 +04:00
|
|
|
|
|
2011-02-26 15:54:56 +03:00
|
|
|
|
nscb->tv.Seconds = time_us / 1000000;
|
|
|
|
|
nscb->tv.Microseconds = time_us % 1000000;
|
2008-09-08 22:14:14 +04:00
|
|
|
|
|
2008-08-03 20:10:10 +04:00
|
|
|
|
GetSysTime(&tv);
|
2008-09-08 22:14:14 +04:00
|
|
|
|
AddTime(&nscb->tv,&tv); // now contains time when event occurs
|
2011-02-10 00:52:28 +03:00
|
|
|
|
|
2009-10-16 01:35:29 +04:00
|
|
|
|
if(nscb->treq = AllocVec(sizeof(struct TimeRequest),MEMF_PRIVATE | MEMF_CLEAR))
|
2008-09-09 10:25:22 +04:00
|
|
|
|
{
|
|
|
|
|
*nscb->treq = *tioreq;
|
2008-12-20 13:54:59 +03:00
|
|
|
|
nscb->treq->Request.io_Command=TR_ADDREQUEST;
|
2009-10-16 01:35:29 +04:00
|
|
|
|
nscb->treq->Time.Seconds=nscb->tv.Seconds; // secs
|
2008-12-20 13:54:59 +03:00
|
|
|
|
nscb->treq->Time.Microseconds=nscb->tv.Microseconds; // micro
|
2008-09-09 10:25:22 +04:00
|
|
|
|
SendIO((struct IORequest *)nscb->treq);
|
|
|
|
|
}
|
2011-02-10 00:52:28 +03:00
|
|
|
|
|
2008-08-03 20:10:10 +04:00
|
|
|
|
nscb->callback = callback;
|
|
|
|
|
nscb->p = p;
|
2011-02-17 00:29:39 +03:00
|
|
|
|
|
|
|
|
|
pblHeapInsert(schedule_list, nscb);
|
2008-08-02 18:31:32 +04:00
|
|
|
|
}
|
|
|
|
|
|
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.
|
|
|
|
|
*/
|
|
|
|
|
|
2008-08-02 18:31:32 +04:00
|
|
|
|
void schedule_remove(void (*callback)(void *p), void *p)
|
|
|
|
|
{
|
2011-02-17 00:29:39 +03:00
|
|
|
|
PblIterator *iterator;
|
2008-08-03 20:10:10 +04:00
|
|
|
|
struct nscallback *nscb;
|
2011-02-17 00:29:39 +03:00
|
|
|
|
bool restoreheap = false;
|
2008-08-03 20:10:10 +04:00
|
|
|
|
|
2011-03-13 22:52:04 +03:00
|
|
|
|
if(schedule_list == NULL) return;
|
2011-02-17 00:29:39 +03:00
|
|
|
|
if(pblHeapIsEmpty(schedule_list)) return;
|
2008-08-03 20:10:10 +04:00
|
|
|
|
|
2011-02-17 00:29:39 +03:00
|
|
|
|
iterator = pblHeapIterator(schedule_list);
|
2008-08-03 20:10:10 +04:00
|
|
|
|
|
2011-02-17 00:29:39 +03:00
|
|
|
|
while ((nscb = pblIteratorNext(iterator)) != -1)
|
2008-08-03 20:10:10 +04:00
|
|
|
|
{
|
|
|
|
|
if((nscb->callback == callback) && (nscb->p == p))
|
|
|
|
|
{
|
2008-09-08 22:14:14 +04:00
|
|
|
|
ami_remove_timer_event(nscb);
|
2011-02-17 00:29:39 +03:00
|
|
|
|
pblIteratorRemove(iterator);
|
|
|
|
|
FreeVec(nscb);
|
|
|
|
|
restoreheap = true;
|
2008-08-03 20:10:10 +04:00
|
|
|
|
}
|
2011-02-17 00:29:39 +03:00
|
|
|
|
};
|
2008-11-03 22:21:40 +03:00
|
|
|
|
|
2011-02-17 00:29:39 +03:00
|
|
|
|
pblIteratorFree(iterator);
|
|
|
|
|
|
|
|
|
|
if(restoreheap) pblHeapConstruct(schedule_list);
|
2008-08-02 18:31:32 +04:00
|
|
|
|
}
|
|
|
|
|
|
2011-03-13 22:43:56 +03:00
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-03 20:10:10 +04:00
|
|
|
|
/**
|
|
|
|
|
* Process events up to current time.
|
2011-02-17 00:29:39 +03:00
|
|
|
|
* This implementation only takes the top entry off the heap, it does not
|
|
|
|
|
* venture to later scheduled events until the next time it is called -
|
|
|
|
|
* immediately afterwards, if we're in a timer signalled loop.
|
2008-08-03 20:10:10 +04:00
|
|
|
|
*/
|
|
|
|
|
|
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
|
|
|
|
|
2011-02-17 00:29:39 +03:00
|
|
|
|
if(poll)
|
2008-08-03 20:10:10 +04:00
|
|
|
|
{
|
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;
|
|
|
|
|
ami_remove_timer_event(nscb);
|
|
|
|
|
pblHeapRemoveFirst(schedule_list);
|
|
|
|
|
FreeVec(nscb);
|
|
|
|
|
callback(p);
|
2008-08-02 18:31:32 +04:00
|
|
|
|
}
|
2008-09-08 22:14:14 +04:00
|
|
|
|
|
|
|
|
|
void ami_remove_timer_event(struct nscallback *nscb)
|
|
|
|
|
{
|
|
|
|
|
if(!nscb) return;
|
|
|
|
|
|
|
|
|
|
if(nscb->treq)
|
|
|
|
|
{
|
2011-02-17 00:29:39 +03:00
|
|
|
|
if(CheckIO((struct IORequest *)nscb->treq)==NULL)
|
2008-09-08 22:14:14 +04:00
|
|
|
|
AbortIO((struct IORequest *)nscb->treq);
|
|
|
|
|
|
|
|
|
|
WaitIO((struct IORequest *)nscb->treq);
|
|
|
|
|
FreeVec(nscb->treq);
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-02-17 00:29:39 +03:00
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BOOL ami_schedule_create(void)
|
|
|
|
|
{
|
|
|
|
|
schedule_list = pblHeapNew();
|
|
|
|
|
if(schedule_list == PBL_ERROR_OUT_OF_MEMORY) return false;
|
|
|
|
|
|
|
|
|
|
pblHeapSetCompareFunction(schedule_list, ami_schedule_compare);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ami_schedule_free(void)
|
|
|
|
|
{
|
2011-03-13 22:43:56 +03:00
|
|
|
|
schedule_remove_all();
|
|
|
|
|
pblHeapFree(schedule_list); // this should be empty at this point
|
2011-03-13 22:52:04 +03:00
|
|
|
|
schedule_list = NULL;
|
2011-02-17 00:29:39 +03:00
|
|
|
|
}
|
2011-02-19 20:19:38 +03:00
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ami_schedule_close_timer(void)
|
|
|
|
|
{
|
|
|
|
|
if(ITimer)
|
|
|
|
|
{
|
|
|
|
|
DropInterface((struct Interface *)ITimer);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CloseDevice((struct IORequest *) tioreq);
|
|
|
|
|
FreeSysObject(ASOT_IOREQUEST,tioreq);
|
|
|
|
|
FreeSysObject(ASOT_PORT,msgport);
|
|
|
|
|
}
|