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 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713
|
/* -----------------------------------------------------------------------------
*
* (c) The University of Glasgow 2001-2002
*
* Definitions for package `base' which are visible in Haskell land.
*
* ---------------------------------------------------------------------------*/
#ifndef __HSBASE_H__
#define __HSBASE_H__
#include "config.h"
#include "HsFFI.h"
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#if HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
#if HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
#if HAVE_FCNTL_H
# include <fcntl.h>
#endif
#if HAVE_TERMIOS_H
#include <termios.h>
#endif
#if HAVE_SIGNAL_H
#include <signal.h>
/* Ultra-ugly: OpenBSD uses broken macros for sigemptyset and sigfillset (missing casts) */
#if __OpenBSD__
#undef sigemptyset
#undef sigfillset
#endif
#endif
#if HAVE_ERRNO_H
#include <errno.h>
#endif
#if HAVE_STRING_H
#include <string.h>
#endif
#if HAVE_DIRENT_H
#include <dirent.h>
#endif
#if HAVE_UTIME_H
#include <utime.h>
#endif
#if HAVE_SYS_UTSNAME_H
#include <sys/utsname.h>
#endif
#if HAVE_GETTIMEOFDAY
# if HAVE_SYS_TIME_H
# include <sys/time.h>
# endif
#elif HAVE_GETCLOCK
# if HAVE_SYS_TIMERS_H
# define POSIX_4D9 1
# include <sys/timers.h>
# endif
#endif
#if HAVE_TIME_H
#include <time.h>
#endif
#if HAVE_SYS_TIMEB_H
#include <sys/timeb.h>
#endif
#if HAVE_WINDOWS_H
#include <windows.h>
#endif
#if HAVE_SYS_TIMES_H
#include <sys/times.h>
#endif
#if HAVE_WINSOCK_H && defined(mingw32_TARGET_OS)
#include <winsock.h>
#endif
#if HAVE_LIMITS_H
#include <limits.h>
#endif
#if HAVE_WCTYPE_H
#include <wctype.h>
#endif
#if !defined(mingw32_TARGET_OS) && !defined(irix_TARGET_OS)
# if HAVE_SYS_RESOURCE_H
# include <sys/resource.h>
# endif
#endif
#ifdef hpux_TARGET_OS
#include <sys/syscall.h>
#define getrusage(a, b) syscall(SYS_GETRUSAGE, a, b)
#define HAVE_GETRUSAGE
#endif
/* For System */
#if HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif
#if HAVE_VFORK_H
#include <vfork.h>
#endif
#include "lockFile.h"
#include "dirUtils.h"
#if defined(mingw32_TARGET_OS)
#include <io.h>
#include <fcntl.h>
#include "timeUtils.h"
#endif
/* in system.c */
HsInt systemCmd(HsAddr cmd);
/* in rawSystem.c */
#if defined(mingw32_TARGET_OS)
HsInt rawSystem(HsAddr cmd);
#else
HsInt rawSystem(HsAddr cmd, HsAddr args);
#endif
/* in inputReady.c */
int inputReady(int fd, int msecs, int isSock);
/* in writeError.c */
void writeErrString__(HsAddr msg, HsInt len);
/* in Signals.c */
extern HsInt nocldstop;
/* -----------------------------------------------------------------------------
64-bit operations, defined in longlong.c
-------------------------------------------------------------------------- */
#ifdef SUPPORT_LONG_LONGS
StgInt stg_gtWord64 (StgWord64, StgWord64);
StgInt stg_geWord64 (StgWord64, StgWord64);
StgInt stg_eqWord64 (StgWord64, StgWord64);
StgInt stg_neWord64 (StgWord64, StgWord64);
StgInt stg_ltWord64 (StgWord64, StgWord64);
StgInt stg_leWord64 (StgWord64, StgWord64);
StgInt stg_gtInt64 (StgInt64, StgInt64);
StgInt stg_geInt64 (StgInt64, StgInt64);
StgInt stg_eqInt64 (StgInt64, StgInt64);
StgInt stg_neInt64 (StgInt64, StgInt64);
StgInt stg_ltInt64 (StgInt64, StgInt64);
StgInt stg_leInt64 (StgInt64, StgInt64);
StgWord64 stg_remWord64 (StgWord64, StgWord64);
StgWord64 stg_quotWord64 (StgWord64, StgWord64);
StgInt64 stg_remInt64 (StgInt64, StgInt64);
StgInt64 stg_quotInt64 (StgInt64, StgInt64);
StgInt64 stg_negateInt64 (StgInt64);
StgInt64 stg_plusInt64 (StgInt64, StgInt64);
StgInt64 stg_minusInt64 (StgInt64, StgInt64);
StgInt64 stg_timesInt64 (StgInt64, StgInt64);
StgWord64 stg_and64 (StgWord64, StgWord64);
StgWord64 stg_or64 (StgWord64, StgWord64);
StgWord64 stg_xor64 (StgWord64, StgWord64);
StgWord64 stg_not64 (StgWord64);
StgWord64 stg_uncheckedShiftL64 (StgWord64, StgInt);
StgWord64 stg_uncheckedShiftRL64 (StgWord64, StgInt);
StgInt64 stg_uncheckedIShiftL64 (StgInt64, StgInt);
StgInt64 stg_uncheckedIShiftRL64 (StgInt64, StgInt);
StgInt64 stg_uncheckedIShiftRA64 (StgInt64, StgInt);
StgInt64 stg_intToInt64 (StgInt);
StgInt stg_int64ToInt (StgInt64);
StgWord64 stg_int64ToWord64 (StgInt64);
StgWord64 stg_wordToWord64 (StgWord);
StgWord stg_word64ToWord (StgWord64);
StgInt64 stg_word64ToInt64 (StgWord64);
StgInt64 stg_integerToInt64 (StgInt sa, StgByteArray /* Really: mp_limb_t* */ da);
StgWord64 stg_integerToWord64 (StgInt sa, StgByteArray /* Really: mp_limb_t* */ da);
#endif /* SUPPORT_LONG_LONGS */
/* -----------------------------------------------------------------------------
INLINE functions.
These functions are given as inlines here for when compiling via C,
but we also generate static versions into the cbits library for
when compiling to native code.
-------------------------------------------------------------------------- */
#ifndef INLINE
# if defined(_MSC_VER)
# define INLINE extern __inline
# elif defined(__HUGS__)
# define INLINE INLINE_ONLY
# else
# define INLINE extern inline
# endif
#endif
INLINE int __hscore_get_errno(void) { return errno; }
INLINE void __hscore_set_errno(int e) { errno = e; }
#if !defined(_MSC_VER)
INLINE int __hscore_s_isreg(m) { return S_ISREG(m); }
INLINE int __hscore_s_isdir(m) { return S_ISDIR(m); }
INLINE int __hscore_s_isfifo(m) { return S_ISFIFO(m); }
INLINE int __hscore_s_isblk(m) { return S_ISBLK(m); }
INLINE int __hscore_s_ischr(m) { return S_ISCHR(m); }
#ifdef S_ISSOCK
INLINE int __hscore_s_issock(m) { return S_ISSOCK(m); }
#endif
#endif
#if !defined(mingw32_TARGET_OS) && !defined(_MSC_VER)
INLINE int
__hscore_sigemptyset( sigset_t *set )
{ return sigemptyset(set); }
INLINE int
__hscore_sigfillset( sigset_t *set )
{ return sigfillset(set); }
INLINE int
__hscore_sigaddset( sigset_t * set, int s )
{ return sigaddset(set,s); }
INLINE int
__hscore_sigdelset( sigset_t * set, int s )
{ return sigdelset(set,s); }
INLINE int
__hscore_sigismember( sigset_t * set, int s )
{ return sigismember(set,s); }
#endif
INLINE void *
__hscore_memcpy_dst_off( char *dst, int dst_off, char *src, size_t sz )
{ return memcpy(dst+dst_off, src, sz); }
INLINE void *
__hscore_memcpy_src_off( char *dst, char *src, int src_off, size_t sz )
{ return memcpy(dst, src+src_off, sz); }
INLINE HsBool
__hscore_supportsTextMode()
{
#if defined(mingw32_TARGET_OS)
return HS_BOOL_FALSE;
#else
return HS_BOOL_TRUE;
#endif
}
INLINE HsInt
__hscore_bufsiz()
{
return BUFSIZ;
}
INLINE HsInt
__hscore_seek_cur()
{
return SEEK_CUR;
}
INLINE HsInt
__hscore_o_binary()
{
#if defined(_MSC_VER)
return O_BINARY;
#else
return CONST_O_BINARY;
#endif
}
INLINE int
__hscore_o_rdonly()
{
#ifdef O_RDONLY
return O_RDONLY;
#else
return 0;
#endif
}
INLINE int
__hscore_o_wronly( void )
{
#ifdef O_WRONLY
return O_WRONLY;
#else
return 0;
#endif
}
INLINE int
__hscore_o_rdwr( void )
{
#ifdef O_RDWR
return O_RDWR;
#else
return 0;
#endif
}
INLINE int
__hscore_o_append( void )
{
#ifdef O_APPEND
return O_APPEND;
#else
return 0;
#endif
}
INLINE int
__hscore_o_creat( void )
{
#ifdef O_CREAT
return O_CREAT;
#else
return 0;
#endif
}
INLINE int
__hscore_o_excl( void )
{
#ifdef O_EXCL
return O_EXCL;
#else
return 0;
#endif
}
INLINE int
__hscore_o_trunc( void )
{
#ifdef O_TRUNC
return O_TRUNC;
#else
return 0;
#endif
}
INLINE int
__hscore_o_noctty( void )
{
#ifdef O_NOCTTY
return O_NOCTTY;
#else
return 0;
#endif
}
INLINE int
__hscore_o_nonblock( void )
{
#ifdef O_NONBLOCK
return O_NONBLOCK;
#else
return 0;
#endif
}
INLINE HsInt
__hscore_seek_set( void )
{
return SEEK_SET;
}
INLINE HsInt
__hscore_seek_end( void )
{
return SEEK_END;
}
INLINE HsInt
__hscore_setmode( HsInt fd, HsBool toBin )
{
#if defined(mingw32_TARGET_OS) || defined(_MSC_VER)
return setmode(fd,(toBin == HS_BOOL_TRUE) ? _O_BINARY : _O_TEXT);
#else
return 0;
#endif
}
INLINE HsInt
__hscore_PrelHandle_write( HsInt fd, HsAddr ptr, HsInt off, int sz )
{
return write(fd,(char *)ptr + off, sz);
}
INLINE HsInt
__hscore_PrelHandle_read( HsInt fd, HsAddr ptr, HsInt off, int sz )
{
return read(fd,(char *)ptr + off, sz);
}
#if defined(mingw32_TARGET_OS) || defined(_MSC_VER)
INLINE HsInt
__hscore_PrelHandle_send( HsInt fd, HsAddr ptr, HsInt off, int sz )
{
return send(fd,(char *)ptr + off, sz, 0);
}
INLINE HsInt
__hscore_PrelHandle_recv( HsInt fd, HsAddr ptr, HsInt off, int sz )
{
return recv(fd,(char *)ptr + off, sz, 0);
}
#endif
#if defined(mingw32_TARGET_OS) || defined(_MSC_VER)
INLINE long *
__hscore_Time_ghcTimezone( void ) { return &_timezone; }
INLINE char **
__hscore_Time_ghcTzname( void ) { return _tzname; }
#endif
INLINE HsInt
__hscore_mkdir( HsAddr pathName, HsInt mode )
{
#if defined(mingw32_TARGET_OS) || defined(_MSC_VER)
return mkdir(pathName);
#else
return mkdir(pathName,mode);
#endif
}
INLINE HsInt
__hscore_lstat( HsAddr fname, HsAddr st )
{
#if HAVE_LSTAT
return lstat((const char*)fname, (struct stat*)st);
#else
return stat((const char*)fname, (struct stat*)st);
#endif
}
#ifdef PATH_MAX
/* A size that will contain many path names, but not necessarily all
* (PATH_MAX is not defined on systems with unlimited path length,
* e.g. the Hurd).
*/
INLINE HsInt __hscore_long_path_size() { return PATH_MAX; }
#else
INLINE HsInt __hscore_long_path_size() { return 4096; }
#endif
#ifdef R_OK
INLINE mode_t __hscore_R_OK() { return R_OK; }
#endif
#ifdef W_OK
INLINE mode_t __hscore_W_OK() { return W_OK; }
#endif
#ifdef X_OK
INLINE mode_t __hscore_X_OK() { return X_OK; }
#endif
#ifdef S_IRUSR
INLINE mode_t __hscore_S_IRUSR() { return S_IRUSR; }
#endif
#ifdef S_IWUSR
INLINE mode_t __hscore_S_IWUSR() { return S_IWUSR; }
#endif
#ifdef S_IXUSR
INLINE mode_t __hscore_S_IXUSR() { return S_IXUSR; }
#endif
#if !defined(_MSC_VER)
INLINE HsAddr
__hscore_d_name( struct dirent* d )
{
#if !defined(mingw32_TARGET_OS) && !defined(_MSC_VER)
return (HsAddr)(&d->d_name);
#else
return (HsAddr)(d->d_name);
#endif
}
#endif
INLINE HsInt
__hscore_end_of_dir( void )
{
#ifndef mingw32_TARGET_OS
return 0;
#else
return ENOENT;
#endif
}
INLINE void
__hscore_free_dirent(HsAddr dEnt)
{
#if HAVE_READDIR_R
free(dEnt);
#endif
}
INLINE HsInt
__hscore_sizeof_stat( void )
{
return sizeof(struct stat);
}
INLINE time_t __hscore_st_mtime ( struct stat* st ) { return st->st_mtime; }
INLINE off_t __hscore_st_size ( struct stat* st ) { return st->st_size; }
#if !defined(_MSC_VER)
INLINE mode_t __hscore_st_mode ( struct stat* st ) { return st->st_mode; }
#endif
#if HAVE_TERMIOS_H
INLINE tcflag_t __hscore_lflag( struct termios* ts ) { return ts->c_lflag; }
INLINE void
__hscore_poke_lflag( struct termios* ts, tcflag_t t ) { ts->c_lflag = t; }
INLINE unsigned char*
__hscore_ptr_c_cc( struct termios* ts )
{ return (unsigned char*) &ts->c_cc; }
INLINE HsInt
__hscore_sizeof_termios( void )
{
#ifndef mingw32_TARGET_OS
return sizeof(struct termios);
#else
return 0;
#endif
}
#endif
#if !defined(mingw32_TARGET_OS) && !defined(_MSC_VER)
INLINE HsInt
__hscore_sizeof_sigset_t( void )
{
return sizeof(sigset_t);
}
#endif
INLINE int
__hscore_echo( void )
{
#ifdef ECHO
return ECHO;
#else
return 0;
#endif
}
INLINE int
__hscore_tcsanow( void )
{
#ifdef TCSANOW
return TCSANOW;
#else
return 0;
#endif
}
INLINE int
__hscore_icanon( void )
{
#ifdef ICANON
return ICANON;
#else
return 0;
#endif
}
INLINE int __hscore_vmin( void )
{
#ifdef VMIN
return VMIN;
#else
return 0;
#endif
}
INLINE int __hscore_vtime( void )
{
#ifdef VTIME
return VTIME;
#else
return 0;
#endif
}
INLINE int __hscore_sigttou( void )
{
#ifdef SIGTTOU
return SIGTTOU;
#else
return 0;
#endif
}
INLINE int __hscore_sig_block( void )
{
#ifdef SIG_BLOCK
return SIG_BLOCK;
#else
return 0;
#endif
}
INLINE int __hscore_sig_setmask( void )
{
#ifdef SIG_SETMASK
return SIG_SETMASK;
#else
return 0;
#endif
}
INLINE int
__hscore_f_getfl( void )
{
#ifdef F_GETFL
return F_GETFL;
#else
return 0;
#endif
}
INLINE int
__hscore_f_setfl( void )
{
#ifdef F_SETFL
return F_SETFL;
#else
return 0;
#endif
}
// defined in rts/RtsStartup.c.
extern void* __hscore_get_saved_termios(int fd);
extern void __hscore_set_saved_termios(int fd, void* ts);
INLINE int __hscore_hs_fileno (FILE *f) { return fileno (f); }
#if !defined(mingw32_TARGET_OS) && !defined(_MSC_VER)
INLINE int __hsposix_SIGABRT() { return SIGABRT; }
INLINE int __hsposix_SIGALRM() { return SIGALRM; }
INLINE int __hsposix_SIGBUS() { return SIGBUS; }
INLINE int __hsposix_SIGCHLD() { return SIGCHLD; }
INLINE int __hsposix_SIGCONT() { return SIGCONT; }
INLINE int __hsposix_SIGFPE() { return SIGFPE; }
INLINE int __hsposix_SIGHUP() { return SIGHUP; }
INLINE int __hsposix_SIGILL() { return SIGILL; }
INLINE int __hsposix_SIGINT() { return SIGINT; }
INLINE int __hsposix_SIGKILL() { return SIGKILL; }
INLINE int __hsposix_SIGPIPE() { return SIGPIPE; }
INLINE int __hsposix_SIGQUIT() { return SIGQUIT; }
INLINE int __hsposix_SIGSEGV() { return SIGSEGV; }
INLINE int __hsposix_SIGSTOP() { return SIGSTOP; }
INLINE int __hsposix_SIGTERM() { return SIGTERM; }
INLINE int __hsposix_SIGTSTP() { return SIGTSTP; }
INLINE int __hsposix_SIGTTIN() { return SIGTTIN; }
INLINE int __hsposix_SIGTTOU() { return SIGTTOU; }
INLINE int __hsposix_SIGUSR1() { return SIGUSR1; }
INLINE int __hsposix_SIGUSR2() { return SIGUSR2; }
#if HAVE_SIGPOLL
INLINE int __hsposix_SIGPOLL() { return SIGPOLL; }
#endif
INLINE int __hsposix_SIGPROF() { return SIGPROF; }
INLINE int __hsposix_SIGSYS() { return SIGSYS; }
INLINE int __hsposix_SIGTRAP() { return SIGTRAP; }
INLINE int __hsposix_SIGURG() { return SIGURG; }
INLINE int __hsposix_SIGVTALRM() { return SIGVTALRM; }
INLINE int __hsposix_SIGXCPU() { return SIGXCPU; }
INLINE int __hsposix_SIGXFSZ() { return SIGXFSZ; }
INLINE int __hsposix_SIG_BLOCK() { return SIG_BLOCK; }
INLINE int __hsposix_SIG_UNBLOCK() { return SIG_UNBLOCK; }
INLINE int __hsposix_SIG_SETMASK() { return SIG_SETMASK; }
#endif /* mingw32_TARGET_OS */
// These are wrapped because on some OSs (eg. Linux) they are
// macros which redirect to the 64-bit-off_t versions when large file
// support is enabled.
//
INLINE int __hscore_open(char *file, int how, mode_t mode) {
return (open(file,how,mode));
}
INLINE off_t __hscore_lseek(int fd, off_t off, int whence) {
return (lseek(fd,off,whence));
}
INLINE int __hscore_stat(char *file, struct stat *buf) {
return (stat(file,buf));
}
INLINE int __hscore_fstat(int fd, struct stat *buf) {
return (fstat(fd,buf));
}
#endif /* __HSBASE_H__ */
|