590 lines
14 KiB
C
Executable File
590 lines
14 KiB
C
Executable File
/*
|
||
* Copyright 2008 - 2014 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/dos.h>
|
||
#include <proto/exec.h>
|
||
#include <proto/timer.h>
|
||
|
||
#include <stdio.h>
|
||
#include <stdbool.h>
|
||
#include <pbl.h>
|
||
|
||
#include "utils/errors.h"
|
||
#include "utils/log.h"
|
||
|
||
#include "amiga/schedule.h"
|
||
|
||
#ifdef AMIGA_NS_ASYNC
|
||
static struct MsgPort *smsgport = NULL; /* to send messages for the scheduler to */
|
||
#endif
|
||
static struct TimeRequest *tioreq;
|
||
struct Device *TimerBase;
|
||
#ifdef __amigaos4__
|
||
struct TimerIFace *ITimer;
|
||
#endif
|
||
|
||
struct nscallback
|
||
{
|
||
struct TimeVal tv;
|
||
void *callback;
|
||
void *p;
|
||
struct TimeRequest *treq;
|
||
};
|
||
|
||
struct ami_schedule_message {
|
||
struct Message msg;
|
||
int type;
|
||
int t;
|
||
void *callback;
|
||
void *p;
|
||
};
|
||
|
||
enum {
|
||
AMI_S_SCHEDULE = 0,
|
||
AMI_S_RUN,
|
||
AMI_S_STARTUP,
|
||
AMI_S_EXIT
|
||
};
|
||
|
||
static PblHeap *schedule_list;
|
||
|
||
/**
|
||
* Remove timer event
|
||
*
|
||
* \param nscb callback
|
||
*
|
||
* The timer event for the callback is aborted
|
||
*/
|
||
|
||
static void ami_schedule_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);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 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
|
||
|
||
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);
|
||
} 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.
|
||
*/
|
||
|
||
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;
|
||
}
|
||
|
||
/**
|
||
* Reschedule a callback.
|
||
*
|
||
* \param nscb callback
|
||
* \param t time in ms
|
||
*
|
||
* The nscallback will be rescheduled for t ms.
|
||
*/
|
||
|
||
static nserror ami_schedule_reschedule(struct nscallback *nscb, int t)
|
||
{
|
||
ami_schedule_remove_timer_event(nscb);
|
||
if (ami_schedule_add_timer_event(nscb, t) != NSERROR_OK)
|
||
return NSERROR_NOMEM;
|
||
|
||
pblHeapConstruct(schedule_list);
|
||
return NSERROR_OK;
|
||
}
|
||
|
||
/**
|
||
* 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)
|
||
{
|
||
struct nscallback *nscb;
|
||
|
||
nscb = ami_schedule_locate(callback, p, true);
|
||
|
||
if(nscb != NULL) {
|
||
ami_schedule_remove_timer_event(nscb);
|
||
FreeVec(nscb);
|
||
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_schedule_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);
|
||
}
|
||
|
||
|
||
/**
|
||
* Process events up to current time.
|
||
* NetSurf entry point after being signalled by the scheduler process.
|
||
*/
|
||
static void schedule_run(struct ami_schedule_message *asmsg)
|
||
{
|
||
void (*callback)(void *p) = asmsg->callback;
|
||
void *p = asmsg->p;
|
||
|
||
callback(p);
|
||
}
|
||
|
||
/**
|
||
* Process events up to current time.
|
||
*
|
||
* 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.
|
||
*/
|
||
static void ami_scheduler_run(struct MsgPort *nsmsgport)
|
||
{
|
||
struct nscallback *nscb;
|
||
void (*callback)(void *p);
|
||
void *p;
|
||
struct TimeVal tv;
|
||
struct ami_schedule_message *asmsg;
|
||
|
||
#ifndef AMIGA_NS_ASYNC
|
||
asmsg = AllocVecTagList(sizeof(struct ami_schedule_message), NULL);
|
||
#else
|
||
asmsg = AllocSysObjectTags(ASOT_MESSAGE,
|
||
ASOMSG_Size, sizeof(struct ami_schedule_message),
|
||
TAG_END);
|
||
#endif
|
||
nscb = pblHeapGetFirst(schedule_list);
|
||
if(nscb == -1) return;
|
||
|
||
/* Ensure the scheduled event time has passed (CmpTime<=0)
|
||
* in case something been deleted between the timer
|
||
* signalling us and us responding to it.
|
||
*/
|
||
GetSysTime(&tv);
|
||
if(CmpTime(&tv, &nscb->tv) > 0) return;
|
||
|
||
callback = nscb->callback;
|
||
p = nscb->p;
|
||
ami_schedule_remove_timer_event(nscb);
|
||
pblHeapRemoveFirst(schedule_list);
|
||
FreeVec(nscb);
|
||
|
||
asmsg->type = AMI_S_RUN;
|
||
asmsg->callback = callback;
|
||
asmsg->p = p;
|
||
|
||
#ifndef AMIGA_NS_ASYNC
|
||
schedule_run(asmsg);
|
||
FreeVec(asmsg);
|
||
#else
|
||
PutMsg(nsmsgport, (struct Message *)asmsg);
|
||
#endif
|
||
return;
|
||
}
|
||
|
||
static struct MsgPort *ami_schedule_open_timer(struct MsgPort *msgport)
|
||
{
|
||
if(msgport == NULL) {
|
||
msgport = AllocSysObjectTags(ASOT_PORT,
|
||
ASO_NoTrack, FALSE,
|
||
TAG_DONE);
|
||
}
|
||
#ifdef __amigaos4__
|
||
tioreq = (struct TimeRequest *)AllocSysObjectTags(ASOT_IOREQUEST,
|
||
ASOIOR_Size,sizeof(struct TimeRequest),
|
||
ASOIOR_ReplyPort,msgport,
|
||
ASO_NoTrack,FALSE,
|
||
TAG_DONE);
|
||
#else
|
||
tioreq = (struct TimeRequest *)CreateIORequest(msgport, sizeof(struct TimeRequest));
|
||
#endif
|
||
|
||
OpenDevice("timer.device", UNIT_WAITUNTIL, (struct IORequest *)tioreq, 0);
|
||
|
||
TimerBase = (struct Device *)tioreq->Request.io_Device;
|
||
#ifdef __amigaos4__
|
||
ITimer = (struct TimerIFace *)GetInterface((struct Library *)TimerBase, "main", 1, NULL);
|
||
#endif
|
||
return msgport;
|
||
}
|
||
|
||
static void ami_schedule_close_timer(struct MsgPort *msgport)
|
||
{
|
||
#ifdef __amigaos4__
|
||
if(ITimer) DropInterface((struct Interface *)ITimer);
|
||
#endif
|
||
CloseDevice((struct IORequest *) tioreq);
|
||
FreeSysObject(ASOT_IOREQUEST, tioreq);
|
||
|
||
/* Will be NULL if the GUI code is allocating/deallocating (no async mode) */
|
||
if(msgport != NULL) FreeSysObject(ASOT_PORT, msgport);
|
||
}
|
||
|
||
/**
|
||
* Initialise amiga scheduler
|
||
*
|
||
* \param msgport optional already opened message port
|
||
*
|
||
* \return true if initialised ok or false on error.
|
||
*/
|
||
static struct MsgPort *ami_schedule_create(struct MsgPort *msgport)
|
||
{
|
||
msgport = ami_schedule_open_timer(msgport);
|
||
schedule_list = pblHeapNew();
|
||
if(schedule_list == PBL_ERROR_OUT_OF_MEMORY) return NULL;
|
||
|
||
pblHeapSetCompareFunction(schedule_list, ami_schedule_compare);
|
||
|
||
return msgport;
|
||
}
|
||
|
||
/**
|
||
* Finalise amiga scheduler
|
||
*
|
||
* \param msgport optional message port to free
|
||
*/
|
||
static void ami_schedule_free(struct MsgPort *msgport)
|
||
{
|
||
schedule_remove_all();
|
||
pblHeapFree(schedule_list); // this should be empty at this point
|
||
schedule_list = NULL;
|
||
|
||
ami_schedule_close_timer(msgport);
|
||
}
|
||
|
||
static nserror ami_scheduler_schedule(struct ami_schedule_message *asmsg)
|
||
{
|
||
struct nscallback *nscb;
|
||
|
||
if(schedule_list == NULL) return NSERROR_INIT_FAILED;
|
||
if (asmsg->t < 0) return schedule_remove(asmsg->callback, asmsg->p);
|
||
|
||
if ((nscb = ami_schedule_locate(asmsg->callback, asmsg->p, false))) {
|
||
return ami_schedule_reschedule(nscb, asmsg->t);
|
||
}
|
||
|
||
nscb = AllocVecTagList(sizeof(struct nscallback), NULL);
|
||
if(!nscb) return NSERROR_NOMEM;
|
||
|
||
if (ami_schedule_add_timer_event(nscb, asmsg->t) != NSERROR_OK)
|
||
return NSERROR_NOMEM;
|
||
|
||
nscb->callback = asmsg->callback;
|
||
nscb->p = asmsg->p;
|
||
|
||
pblHeapInsert(schedule_list, nscb);
|
||
|
||
return NSERROR_OK;
|
||
}
|
||
|
||
/* exported function documented in amiga/schedule.h */
|
||
nserror ami_schedule(int t, void (*callback)(void *p), void *p)
|
||
{
|
||
struct ami_schedule_message *asmsg;
|
||
|
||
#ifndef AMIGA_NS_ASYNC
|
||
asmsg = AllocVecTagList(sizeof(struct ami_schedule_message), NULL);
|
||
#else
|
||
if(smsgport == NULL) return NSERROR_INIT_FAILED;
|
||
asmsg = AllocSysObjectTags(ASOT_MESSAGE,
|
||
ASOMSG_Size, sizeof(struct ami_schedule_message),
|
||
TAG_END);
|
||
#endif
|
||
|
||
asmsg->type = AMI_S_SCHEDULE;
|
||
asmsg->t = t;
|
||
asmsg->callback = callback;
|
||
asmsg->p = p;
|
||
|
||
#ifndef AMIGA_NS_ASYNC
|
||
ami_scheduler_schedule(asmsg);
|
||
FreeVec(asmsg);
|
||
#else
|
||
PutMsg(smsgport, (struct Message *)asmsg);
|
||
#endif
|
||
return NSERROR_OK;
|
||
}
|
||
|
||
/* exported interface documented in amiga/schedule.h */
|
||
void ami_schedule_handle(struct MsgPort *nsmsgport)
|
||
{
|
||
/* nsmsgport is the NetSurf message port that the scheduler task
|
||
* (or timer.device in no-async mode) is sending messages to. */
|
||
|
||
#ifndef AMIGA_NS_ASYNC
|
||
struct TimerRequest *timermsg;
|
||
|
||
while((timermsg = (struct TimerRequest *)GetMsg(nsmsgport))) {
|
||
/* reply first, as we don't need the message contents and
|
||
* it crashes if we reply after schedule_run has executed.
|
||
*/
|
||
ReplyMsg((struct Message *)timermsg);
|
||
ami_scheduler_run(NULL);
|
||
}
|
||
#else
|
||
struct ami_schedule_message *asmsg;
|
||
|
||
while((asmsg = (struct ami_schedule_message *)GetMsg(nsmsgport))) {
|
||
if(asmsg->msg.mn_Node.ln_Type == NT_REPLYMSG) {
|
||
/* if it's a reply, free stuff */
|
||
FreeSysObject(ASOT_MESSAGE, asmsg);
|
||
} else {
|
||
switch(asmsg->type) {
|
||
case AMI_S_STARTUP:
|
||
smsgport = asmsg->msg.mn_ReplyPort;
|
||
break;
|
||
|
||
case AMI_S_RUN:
|
||
schedule_run(asmsg);
|
||
break;
|
||
|
||
default:
|
||
// unknown message
|
||
break;
|
||
}
|
||
FreeSysObject(ASOT_MESSAGE, asmsg); /* don't reply, just free */
|
||
}
|
||
}
|
||
#endif
|
||
}
|
||
|
||
#ifdef NSA_NO_SYNC
|
||
static int32 ami_scheduler_process(STRPTR args, int32 length, APTR execbase)
|
||
{
|
||
struct Process *proc = (struct Process *)FindTask(NULL);
|
||
struct MsgPort *nsmsgport = proc->pr_Task.tc_UserData;
|
||
struct MsgPort *schedulermsgport = AllocSysObjectTags(ASOT_PORT, TAG_END);
|
||
struct MsgPort *timermsgport = ami_schedule_create();
|
||
bool running = true;
|
||
struct TimerRequest *timermsg = NULL;
|
||
ULONG schedulesig = 1L << schedulermsgport->mp_SigBit;
|
||
ULONG timersig = 1L << timermsgport->mp_SigBit;
|
||
uint32 signalmask = schedulesig | timersig;
|
||
uint32 signal = 0;
|
||
|
||
/* Send a startup message to the message port we were given when we were created.
|
||
* This tells NetSurf where to send scheduler events to. */
|
||
|
||
struct ami_schedule_message *asmsg = AllocSysObjectTags(ASOT_MESSAGE,
|
||
ASOMSG_Size, sizeof(struct ami_schedule_message),
|
||
ASOMSG_ReplyPort, schedulermsgport,
|
||
TAG_END);
|
||
|
||
asmsg->type = AMI_S_STARTUP;
|
||
PutMsg(nsmsgport, (struct Message *)asmsg);
|
||
|
||
/* Main loop for this process */
|
||
|
||
while(running) {
|
||
signal = Wait(signalmask);
|
||
|
||
if(signal & schedulesig) {
|
||
while((asmsg = (struct ami_schedule_message *)GetMsg(schedulermsgport))) {
|
||
if(asmsg->msg.mn_Node.ln_Type == NT_REPLYMSG) {
|
||
/* if it's a reply, free stuff */
|
||
FreeSysObject(ASOT_MESSAGE, asmsg);
|
||
} else {
|
||
switch(asmsg->type) {
|
||
case AMI_S_SCHEDULE:
|
||
ami_scheduler_schedule(asmsg);
|
||
break;
|
||
|
||
case AMI_S_EXIT:
|
||
running = false;
|
||
break;
|
||
|
||
default:
|
||
// unknown message
|
||
break;
|
||
}
|
||
FreeSysObject(ASOT_MESSAGE, asmsg); /* don't reply, just free */
|
||
}
|
||
}
|
||
}
|
||
|
||
if(signal & timersig) {
|
||
while((timermsg = (struct TimerRequest *)GetMsg(timermsgport))) {
|
||
/* reply first, as we don't need the message contents and
|
||
* it crashes if we reply after schedule_run has executed.
|
||
*/
|
||
ReplyMsg((struct Message *)timermsg);
|
||
ami_scheduler_run(nsmsgport);
|
||
}
|
||
}
|
||
}
|
||
|
||
ami_schedule_free(timermsgport);
|
||
FreeSysObject(ASOT_PORT, schedulermsgport);
|
||
|
||
return RETURN_OK;
|
||
}
|
||
#endif
|
||
|
||
/**
|
||
* Create a new process for the scheduler.
|
||
*
|
||
* \param nsmsgport Message port to send scheduler events to.
|
||
* \return NSERROR_OK on success or error code on faliure.
|
||
*/
|
||
nserror ami_scheduler_process_create(struct MsgPort *nsmsgport)
|
||
{
|
||
#ifndef AMIGA_NS_ASYNC
|
||
ami_schedule_create(nsmsgport);
|
||
#else
|
||
if(nsmsgport == NULL) return NSERROR_INIT_FAILED;
|
||
|
||
struct Process *proc = CreateNewProcTags(
|
||
NP_Name, "NetSurf scheduler",
|
||
NP_Entry, ami_scheduler_process,
|
||
NP_Child, TRUE,
|
||
NP_StackSize, 2048,
|
||
NP_Priority, 1,
|
||
NP_UserData, nsmsgport,
|
||
TAG_DONE);
|
||
|
||
if(proc == NULL) {
|
||
return NSERROR_NOMEM;
|
||
}
|
||
|
||
LOG(("Waiting for scheduler process to start up..."));
|
||
|
||
WaitPort(nsmsgport);
|
||
struct ami_schedule_message *asmsg = (struct ami_schedule_message *)GetMsg(nsmsgport);
|
||
|
||
if(asmsg->type == AMI_S_STARTUP) { /* We shouldn't get any other messages at this stage */
|
||
smsgport = asmsg->msg.mn_ReplyPort;
|
||
ReplyMsg((struct Message *)asmsg);
|
||
}
|
||
#endif
|
||
LOG(("Scheduler started"));
|
||
|
||
return NSERROR_OK;
|
||
}
|
||
|
||
/* exported function documented in amiga/schedule.h */
|
||
void ami_scheduler_process_delete(void)
|
||
{
|
||
#ifndef AMIGA_NS_ASYNC
|
||
ami_schedule_free(NULL);
|
||
#else
|
||
if(smsgport == NULL) return;
|
||
|
||
struct ami_schedule_message *asmsg = AllocSysObjectTags(ASOT_MESSAGE,
|
||
ASOMSG_Size, sizeof(struct ami_schedule_message),
|
||
TAG_END);
|
||
|
||
asmsg->type = AMI_S_EXIT;
|
||
PutMsg(smsgport, (struct Message *)asmsg);
|
||
smsgport = NULL; /* this is freed via another copy of this pointer */
|
||
#endif
|
||
}
|
||
|