xref: /dragonfly/lib/libc/db/test/hash.tests/driver2.c (revision e3146d3a)
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.3 2005/09/19 09:20:38 asmodai 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 my_hash(key, len)
46 	char	*key;
47 	int	len;
48 {
49 	return(17);		/* So I'm cruel... */
50 }
51 
52 main(argc, argv)
53 	int	argc;
54 {
55 	DB	*db;
56 	DBT	key, content;
57 	char	keybuf[2049];
58 	char	contentbuf[2049];
59 	char	buf[256];
60 	int	i;
61 	HASHINFO	info;
62 
63 	info.bsize = 1024;
64 	info.ffactor = 5;
65 	info.nelem = 1;
66 	info.cachesize = NULL;
67 #ifdef HASH_ID_PROGRAM_SPECIFIED
68 	info.hash_id = HASH_ID_PROGRAM_SPECIFIED;
69 	info.hash_func = my_hash;
70 #else
71 	info.hash = my_hash;
72 #endif
73 	info.lorder = 0;
74 	if (!(db = dbopen("bigtest", O_RDWR | O_CREAT, 0644, DB_HASH, &info))) {
75 		sprintf(buf, "dbopen: failed on file bigtest");
76 		perror(buf);
77 		exit(1);
78 	}
79 	srandom(17);
80 	key.data = keybuf;
81 	content.data = contentbuf;
82 	bzero(keybuf, sizeof(keybuf));
83 	bzero(contentbuf, sizeof(contentbuf));
84 	for (i=1; i <= 500; i++) {
85 		key.size = 128 + (random()&1023);
86 		content.size = 128 + (random()&1023);
87 /*		printf("%d: Key size %d, data size %d\n", i, key.size,
88 		       content.size); */
89 		sprintf(keybuf, "Key #%d", i);
90 		sprintf(contentbuf, "Contents #%d", i);
91 		if ((db->put)(db, &key, &content, R_NOOVERWRITE)) {
92 			sprintf(buf, "dbm_store #%d", i);
93 			perror(buf);
94 		}
95 	}
96 	if ((db->close)(db)) {
97 		perror("closing hash file");
98 		exit(1);
99 	}
100 	exit(0);
101 }
102 
103 
104 
105