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 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
|
/*-----------------------------------------------------------------*-C-*---
* File: handc/platform/mac/osglue.c
*
* Copyright (C)1997 Donovan Kolbly <d.kolbly@rscheme.org>
* as part of the RScheme project, licensed for free use.
* See <http://www.rscheme.org/> for the latest information.
*
* File version: 1.13
* File mod date: 1997.11.29 23:10:47
* System build: v0.7.2, 97.12.21
*
* Purpose: OS glue for Macintosh (CodeWarrior)
*------------------------------------------------------------------------*/
#include "scheme.h"
#include "intrs.h"
#include "regs.h"
#include "runtime.h"
#include "osglue.h"
#include <Timer.h>
#include <stdlib.h>
#include <string.h>
#include <unix.h>
#define MAX_SIG (10)
rs_bool rssig_ready = NO;
struct sig_queue {
rs_bool *ready;
rs_bool enable;
unsigned num_sig;
struct RSSIG_info sig_queue[MAX_SIG];
};
struct timer_info {
struct TMTask hdr;
struct sig_queue *q;
};
static struct sig_queue the_sig_queue;
static rs_bool timer_task_installed_p = NO;
static struct timer_info the_timer;
static void sig_add( struct sig_queue *q, struct RSSIG_info *sig );
static void osglue_error( const char *fn, int rc )
{
scheme_error( "OS glue error in ~s: rc ~d",
2, make_string(fn), int2fx(rc) );
}
const char *os_getenv( const char *key )
{
return NULL;
}
static char *make_macpath( char *temp, const char *path )
{
if (strncmp( path, "./", 2 ) == 0)
path += 2;
if (strchr( path, '/' ))
{
char *p = temp;
if (path[0] == '/')
{
path++;
}
else
{
*p++ = ':';
}
while (*path)
{
if (*path == '/')
*p++ = ':';
else
*p++ = *path;
path++;
}
*p++ = 0;
}
else
{
strcpy( temp, path );
}
return temp;
}
/* check to see if a file exists */
rs_bool os_file_exists_p( const char *path )
{
FILE *f;
char temp[1000];
f = fopen( make_macpath( temp, path ), "r" );
/* printf( "[stat '%s']", temp ); */
if (f)
{
fclose(f);
return YES;
}
else
return NO;
}
/* convert a unix-standard pathname to local OS format */
obj os_path( obj path )
{
char temp[1000];
return make_string( make_macpath( temp, string_text(path) ) );
}
/* open a file using unix-std pathnames */
FILE *os_fopen( const char *path, const char *mode )
{
char temp[1000];
return fopen( make_macpath( temp, path ), mode );
}
/* the real-time timer... */
UINT_32 os_sleep( UINT_32 msec )
{
unsigned t = (msec + 500) / 1000;
sleep( t );
return t * 1000;
}
static void exit_handler( void )
{
os_halt_timer();
}
static void timeout_handler( void *self )
{
struct RSSIG_info s;
s.signum = RSSIG_TIMEOUT;
sig_add( ((struct timer_info *)self)->q, &s );
}
static void init_timer_task( void )
{
the_timer.hdr.qLink = NULL;
the_timer.hdr.qType = 0;
the_timer.hdr.tmCount = 0;
the_timer.hdr.tmWakeUp = 0;
the_timer.hdr.tmReserved = 0;
the_timer.hdr.tmAddr = NewTimerProc(timeout_handler);
the_timer.q = &the_sig_queue;
}
void init_os( void )
{
the_sig_queue.num_sig = 0;
the_sig_queue.enable = YES;
the_sig_queue.ready = &rssig_ready;
atexit( &exit_handler );
init_timer_task();
}
static obj cis( const char *str, obj rest )
{
return cons( intern( make_string(str) ), rest );
}
obj os_type( void )
{
return cis( "mac", NIL_OBJ );
}
obj os_getwd( void )
{
char *p, temp[1000];
getcwd( temp+1, 1000 );
/* convert to unixy format */
p = temp;
*p++ = '/';
while (*p)
{
if (*p == ':')
*p = '/';
p++;
}
/* strip off trailing '/' -- we know its a directory */
if (p[-1] == '/')
p[-1] = 0;
return make_string( temp );
}
/* change the current working directory,
or signal an error on failure
*/
void os_setwd( const char *path )
{
char temp[1000];
if (chdir( make_macpath(temp, path) ) < 0)
scheme_error( "os_setwd(~s) failed", 1, make_string(path) );
}
#define BEGIN_CRITICAL() do { /* what to do..? */
#define END_CRITICAL() } while (0)
struct RSSIG_info os_get_next_sig( void )
{
struct RSSIG_info temp;
struct sig_queue *q = &the_sig_queue;
BEGIN_CRITICAL();
if (q->num_sig)
{
temp = q->sig_queue[--q->num_sig];
q->enable = NO;
rssig_ready = NO;
}
else
{
fprintf( stderr, " ** os_get_next_sig() underflow\n" );
}
END_CRITICAL();
return temp;
}
static void sig_add( struct sig_queue *q, struct RSSIG_info *sig )
{
BEGIN_CRITICAL();
if (q->num_sig < MAX_SIG)
{
q->sig_queue[q->num_sig++] = *sig;
}
else
{
fprintf( stderr, "interrupts not being handled in a timely manner\n" );
}
if (q->enable)
*q->ready = YES;
END_CRITICAL();
}
void os_enqueue_sig_from_handler( struct RSSIG_info *sig )
{
sig_add( &the_sig_queue, sig );
}
void os_enqueue_sig( struct RSSIG_info *sig )
{
sig_add( &the_sig_queue, sig );
}
rs_bool os_set_sigenable( rs_bool flag )
{
rs_bool old;
BEGIN_CRITICAL();
old = the_sig_queue.enable;
the_sig_queue.enable = flag;
if (flag)
{
if (the_sig_queue.num_sig)
*the_sig_queue.ready = YES;
}
else
{
*the_sig_queue.ready = NO;
}
END_CRITICAL();
return old;
}
UINT_32 os_halt_timer( void )
{
UINT_32 ms;
if (timer_task_installed_p)
{
/* remove the timer task */
timer_task_installed_p = NO;
RmvTime( (QElemPtr)&the_timer );
}
else
ms = 0;
/* if tmCount is negative,
* then it's just in units of microseconds
*/
ms = (the_timer.hdr.tmCount < 0) ?
-(the_timer.hdr.tmCount/1000) :
the_timer.hdr.tmCount;
if (ms == 0)
{
unsigned i;
rs_bool qd = NO;
/* make sure it's been queued
* (note: because we've just turned off the timer, we
* don't have to worry about missing the insertion
* of the sig after we start looking, e.g., if the compiler
* caches num_sig) (Also, we know that os_flush_sig_queue()
* won't be called at interrupt level)
*/
for (i=0; i<the_sig_queue.num_sig; i++)
if (the_sig_queue.sig_queue[i].signum == RSSIG_TIMEOUT)
{
qd = YES;
break;
}
if (!qd)
timeout_handler( &the_timer );
}
return ms;
}
void os_set_timer( UINT_32 msec )
{
if (timer_task_installed_p)
{
RmvTime( (QElemPtr)&the_timer );
}
if (msec == 0)
{
timeout_handler( &the_timer );
}
else
{
timer_task_installed_p = YES;
InsTime((QElemPtr) &the_timer);
PrimeTime((QElemPtr) &the_timer, msec);
}
}
UINT_32 os_get_time_remaining( void )
{
long int remaining_time;
if (timer_task_installed_p)
{
UINT_32 ms = os_halt_timer();
os_set_timer(ms);
return ms;
}
else
return 0;
}
int os_register_signal_handler( int sig, void (*proc)( int ) )
{
fprintf( stderr, "** os_register_signal_handler() not implemented\n" );
}
/* returns true if something was found; updates the index
to support incremental scanning (though there is an atomicity
presumption, which says that when doing the scan-to-flip, nothing
of interest will be inserted between the time this is first called
with index->0 and when it returns false (0)
*/
int os_scan_sig_queue( unsigned *index, obj *item )
{
unsigned i, n = the_sig_queue.num_sig;
obj candidate;
/* nothing will be dequeued during this scan, and
* nothing of interest will be inserted, so we don't
* need a critical section
*/
for (i=*index; i<n; i++)
{
candidate = FALSE_OBJ;
if (the_sig_queue.sig_queue[i].signum == RSSIG_FINALIZE)
candidate = the_sig_queue.sig_queue[i].data.finalize.finalize_list;
if (OBJ_ISA_PTR(candidate))
{
*index = i+1;
*item = candidate;
return 1;
}
}
*index = i;
return 0;
}
obj os_errormsg( int error_num )
{
return make_string( strerror(error_num) );
}
void set_sigqueue_size( int n )
{
/* ignore the request */
}
void os_mkdir( const char *path )
{
scheme_error( "os_mkdir(): not implemented", 0 );
}
|