integrate cfgperl contents into mainline
[p5sagit/p5-mst-13.2.git] / win32 / win32.h
1 /* WIN32.H
2  *
3  * (c) 1995 Microsoft Corporation. All rights reserved. 
4  *              Developed by hip communications inc., http://info.hip.com/info/
5  *
6  *    You may distribute under the terms of either the GNU General Public
7  *    License or the Artistic License, as specified in the README file.
8  */
9 #ifndef  _INC_WIN32_PERL5
10 #define  _INC_WIN32_PERL5
11
12 #ifndef _WIN32_WINNT
13 #  define _WIN32_WINNT 0x0400     /* needed for TryEnterCriticalSection() etc. */
14 #endif
15
16 #if defined(PERL_OBJECT) || defined(PERL_IMPLICIT_SYS) || defined(PERL_CAPI)
17 #  define DYNAMIC_ENV_FETCH
18 #  define ENV_HV_NAME "___ENV_HV_NAME___"
19 #  define HAS_GETENV_LEN
20 #  define prime_env_iter()
21 #  define WIN32IO_IS_STDIO              /* don't pull in custom stdio layer */
22 #  define WIN32SCK_IS_STDSCK            /* don't pull in custom wsock layer */
23 #  ifdef PERL_GLOBAL_STRUCT
24 #    error PERL_GLOBAL_STRUCT cannot be defined with PERL_IMPLICIT_SYS
25 #  endif
26 #  define win32_get_privlib PerlEnv_lib_path
27 #  define win32_get_sitelib PerlEnv_sitelib_path
28 #endif
29
30 #if defined(PERL_IMPLICIT_CONTEXT)
31 /* compat */
32 #  define GetPerlInterpreter    Perl_get_context
33 #  define SetPerlInterpreter    Perl_set_context
34 #endif
35
36 #ifdef __GNUC__
37 #  ifndef __int64               /* some versions seem to #define it already */
38 #    define __int64 long long
39 #  endif
40 #  define Win32_Winsock
41 #endif
42
43 /* Define DllExport akin to perl's EXT, 
44  * If we are in the DLL or mimicing the DLL for Win95 work round
45  * then Export the symbol, 
46  * otherwise import it.
47  */
48
49 /* now even GCC supports __declspec() */
50
51 #if defined(PERL_OBJECT)
52 #define DllExport
53 #else
54 #if defined(PERLDLL) || defined(WIN95FIX)
55 #define DllExport
56 /*#define DllExport __declspec(dllexport)*/     /* noises with VC5+sp3 */
57 #else 
58 #define DllExport __declspec(dllimport)
59 #endif
60 #endif
61
62 #define  WIN32_LEAN_AND_MEAN
63 #include <windows.h>
64
65 #ifdef   WIN32_LEAN_AND_MEAN            /* C file is NOT a Perl5 original. */
66 #define  CONTEXT        PERL_CONTEXT    /* Avoid conflict of CONTEXT defs. */
67 #endif /*WIN32_LEAN_AND_MEAN */
68
69 #ifndef TLS_OUT_OF_INDEXES
70 #define TLS_OUT_OF_INDEXES (DWORD)0xFFFFFFFF
71 #endif
72
73 #include <dirent.h>
74 #include <io.h>
75 #include <process.h>
76 #include <stdio.h>
77 #include <direct.h>
78 #include <stdlib.h>
79 #include <fcntl.h>
80 #ifndef EXT
81 #include "EXTERN.h"
82 #endif
83
84 struct tms {
85         long    tms_utime;
86         long    tms_stime;
87         long    tms_cutime;
88         long    tms_cstime;
89 };
90
91 #ifndef SYS_NMLN
92 #define SYS_NMLN        257
93 #endif
94
95 struct utsname {
96     char sysname[SYS_NMLN];
97     char nodename[SYS_NMLN];
98     char release[SYS_NMLN];
99     char version[SYS_NMLN];
100     char machine[SYS_NMLN];
101 };
102
103 #ifndef START_EXTERN_C
104 #undef EXTERN_C
105 #ifdef __cplusplus
106 #  define START_EXTERN_C extern "C" {
107 #  define END_EXTERN_C }
108 #  define EXTERN_C extern "C"
109 #else
110 #  define START_EXTERN_C 
111 #  define END_EXTERN_C 
112 #  define EXTERN_C
113 #endif
114 #endif
115
116 #define  STANDARD_C     1
117 #define  DOSISH         1               /* no escaping our roots */
118 #define  OP_BINARY      O_BINARY        /* mistake in in pp_sys.c? */
119
120 /* Define USE_SOCKETS_AS_HANDLES to enable emulation of windows sockets as
121  * real filehandles. XXX Should always be defined (the other version is untested) */
122 #define USE_SOCKETS_AS_HANDLES
123
124 /* read() and write() aren't transparent for socket handles */
125 #define PERL_SOCK_SYSREAD_IS_RECV
126 #define PERL_SOCK_SYSWRITE_IS_SEND
127
128 #define PERL_NO_FORCE_LINK              /* no need for PL_force_link_funcs */
129
130 /* if USE_WIN32_RTL_ENV is not defined, Perl uses direct Win32 calls
131  * to read the environment, bypassing the runtime's (usually broken)
132  * facilities for accessing the same.  See note in util.c/my_setenv(). */
133 /*#define USE_WIN32_RTL_ENV */
134
135 /* Define USE_FIXED_OSFHANDLE to fix MSVCRT's _open_osfhandle() on W95.
136    It now uses some black magic to work seamlessly with the DLL CRT and
137    works with MSVC++ 4.0+ or GCC/Mingw32
138         -- BKS 1-24-2000 */
139 #if (defined(_M_IX86) && _MSC_VER >= 1000) || defined(__MINGW32__)
140 #define USE_FIXED_OSFHANDLE
141 #endif
142
143 #define ENV_IS_CASELESS
144
145 #ifndef VER_PLATFORM_WIN32_WINDOWS      /* VC-2.0 headers don't have this */
146 #define VER_PLATFORM_WIN32_WINDOWS      1
147 #endif
148
149 #ifndef FILE_SHARE_DELETE               /* VC-4.0 headers don't have this */
150 #define FILE_SHARE_DELETE               0x00000004
151 #endif
152
153 /* access() mode bits */
154 #ifndef R_OK
155 #  define       R_OK    4
156 #  define       W_OK    2
157 #  define       X_OK    1
158 #  define       F_OK    0
159 #endif
160
161 #define PERL_GET_CONTEXT_DEFINED
162
163 /* Compiler-specific stuff. */
164
165 #ifdef __BORLANDC__             /* Borland C++ */
166
167 #define _access access
168 #define _chdir chdir
169 #define _getpid getpid
170 #define wcsicmp _wcsicmp
171 #include <sys/types.h>
172
173 #ifndef DllMain
174 #define DllMain DllEntryPoint
175 #endif
176
177 #pragma warn -ccc       /* "condition is always true/false" */
178 #pragma warn -rch       /* "unreachable code" */
179 #pragma warn -sig       /* "conversion may lose significant digits" */
180 #pragma warn -pia       /* "possibly incorrect assignment" */
181 #pragma warn -par       /* "parameter 'foo' is never used" */
182 #pragma warn -aus       /* "'foo' is assigned a value that is never used" */
183 #pragma warn -use       /* "'foo' is declared but never used" */
184 #pragma warn -csu       /* "comparing signed and unsigned values" */
185 #pragma warn -pro       /* "call to function with no prototype" */
186 #pragma warn -stu       /* "undefined structure 'foo'" */
187
188 /* Borland is picky about a bare member function name used as its ptr */
189 #ifdef PERL_OBJECT
190 #  define MEMBER_TO_FPTR(name)  &(name)
191 #endif
192
193 /* Borland C thinks that a pointer to a member variable is 12 bytes in size. */
194 #define PERL_MEMBER_PTR_SIZE    12
195
196 #endif
197
198 #ifdef _MSC_VER                 /* Microsoft Visual C++ */
199
200 typedef long            uid_t;
201 typedef long            gid_t;
202 typedef unsigned short  mode_t;
203 #pragma  warning(disable: 4018 4035 4101 4102 4244 4245 4761)
204
205 /* Visual C thinks that a pointer to a member variable is 16 bytes in size. */
206 #define PERL_MEMBER_PTR_SIZE    16
207
208 #endif /* _MSC_VER */
209
210 #ifdef __MINGW32__              /* Minimal Gnu-Win32 */
211
212 typedef long            uid_t;
213 typedef long            gid_t;
214 #ifndef _environ
215 #define _environ        environ
216 #endif
217 #define flushall        _flushall
218 #define fcloseall       _fcloseall
219
220 #ifndef CP_UTF8
221 #  define CP_UTF8       65001
222 #endif
223
224 #ifdef PERL_OBJECT
225 #  define MEMBER_TO_FPTR(name)  &(name)
226 #endif
227
228 #ifndef _O_NOINHERIT
229 #  define _O_NOINHERIT  0x0080
230 #  ifndef _NO_OLDNAMES
231 #    define O_NOINHERIT _O_NOINHERIT
232 #  endif
233 #endif
234
235 #endif /* __MINGW32__ */
236
237 /* compatibility stuff for other compilers goes here */
238
239
240 #if !defined(PERL_OBJECT) && defined(PERL_CAPI) && defined(PERL_MEMBER_PTR_SIZE)
241 #  define STRUCT_MGVTBL_DEFINITION \
242 struct mgvtbl {                                                         \
243     union {                                                             \
244         int         (CPERLscope(*svt_get))(pTHX_ SV *sv, MAGIC* mg);    \
245         char        handle_VC_problem1[PERL_MEMBER_PTR_SIZE];           \
246     };                                                                  \
247     union {                                                             \
248         int         (CPERLscope(*svt_set))(pTHX_ SV *sv, MAGIC* mg);    \
249         char        handle_VC_problem2[PERL_MEMBER_PTR_SIZE];           \
250     };                                                                  \
251     union {                                                             \
252         U32         (CPERLscope(*svt_len))(pTHX_ SV *sv, MAGIC* mg);    \
253         char        handle_VC_problem3[PERL_MEMBER_PTR_SIZE];           \
254     };                                                                  \
255     union {                                                             \
256         int         (CPERLscope(*svt_clear))(pTHX_ SV *sv, MAGIC* mg);  \
257         char        handle_VC_problem4[PERL_MEMBER_PTR_SIZE];           \
258     };                                                                  \
259     union {                                                             \
260         int         (CPERLscope(*svt_free))(pTHX_ SV *sv, MAGIC* mg);   \
261         char        handle_VC_problem5[PERL_MEMBER_PTR_SIZE];           \
262     };                                                                  \
263 }
264
265 #  define BASEOP_DEFINITION \
266     OP*         op_next;                                                \
267     OP*         op_sibling;                                             \
268     OP*         (CPERLscope(*op_ppaddr))(pTHX);                         \
269     char        handle_VC_problem[PERL_MEMBER_PTR_SIZE-sizeof(OP*)];    \
270     PADOFFSET   op_targ;                                                \
271     OPCODE      op_type;                                                \
272     U16         op_seq;                                                 \
273     U8          op_flags;                                               \
274     U8          op_private;
275
276 #endif /* !PERL_OBJECT && PERL_CAPI && PERL_MEMBER_PTR_SIZE */
277
278
279 START_EXTERN_C
280
281 /* For UNIX compatibility. */
282
283 extern  uid_t   getuid(void);
284 extern  gid_t   getgid(void);
285 extern  uid_t   geteuid(void);
286 extern  gid_t   getegid(void);
287 extern  int     setuid(uid_t uid);
288 extern  int     setgid(gid_t gid);
289 extern  int     kill(int pid, int sig);
290 extern  void    *sbrk(int need);
291 extern  char *  getlogin(void);
292 extern  int     chown(const char *p, uid_t o, gid_t g);
293
294 #undef   Stat
295 #define  Stat           win32_stat
296
297 #undef   init_os_extras
298 #define  init_os_extras Perl_init_os_extras
299
300 DllExport void          Perl_win32_init(int *argcp, char ***argvp);
301 DllExport void          Perl_init_os_extras();
302 DllExport void          win32_str_os_error(void *sv, DWORD err);
303 DllExport int           RunPerl(int argc, char **argv, char **env);
304
305 typedef struct {
306     HANDLE      childStdIn;
307     HANDLE      childStdOut;
308     HANDLE      childStdErr;
309 } child_IO_table;
310
311 DllExport void          win32_get_child_IO(child_IO_table* ptr);
312
313 #ifndef USE_SOCKETS_AS_HANDLES
314 extern FILE *           my_fdopen(int, char *);
315 #endif
316 extern int              my_fclose(FILE *);
317 extern int              do_aspawn(void *really, void **mark, void **sp);
318 extern int              do_spawn(char *cmd);
319 extern int              do_spawn_nowait(char *cmd);
320 extern char *           win32_get_privlib(char *pl);
321 extern char *           win32_get_sitelib(char *pl);
322 extern int              IsWin95(void);
323 extern int              IsWinNT(void);
324
325 extern char *           staticlinkmodules[];
326
327 END_EXTERN_C
328
329 typedef  char *         caddr_t;        /* In malloc.c (core address). */
330
331 /*
332  * handle socket stuff, assuming socket is always available
333  */
334 #include <sys/socket.h>
335 #include <netdb.h>
336
337 #ifdef MYMALLOC
338 #define EMBEDMYMALLOC   /**/
339 /* #define USE_PERL_SBRK        /**/
340 /* #define PERL_SBRK_VIA_MALLOC /**/
341 #endif
342
343 #if defined(PERLDLL) && !defined(PERL_CORE)
344 #define PERL_CORE
345 #endif
346
347 #ifdef PERL_TEXTMODE_SCRIPTS
348 #  define PERL_SCRIPT_MODE              "r"
349 #else
350 #  define PERL_SCRIPT_MODE              "rb"
351 #endif
352
353 /* 
354  * Now Win32 specific per-thread data stuff 
355  */
356
357 struct thread_intern {
358     /* XXX can probably use one buffer instead of several */
359     char                Wstrerror_buffer[512];
360     struct servent      Wservent;
361     char                Wgetlogin_buffer[128];
362 #    ifdef USE_SOCKETS_AS_HANDLES
363     int                 Winit_socktype;
364 #    endif
365 #    ifdef HAVE_DES_FCRYPT
366     char                Wcrypt_buffer[30];
367 #    endif
368 #    ifdef USE_RTL_THREAD_API
369     void *              retv;   /* slot for thread return value */
370 #    endif
371 };
372
373 #ifdef USE_THREADS
374 #  ifndef USE_DECLSPEC_THREAD
375 #    define HAVE_THREAD_INTERN
376 #  endif /* !USE_DECLSPEC_THREAD */
377 #endif /* USE_THREADS */
378
379 #define HAVE_INTERP_INTERN
380 typedef struct {
381     long        num;
382     DWORD       pids[MAXIMUM_WAIT_OBJECTS];
383     HANDLE      handles[MAXIMUM_WAIT_OBJECTS];
384 } child_tab;
385
386 struct interp_intern {
387     char *      perlshell_tokens;
388     char **     perlshell_vec;
389     long        perlshell_items;
390     struct av * fdpid;
391     child_tab * children;
392 #ifdef USE_ITHREADS
393     DWORD       pseudo_id;
394     child_tab * pseudo_children;
395 #endif
396     void *      internal_host;
397 #ifndef USE_THREADS
398     struct thread_intern        thr_intern;
399 #endif
400 };
401
402
403 #define w32_perlshell_tokens    (PL_sys_intern.perlshell_tokens)
404 #define w32_perlshell_vec       (PL_sys_intern.perlshell_vec)
405 #define w32_perlshell_items     (PL_sys_intern.perlshell_items)
406 #define w32_fdpid               (PL_sys_intern.fdpid)
407 #define w32_children            (PL_sys_intern.children)
408 #define w32_num_children        (w32_children->num)
409 #define w32_child_pids          (w32_children->pids)
410 #define w32_child_handles       (w32_children->handles)
411 #define w32_pseudo_id           (PL_sys_intern.pseudo_id)
412 #define w32_pseudo_children     (PL_sys_intern.pseudo_children)
413 #define w32_num_pseudo_children         (w32_pseudo_children->num)
414 #define w32_pseudo_child_pids           (w32_pseudo_children->pids)
415 #define w32_pseudo_child_handles        (w32_pseudo_children->handles)
416 #define w32_internal_host               (PL_sys_intern.internal_host)
417 #ifdef USE_THREADS
418 #  define w32_strerror_buffer   (thr->i.Wstrerror_buffer)
419 #  define w32_getlogin_buffer   (thr->i.Wgetlogin_buffer)
420 #  define w32_crypt_buffer      (thr->i.Wcrypt_buffer)
421 #  define w32_servent           (thr->i.Wservent)
422 #  define w32_init_socktype     (thr->i.Winit_socktype)
423 #else
424 #  define w32_strerror_buffer   (PL_sys_intern.thr_intern.Wstrerror_buffer)
425 #  define w32_getlogin_buffer   (PL_sys_intern.thr_intern.Wgetlogin_buffer)
426 #  define w32_crypt_buffer      (PL_sys_intern.thr_intern.Wcrypt_buffer)
427 #  define w32_servent           (PL_sys_intern.thr_intern.Wservent)
428 #  define w32_init_socktype     (PL_sys_intern.thr_intern.Winit_socktype)
429 #endif /* USE_THREADS */
430
431 /* UNICODE<>ANSI translation helpers */
432 /* Use CP_ACP when mode is ANSI */
433 /* Use CP_UTF8 when mode is UTF8 */
434
435 #define A2WHELPER_LEN(lpa, alen, lpw, nBytes)\
436     (lpw[0] = 0, MultiByteToWideChar((IN_BYTE) ? CP_ACP : CP_UTF8, 0, \
437                                     lpa, alen, lpw, (nBytes/sizeof(WCHAR))))
438 #define A2WHELPER(lpa, lpw, nBytes)     A2WHELPER_LEN(lpa, -1, lpw, nBytes)
439
440 #define W2AHELPER_LEN(lpw, wlen, lpa, nChars)\
441     (lpa[0] = '\0', WideCharToMultiByte((IN_BYTE) ? CP_ACP : CP_UTF8, 0, \
442                                        lpw, wlen, (LPSTR)lpa, nChars,NULL,NULL))
443 #define W2AHELPER(lpw, lpa, nChars)     W2AHELPER_LEN(lpw, -1, lpa, nChars)
444
445 #define USING_WIDE() (PL_widesyscalls && PerlEnv_os_id() == VER_PLATFORM_WIN32_NT)
446
447 #ifdef USE_ITHREADS
448 #  define PERL_WAIT_FOR_CHILDREN \
449     STMT_START {                                                        \
450         if (w32_pseudo_children && w32_num_pseudo_children) {           \
451             long children = w32_num_pseudo_children;                    \
452             WaitForMultipleObjects(children,                            \
453                                    w32_pseudo_child_handles,            \
454                                    TRUE, INFINITE);                     \
455             while (children)                                            \
456                 CloseHandle(w32_pseudo_child_handles[--children]);      \
457         }                                                               \
458     } STMT_END
459 #endif
460
461 /*
462  * This provides a layer of functions and macros to ensure extensions will
463  * get to use the same RTL functions as the core.
464  */
465 #include "win32iop.h"
466
467 #endif /* _INC_WIN32_PERL5 */
468