netsurf/amiga/schedule.c

530 lines
13 KiB
C
Raw Normal View History

/*
2014-11-22 02:46:22 +03:00
* 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"
2014-11-22 19:24:26 +03:00
#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"
2014-11-22 19:24:26 +03:00
#include "utils/log.h"
#include "amiga/schedule.h"
2014-11-22 19:24:26 +03:00
static struct MsgPort *smsgport = NULL; /* to send messages for the scheduler to */
2014-11-22 02:46:22 +03:00
static struct TimeRequest *tioreq;
struct Device *TimerBase;
struct TimerIFace *ITimer;
struct nscallback
{
struct TimeVal tv;
void *callback;
void *p;
struct TimeRequest *treq;
};
2014-11-22 02:46:22 +03:00
struct ami_schedule_message {
struct Message msg;
int type;
2014-11-22 19:24:26 +03:00
int t;
void *callback;
void *p;
};
2014-11-22 02:46:22 +03:00
enum {
AMI_S_SCHEDULE = 0,
2014-11-22 19:24:26 +03:00
AMI_S_RUN,
2014-11-22 02:46:22 +03:00
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.
*/
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;
}
/**
* 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;
2014-07-02 21:35:16 +04:00
nscb = ami_schedule_locate(callback, p, true);
2014-07-02 21:35:16 +04:00
if(nscb != NULL) {
ami_schedule_remove_timer_event(nscb);
2014-07-02 21:35:16 +04:00
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);
}
2014-11-22 19:24:26 +03:00
/**
* 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;
2014-11-22 19:24:26 +03:00
struct ami_schedule_message *asmsg = AllocSysObjectTags(ASOT_MESSAGE,
ASOMSG_Size, sizeof(struct ami_schedule_message),
TAG_END);
nscb = pblHeapGetFirst(schedule_list);
if(nscb == -1) return;
callback = nscb->callback;
p = nscb->p;
ami_schedule_remove_timer_event(nscb);
pblHeapRemoveFirst(schedule_list);
FreeVec(nscb);
2014-11-22 19:24:26 +03:00
asmsg->type = AMI_S_RUN;
asmsg->callback = callback;
asmsg->p = p;
PutMsg(nsmsgport, (struct Message *)asmsg);
return;
}
2014-11-22 19:24:26 +03:00
2014-11-22 02:46:22 +03:00
static struct MsgPort *ami_schedule_open_timer(void)
{
2014-11-22 02:46:22 +03:00
struct MsgPort *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-22 02:46:22 +03:00
return msgport;
}
2014-11-22 02:46:22 +03:00
static void ami_schedule_close_timer(struct MsgPort *msgport)
{
if(ITimer) DropInterface((struct Interface *)ITimer);
CloseDevice((struct IORequest *) tioreq);
2014-11-22 02:46:22 +03:00
FreeSysObject(ASOT_IOREQUEST, tioreq);
FreeSysObject(ASOT_PORT, msgport);
}
2014-11-22 02:46:22 +03:00
/**
* Initialise amiga scheduler
*
* /return true if initialised ok or false on error.
*/
2014-11-22 19:24:26 +03:00
static struct MsgPort *ami_schedule_create(void)
{
2014-11-22 02:46:22 +03:00
struct MsgPort *msgport = ami_schedule_open_timer();
schedule_list = pblHeapNew();
2014-11-22 02:46:22 +03:00
if(schedule_list == PBL_ERROR_OUT_OF_MEMORY) return NULL;
pblHeapSetCompareFunction(schedule_list, ami_schedule_compare);
2014-11-22 02:46:22 +03:00
return msgport;
}
2014-11-22 02:46:22 +03:00
/**
* Finalise amiga scheduler
*
*/
2014-11-22 19:24:26 +03:00
static void ami_schedule_free(struct MsgPort *msgport)
{
schedule_remove_all();
pblHeapFree(schedule_list); // this should be empty at this point
schedule_list = NULL;
2014-11-22 02:46:22 +03:00
ami_schedule_close_timer(msgport);
}
/* exported function documented in amiga/schedule.h */
nserror ami_schedule(int t, void (*callback)(void *p), void *p)
2014-11-22 19:24:26 +03:00
{
if(smsgport == NULL) return NSERROR_INIT_FAILED;
struct ami_schedule_message *asmsg = AllocSysObjectTags(ASOT_MESSAGE,
ASOMSG_Size, sizeof(struct ami_schedule_message),
TAG_END);
asmsg->type = AMI_S_SCHEDULE;
asmsg->t = t;
asmsg->callback = callback;
asmsg->p = p;
PutMsg(smsgport, (struct Message *)asmsg);
return NSERROR_OK;
}
static nserror ami_scheduler_schedule(struct ami_schedule_message *asmsg)
{
struct nscallback *nscb;
if(schedule_list == NULL) return NSERROR_INIT_FAILED;
2014-11-22 19:24:26 +03:00
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;
2014-11-22 19:24:26 +03:00
if (ami_schedule_add_timer_event(nscb, asmsg->t) != NSERROR_OK)
return NSERROR_NOMEM;
2014-11-22 19:24:26 +03:00
nscb->callback = asmsg->callback;
nscb->p = asmsg->p;
pblHeapInsert(schedule_list, nscb);
return NSERROR_OK;
}
2014-07-02 21:35:16 +04:00
2014-11-22 19:24:26 +03:00
/* exported interface documented in amiga/schedule.h */
void ami_schedule_handle(struct MsgPort *nsmsgport)
{
/* nsmsgport is the NetSurf message port that the
* scheduler task is sending messages to. */
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 */
}
}
}
2014-11-22 02:46:22 +03:00
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;
2014-11-22 19:24:26 +03:00
struct MsgPort *schedulermsgport = AllocSysObjectTags(ASOT_PORT, TAG_END);
2014-11-22 02:46:22 +03:00
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. */
2014-11-22 19:24:26 +03:00
struct ami_schedule_message *asmsg = AllocSysObjectTags(ASOT_MESSAGE,
2014-11-22 02:46:22 +03:00
ASOMSG_Size, sizeof(struct ami_schedule_message),
ASOMSG_ReplyPort, schedulermsgport,
TAG_END);
2014-11-22 19:24:26 +03:00
asmsg->type = AMI_S_STARTUP;
PutMsg(nsmsgport, (struct Message *)asmsg);
2014-11-22 02:46:22 +03:00
/* Main loop for this process */
while(running) {
signal = Wait(signalmask);
if(signal & schedulesig) {
while((asmsg = (struct ami_schedule_message *)GetMsg(schedulermsgport))) {
2014-11-22 19:24:26 +03:00
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 */
}
2014-11-22 02:46:22 +03:00
}
}
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); /* \todo check timer event doesn't relate to
* something that's been deleted already */
}
}
2014-11-22 02:46:22 +03:00
}
ami_schedule_free(timermsgport);
return RETURN_OK;
}
/**
* 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)
{
2014-11-22 19:24:26 +03:00
if(nsmsgport == NULL) return NSERROR_INIT_FAILED;
2014-11-22 02:46:22 +03:00
struct Process *proc = CreateNewProcTags(
NP_Name, "NetSurf scheduler",
2014-11-22 19:24:26 +03:00
NP_Entry, ami_scheduler_process,
2014-11-22 02:46:22 +03:00
NP_Child, TRUE,
2014-11-22 19:38:26 +03:00
NP_StackSize, 2048,
2014-11-22 02:46:22 +03:00
NP_Priority, 1,
NP_UserData, nsmsgport,
TAG_DONE);
if(proc == NULL) {
return NSERROR_NOMEM;
}
2014-11-22 19:24:26 +03:00
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);
}
LOG(("Scheduler started"));
2014-11-22 02:46:22 +03:00
return NSERROR_OK;
}
2014-11-22 19:24:26 +03:00
/* exported function documented in amiga/schedule.h */
void ami_scheduler_process_delete(void)
{
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);
return;
}