24349cda468c8b9ce43c0d3cd30b5337ceb1d0c2
[dragonfly.git] / lib / libc / db / test / hash.tests / driver2.c
1 /*-
2  * Copyright (c) 1991, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Margo Seltzer.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    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.
16  * 3. Neither the name of the University nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  *
32  * @(#) Copyright (c) 1991, 1993 The Regents of the University of California.  All rights reserved.
33  * @(#)driver2.c        8.1 (Berkeley) 6/4/93
34  * $DragonFly: src/lib/libc/db/test/hash.tests/driver2.c,v 1.4 2005/11/12 23:01:55 swildner Exp $
35  */
36
37 /*
38  * Test driver, to try to tackle the large ugly-split problem.
39  */
40
41 #include <sys/file.h>
42 #include <stdio.h>
43 #include "ndbm.h"
44
45 int
46 my_hash(char *key, int len)
47 {
48         return(17);             /* So I'm cruel... */
49 }
50
51 int
52 main(int argc, char *argv[])
53 {
54         DB      *db;
55         DBT     key, content;
56         char    keybuf[2049];
57         char    contentbuf[2049];
58         char    buf[256];
59         int     i;
60         HASHINFO        info;
61
62         info.bsize = 1024;
63         info.ffactor = 5;
64         info.nelem = 1;
65         info.cachesize = NULL;
66 #ifdef HASH_ID_PROGRAM_SPECIFIED
67         info.hash_id = HASH_ID_PROGRAM_SPECIFIED;
68         info.hash_func = my_hash;
69 #else
70         info.hash = my_hash;
71 #endif
72         info.lorder = 0;
73         if (!(db = dbopen("bigtest", O_RDWR | O_CREAT, 0644, DB_HASH, &info))) {
74                 sprintf(buf, "dbopen: failed on file bigtest");
75                 perror(buf);
76                 exit(1);
77         }
78         srandom(17);
79         key.data = keybuf;
80         content.data = contentbuf;
81         bzero(keybuf, sizeof(keybuf));
82         bzero(contentbuf, sizeof(contentbuf));
83         for (i=1; i <= 500; i++) {
84                 key.size = 128 + (random()&1023);
85                 content.size = 128 + (random()&1023);
86 /*              printf("%d: Key size %d, data size %d\n", i, key.size,
87                        content.size); */
88                 sprintf(keybuf, "Key #%d", i);
89                 sprintf(contentbuf, "Contents #%d", i);
90                 if ((db->put)(db, &key, &content, R_NOOVERWRITE)) {
91                         sprintf(buf, "dbm_store #%d", i);
92                         perror(buf);
93                 }
94         }
95         if ((db->close)(db)) {
96                 perror("closing hash file");
97                 exit(1);
98         }
99         exit(0);
100 }
101
102
103