[PATCH 5.004_60] Fix to MM_VMS.PM
[p5sagit/p5-mst-13.2.git] / ext / SDBM_File / sdbm / sdbm.h
1 /*
2  * sdbm - ndbm work-alike hashed database library
3  * based on Per-Ake Larson's Dynamic Hashing algorithms. BIT 18 (1978).
4  * author: oz@nexus.yorku.ca
5  * status: public domain. 
6  */
7 #define DBLKSIZ 4096
8 #define PBLKSIZ 1024
9 #define PAIRMAX 1008                    /* arbitrary on PBLKSIZ-N */
10 #define SPLTMAX 10                      /* maximum allowed splits */
11                                         /* for a single insertion */
12 #ifdef VMS
13 #define DIRFEXT ".sdbm_dir"
14 #else
15 #define DIRFEXT ".dir"
16 #endif
17 #define PAGFEXT ".pag"
18
19 typedef struct {
20         int dirf;                      /* directory file descriptor */
21         int pagf;                      /* page file descriptor */
22         int flags;                     /* status/error flags, see below */
23         long maxbno;                   /* size of dirfile in bits */
24         long curbit;                   /* current bit number */
25         long hmask;                    /* current hash mask */
26         long blkptr;                   /* current block for nextkey */
27         int keyptr;                    /* current key for nextkey */
28         long blkno;                    /* current page to read/write */
29         long pagbno;                   /* current page in pagbuf */
30         char pagbuf[PBLKSIZ];          /* page file block buffer */
31         long dirbno;                   /* current block in dirbuf */
32         char dirbuf[DBLKSIZ];          /* directory file block buffer */
33 } DBM;
34
35 #define DBM_RDONLY      0x1            /* data base open read-only */
36 #define DBM_IOERR       0x2            /* data base I/O error */
37
38 /*
39  * utility macros
40  */
41 #define sdbm_rdonly(db)         ((db)->flags & DBM_RDONLY)
42 #define sdbm_error(db)          ((db)->flags & DBM_IOERR)
43
44 #define sdbm_clearerr(db)       ((db)->flags &= ~DBM_IOERR)  /* ouch */
45
46 #define sdbm_dirfno(db) ((db)->dirf)
47 #define sdbm_pagfno(db) ((db)->pagf)
48
49 typedef struct {
50         char *dptr;
51         int dsize;
52 } datum;
53
54 extern datum nullitem;
55
56 #if defined(__STDC__) || defined(__cplusplus) || defined(CAN_PROTOTYPE)
57 #define proto(p) p
58 #else
59 #define proto(p) ()
60 #endif
61
62 /*
63  * flags to sdbm_store
64  */
65 #define DBM_INSERT      0
66 #define DBM_REPLACE     1
67
68 /*
69  * ndbm interface
70  */
71 extern DBM *sdbm_open proto((char *, int, int));
72 extern void sdbm_close proto((DBM *));
73 extern datum sdbm_fetch proto((DBM *, datum));
74 extern int sdbm_delete proto((DBM *, datum));
75 extern int sdbm_store proto((DBM *, datum, datum, int));
76 extern datum sdbm_firstkey proto((DBM *));
77 extern datum sdbm_nextkey proto((DBM *));
78
79 /*
80  * other
81  */
82 extern DBM *sdbm_prep proto((char *, char *, int, int));
83 extern long sdbm_hash proto((char *, int));
84
85 #ifndef SDBM_ONLY
86 #define dbm_open sdbm_open
87 #define dbm_close sdbm_close
88 #define dbm_fetch sdbm_fetch
89 #define dbm_store sdbm_store
90 #define dbm_delete sdbm_delete
91 #define dbm_firstkey sdbm_firstkey
92 #define dbm_nextkey sdbm_nextkey
93 #define dbm_error sdbm_error
94 #define dbm_clearerr sdbm_clearerr
95 #endif
96
97 /* Most of the following is stolen from perl.h. */
98 #ifndef H_PERL  /* Include guard */
99
100 /*
101  * The following contortions are brought to you on behalf of all the
102  * standards, semi-standards, de facto standards, not-so-de-facto standards
103  * of the world, as well as all the other botches anyone ever thought of.
104  * The basic theory is that if we work hard enough here, the rest of the
105  * code can be a lot prettier.  Well, so much for theory.  Sorry, Henry...
106  */
107
108 #include <errno.h>
109 #ifdef HAS_SOCKET
110 #   ifdef I_NET_ERRNO
111 #     include <net/errno.h>
112 #   endif
113 #endif
114
115 #if defined(__STDC__) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus)
116 # define STANDARD_C 1
117 #endif
118
119 #include <stdio.h>
120 #include <ctype.h>
121 #include <setjmp.h>
122
123 #if defined(I_UNISTD) || defined(VMS)
124 #include <unistd.h>
125 #endif
126
127 #ifdef VMS
128 # include <fcntl.h>
129 #endif
130
131 #if !defined(MSDOS) && !defined(WIN32) && !defined(VMS)
132 #   ifdef PARAM_NEEDS_TYPES
133 #       include <sys/types.h>
134 #   endif
135 #   include <sys/param.h>
136 #endif
137
138 #ifndef _TYPES_         /* If types.h defines this it's easy. */
139 #   ifndef major                /* Does everyone's types.h define this? */
140 #       include <sys/types.h>
141 #   endif
142 #endif
143
144 #include <sys/stat.h>
145
146 #ifndef SEEK_SET
147 # ifdef L_SET
148 #  define SEEK_SET      L_SET
149 # else
150 #  define SEEK_SET      0  /* Wild guess. */
151 # endif
152 #endif
153
154 /* Use all the "standard" definitions? */
155 #if defined(STANDARD_C) && defined(I_STDLIB)
156 #   include <stdlib.h>
157 #endif /* STANDARD_C */
158
159 #define MEM_SIZE Size_t
160
161 /* This comes after <stdlib.h> so we don't try to change the standard
162  * library prototypes; we'll use our own instead. */
163
164 #if defined(MYMALLOC) && (defined(HIDEMYMALLOC) || defined(EMBEDMYMALLOC))
165
166 #   ifdef HIDEMYMALLOC
167 #       define malloc  Mymalloc
168 #       define calloc  Mycalloc
169 #       define realloc Myremalloc
170 #       define free    Myfree
171 #   endif
172 #   ifdef EMBEDMYMALLOC
173 #       define malloc  Perl_malloc
174 #       define calloc  Perl_calloc
175 #       define realloc Perl_realloc
176 #       define free    Perl_free
177 #   endif
178
179     Malloc_t malloc proto((MEM_SIZE nbytes));
180     Malloc_t calloc proto((MEM_SIZE elements, MEM_SIZE size));
181     Malloc_t realloc proto((Malloc_t where, MEM_SIZE nbytes));
182     Free_t   free proto((Malloc_t where));
183
184 #endif /* MYMALLOC && (HIDEMYMALLOC || EMBEDMYMALLOC) */
185
186 #ifdef I_STRING
187 #include <string.h>
188 #else
189 #include <strings.h>
190 #endif
191
192 #ifdef I_MEMORY
193 #include <memory.h>
194 #endif      
195
196 #ifdef __cplusplus
197 #define HAS_MEMCPY
198 #endif
199
200 #ifdef HAS_MEMCPY
201 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
202 #    ifndef memcpy
203         extern char * memcpy proto((char*, char*, int));
204 #    endif
205 #  endif
206 #else
207 #   ifndef memcpy
208 #       ifdef HAS_BCOPY
209 #           define memcpy(d,s,l) bcopy(s,d,l)
210 #       else
211 #           define memcpy(d,s,l) my_bcopy(s,d,l)
212 #       endif
213 #   endif
214 #endif /* HAS_MEMCPY */
215
216 #ifdef HAS_MEMSET
217 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
218 #    ifndef memset
219         extern char *memset proto((char*, int, int));
220 #    endif
221 #  endif
222 #  define memzero(d,l) memset(d,0,l)
223 #else
224 #   ifndef memzero
225 #       ifdef HAS_BZERO
226 #           define memzero(d,l) bzero(d,l)
227 #       else
228 #           define memzero(d,l) my_bzero(d,l)
229 #       endif
230 #   endif
231 #endif /* HAS_MEMSET */
232
233 #if defined(mips) && defined(ultrix) && !defined(__STDC__)
234 #   undef HAS_MEMCMP
235 #endif
236
237 #if defined(HAS_MEMCMP) && defined(HAS_SANE_MEMCMP)
238 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
239 #    ifndef memcmp
240         extern int memcmp proto((char*, char*, int));
241 #    endif
242 #  endif
243 #  ifdef BUGGY_MSC
244   #  pragma function(memcmp)
245 #  endif
246 #else
247 #   ifndef memcmp
248         /* maybe we should have included the full embedding header... */
249 #       ifdef NO_EMBED
250 #           define memcmp my_memcmp
251 #       else
252 #           define memcmp Perl_my_memcmp
253 #       endif
254 #ifndef __cplusplus
255         extern int memcmp proto((char*, char*, int));
256 #endif
257 #   endif
258 #endif /* HAS_MEMCMP */
259
260 #ifndef HAS_BCMP
261 #   ifndef bcmp
262 #       define bcmp(s1,s2,l) memcmp(s1,s2,l)
263 #   endif
264 #endif /* !HAS_BCMP */
265
266 #ifdef HAS_MEMCMP
267 #  define memNE(s1,s2,l) (memcmp(s1,s2,l))
268 #  define memEQ(s1,s2,l) (!memcmp(s1,s2,l))
269 #else
270 #  define memNE(s1,s2,l) (bcmp(s1,s2,l))
271 #  define memEQ(s1,s2,l) (!bcmp(s1,s2,l))
272 #endif
273
274 #ifdef I_NETINET_IN
275 #  ifdef VMS
276 #    include <in.h>
277 #  else
278 #    include <netinet/in.h>
279 #  endif
280 #endif
281
282 #endif /* Include guard */
283