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
|
/* -----------------------------------------------------------------------------
*
* (c) The University of Glasgow 2001-2004
*
* Definitions for package `base' which are visible in Haskell land.
*
* ---------------------------------------------------------------------------*/
#pragma once
#include "HsBaseConfig.h"
/* ultra-evil... */
#undef PACKAGE_BUGREPORT
#undef PACKAGE_NAME
#undef PACKAGE_STRING
#undef PACKAGE_TARNAME
#undef PACKAGE_VERSION
/* Needed to get the macro version of errno on some OSs (eg. Solaris).
We must do this, because these libs are only compiled once, but
must work in both single-threaded and multi-threaded programs. */
#define _REENTRANT 1
#include "HsFFI.h"
#include <stdbool.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_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 && !defined(__FreeBSD__)
#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(_WIN32)
#include <winsock.h>
#endif
#if HAVE_LIMITS_H
#include <limits.h>
#endif
#if HAVE_WCTYPE_H
#include <wctype.h>
#endif
#if HAVE_INTTYPES_H
# include <inttypes.h>
#elif HAVE_STDINT_H
# include <stdint.h>
#endif
#if defined(HAVE_CLOCK_GETTIME)
# if defined(_POSIX_MONOTONIC_CLOCK)
# define CLOCK_ID CLOCK_MONOTONIC
# else
# define CLOCK_ID CLOCK_REALTIME
# endif
#elif defined(darwin_HOST_OS)
# include <mach/mach.h>
# include <mach/mach_time.h>
#endif
#if !defined(_WIN32)
# if HAVE_SYS_RESOURCE_H
# include <sys/resource.h>
# endif
#endif
#if !HAVE_GETRUSAGE && HAVE_SYS_SYSCALL_H
# include <sys/syscall.h>
# if defined(SYS_GETRUSAGE) /* hpux_HOST_OS */
# define getrusage(a, b) syscall(SYS_GETRUSAGE, a, b)
# define HAVE_GETRUSAGE 1
# endif
#endif
/* For System */
#if HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif
#if HAVE_VFORK_H
#include <vfork.h>
#endif
#include "WCsubst.h"
#if defined(_WIN32)
/* in Win32Utils.c */
extern void maperrno (void);
extern int maperrno_func(DWORD dwErrorCode);
extern HsWord64 getMonotonicUSec(void);
#endif
#if defined(_WIN32)
#include <io.h>
#include <fcntl.h>
#include <shlobj.h>
#include <share.h>
#endif
#if HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
/* in inputReady.c */
extern int fdReady(int fd, bool write, int64_t msecs, bool isSock);
/* -----------------------------------------------------------------------------
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.
-------------------------------------------------------------------------- */
#if !defined(INLINE)
# if defined(_MSC_VER)
# define INLINE extern __inline
# else
# define INLINE static inline
# endif
#endif
INLINE int __hscore_get_errno(void) { return errno; }
INLINE void __hscore_set_errno(int e) { errno = e; }
INLINE HsInt
__hscore_bufsiz(void)
{
return BUFSIZ;
}
INLINE int
__hscore_o_binary(void)
{
#if defined(_MSC_VER)
return O_BINARY;
#else
return CONST_O_BINARY;
#endif
}
INLINE int
__hscore_o_rdonly(void)
{
#if defined(O_RDONLY)
return O_RDONLY;
#else
return 0;
#endif
}
INLINE int
__hscore_o_wronly( void )
{
#if defined(O_WRONLY)
return O_WRONLY;
#else
return 0;
#endif
}
INLINE int
__hscore_o_rdwr( void )
{
#if defined(O_RDWR)
return O_RDWR;
#else
return 0;
#endif
}
INLINE int
__hscore_o_append( void )
{
#if defined(O_APPEND)
return O_APPEND;
#else
return 0;
#endif
}
INLINE int
__hscore_o_creat( void )
{
#if defined(O_CREAT)
return O_CREAT;
#else
return 0;
#endif
}
INLINE int
__hscore_o_excl( void )
{
#if defined(O_EXCL)
return O_EXCL;
#else
return 0;
#endif
}
INLINE int
__hscore_o_trunc( void )
{
#if defined(O_TRUNC)
return O_TRUNC;
#else
return 0;
#endif
}
INLINE int
__hscore_o_noctty( void )
{
#if defined(O_NOCTTY)
return O_NOCTTY;
#else
return 0;
#endif
}
INLINE int
__hscore_o_nonblock( void )
{
#if defined(O_NONBLOCK)
return O_NONBLOCK;
#else
return 0;
#endif
}
INLINE int
__hscore_ftruncate( int fd, off_t where )
{
#if defined(HAVE_FTRUNCATE)
return ftruncate(fd,where);
#elif defined(HAVE__CHSIZE)
return _chsize(fd,where);
#else
// ToDo: we should use _chsize_s() on Windows which allows a 64-bit
// offset, but it doesn't seem to be available from mingw at this time
// --SDM (01/2008)
#error at least ftruncate or _chsize functions are required to build
#endif
}
INLINE int
__hscore_setmode( int fd, HsBool toBin )
{
#if defined(_WIN32)
return _setmode(fd,(toBin == HS_BOOL_TRUE) ? _O_BINARY : _O_TEXT);
#else
return 0;
#endif
}
#if defined(_WIN32)
// We want the versions of stat/fstat/lseek that use 64-bit offsets,
// and you have to ask for those explicitly. Unfortunately there
// doesn't seem to be a 64-bit version of truncate/ftruncate, so while
// hFileSize and hSeek will work with large files, hSetFileSize will not.
typedef struct _stati64 struct_stat;
typedef off64_t stsize_t;
#else
typedef struct stat struct_stat;
typedef off_t stsize_t;
#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 stsize_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; }
INLINE dev_t __hscore_st_dev ( struct_stat* st ) { return st->st_dev; }
INLINE ino_t __hscore_st_ino ( struct_stat* st ) { return st->st_ino; }
#endif
#if defined(_WIN32)
INLINE int __hscore_stat(wchar_t *file, struct_stat *buf) {
return _wstati64(file,buf);
}
INLINE int __hscore_fstat(int fd, struct_stat *buf) {
return _fstati64(fd,buf);
}
INLINE int __hscore_lstat(wchar_t *fname, struct_stat *buf )
{
return _wstati64(fname,buf);
}
#else
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);
}
INLINE int __hscore_lstat( const char *fname, struct stat *buf )
{
#if HAVE_LSTAT
return lstat(fname, buf);
#else
return stat(fname, buf);
#endif
}
#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 )
{
#if !defined(_WIN32)
return sizeof(struct termios);
#else
return 0;
#endif
}
#endif
#if !defined(_WIN32)
INLINE HsInt
__hscore_sizeof_sigset_t( void )
{
return sizeof(sigset_t);
}
#endif
INLINE int
__hscore_echo( void )
{
#if defined(ECHO)
return ECHO;
#else
return 0;
#endif
}
INLINE int
__hscore_tcsanow( void )
{
#if defined(TCSANOW)
return TCSANOW;
#else
return 0;
#endif
}
INLINE int
__hscore_icanon( void )
{
#if defined(ICANON)
return ICANON;
#else
return 0;
#endif
}
INLINE int __hscore_vmin( void )
{
#if defined(VMIN)
return VMIN;
#else
return 0;
#endif
}
INLINE int __hscore_vtime( void )
{
#if defined(VTIME)
return VTIME;
#else
return 0;
#endif
}
INLINE int __hscore_sigttou( void )
{
#if defined(SIGTTOU)
return SIGTTOU;
#else
return 0;
#endif
}
INLINE int __hscore_sig_block( void )
{
#if defined(SIG_BLOCK)
return SIG_BLOCK;
#else
return 0;
#endif
}
INLINE int __hscore_sig_setmask( void )
{
#if defined(SIG_SETMASK)
return SIG_SETMASK;
#else
return 0;
#endif
}
#if !defined(_WIN32)
INLINE size_t __hscore_sizeof_siginfo_t (void)
{
return sizeof(siginfo_t);
}
#endif
INLINE int
__hscore_f_getfl( void )
{
#if defined(F_GETFL)
return F_GETFL;
#else
return 0;
#endif
}
INLINE int
__hscore_f_setfl( void )
{
#if defined(F_SETFL)
return F_SETFL;
#else
return 0;
#endif
}
INLINE int
__hscore_f_setfd( void )
{
#if defined(F_SETFD)
return F_SETFD;
#else
return 0;
#endif
}
INLINE long
__hscore_fd_cloexec( void )
{
#if defined(FD_CLOEXEC)
return FD_CLOEXEC;
#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);
#if defined(_WIN32)
/* Defined in fs.c. */
extern int __hs_swopen (const wchar_t* filename, int oflag, int shflag,
int pmode);
INLINE int __hscore_open(wchar_t *file, int how, mode_t mode) {
int result = -1;
if ((how & O_WRONLY) || (how & O_RDWR) || (how & O_APPEND))
result = __hs_swopen(file,how | _O_NOINHERIT,_SH_DENYNO,mode);
// _O_NOINHERIT: see #2650
else
result = __hs_swopen(file,how | _O_NOINHERIT,_SH_DENYNO,mode);
// _O_NOINHERIT: see #2650
/* This call is very important, otherwise the I/O system will not propagate
the correct error for why it failed. */
if (result == -1)
maperrno ();
return result;
}
#else
INLINE int __hscore_open(char *file, int how, mode_t mode) {
return open(file,how,mode);
}
#endif
#if darwin_HOST_OS
// You should not access _environ directly on Darwin in a bundle/shared library.
// See #2458 and http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man7/environ.7.html
#include <crt_externs.h>
INLINE char **__hscore_environ(void) { return *(_NSGetEnviron()); }
#else
/* ToDo: write a feature test that doesn't assume 'environ' to
* be in scope at link-time. */
extern char** environ;
INLINE char **__hscore_environ(void) { return environ; }
#endif
/* lossless conversions between pointers and integral types */
INLINE void * __hscore_from_uintptr(uintptr_t n) { return (void *)n; }
INLINE void * __hscore_from_intptr (intptr_t n) { return (void *)n; }
INLINE uintptr_t __hscore_to_uintptr (void *p) { return (uintptr_t)p; }
INLINE intptr_t __hscore_to_intptr (void *p) { return (intptr_t)p; }
void errorBelch2(const char*s, char *t);
void debugBelch2(const char*s, char *t);
|