home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 April / PCWorld_2002-04_cd.bin / Komunik / apache / apache_1.3.23-win32-x86-no_src.msi / Data.Cab / F164908_os.h < prev    next >
C/C++ Source or Header  |  2001-09-26  |  8KB  |  230 lines

  1. /* ====================================================================
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2000 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  *
  26.  * 4. The names "Apache" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation.  For more
  51.  * information on the Apache Software Foundation, please see
  52.  * <http://www.apache.org/>.
  53.  *
  54.  * Portions of this software are based upon public domain software
  55.  * originally written at the National Center for Supercomputing Applications,
  56.  * University of Illinois, Urbana-Champaign.
  57.  */
  58.  
  59. #ifndef APACHE_OS_H
  60. #define APACHE_OS_H
  61.  
  62. #ifdef WIN32
  63.  
  64. /* 
  65.  * Compile the server including all the Windows NT 4.0 header files by 
  66.  * default. We still want the server to run on Win95/98 so use 
  67.  * runtime checks before calling NT specific functions to verify we are 
  68.  * really running on an NT system.
  69.  */
  70. #define _WIN32_WINNT 0x0400
  71.  
  72. /* If it isn't too late, prevent windows.h from including the original
  73.  * winsock.h header, so that we can still include winsock2.h
  74.  */
  75. #if !defined(_WINSOCKAPI_) || !defined(_WINDOWS_)
  76. #define _WINSOCKAPI_
  77. #include <windows.h>
  78. #include <winsock2.h>
  79. #include <mswsock.h>
  80. #else
  81. #include <windows.h>
  82. #endif
  83. #include <process.h>
  84. #include <malloc.h>
  85. #include <io.h>
  86. #include <fcntl.h>
  87.  
  88. #define PLATFORM "Win32"
  89.  
  90. /*
  91.  * This file in included in all Apache source code. It contains definitions
  92.  * of facilities available on _this_ operating system (HAVE_* macros),
  93.  * and prototypes of OS specific functions defined in os.c
  94.  */
  95.  
  96. /* temporarily replace crypt */
  97. /* char *crypt(const char *pw, const char *salt); */
  98. #define crypt(buf,salt)        (buf)
  99.  
  100. /* Although DIR_TYPE is dirent (see nt/readdir.h) we need direct.h for
  101.    chdir() */
  102. #include <direct.h>
  103.  
  104. #define STATUS
  105. #ifndef STRICT
  106. #define STRICT
  107. #endif
  108. #define CASE_BLIND_FILESYSTEM
  109. #define NO_WRITEV
  110. #define NO_SETSID
  111. #define NO_USE_SIGACTION
  112. #define NO_TIMES
  113. #define NO_GETTIMEOFDAY
  114. #define USE_LONGJMP
  115. #define HAVE_MMAP
  116. #define USE_MMAP_SCOREBOARD
  117. #define MULTITHREAD
  118. #define HAVE_CANONICAL_FILENAME
  119. #define HAVE_DRIVE_LETTERS
  120. #define HAVE_UNC_PATHS
  121. typedef int uid_t;
  122. typedef int gid_t;
  123. typedef int pid_t;
  124. typedef int tid_t;
  125. #ifdef _MSC_VER
  126. /* modified to match declaration in sys/stat.h */
  127. typedef unsigned short mode_t;
  128. #endif
  129. typedef char * caddr_t;
  130.  
  131. /*
  132. Define export types. API_EXPORT_NONSTD is a nasty hack to avoid having to declare
  133. every configuration function as __stdcall.
  134. */
  135.  
  136. #ifdef SHARED_MODULE
  137. #define API_VAR_EXPORT          __declspec(dllimport)
  138. #define API_EXPORT(type)        __declspec(dllimport) type __stdcall
  139. #define API_EXPORT_NONSTD(type) __declspec(dllimport) type __cdecl
  140. #else
  141. #define API_VAR_EXPORT          __declspec(dllexport)
  142. #define API_EXPORT(type)        __declspec(dllexport) type __stdcall
  143. #define API_EXPORT_NONSTD(type) __declspec(dllexport) type __cdecl
  144. #endif
  145. #define MODULE_VAR_EXPORT   __declspec(dllexport)
  146.  
  147. #define strcasecmp(s1, s2) stricmp(s1, s2)
  148. #define strncasecmp(s1, s2, n) strnicmp(s1, s2, n)
  149. #define lstat(x, y) stat(x, y)
  150. #ifndef S_ISLNK
  151. #define S_ISLNK(m) (0)
  152. #endif
  153. #ifndef S_ISREG
  154. #define S_ISREG(m) ((m & _S_IFREG) == _S_IFREG)
  155. #endif
  156. #ifndef S_ISDIR
  157. #define S_ISDIR(m) (((m) & _S_IFDIR) == _S_IFDIR)
  158. #endif
  159. #define STDIN_FILENO  0
  160. #define STDOUT_FILENO 1
  161. #define STDERR_FILENO 2
  162. #define JMP_BUF jmp_buf
  163. #define sleep(t) Sleep(t*1000)
  164. #ifndef O_CREAT
  165. #define O_CREAT _O_CREAT
  166. #endif
  167. #ifndef O_RDWR
  168. #define O_RDWR _O_RDWR
  169. #endif
  170. #define SIGPIPE 17
  171. /* Seems Windows is not a subgenius */
  172. #define NO_SLACK
  173. #include <stddef.h>
  174.  
  175. #define NO_OTHER_CHILD
  176. #define NO_RELIABLE_PIPED_LOGS
  177.  
  178. __inline int ap_os_is_path_absolute(const char *file)
  179. {
  180.   /* For now, just do the same check that http_request.c and mod_alias.c
  181.    * do. 
  182.    */
  183.   return file && (file[0] == '/' || (file[1] == ':' && file[2] == '/'));
  184. }
  185.  
  186. #define stat(f,ps)  os_stat(f,ps)
  187. API_EXPORT(int) os_stat(const char *szPath,struct stat *pStat);
  188.  
  189. API_EXPORT(int) os_strftime(char *s, size_t max, const char *format, const struct tm *tm);
  190.  
  191. #define _spawnv(mode,cmdname,argv)        os_spawnv(mode,cmdname,argv)
  192. #define spawnv(mode,cmdname,argv)        os_spawnv(mode,cmdname,argv)
  193. API_EXPORT(int) os_spawnv(int mode,const char *cmdname,const char *const *argv);
  194. #define _spawnve(mode,cmdname,argv,envp)    os_spawnve(mode,cmdname,argv,envp)
  195. #define spawnve(mode,cmdname,argv,envp)        os_spawnve(mode,cmdname,argv,envp)
  196. API_EXPORT(int) os_spawnve(int mode,const char *cmdname,const char *const *argv,const char *const *envp);
  197. #define _spawnle                os_spawnle
  198. #define spawnle                    os_spawnle
  199. API_EXPORT_NONSTD(int) os_spawnle(int mode,const char *cmdname,...);
  200.  
  201. /* OS-dependent filename routines in util_win32.c */
  202.  
  203. API_EXPORT(int) ap_os_is_filename_valid(const char *file);
  204.  
  205. /* Abstractions for dealing with shared object files (DLLs on Win32).
  206.  * These are used by mod_so.c
  207.  */
  208. #define ap_os_dso_handle_t  HINSTANCE
  209. #define ap_os_dso_init()
  210. #define ap_os_dso_unload(l) FreeLibrary(l)
  211. #define ap_os_dso_sym(h,s)  GetProcAddress(h,s)
  212.  
  213. API_EXPORT(ap_os_dso_handle_t) ap_os_dso_load(const char *);
  214. API_EXPORT(const char *) ap_os_dso_error(void);
  215.  
  216. /* Other ap_os_ routines not used by this platform */
  217. #define ap_os_kill(pid, sig)                kill(pid, sig)
  218.  
  219. /* Some Win32isms */
  220. #define HAVE_ISNAN
  221. #define isnan(n) _isnan(n)
  222. #define HAVE_ISINF
  223. #define isinf(n) (!_finite(n))
  224.  
  225. #define gettid() ((tid_t)GetCurrentThreadId())
  226.  
  227. #endif /* WIN32 */
  228.  
  229. #endif   /* ! APACHE_OS_H */
  230.