00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045 #include "db_config.h"
00046
00047 #ifndef NO_SYSTEM_INCLUDES
00048 #include <sys/types.h>
00049
00050 #include <string.h>
00051 #endif
00052
00053 #define DB_DBM_HSEARCH 1
00054 #include "db_int.h"
00055
00056 static DB *dbp;
00057 static ENTRY retval;
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071 int
00072 __db_hcreate(nel)
00073 size_t nel;
00074 {
00075 int ret;
00076
00077 if ((ret = db_create(&dbp, NULL, 0)) != 0) {
00078 __os_set_errno(ret);
00079 return (1);
00080 }
00081
00082 if ((ret = dbp->set_pagesize(dbp, 512)) != 0 ||
00083 (ret = dbp->set_h_ffactor(dbp, 16)) != 0 ||
00084 (ret = dbp->set_h_nelem(dbp, (u_int32_t)nel)) != 0 ||
00085 (ret = dbp->open(dbp, NULL,
00086 NULL, NULL, DB_HASH, DB_CREATE, __db_omode(OWNER_RW))) != 0)
00087 __os_set_errno(ret);
00088
00089
00090
00091
00092
00093 return (ret == 0 ? 1 : 0);
00094 }
00095
00096 ENTRY *
00097 __db_hsearch(item, action)
00098 ENTRY item;
00099 ACTION action;
00100 {
00101 DBT key, val;
00102 int ret;
00103
00104 if (dbp == NULL) {
00105 __os_set_errno(EINVAL);
00106 return (NULL);
00107 }
00108 memset(&key, 0, sizeof(key));
00109 memset(&val, 0, sizeof(val));
00110 key.data = item.key;
00111 key.size = (u_int32_t)strlen(item.key) + 1;
00112
00113 switch (action) {
00114 case ENTER:
00115 val.data = item.data;
00116 val.size = (u_int32_t)strlen(item.data) + 1;
00117
00118
00119
00120
00121
00122 if ((ret =
00123 dbp->put(dbp, NULL, &key, &val, DB_NOOVERWRITE)) == 0)
00124 break;
00125 if (ret == DB_KEYEXIST &&
00126 (ret = dbp->get(dbp, NULL, &key, &val, 0)) == 0)
00127 break;
00128
00129
00130
00131
00132 __os_set_errno(ret > 0 ? ret : EINVAL);
00133 return (NULL);
00134 case FIND:
00135 if ((ret = dbp->get(dbp, NULL, &key, &val, 0)) != 0) {
00136 if (ret != DB_NOTFOUND)
00137 __os_set_errno(ret);
00138 return (NULL);
00139 }
00140 item.data = (char *)val.data;
00141 break;
00142 default:
00143 __os_set_errno(EINVAL);
00144 return (NULL);
00145 }
00146 retval.key = item.key;
00147 retval.data = item.data;
00148 return (&retval);
00149 }
00150
00151 void
00152 __db_hdestroy()
00153 {
00154 if (dbp != NULL) {
00155 (void)dbp->close(dbp, 0);
00156 dbp = NULL;
00157 }
00158 }