2 * Copyright (c) 2002 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 #include "ndbm_wrap.h"
37 #if defined(HAVE_DB4_DB_H)
39 #elif defined(HAVE_DB3_DB_H)
50 /* XXX undefine open so this works on Solaris with large file support */
53 #define DBT2DATUM(DBT, DATUM) do { (DATUM)->dptr = (DBT)->data; (DATUM)->dsize = (DBT)->size; } while(0)
54 #define DATUM2DBT(DATUM, DBT) do { (DBT)->data = (DATUM)->dptr; (DBT)->size = (DATUM)->dsize; } while(0)
55 #define RETURN(X) return ((X) == 0) ? 0 : -1
61 #define D(X) ((DB*)(X))
63 void ROKEN_LIB_FUNCTION
67 D(db
)->close(D(db
), 0);
74 int ROKEN_LIB_FUNCTION
75 dbm_delete (DBM
*db
, datum dkey
)
78 DATUM2DBT(&dkey
, &key
);
80 RETURN(D(db
)->del(D(db
), NULL
, &key
, 0));
82 RETURN(D(db
)->del(D(db
), &key
, 0));
87 dbm_fetch (DBM
*db
, datum dkey
)
91 DATUM2DBT(&dkey
, &key
);
96 &key
, &value
, 0) != 0) {
101 DBT2DATUM(&value
, &dvalue
);
107 dbm_get (DB
*db
, int flags
)
113 db
->cursor(db
, NULL
, &cursor
, 0);
114 if(cursor
->c_get(cursor
, &key
, &value
, flags
) != 0) {
118 DBT2DATUM(&value
, &datum
);
120 db
->seq(db
, &key
, &value
, flags
);
126 #define DB_FIRST R_FIRST
127 #define DB_NEXT R_NEXT
128 #define DB_NOOVERWRITE R_NOOVERWRITE
129 #define DB_KEYEXIST 1
132 datum ROKEN_LIB_FUNCTION
133 dbm_firstkey (DBM
*db
)
135 return dbm_get(D(db
), DB_FIRST
);
138 datum ROKEN_LIB_FUNCTION
139 dbm_nextkey (DBM
*db
)
141 return dbm_get(D(db
), DB_NEXT
);
144 DBM
* ROKEN_LIB_FUNCTION
145 dbm_open (const char *file
, int flags
, mode_t mode
)
149 char *fn
= malloc(strlen(file
) + 4);
156 myflags
|= DB_CREATE
;
161 if (flags
& O_RDONLY
)
162 myflags
|= DB_RDONLY
;
165 myflags
|= DB_TRUNCATE
;
166 if(db_create(&db
, NULL
, 0) != 0) {
171 #if (DB_VERSION_MAJOR > 3) && (DB_VERSION_MINOR > 0)
172 if(db
->open(db
, NULL
, fn
, NULL
, DB_BTREE
, myflags
, mode
) != 0) {
174 if(db
->open(db
, fn
, NULL
, DB_BTREE
, myflags
, mode
) != 0) {
181 db
= dbopen(fn
, flags
, mode
, DB_BTREE
, NULL
);
187 int ROKEN_LIB_FUNCTION
188 dbm_store (DBM
*db
, datum dkey
, datum dvalue
, int flags
)
193 if((flags
& DBM_REPLACE
) == 0)
194 myflags
|= DB_NOOVERWRITE
;
195 DATUM2DBT(&dkey
, &key
);
196 DATUM2DBT(&dvalue
, &value
);
197 ret
= D(db
)->put(D(db
),
201 &key
, &value
, myflags
);
202 if(ret
== DB_KEYEXIST
)
207 int ROKEN_LIB_FUNCTION
213 int ROKEN_LIB_FUNCTION
214 dbm_clearerr (DBM
*db
)