Imported Upstream version 1.11
[platform/upstream/gdbm.git] / src / systems.h
1 /* systems.h - Most of the system dependant code and defines are here. */
2
3 /* This file is part of GDBM, the GNU data base manager.
4    Copyright (C) 1990, 1991, 1993, 2007, 2011, 2013 Free Software Foundation,
5    Inc.
6
7    GDBM is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3, or (at your option)
10    any later version.
11
12    GDBM is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GDBM. If not, see <http://www.gnu.org/licenses/>.    */
19
20 /* Include all system headers first. */
21 #include <sys/types.h>
22 #include <stdio.h>
23 #if HAVE_SYS_FILE_H
24 # include <sys/file.h>
25 #endif
26 #include <sys/stat.h>
27 #include <stdlib.h>
28 #if HAVE_STRING_H
29 # include <string.h>
30 #else
31 # include <strings.h>
32 #endif
33 #include <unistd.h>
34 #include <fcntl.h>
35 #include <errno.h>
36
37 #ifndef SEEK_SET
38 # define SEEK_SET        0
39 #endif
40
41 #ifndef O_CLOEXEC
42 # define O_CLOEXEC 0
43 #endif
44
45 /* Default block size.  Some systems do not have blocksize in their
46    stat record. This code uses the BSD blocksize from stat. */
47
48 #if HAVE_STRUCT_STAT_ST_BLKSIZE
49 # define STATBLKSIZE file_stat.st_blksize
50 #else
51 # define STATBLKSIZE 1024
52 #endif
53
54 /* Do we have ftruncate? */
55 #if HAVE_FTRUNCATE
56 # define TRUNCATE(dbf) ftruncate (dbf->desc, 0)
57 #else
58 # define TRUNCATE(dbf) close( open (dbf->name, O_RDWR|O_TRUNC, mode));
59 #endif
60
61 #ifndef STDERR_FILENO
62 # define STDERR_FILENO 2
63 #endif
64
65 /* I/O macros. */
66 #if HAVE_MMAP
67 # define __read(_dbf, _buf, _size)      _gdbm_mapped_read(_dbf, _buf, _size)
68 # define __write(_dbf, _buf, _size)     _gdbm_mapped_write(_dbf, _buf, _size)
69 # define __lseek(_dbf, _off, _whn)      _gdbm_mapped_lseek(_dbf, _off, _whn)
70 # define __fsync(_dbf)                  _gdbm_mapped_sync(_dbf)
71 #else
72 # define __read(_dbf, _buf, _size)      read(_dbf->desc, _buf, _size)
73 # define __write(_dbf, _buf, _size)     write(_dbf->desc, _buf, _size)
74 # define __lseek(_dbf, _off, _whn)      lseek(_dbf->desc, _off, _whn)
75 # if HAVE_FSYNC
76 #  define __fsync(_dbf)                 fsync(_dbf->desc)
77 # else
78 #  define __fsync(_dbf)                 { sync(); sync(); }
79 # endif
80 #endif
81