[project @ 2004-02-12 21:23:48 by krasimir]
[ghc-base.git] / include / HsBase.h
1 /* -----------------------------------------------------------------------------
2  *
3  * (c) The University of Glasgow 2001-2002
4  *
5  * Definitions for package `base' which are visible in Haskell land.
6  *
7  * ---------------------------------------------------------------------------*/
8
9 #ifndef __HSBASE_H__
10 #define __HSBASE_H__
11
12 #include "config.h"
13 #include "HsFFI.h"
14
15 #include <stdio.h>
16 #include <stdlib.h>
17 #include <math.h>
18
19 #if HAVE_SYS_TYPES_H
20 #include <sys/types.h>
21 #endif
22 #if HAVE_UNISTD_H
23 #include <unistd.h>
24 #endif
25 #if HAVE_SYS_STAT_H
26 #include <sys/stat.h>
27 #endif
28 #if HAVE_FCNTL_H
29 # include <fcntl.h>
30 #endif
31 #if HAVE_TERMIOS_H
32 #include <termios.h>
33 #endif
34 #if HAVE_SIGNAL_H
35 #include <signal.h>
36 /* Ultra-ugly: OpenBSD uses broken macros for sigemptyset and sigfillset (missing casts) */
37 #if __OpenBSD__
38 #undef sigemptyset
39 #undef sigfillset
40 #endif
41 #endif
42 #if HAVE_ERRNO_H
43 #include <errno.h>
44 #endif
45 #if HAVE_STRING_H
46 #include <string.h>
47 #endif
48 #if HAVE_DIRENT_H
49 #include <dirent.h>
50 #endif
51 #if HAVE_UTIME_H
52 #include <utime.h>
53 #endif
54 #if HAVE_SYS_UTSNAME_H
55 #include <sys/utsname.h>
56 #endif
57 #if HAVE_GETTIMEOFDAY
58 #  if HAVE_SYS_TIME_H
59 #   include <sys/time.h>
60 #  endif
61 #elif HAVE_GETCLOCK
62 # if HAVE_SYS_TIMERS_H
63 #  define POSIX_4D9 1
64 #  include <sys/timers.h>
65 # endif
66 #endif
67 #if HAVE_TIME_H
68 #include <time.h>
69 #endif
70 #if HAVE_SYS_TIMEB_H
71 #include <sys/timeb.h>
72 #endif
73 #if HAVE_WINDOWS_H
74 #include <windows.h>
75 #endif
76 #if HAVE_SYS_TIMES_H
77 #include <sys/times.h>
78 #endif
79 #if HAVE_WINSOCK_H && defined(mingw32_TARGET_OS)
80 #include <winsock.h>
81 #endif
82 #if HAVE_LIMITS_H
83 #include <limits.h>
84 #endif
85 #if HAVE_WCTYPE_H
86 #include <wctype.h>
87 #endif
88
89 #if !defined(mingw32_TARGET_OS) && !defined(irix_TARGET_OS)
90 # if HAVE_SYS_RESOURCE_H
91 #  include <sys/resource.h>
92 # endif
93 #endif
94
95 #ifdef hpux_TARGET_OS
96 #include <sys/syscall.h>
97 #define getrusage(a, b)  syscall(SYS_GETRUSAGE, a, b)
98 #define HAVE_GETRUSAGE
99 #endif
100
101 /* For System */
102 #if HAVE_SYS_WAIT_H
103 #include <sys/wait.h>
104 #endif
105 #if HAVE_VFORK_H
106 #include <vfork.h>
107 #endif
108 #include "lockFile.h"
109 #include "dirUtils.h"
110
111 #if defined(mingw32_TARGET_OS)
112 #include <io.h>
113 #include <fcntl.h>
114 #include "timeUtils.h"
115 #endif
116
117 /* in system.c */
118 HsInt systemCmd(HsAddr cmd);
119
120 /* in rawSystem.c */
121 #if defined(mingw32_TARGET_OS)
122 HsInt rawSystem(HsAddr cmd);
123 #else
124 HsInt rawSystem(HsAddr cmd, HsAddr args);
125 #endif
126
127 /* in inputReady.c */
128 int inputReady(int fd, int msecs, int isSock);
129
130 /* in writeError.c */
131 void writeErrString__(HsAddr msg, HsInt len);
132
133 /* in Signals.c */
134 extern HsInt nocldstop;
135
136 /* -----------------------------------------------------------------------------
137    64-bit operations, defined in longlong.c
138    -------------------------------------------------------------------------- */
139
140 #ifdef SUPPORT_LONG_LONGS
141
142 StgInt stg_gtWord64 (StgWord64, StgWord64);
143 StgInt stg_geWord64 (StgWord64, StgWord64);
144 StgInt stg_eqWord64 (StgWord64, StgWord64);
145 StgInt stg_neWord64 (StgWord64, StgWord64);
146 StgInt stg_ltWord64 (StgWord64, StgWord64);
147 StgInt stg_leWord64 (StgWord64, StgWord64);
148
149 StgInt stg_gtInt64 (StgInt64, StgInt64);
150 StgInt stg_geInt64 (StgInt64, StgInt64);
151 StgInt stg_eqInt64 (StgInt64, StgInt64);
152 StgInt stg_neInt64 (StgInt64, StgInt64);
153 StgInt stg_ltInt64 (StgInt64, StgInt64);
154 StgInt stg_leInt64 (StgInt64, StgInt64);
155
156 StgWord64 stg_remWord64  (StgWord64, StgWord64);
157 StgWord64 stg_quotWord64 (StgWord64, StgWord64);
158
159 StgInt64 stg_remInt64    (StgInt64, StgInt64);
160 StgInt64 stg_quotInt64   (StgInt64, StgInt64);
161 StgInt64 stg_negateInt64 (StgInt64);
162 StgInt64 stg_plusInt64   (StgInt64, StgInt64);
163 StgInt64 stg_minusInt64  (StgInt64, StgInt64);
164 StgInt64 stg_timesInt64  (StgInt64, StgInt64);
165
166 StgWord64 stg_and64  (StgWord64, StgWord64);
167 StgWord64 stg_or64   (StgWord64, StgWord64);
168 StgWord64 stg_xor64  (StgWord64, StgWord64);
169 StgWord64 stg_not64  (StgWord64);
170
171 StgWord64 stg_uncheckedShiftL64   (StgWord64, StgInt);
172 StgWord64 stg_uncheckedShiftRL64  (StgWord64, StgInt);
173 StgInt64  stg_uncheckedIShiftL64  (StgInt64, StgInt);
174 StgInt64  stg_uncheckedIShiftRL64 (StgInt64, StgInt);
175 StgInt64  stg_uncheckedIShiftRA64 (StgInt64, StgInt);
176
177 StgInt64  stg_intToInt64    (StgInt);
178 StgInt    stg_int64ToInt    (StgInt64);
179 StgWord64 stg_int64ToWord64 (StgInt64);
180
181 StgWord64 stg_wordToWord64  (StgWord);
182 StgWord   stg_word64ToWord  (StgWord64);
183 StgInt64  stg_word64ToInt64 (StgWord64);
184
185 StgInt64  stg_integerToInt64 (StgInt sa, StgByteArray /* Really: mp_limb_t* */ da);
186 StgWord64 stg_integerToWord64 (StgInt sa, StgByteArray /* Really: mp_limb_t* */ da);
187
188 #endif /* SUPPORT_LONG_LONGS */
189
190 /* -----------------------------------------------------------------------------
191    INLINE functions.
192
193    These functions are given as inlines here for when compiling via C,
194    but we also generate static versions into the cbits library for
195    when compiling to native code.
196    -------------------------------------------------------------------------- */
197
198 #ifndef INLINE
199 # if defined(_MSC_VER)
200 #  define INLINE extern __inline
201 # elif defined(__HUGS__)
202 #  define INLINE INLINE_ONLY
203 # else
204 #  define INLINE extern inline
205 # endif
206 #endif
207
208 INLINE int __hscore_get_errno(void) { return errno; }
209 INLINE void __hscore_set_errno(int e) { errno = e; }
210
211 #if !defined(_MSC_VER)
212 INLINE int __hscore_s_isreg(m)  { return S_ISREG(m);  }
213 INLINE int __hscore_s_isdir(m)  { return S_ISDIR(m);  }
214 INLINE int __hscore_s_isfifo(m) { return S_ISFIFO(m); }
215 INLINE int __hscore_s_isblk(m)  { return S_ISBLK(m);  }
216 INLINE int __hscore_s_ischr(m)  { return S_ISCHR(m);  }
217 #ifdef S_ISSOCK
218 INLINE int __hscore_s_issock(m) { return S_ISSOCK(m); }
219 #endif
220 #endif
221
222 #if !defined(mingw32_TARGET_OS) && !defined(_MSC_VER)
223 INLINE int
224 __hscore_sigemptyset( sigset_t *set )
225 { return sigemptyset(set); }
226
227 INLINE int
228 __hscore_sigfillset( sigset_t *set )
229 { return sigfillset(set); }
230
231 INLINE int
232 __hscore_sigaddset( sigset_t * set, int s )
233 { return sigaddset(set,s); }
234
235 INLINE int
236 __hscore_sigdelset( sigset_t * set, int s )
237 { return sigdelset(set,s); }
238
239 INLINE int
240 __hscore_sigismember( sigset_t * set, int s )
241 { return sigismember(set,s); }
242 #endif
243
244 INLINE void *
245 __hscore_memcpy_dst_off( char *dst, int dst_off, char *src, size_t sz )
246 { return memcpy(dst+dst_off, src, sz); }
247
248 INLINE void *
249 __hscore_memcpy_src_off( char *dst, char *src, int src_off, size_t sz )
250 { return memcpy(dst, src+src_off, sz); }
251
252 INLINE HsBool
253 __hscore_supportsTextMode()
254 {
255 #if defined(mingw32_TARGET_OS)
256   return HS_BOOL_FALSE;
257 #else
258   return HS_BOOL_TRUE;
259 #endif
260 }
261
262 INLINE HsInt
263 __hscore_bufsiz()
264 {
265   return BUFSIZ;
266 }
267
268 INLINE HsInt
269 __hscore_seek_cur()
270 {
271   return SEEK_CUR;
272 }
273
274 INLINE HsInt
275 __hscore_o_binary()
276 {
277 #if defined(_MSC_VER)
278   return O_BINARY;
279 #else
280   return CONST_O_BINARY;
281 #endif
282 }
283
284 INLINE int
285 __hscore_o_rdonly()
286 {
287 #ifdef O_RDONLY
288   return O_RDONLY;
289 #else
290   return 0;
291 #endif
292 }
293
294 INLINE int
295 __hscore_o_wronly( void )
296 {
297 #ifdef O_WRONLY
298   return O_WRONLY;
299 #else
300   return 0;
301 #endif
302 }
303
304 INLINE int
305 __hscore_o_rdwr( void )
306 {
307 #ifdef O_RDWR
308   return O_RDWR;
309 #else
310   return 0;
311 #endif
312 }
313
314 INLINE int
315 __hscore_o_append( void )
316 {
317 #ifdef O_APPEND
318   return O_APPEND;
319 #else
320   return 0;
321 #endif
322 }
323
324 INLINE int
325 __hscore_o_creat( void )
326 {
327 #ifdef O_CREAT
328   return O_CREAT;
329 #else
330   return 0;
331 #endif
332 }
333
334 INLINE int
335 __hscore_o_excl( void )
336 {
337 #ifdef O_EXCL
338   return O_EXCL;
339 #else
340   return 0;
341 #endif
342 }
343
344 INLINE int
345 __hscore_o_trunc( void )
346 {
347 #ifdef O_TRUNC
348   return O_TRUNC;
349 #else
350   return 0;
351 #endif
352 }
353
354 INLINE int
355 __hscore_o_noctty( void )
356 {
357 #ifdef O_NOCTTY
358   return O_NOCTTY;
359 #else
360   return 0;
361 #endif
362 }
363
364 INLINE int
365 __hscore_o_nonblock( void )
366 {
367 #ifdef O_NONBLOCK
368   return O_NONBLOCK;
369 #else
370   return 0;
371 #endif
372 }
373
374 INLINE HsInt
375 __hscore_seek_set( void )
376 {
377   return SEEK_SET;
378 }
379
380 INLINE HsInt
381 __hscore_seek_end( void )
382 {
383   return SEEK_END;
384 }
385
386 INLINE HsInt
387 __hscore_setmode( HsInt fd, HsBool toBin )
388 {
389 #if defined(mingw32_TARGET_OS) || defined(_MSC_VER)
390   return setmode(fd,(toBin == HS_BOOL_TRUE) ? _O_BINARY : _O_TEXT);
391 #else
392   return 0;
393 #endif
394 }
395
396 INLINE HsInt
397 __hscore_PrelHandle_write( HsInt fd, HsAddr ptr, HsInt off, int sz )
398 {
399   return write(fd,(char *)ptr + off, sz);
400 }
401
402 INLINE HsInt
403 __hscore_PrelHandle_read( HsInt fd, HsAddr ptr, HsInt off, int sz )
404 {
405   return read(fd,(char *)ptr + off, sz);
406
407 }
408
409 #if defined(mingw32_TARGET_OS) || defined(_MSC_VER)
410 INLINE long *
411 __hscore_Time_ghcTimezone( void ) { return &_timezone; }
412
413 INLINE char **
414 __hscore_Time_ghcTzname( void ) { return _tzname; }
415 #endif
416
417 INLINE HsInt
418 __hscore_mkdir( HsAddr pathName, HsInt mode )
419 {
420 #if defined(mingw32_TARGET_OS) || defined(_MSC_VER)
421   return mkdir(pathName);
422 #else
423   return mkdir(pathName,mode);
424 #endif
425 }
426
427 INLINE HsInt
428 __hscore_lstat( HsAddr fname, HsAddr st )
429 {
430 #if HAVE_LSTAT
431   return lstat((const char*)fname, (struct stat*)st);
432 #else
433   return stat((const char*)fname, (struct stat*)st);
434 #endif
435 }
436
437 #ifdef PATH_MAX
438 /* A size that will contain many path names, but not necessarily all
439  * (PATH_MAX is not defined on systems with unlimited path length,
440  * e.g. the Hurd).
441  */
442 INLINE HsInt __hscore_long_path_size() { return PATH_MAX; }
443 #else
444 INLINE HsInt __hscore_long_path_size() { return 4096; }
445 #endif
446
447 #ifdef R_OK
448 INLINE mode_t __hscore_R_OK() { return R_OK; }
449 #endif
450 #ifdef W_OK
451 INLINE mode_t __hscore_W_OK() { return W_OK; }
452 #endif
453 #ifdef X_OK
454 INLINE mode_t __hscore_X_OK() { return X_OK; }
455 #endif
456
457 #ifdef S_IRUSR
458 INLINE mode_t __hscore_S_IRUSR() { return S_IRUSR; }
459 #endif
460 #ifdef S_IWUSR
461 INLINE mode_t __hscore_S_IWUSR() { return S_IWUSR; }
462 #endif
463 #ifdef S_IXUSR
464 INLINE mode_t __hscore_S_IXUSR() { return S_IXUSR; }
465 #endif
466
467 #if !defined(_MSC_VER)
468 INLINE HsAddr
469 __hscore_d_name( struct dirent* d )
470 {
471 #if !defined(mingw32_TARGET_OS) && !defined(_MSC_VER)
472   return (HsAddr)(&d->d_name);
473 #else
474   return (HsAddr)(d->d_name);
475 #endif
476 }
477 #endif
478
479 INLINE HsInt
480 __hscore_end_of_dir( void )
481 {
482 #ifndef mingw32_TARGET_OS
483   return 0;
484 #else
485   return ENOENT;
486 #endif
487 }
488
489 INLINE void
490 __hscore_free_dirent(HsAddr dEnt)
491 {
492 #if HAVE_READDIR_R
493   free(dEnt);
494 #endif
495 }
496
497 INLINE HsInt
498 __hscore_sizeof_stat( void )
499 {
500   return sizeof(struct stat);
501 }
502
503 INLINE time_t __hscore_st_mtime ( struct stat* st ) { return st->st_mtime; }
504 INLINE off_t  __hscore_st_size  ( struct stat* st ) { return st->st_size; }
505 #if !defined(_MSC_VER)
506 INLINE mode_t __hscore_st_mode  ( struct stat* st ) { return st->st_mode; }
507 #endif
508
509 #if HAVE_TERMIOS_H
510 INLINE tcflag_t __hscore_lflag( struct termios* ts ) { return ts->c_lflag; }
511
512 INLINE void
513 __hscore_poke_lflag( struct termios* ts, tcflag_t t ) { ts->c_lflag = t; }
514
515 INLINE unsigned char*
516 __hscore_ptr_c_cc( struct termios* ts )
517 { return (unsigned char*) &ts->c_cc; }
518
519 INLINE HsInt
520 __hscore_sizeof_termios( void )
521 {
522 #ifndef mingw32_TARGET_OS
523   return sizeof(struct termios);
524 #else
525   return 0;
526 #endif
527 }
528 #endif
529
530 #if !defined(mingw32_TARGET_OS) && !defined(_MSC_VER)
531 INLINE HsInt
532 __hscore_sizeof_sigset_t( void )
533 {
534   return sizeof(sigset_t);
535 }
536 #endif
537
538 INLINE int
539 __hscore_echo( void )
540 {
541 #ifdef ECHO
542   return ECHO;
543 #else
544   return 0;
545 #endif
546
547 }
548
549 INLINE int
550 __hscore_tcsanow( void )
551 {
552 #ifdef TCSANOW
553   return TCSANOW;
554 #else
555   return 0;
556 #endif
557
558 }
559
560 INLINE int
561 __hscore_icanon( void )
562 {
563 #ifdef ICANON
564   return ICANON;
565 #else
566   return 0;
567 #endif
568 }
569
570 INLINE int __hscore_vmin( void )
571 {
572 #ifdef VMIN
573   return VMIN;
574 #else
575   return 0;
576 #endif
577 }
578
579 INLINE int __hscore_vtime( void )
580 {
581 #ifdef VTIME
582   return VTIME;
583 #else
584   return 0;
585 #endif
586 }
587
588 INLINE int __hscore_sigttou( void )
589 {
590 #ifdef SIGTTOU
591   return SIGTTOU;
592 #else
593   return 0;
594 #endif
595 }
596
597 INLINE int __hscore_sig_block( void )
598 {
599 #ifdef SIG_BLOCK
600   return SIG_BLOCK;
601 #else
602   return 0;
603 #endif
604 }
605
606 INLINE int __hscore_sig_setmask( void )
607 {
608 #ifdef SIG_SETMASK
609   return SIG_SETMASK;
610 #else
611   return 0;
612 #endif
613 }
614
615 INLINE int
616 __hscore_f_getfl( void )
617 {
618 #ifdef F_GETFL
619   return F_GETFL;
620 #else
621   return 0;
622 #endif
623 }
624
625 INLINE int
626 __hscore_f_setfl( void )
627 {
628 #ifdef F_SETFL
629   return F_SETFL;
630 #else
631   return 0;
632 #endif
633 }
634
635 // defined in rts/RtsStartup.c.
636 extern void* __hscore_get_saved_termios(int fd);
637 extern void __hscore_set_saved_termios(int fd, void* ts);
638
639 INLINE int __hscore_hs_fileno (FILE *f) { return fileno (f); }
640
641 #if !defined(mingw32_TARGET_OS) && !defined(_MSC_VER)
642 INLINE int __hsposix_SIGABRT()   { return SIGABRT; }
643 INLINE int __hsposix_SIGALRM()   { return SIGALRM; }
644 INLINE int __hsposix_SIGBUS()    { return SIGBUS; }
645 INLINE int __hsposix_SIGCHLD()   { return SIGCHLD; }
646 INLINE int __hsposix_SIGCONT()   { return SIGCONT; }
647 INLINE int __hsposix_SIGFPE()    { return SIGFPE; }
648 INLINE int __hsposix_SIGHUP()    { return SIGHUP; }
649 INLINE int __hsposix_SIGILL()    { return SIGILL; }
650 INLINE int __hsposix_SIGINT()    { return SIGINT; }
651 INLINE int __hsposix_SIGKILL()   { return SIGKILL; }
652 INLINE int __hsposix_SIGPIPE()   { return SIGPIPE; }
653 INLINE int __hsposix_SIGQUIT()   { return SIGQUIT; }
654 INLINE int __hsposix_SIGSEGV()   { return SIGSEGV; }
655 INLINE int __hsposix_SIGSTOP()   { return SIGSTOP; }
656 INLINE int __hsposix_SIGTERM()   { return SIGTERM; }
657 INLINE int __hsposix_SIGTSTP()   { return SIGTSTP; }
658 INLINE int __hsposix_SIGTTIN()   { return SIGTTIN; }
659 INLINE int __hsposix_SIGTTOU()   { return SIGTTOU; }
660 INLINE int __hsposix_SIGUSR1()   { return SIGUSR1; }
661 INLINE int __hsposix_SIGUSR2()   { return SIGUSR2; }
662 #if HAVE_SIGPOLL
663 INLINE int __hsposix_SIGPOLL()   { return SIGPOLL; }
664 #endif
665 INLINE int __hsposix_SIGPROF()   { return SIGPROF; }
666 INLINE int __hsposix_SIGSYS()    { return SIGSYS; }
667 INLINE int __hsposix_SIGTRAP()   { return SIGTRAP; }
668 INLINE int __hsposix_SIGURG()    { return SIGURG; }
669 INLINE int __hsposix_SIGVTALRM() { return SIGVTALRM; }
670 INLINE int __hsposix_SIGXCPU()   { return SIGXCPU; }
671 INLINE int __hsposix_SIGXFSZ()   { return SIGXFSZ; }
672
673 INLINE int __hsposix_SIG_BLOCK()   { return SIG_BLOCK; }
674 INLINE int __hsposix_SIG_UNBLOCK() { return SIG_UNBLOCK; }
675 INLINE int __hsposix_SIG_SETMASK() { return SIG_SETMASK; }
676 #endif /* mingw32_TARGET_OS */
677
678 #endif /* __HSBASE_H__ */
679