Initial windows support. Now we don't have the stacktrace and several unittests.
[platform/upstream/glog.git] / src / windows / port.h
1 /* Copyright (c) 2008, Google Inc.
2  * All rights reserved.
3  * 
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  * 
8  *     * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *     * Redistributions in binary form must reproduce the above
11  * copyright notice, this list of conditions and the following disclaimer
12  * in the documentation and/or other materials provided with the
13  * distribution.
14  *     * Neither the name of Google Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  * 
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  *
30  * ---
31  * Author: Craig Silverstein
32  * Copied from google-perftools and modified by Shinichiro Hamaji
33  *
34  * These are some portability typedefs and defines to make it a bit
35  * easier to compile this code under VC++.
36  *
37  * Several of these are taken from glib:
38  *    http://developer.gnome.org/doc/API/glib/glib-windows-compatability-functions.html
39  */
40
41 #ifndef CTEMPLATE_WINDOWS_PORT_H_
42 #define CTEMPLATE_WINDOWS_PORT_H_
43
44 #include "config.h"
45
46 #ifdef _WIN32
47
48 #define WIN32_LEAN_AND_MEAN  /* We always want minimal includes */
49 #include <windows.h>
50 #include <winsock.h>         /* for gethostname */
51 #include <io.h>              /* because we so often use open/close/etc */
52 #include <direct.h>          /* for _getcwd() */
53 #include <process.h>         /* for _getpid() */
54 #include <stdio.h>           /* read in vsnprintf decl. before redifining it */
55 #include <stdarg.h>          /* template_dictionary.cc uses va_copy */
56 #include <string.h>          /* for _strnicmp(), strerror_s() */
57 #include <time.h>            /* for localtime_s() */
58 /* Note: the C++ #includes are all together at the bottom.  This file is
59  * used by both C and C++ code, so we put all the C++ together.
60  */
61
62 /* 4244: otherwise we get problems when substracting two size_t's to an int
63  * 4251: it's complaining about a private struct I've chosen not to dllexport
64  * 4355: we use this in a constructor, but we do it safely
65  * 4715: for some reason VC++ stopped realizing you can't return after abort()
66  * 4800: we know we're casting ints/char*'s to bools, and we're ok with that
67  * 4996: Yes, we're ok using "unsafe" functions like fopen() and strerror()
68  */
69 #pragma warning(disable:4244 4251 4355 4715 4800 4996)
70
71 /* file I/O */
72 #define PATH_MAX 1024
73 #define access  _access
74 #define getcwd  _getcwd
75 #define open    _open
76 #define read    _read
77 #define write   _write
78 #define lseek   _lseek
79 #define close   _close
80 #define popen   _popen
81 #define pclose  _pclose
82 #define R_OK    04           /* read-only (for access()) */
83 #define S_ISDIR(m)  (((m) & _S_IFMT) == _S_IFDIR)
84 #ifndef __MINGW32__
85 enum { STDIN_FILENO = 0, STDOUT_FILENO = 1, STDERR_FILENO = 2 };
86 #endif
87 #define S_IRUSR S_IREAD
88 #define S_IWUSR S_IWRITE
89
90 /* Not quite as lightweight as a hard-link, but more than good enough for us. */
91 #define link(oldpath, newpath)  CopyFileA(oldpath, newpath, false)
92
93 #define strcasecmp   _stricmp
94 #define strncasecmp  _strnicmp
95
96 /* In windows-land, hash<> is called hash_compare<> (from xhash.h) */
97 #define hash  hash_compare
98
99 /* Sleep is in ms, on windows */
100 #define sleep(secs)  Sleep((secs) * 1000)
101
102 /* We can't just use _vsnprintf and _snprintf as drop-in-replacements,
103  * because they don't always NUL-terminate. :-(  We also can't use the
104  * name vsnprintf, since windows defines that (but not snprintf (!)).
105  */
106 extern int snprintf(char *str, size_t size,
107                                        const char *format, ...);
108 extern int safe_vsnprintf(char *str, size_t size,
109                           const char *format, va_list ap);
110 #define vsnprintf(str, size, format, ap)  safe_vsnprintf(str, size, format, ap)
111 #define va_copy(dst, src)  (dst) = (src)
112
113 /* Windows doesn't support specifying the number of buckets as a
114  * hash_map constructor arg, so we leave this blank.
115  */
116 #define CTEMPLATE_SMALL_HASHTABLE
117
118 #define DEFAULT_TEMPLATE_ROOTDIR  ".."
119
120 // ----------------------------------- SYSTEM/PROCESS
121 typedef int pid_t;
122 #define getpid  _getpid
123
124 // ----------------------------------- THREADS
125 typedef DWORD pthread_t;
126 typedef DWORD pthread_key_t;
127 typedef LONG pthread_once_t;
128 enum { PTHREAD_ONCE_INIT = 0 };   // important that this be 0! for SpinLock
129 #define pthread_self  GetCurrentThreadId
130 #define pthread_equal(pthread_t_1, pthread_t_2)  ((pthread_t_1)==(pthread_t_2))
131
132 inline struct tm* localtime_r(const time_t* timep, struct tm* result) {
133   localtime_s(result, timep);
134   return result;
135 }
136
137 inline char* strerror_r(int errnum, char* buf, size_t buflen) {
138   strerror_s(buf, buflen, errnum);
139   return buf;
140 }
141
142 #ifndef __cplusplus
143 /* I don't see how to get inlining for C code in MSVC.  Ah well. */
144 #define inline
145 #endif
146
147 #endif  /* _WIN32 */
148
149 #endif  /* CTEMPLATE_WINDOWS_PORT_H_ */