]> granicus.if.org Git - postgresql/blob - src/include/port.h
Make new event trigger facility actually do something.
[postgresql] / src / include / port.h
1 /*-------------------------------------------------------------------------
2  *
3  * port.h
4  *        Header for src/port/ compatibility functions.
5  *
6  * Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group
7  * Portions Copyright (c) 1994, Regents of the University of California
8  *
9  * src/include/port.h
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef PG_PORT_H
14 #define PG_PORT_H
15
16 #include <ctype.h>
17 #include <netdb.h>
18 #include <pwd.h>
19
20 /* socket has a different definition on WIN32 */
21 #ifndef WIN32
22 typedef int pgsocket;
23
24 #define PGINVALID_SOCKET (-1)
25 #else
26 typedef SOCKET pgsocket;
27
28 #define PGINVALID_SOCKET INVALID_SOCKET
29 #endif
30
31 /* non-blocking */
32 extern bool pg_set_noblock(pgsocket sock);
33 extern bool pg_set_block(pgsocket sock);
34
35 /* Portable path handling for Unix/Win32 (in path.c) */
36
37 extern bool has_drive_prefix(const char *filename);
38 extern char *first_dir_separator(const char *filename);
39 extern char *last_dir_separator(const char *filename);
40 extern char *first_path_var_separator(const char *pathlist);
41 extern void join_path_components(char *ret_path,
42                                          const char *head, const char *tail);
43 extern void canonicalize_path(char *path);
44 extern void make_native_path(char *path);
45 extern bool path_contains_parent_reference(const char *path);
46 extern bool path_is_relative_and_below_cwd(const char *path);
47 extern bool path_is_prefix_of_path(const char *path1, const char *path2);
48 extern const char *get_progname(const char *argv0);
49 extern void get_share_path(const char *my_exec_path, char *ret_path);
50 extern void get_etc_path(const char *my_exec_path, char *ret_path);
51 extern void get_include_path(const char *my_exec_path, char *ret_path);
52 extern void get_pkginclude_path(const char *my_exec_path, char *ret_path);
53 extern void get_includeserver_path(const char *my_exec_path, char *ret_path);
54 extern void get_lib_path(const char *my_exec_path, char *ret_path);
55 extern void get_pkglib_path(const char *my_exec_path, char *ret_path);
56 extern void get_locale_path(const char *my_exec_path, char *ret_path);
57 extern void get_doc_path(const char *my_exec_path, char *ret_path);
58 extern void get_html_path(const char *my_exec_path, char *ret_path);
59 extern void get_man_path(const char *my_exec_path, char *ret_path);
60 extern bool get_home_path(char *ret_path);
61 extern void get_parent_directory(char *path);
62
63 /* port/dirmod.c */
64 extern char **pgfnames(const char *path);
65 extern void pgfnames_cleanup(char **filenames);
66
67 /*
68  *      is_absolute_path
69  *
70  *      By making this a macro we avoid needing to include path.c in libpq.
71  */
72 #ifndef WIN32
73 #define IS_DIR_SEP(ch)  ((ch) == '/')
74
75 #define is_absolute_path(filename) \
76 ( \
77         IS_DIR_SEP((filename)[0]) \
78 )
79 #else
80 #define IS_DIR_SEP(ch)  ((ch) == '/' || (ch) == '\\')
81
82 /* See path_is_relative_and_below_cwd() for how we handle 'E:abc'. */
83 #define is_absolute_path(filename) \
84 ( \
85         IS_DIR_SEP((filename)[0]) || \
86         (isalpha((unsigned char) ((filename)[0])) && (filename)[1] == ':' && \
87          IS_DIR_SEP((filename)[2])) \
88 )
89 #endif
90
91 /* Portable locale initialization (in exec.c) */
92 extern void set_pglocale_pgservice(const char *argv0, const char *app);
93
94 /* Portable way to find binaries (in exec.c) */
95 extern int      find_my_exec(const char *argv0, char *retpath);
96 extern int find_other_exec(const char *argv0, const char *target,
97                                 const char *versionstr, char *retpath);
98
99 /* Windows security token manipulation (in exec.c) */
100 #ifdef WIN32
101 extern BOOL AddUserToTokenDacl(HANDLE hToken);
102 #endif
103
104
105 #if defined(WIN32) || defined(__CYGWIN__)
106 #define EXE ".exe"
107 #else
108 #define EXE ""
109 #endif
110
111 #if defined(WIN32) && !defined(__CYGWIN__)
112 #define DEVNULL "nul"
113 /* "con" does not work from the Msys 1.0.10 console (part of MinGW). */
114 #define DEVTTY  "con"
115 #else
116 #define DEVNULL "/dev/null"
117 #define DEVTTY "/dev/tty"
118 #endif
119
120 /*
121  *      Win32 needs double quotes at the beginning and end of system()
122  *      strings.  If not, it gets confused with multiple quoted strings.
123  *      It also requires double-quotes around the executable name and
124  *      any files used for redirection.  Other args can use single-quotes.
125  *
126  *      Generated using Win32 "CMD /?":
127  *
128  *      1. If all of the following conditions are met, then quote characters
129  *      on the command line are preserved:
130  *
131  *       - no /S switch
132  *       - exactly two quote characters
133  *       - no special characters between the two quote characters, where special
134  *         is one of: &<>()@^|
135  *       - there are one or more whitespace characters between the two quote
136  *         characters
137  *       - the string between the two quote characters is the name of an
138  *         executable file.
139  *
140  *       2. Otherwise, old behavior is to see if the first character is a quote
141  *       character and if so, strip the leading character and remove the last
142  *       quote character on the command line, preserving any text after the last
143  *       quote character.
144  */
145 #if defined(WIN32) && !defined(__CYGWIN__)
146 #define SYSTEMQUOTE "\""
147 #else
148 #define SYSTEMQUOTE ""
149 #endif
150
151 /* Portable delay handling */
152 extern void pg_usleep(long microsec);
153
154 /* Portable SQL-like case-independent comparisons and conversions */
155 extern int      pg_strcasecmp(const char *s1, const char *s2);
156 extern int      pg_strncasecmp(const char *s1, const char *s2, size_t n);
157 extern unsigned char pg_toupper(unsigned char ch);
158 extern unsigned char pg_tolower(unsigned char ch);
159 extern unsigned char pg_ascii_toupper(unsigned char ch);
160 extern unsigned char pg_ascii_tolower(unsigned char ch);
161
162 #ifdef USE_REPL_SNPRINTF
163
164 /*
165  * Versions of libintl >= 0.13 try to replace printf() and friends with
166  * macros to their own versions that understand the %$ format.  We do the
167  * same, so disable their macros, if they exist.
168  */
169 #ifdef vsnprintf
170 #undef vsnprintf
171 #endif
172 #ifdef snprintf
173 #undef snprintf
174 #endif
175 #ifdef sprintf
176 #undef sprintf
177 #endif
178 #ifdef vfprintf
179 #undef vfprintf
180 #endif
181 #ifdef fprintf
182 #undef fprintf
183 #endif
184 #ifdef printf
185 #undef printf
186 #endif
187
188 extern int      pg_vsnprintf(char *str, size_t count, const char *fmt, va_list args);
189 extern int
190 pg_snprintf(char *str, size_t count, const char *fmt,...)
191 /* This extension allows gcc to check the format string */
192 __attribute__((format(PG_PRINTF_ATTRIBUTE, 3, 4)));
193 extern int
194 pg_sprintf(char *str, const char *fmt,...)
195 /* This extension allows gcc to check the format string */
196 __attribute__((format(PG_PRINTF_ATTRIBUTE, 2, 3)));
197 extern int      pg_vfprintf(FILE *stream, const char *fmt, va_list args);
198 extern int
199 pg_fprintf(FILE *stream, const char *fmt,...)
200 /* This extension allows gcc to check the format string */
201 __attribute__((format(PG_PRINTF_ATTRIBUTE, 2, 3)));
202 extern int
203 pg_printf(const char *fmt,...)
204 /* This extension allows gcc to check the format string */
205 __attribute__((format(PG_PRINTF_ATTRIBUTE, 1, 2)));
206
207 /*
208  *      The GCC-specific code below prevents the __attribute__(... 'printf')
209  *      above from being replaced, and this is required because gcc doesn't
210  *      know anything about pg_printf.
211  */
212 #ifdef __GNUC__
213 #define vsnprintf(...)  pg_vsnprintf(__VA_ARGS__)
214 #define snprintf(...)   pg_snprintf(__VA_ARGS__)
215 #define sprintf(...)    pg_sprintf(__VA_ARGS__)
216 #define vfprintf(...)   pg_vfprintf(__VA_ARGS__)
217 #define fprintf(...)    pg_fprintf(__VA_ARGS__)
218 #define printf(...)             pg_printf(__VA_ARGS__)
219 #else
220 #define vsnprintf               pg_vsnprintf
221 #define snprintf                pg_snprintf
222 #define sprintf                 pg_sprintf
223 #define vfprintf                pg_vfprintf
224 #define fprintf                 pg_fprintf
225 #define printf                  pg_printf
226 #endif
227 #endif   /* USE_REPL_SNPRINTF */
228
229 #if defined(WIN32)
230 /*
231  * Versions of libintl >= 0.18? try to replace setlocale() with a macro
232  * to their own versions.  Remove the macro, if it exists, because it
233  * ends up calling the wrong version when the backend and libintl use
234  * different versions of msvcrt.
235  */
236 #if defined(setlocale)
237 #undef setlocale
238 #endif
239
240 /*
241  * Define our own wrapper macro around setlocale() to work around bugs in
242  * Windows' native setlocale() function.
243  */
244 extern char *pgwin32_setlocale(int category, const char *locale);
245
246 #define setlocale(a,b) pgwin32_setlocale(a,b)
247 #endif   /* WIN32 */
248
249 /* Portable prompt handling */
250 extern char *simple_prompt(const char *prompt, int maxlen, bool echo);
251
252 #ifdef WIN32
253 #define PG_SIGNAL_COUNT 32
254 #define kill(pid,sig)   pgkill(pid,sig)
255 extern int      pgkill(int pid, int sig);
256 #endif
257
258 extern int      pclose_check(FILE *stream);
259
260 /* Global variable holding time zone information. */
261 #ifndef __CYGWIN__
262 #define TIMEZONE_GLOBAL timezone
263 #define TZNAME_GLOBAL tzname
264 #else
265 #define TIMEZONE_GLOBAL _timezone
266 #define TZNAME_GLOBAL _tzname
267 #endif
268
269 #if defined(WIN32) || defined(__CYGWIN__)
270 /*
271  *      Win32 doesn't have reliable rename/unlink during concurrent access.
272  */
273 extern int      pgrename(const char *from, const char *to);
274 extern int      pgunlink(const char *path);
275
276 /* Include this first so later includes don't see these defines */
277 #ifdef WIN32_ONLY_COMPILER
278 #include <io.h>
279 #endif
280
281 #define rename(from, to)                pgrename(from, to)
282 #define unlink(path)                    pgunlink(path)
283 #endif   /* defined(WIN32) || defined(__CYGWIN__) */
284
285 /*
286  *      Win32 also doesn't have symlinks, but we can emulate them with
287  *      junction points on newer Win32 versions.
288  *
289  *      Cygwin has its own symlinks which work on Win95/98/ME where
290  *      junction points don't, so use those instead.  We have no way of
291  *      knowing what type of system Cygwin binaries will be run on.
292  *              Note: Some CYGWIN includes might #define WIN32.
293  */
294 #if defined(WIN32) && !defined(__CYGWIN__)
295 extern int      pgsymlink(const char *oldpath, const char *newpath);
296 extern int      pgreadlink(const char *path, char *buf, size_t size);
297 extern bool pgwin32_is_junction(char *path);
298
299 #define symlink(oldpath, newpath)       pgsymlink(oldpath, newpath)
300 #define readlink(path, buf, size)       pgreadlink(path, buf, size)
301 #endif
302
303 extern bool rmtree(const char *path, bool rmtopdir);
304
305 /*
306  * stat() is not guaranteed to set the st_size field on win32, so we
307  * redefine it to our own implementation that is.
308  *
309  * We must pull in sys/stat.h here so the system header definition
310  * goes in first, and we redefine that, and not the other way around.
311  *
312  * Some frontends don't need the size from stat, so if UNSAFE_STAT_OK
313  * is defined we don't bother with this.
314  */
315 #if defined(WIN32) && !defined(__CYGWIN__) && !defined(UNSAFE_STAT_OK)
316 #include <sys/stat.h>
317 extern int      pgwin32_safestat(const char *path, struct stat * buf);
318
319 #define stat(a,b) pgwin32_safestat(a,b)
320 #endif
321
322 #if defined(WIN32) && !defined(__CYGWIN__)
323
324 /*
325  * open() and fopen() replacements to allow deletion of open files and
326  * passing of other special options.
327  */
328 #define         O_DIRECT        0x80000000
329 extern int      pgwin32_open(const char *, int,...);
330 extern FILE *pgwin32_fopen(const char *, const char *);
331
332 #ifndef FRONTEND
333 #define         open(a,b,c) pgwin32_open(a,b,c)
334 #define         fopen(a,b) pgwin32_fopen(a,b)
335 #endif
336
337 #ifndef popen
338 #define popen(a,b) _popen(a,b)
339 #endif
340 #ifndef pclose
341 #define pclose(a) _pclose(a)
342 #endif
343
344 /* New versions of MingW have gettimeofday, old mingw and msvc don't */
345 #ifndef HAVE_GETTIMEOFDAY
346 /* Last parameter not used */
347 extern int      gettimeofday(struct timeval * tp, struct timezone * tzp);
348 #endif
349 #else                                                   /* !WIN32 */
350
351 /*
352  *      Win32 requires a special close for sockets and pipes, while on Unix
353  *      close() does them all.
354  */
355 #define closesocket close
356 #endif   /* WIN32 */
357
358 /*
359  * Default "extern" declarations or macro substitutes for library routines.
360  * When necessary, these routines are provided by files in src/port/.
361  */
362 #ifndef HAVE_CRYPT
363 extern char *crypt(const char *key, const char *setting);
364 #endif
365
366 /* WIN32 handled in port/win32.h */
367 #ifndef WIN32
368 #define pgoff_t off_t
369 #ifdef __NetBSD__
370 extern int      fseeko(FILE *stream, off_t offset, int whence);
371 extern off_t ftello(FILE *stream);
372 #endif
373 #endif
374
375 extern double pg_erand48(unsigned short xseed[3]);
376 extern long pg_lrand48(void);
377 extern void pg_srand48(long seed);
378
379 #ifndef HAVE_FLS
380 extern int      fls(int mask);
381 #endif
382
383 #ifndef HAVE_FSEEKO
384 #define fseeko(a, b, c) fseek(a, b, c)
385 #define ftello(a)               ftell(a)
386 #endif
387
388 #ifndef HAVE_GETOPT
389 extern int      getopt(int nargc, char *const * nargv, const char *ostr);
390 #endif
391
392 #if !defined(HAVE_GETPEEREID) && !defined(WIN32)
393 extern int      getpeereid(int sock, uid_t *uid, gid_t *gid);
394 #endif
395
396 #ifndef HAVE_ISINF
397 extern int      isinf(double x);
398 #endif
399
400 #ifndef HAVE_RINT
401 extern double rint(double x);
402 #endif
403
404 #ifndef HAVE_INET_ATON
405 #include <netinet/in.h>
406 #include <arpa/inet.h>
407 extern int      inet_aton(const char *cp, struct in_addr * addr);
408 #endif
409
410 #if !HAVE_DECL_STRLCAT
411 extern size_t strlcat(char *dst, const char *src, size_t siz);
412 #endif
413
414 #if !HAVE_DECL_STRLCPY
415 extern size_t strlcpy(char *dst, const char *src, size_t siz);
416 #endif
417
418 #if !defined(HAVE_RANDOM) && !defined(__BORLANDC__)
419 extern long random(void);
420 #endif
421
422 #ifndef HAVE_UNSETENV
423 extern void unsetenv(const char *name);
424 #endif
425
426 #ifndef HAVE_SRANDOM
427 extern void srandom(unsigned int seed);
428 #endif
429
430 /* thread.h */
431 extern char *pqStrerror(int errnum, char *strerrbuf, size_t buflen);
432
433 #if !defined(WIN32) || defined(__CYGWIN__)
434 extern int pqGetpwuid(uid_t uid, struct passwd * resultbuf, char *buffer,
435                    size_t buflen, struct passwd ** result);
436 #endif
437
438 extern int pqGethostbyname(const char *name,
439                                 struct hostent * resultbuf,
440                                 char *buffer, size_t buflen,
441                                 struct hostent ** result,
442                                 int *herrno);
443
444 extern void pg_qsort(void *base, size_t nel, size_t elsize,
445                  int (*cmp) (const void *, const void *));
446 extern int pg_qsort_strcmp(const void *a, const void *b);
447
448 #define qsort(a,b,c,d) pg_qsort(a,b,c,d)
449
450 typedef int (*qsort_arg_comparator) (const void *a, const void *b, void *arg);
451
452 extern void qsort_arg(void *base, size_t nel, size_t elsize,
453                   qsort_arg_comparator cmp, void *arg);
454
455 /* port/chklocale.c */
456 extern int      pg_get_encoding_from_locale(const char *ctype, bool write_message);
457
458 /* port/inet_net_ntop.c */
459 extern char *inet_net_ntop(int af, const void *src, int bits,
460                           char *dst, size_t size);
461
462 /* port/pgcheckdir.c */
463 extern int      pg_check_dir(const char *dir);
464
465 /* port/pgmkdirp.c */
466 extern int      pg_mkdir_p(char *path, int omode);
467
468 #endif   /* PG_PORT_H */