1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
|
/*
* tclMacInterupt.c --
*
* This file contains routines that deal with the Macintosh's low level
* time manager. This code provides a better resolution timer than what
* can be provided by WaitNextEvent.
*
* Copyright (c) 1996 Sun Microsystems, Inc.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* RCS: @(#) $Id: tclMacInterupt.c,v 1.2 1998/09/14 18:40:05 stanton Exp $
*/
#include "tclInt.h"
#include "tclMacInt.h"
#include <LowMem.h>
#include <Processes.h>
#include <Timer.h>
/*
* Data structure for timer tasks.
*/
typedef struct TMInfo {
TMTask tmTask;
ProcessSerialNumber psn;
Point lastPoint;
Point newPoint;
long currentA5;
long ourA5;
int installed;
} TMInfo;
/*
* Globals used within this file.
*/
static TimerUPP sleepTimerProc = NULL;
static int interuptsInited = false;
static ProcessSerialNumber applicationPSN;
#define MAX_TIMER_ARRAY_SIZE 16
static TMInfo timerInfoArray[MAX_TIMER_ARRAY_SIZE];
static int topTimerElement = 0;
/*
* Prototypes for procedures that are referenced only in this file:
*/
#if !GENERATINGCFM
static TMInfo * GetTMInfo(void) ONEWORDINLINE(0x2E89); /* MOVE.L A1,(SP) */
#endif
static void SleepTimerProc _ANSI_ARGS_((void));
static pascal void CleanUpExitProc _ANSI_ARGS_((void));
static void InitInteruptSystem _ANSI_ARGS_((void));
/*
*----------------------------------------------------------------------
*
* InitInteruptSystem --
*
* Does various initialization for the functions used in this
* file. Sets up Universial Pricedure Pointers, installs a trap
* patch for ExitToShell, etc.
*
* Results:
* None.
*
* Side effects:
* Various initialization.
*
*----------------------------------------------------------------------
*/
void
InitInteruptSystem()
{
int i;
sleepTimerProc = NewTimerProc(SleepTimerProc);
GetCurrentProcess(&applicationPSN);
for (i = 0; i < MAX_TIMER_ARRAY_SIZE; i++) {
timerInfoArray[i].installed = false;
}
/*
* Install the ExitToShell patch. We use this patch instead
* of the Tcl exit mechanism because we need to ensure that
* these routines are cleaned up even if we crash or are forced
* to quit. There are some circumstances when the Tcl exit
* handlers may not fire.
*/
TclMacInstallExitToShellPatch(CleanUpExitProc);
interuptsInited = true;
}
/*
*----------------------------------------------------------------------
*
* TclMacStartTimer --
*
* Install a Time Manager task to wake our process up in the
* future. The process should get a NULL event after ms
* milliseconds.
*
* Results:
* None.
*
* Side effects:
* Schedules our process to wake up.
*
*----------------------------------------------------------------------
*/
void *
TclMacStartTimer(
long ms) /* Milliseconds. */
{
TMInfo *timerInfoPtr;
if (!interuptsInited) {
InitInteruptSystem();
}
/*
* Obtain a pointer for the timer. We only allocate up
* to MAX_TIMER_ARRAY_SIZE timers. If we are past that
* max we return NULL.
*/
if (topTimerElement < MAX_TIMER_ARRAY_SIZE) {
timerInfoPtr = &timerInfoArray[topTimerElement];
topTimerElement++;
} else {
return NULL;
}
/*
* Install timer to wake process in ms milliseconds.
*/
timerInfoPtr->tmTask.tmAddr = sleepTimerProc;
timerInfoPtr->tmTask.tmWakeUp = 0;
timerInfoPtr->tmTask.tmReserved = 0;
timerInfoPtr->psn = applicationPSN;
timerInfoPtr->installed = true;
InsTime((QElemPtr) timerInfoPtr);
PrimeTime((QElemPtr) timerInfoPtr, (long) ms);
return (void *) timerInfoPtr;
}
/*
*----------------------------------------------------------------------
*
* TclMacRemoveTimer --
*
* Remove the timer event from the Time Manager.
*
* Results:
* None.
*
* Side effects:
* A scheduled timer would be removed.
*
*----------------------------------------------------------------------
*/
void
TclMacRemoveTimer(
void * timerToken) /* Token got from start timer. */
{
TMInfo *timerInfoPtr = (TMInfo *) timerToken;
if (timerInfoPtr == NULL) {
return;
}
RmvTime((QElemPtr) timerInfoPtr);
timerInfoPtr->installed = false;
topTimerElement--;
}
/*
*----------------------------------------------------------------------
*
* TclMacTimerExpired --
*
* Check to see if the installed timer has expired.
*
* Results:
* True if timer has expired, false otherwise.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
int
TclMacTimerExpired(
void * timerToken) /* Our token again. */
{
TMInfo *timerInfoPtr = (TMInfo *) timerToken;
if ((timerInfoPtr == NULL) ||
!(timerInfoPtr->tmTask.qType & kTMTaskActive)) {
return true;
} else {
return false;
}
}
/*
*----------------------------------------------------------------------
*
* SleepTimerProc --
*
* Time proc is called by the is a callback routine placed in the
* system by Tcl_Sleep. The routine is called at interupt time
* and threrfor can not move or allocate memory. This call will
* schedule our process to wake up the next time the process gets
* around to consider running it.
*
* Results:
* None.
*
* Side effects:
* Schedules our process to wake up.
*
*----------------------------------------------------------------------
*/
static void
SleepTimerProc()
{
/*
* In CFM code we can access our code directly. In 68k code that
* isn't based on CFM we must do a glorious hack. The function
* GetTMInfo is an inline assembler call that moves the pointer
* at A1 to the top of the stack. The Time Manager keeps the TMTask
* info record there before calling this call back. In order for
* this to work the infoPtr argument must be the *last* item on the
* stack. If we "piggyback" our data to the TMTask info record we
* can get access to the information we need. While this is really
* ugly - it's the way Apple recomends it be done - go figure...
*/
#if GENERATINGCFM
WakeUpProcess(&applicationPSN);
#else
TMInfo * infoPtr;
infoPtr = GetTMInfo();
WakeUpProcess(&infoPtr->psn);
#endif
}
/*
*----------------------------------------------------------------------
*
* CleanUpExitProc --
*
* This procedure is invoked as an exit handler when ExitToShell
* is called. It removes the system level timer handler if it
* is installed. This must be called or the Mac OS will more than
* likely crash.
*
* Results:
* None.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
static pascal void
CleanUpExitProc()
{
int i;
for (i = 0; i < MAX_TIMER_ARRAY_SIZE; i++) {
if (timerInfoArray[i].installed) {
RmvTime((QElemPtr) &timerInfoArray[i]);
timerInfoArray[i].installed = false;
}
}
}
|