MinGW: Add a simple getpass()
[git/dscho.git] / compat / mingw.h
blob4c50f5b1bca1e161b7e6cf0635b57f5e8d741c13
1 #include <winsock2.h>
3 /*
4 * things that are not available in header files
5 */
7 typedef int pid_t;
8 #define hstrerror strerror
10 #define S_IFLNK 0120000 /* Symbolic link */
11 #define S_ISLNK(x) (((x) & S_IFMT) == S_IFLNK)
12 #define S_ISSOCK(x) 0
13 #define S_IRGRP 0
14 #define S_IWGRP 0
15 #define S_IXGRP 0
16 #define S_ISGID 0
17 #define S_IROTH 0
18 #define S_IXOTH 0
20 #define WIFEXITED(x) ((unsigned)(x) < 259) /* STILL_ACTIVE */
21 #define WEXITSTATUS(x) ((x) & 0xff)
22 #define WIFSIGNALED(x) ((unsigned)(x) > 259)
24 #define SIGHUP 1
25 #define SIGQUIT 3
26 #define SIGKILL 9
27 #define SIGPIPE 13
28 #define SIGALRM 14
29 #define SIGCHLD 17
31 #define F_GETFD 1
32 #define F_SETFD 2
33 #define FD_CLOEXEC 0x1
35 struct passwd {
36 char *pw_name;
37 char *pw_gecos;
38 char *pw_dir;
41 extern char *getpass(const char *prompt);
43 struct pollfd {
44 int fd; /* file descriptor */
45 short events; /* requested events */
46 short revents; /* returned events */
48 #define POLLIN 1
49 #define POLLHUP 2
51 typedef void (__cdecl *sig_handler_t)(int);
52 struct sigaction {
53 sig_handler_t sa_handler;
54 unsigned sa_flags;
56 #define sigemptyset(x) (void)0
57 #define SA_RESTART 0
59 struct itimerval {
60 struct timeval it_value, it_interval;
62 #define ITIMER_REAL 0
65 * trivial stubs
68 static inline int readlink(const char *path, char *buf, size_t bufsiz)
69 { errno = ENOSYS; return -1; }
70 static inline int symlink(const char *oldpath, const char *newpath)
71 { errno = ENOSYS; return -1; }
72 static inline int fchmod(int fildes, mode_t mode)
73 { errno = ENOSYS; return -1; }
74 static inline int fork(void)
75 { errno = ENOSYS; return -1; }
76 static inline unsigned int alarm(unsigned int seconds)
77 { return 0; }
78 static inline int fsync(int fd)
79 { return 0; }
80 static inline int getppid(void)
81 { return 1; }
82 static inline void sync(void)
84 static inline int getuid()
85 { return 1; }
86 static inline struct passwd *getpwnam(const char *name)
87 { return NULL; }
88 static inline int fcntl(int fd, int cmd, long arg)
90 if (cmd == F_GETFD || cmd == F_SETFD)
91 return 0;
92 errno = EINVAL;
93 return -1;
97 * simple adaptors
100 static inline int mingw_mkdir(const char *path, int mode)
102 return mkdir(path);
104 #define mkdir mingw_mkdir
106 static inline int mingw_unlink(const char *pathname)
108 /* read-only files cannot be removed */
109 chmod(pathname, 0666);
110 return unlink(pathname);
112 #define unlink mingw_unlink
114 static inline int waitpid(pid_t pid, int *status, unsigned options)
116 if (options == 0)
117 return _cwait(status, pid, 0);
118 errno = EINVAL;
119 return -1;
123 * implementations of missing functions
126 int pipe(int filedes[2]);
127 unsigned int sleep (unsigned int seconds);
128 int mkstemp(char *template);
129 int gettimeofday(struct timeval *tv, void *tz);
130 int poll(struct pollfd *ufds, unsigned int nfds, int timeout);
131 struct tm *gmtime_r(const time_t *timep, struct tm *result);
132 struct tm *localtime_r(const time_t *timep, struct tm *result);
133 int getpagesize(void); /* defined in MinGW's libgcc.a */
134 struct passwd *getpwuid(int uid);
135 int setitimer(int type, struct itimerval *in, struct itimerval *out);
136 int sigaction(int sig, struct sigaction *in, struct sigaction *out);
137 int link(const char *oldpath, const char *newpath);
140 * replacements of existing functions
143 int mingw_open (const char *filename, int oflags, ...);
144 #define open mingw_open
146 char *mingw_getcwd(char *pointer, int len);
147 #define getcwd mingw_getcwd
149 char *mingw_getenv(const char *name);
150 #define getenv mingw_getenv
152 struct hostent *mingw_gethostbyname(const char *host);
153 #define gethostbyname mingw_gethostbyname
155 int mingw_socket(int domain, int type, int protocol);
156 #define socket mingw_socket
158 int mingw_connect(int sockfd, struct sockaddr *sa, size_t sz);
159 #define connect mingw_connect
161 int mingw_rename(const char*, const char*);
162 #define rename mingw_rename
164 #ifdef USE_WIN32_MMAP
165 int mingw_getpagesize(void);
166 #define getpagesize mingw_getpagesize
167 #endif
169 /* Use mingw_lstat() instead of lstat()/stat() and
170 * mingw_fstat() instead of fstat() on Windows.
172 #define off_t off64_t
173 #define stat _stati64
174 #define lseek _lseeki64
175 int mingw_lstat(const char *file_name, struct stat *buf);
176 int mingw_fstat(int fd, struct stat *buf);
177 #define fstat mingw_fstat
178 #define lstat mingw_lstat
179 #define _stati64(x,y) mingw_lstat(x,y)
181 int mingw_utime(const char *file_name, const struct utimbuf *times);
182 #define utime mingw_utime
184 pid_t mingw_spawnvpe(const char *cmd, const char **argv, char **env);
185 void mingw_execvp(const char *cmd, char *const *argv);
186 #define execvp mingw_execvp
188 static inline unsigned int git_ntohl(unsigned int x)
189 { return (unsigned int)ntohl(x); }
190 #define ntohl git_ntohl
192 sig_handler_t mingw_signal(int sig, sig_handler_t handler);
193 #define signal mingw_signal
196 * ANSI emulation wrappers
199 int winansi_fputs(const char *str, FILE *stream);
200 int winansi_printf(const char *format, ...) __attribute__((format (printf, 1, 2)));
201 int winansi_fprintf(FILE *stream, const char *format, ...) __attribute__((format (printf, 2, 3)));
202 #define fputs winansi_fputs
203 #define printf(...) winansi_printf(__VA_ARGS__)
204 #define fprintf(...) winansi_fprintf(__VA_ARGS__)
207 * git specific compatibility
210 #define has_dos_drive_prefix(path) (isalpha(*(path)) && (path)[1] == ':')
211 #define is_dir_sep(c) ((c) == '/' || (c) == '\\')
212 #define PATH_SEP ';'
213 #define PRIuMAX "I64u"
215 void mingw_open_html(const char *path);
216 #define open_html mingw_open_html
219 * helpers
222 char **copy_environ(void);
223 void free_environ(char **env);
224 char **env_setenv(char **env, const char *name);
227 * A replacement of main() that ensures that argv[0] has a path
230 #define main(c,v) dummy_decl_mingw_main(); \
231 static int mingw_main(); \
232 int main(int argc, const char **argv) \
234 argv[0] = xstrdup(_pgmptr); \
235 return mingw_main(argc, argv); \
237 static int mingw_main(c,v)