491 lines
11 KiB
C
491 lines
11 KiB
C
/* $NetBSD: db.c,v 1.7 2003/01/05 13:07:38 seb Exp $ */
|
|
|
|
/*-
|
|
* Copyright (c) 2002 The NetBSD Foundation, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
* by Luke Mewburn of Wasabi Systems.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
* must display the following acknowledgement:
|
|
* This product includes software developed by the NetBSD
|
|
* Foundation, Inc. and its contributors.
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
* contributors may be used to endorse or promote products derived
|
|
* from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
#ifndef lint
|
|
__RCSID("$NetBSD: db.c,v 1.7 2003/01/05 13:07:38 seb Exp $");
|
|
#endif /* not lint */
|
|
|
|
#include <db.h>
|
|
#include <ctype.h>
|
|
#include <err.h>
|
|
#include <fcntl.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
|
|
/*
|
|
* TODO --
|
|
* - add option to strunvis(3) key (& value) from infile ?
|
|
*/
|
|
|
|
typedef enum {
|
|
F_WRITE = 1<<0,
|
|
F_DELETE = 1<<1,
|
|
F_SHOW_KEY = 1<<2,
|
|
F_SHOW_VALUE = 1<<3,
|
|
F_QUIET = 1<<10,
|
|
F_IGNORECASE = 1<<11,
|
|
F_ENDIAN_BIG = 1<<12,
|
|
F_ENDIAN_LITTLE = 1<<13,
|
|
F_NO_NUL = 1<<14,
|
|
F_CREATENEW = 1<<20,
|
|
F_DUPLICATES = 1<<21,
|
|
F_REPLACE = 1<<22,
|
|
} flags_t;
|
|
|
|
int main(int, char *[]);
|
|
void db_print(DBT *, DBT *);
|
|
int db_dump(void);
|
|
int db_del(char *);
|
|
int db_get(char *);
|
|
int db_put(char *, char *);
|
|
int parseline(FILE *, const char *, char **, char **);
|
|
void usage(void);
|
|
|
|
flags_t flags;
|
|
DB *db;
|
|
char *outputsep = "\t";
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
struct {
|
|
char *file;
|
|
char *type;
|
|
DBTYPE dbtype;
|
|
void *info;
|
|
int flags;
|
|
mode_t mode;
|
|
} oi;
|
|
BTREEINFO btreeinfo;
|
|
HASHINFO hashinfo;
|
|
FILE *infp;
|
|
const char *infile, *fieldsep;
|
|
char *p, *key, *val;
|
|
int ch, rv;
|
|
|
|
setprogname(argv[0]);
|
|
|
|
flags = 0;
|
|
infile = NULL;
|
|
fieldsep = " ";
|
|
infp = NULL;
|
|
memset(&oi, 0, sizeof(oi));
|
|
oi.mode = 0644;
|
|
|
|
/* parse arguments */
|
|
while ( (ch = getopt(argc, argv, "CDdE:F:f:iKm:NO:qRVw")) != -1) {
|
|
switch (ch) {
|
|
|
|
case 'C':
|
|
flags |= F_CREATENEW;
|
|
break;
|
|
|
|
case 'D':
|
|
flags |= F_DUPLICATES;
|
|
break;
|
|
|
|
case 'd':
|
|
flags |= F_DELETE;
|
|
break;
|
|
|
|
case 'E':
|
|
if (! optarg[0] || optarg[1])
|
|
goto badendian;
|
|
switch (toupper((int)optarg[0])) {
|
|
case 'B':
|
|
flags |= F_ENDIAN_BIG;
|
|
break;
|
|
case 'L':
|
|
flags |= F_ENDIAN_LITTLE;
|
|
break;
|
|
case 'H':
|
|
flags &= ~(F_ENDIAN_BIG | F_ENDIAN_LITTLE);
|
|
break;
|
|
default:
|
|
badendian:
|
|
errx(1, "Bad endian `%s'", optarg);
|
|
}
|
|
break;
|
|
|
|
case 'F':
|
|
if (! optarg[0] || optarg[1])
|
|
errx(1, "Invalid field separator `%s'",
|
|
optarg);
|
|
fieldsep = optarg;
|
|
break;
|
|
|
|
case 'f':
|
|
infile = optarg;
|
|
break;
|
|
|
|
case 'i':
|
|
flags |= F_IGNORECASE;
|
|
break;
|
|
|
|
case 'K':
|
|
flags |= F_SHOW_KEY;
|
|
break;
|
|
|
|
case 'm':
|
|
oi.mode = (int)strtol(optarg, &p, 8);
|
|
if (p == optarg || *p != '\0')
|
|
errx(1, "Invalid octal number `%s'", optarg);
|
|
break;
|
|
|
|
case 'N':
|
|
flags |= F_NO_NUL;
|
|
break;
|
|
|
|
case 'O':
|
|
outputsep = optarg;
|
|
break;
|
|
|
|
case 'q':
|
|
flags |= F_QUIET;
|
|
break;
|
|
|
|
case 'R':
|
|
flags |= F_REPLACE;
|
|
break;
|
|
|
|
case 'V':
|
|
flags |= F_SHOW_VALUE;
|
|
break;
|
|
|
|
case 'w':
|
|
flags |= F_WRITE;
|
|
break;
|
|
|
|
default:
|
|
usage();
|
|
|
|
}
|
|
}
|
|
argc -= optind;
|
|
argv += optind;
|
|
|
|
/* validate arguments */
|
|
if (argc < 2)
|
|
usage();
|
|
oi.type = argv[0];
|
|
oi.file = argv[1];
|
|
argc -= 2;
|
|
argv += 2;
|
|
|
|
if (flags & F_WRITE) {
|
|
if (flags & (F_SHOW_KEY | F_SHOW_VALUE | F_DELETE))
|
|
usage();
|
|
if ((!infile && argc < 2) || (argc % 2))
|
|
usage();
|
|
oi.flags = O_RDWR | O_CREAT | O_EXLOCK;
|
|
if (flags & F_CREATENEW)
|
|
flags |= O_TRUNC;
|
|
} else if (flags & F_DELETE) {
|
|
if (flags & (F_SHOW_KEY | F_SHOW_VALUE | F_WRITE))
|
|
usage();
|
|
if (!infile && argc < 1)
|
|
usage();
|
|
oi.flags = O_RDWR | O_CREAT | O_EXLOCK;
|
|
} else {
|
|
if (! (flags & (F_SHOW_KEY | F_SHOW_VALUE)))
|
|
flags |= (F_SHOW_KEY | F_SHOW_VALUE);
|
|
oi.flags = O_RDONLY | O_SHLOCK;
|
|
}
|
|
|
|
/* validate oi.type */
|
|
if (strcmp(oi.type, "btree") == 0) {
|
|
memset(&btreeinfo, 0, sizeof(btreeinfo));
|
|
if (flags & F_ENDIAN_BIG)
|
|
btreeinfo.lorder = 4321;
|
|
else if (flags & F_ENDIAN_LITTLE)
|
|
btreeinfo.lorder = 1234;
|
|
if (flags & F_DUPLICATES)
|
|
btreeinfo.flags = R_DUP;
|
|
btreeinfo.cachesize = 1024 * 1024;
|
|
oi.info = &btreeinfo;
|
|
oi.dbtype = DB_BTREE;
|
|
} else if (strcmp(oi.type, "hash") == 0) {
|
|
memset(&hashinfo, 0, sizeof(hashinfo));
|
|
if (flags & F_ENDIAN_BIG)
|
|
hashinfo.lorder = 4321;
|
|
else if (flags & F_ENDIAN_LITTLE)
|
|
hashinfo.lorder = 1234;
|
|
hashinfo.cachesize = 1024 * 1024;
|
|
oi.info = &hashinfo;
|
|
oi.dbtype = DB_HASH;
|
|
} else {
|
|
warnx("Unknown database type `%s'", oi.type);
|
|
usage();
|
|
}
|
|
|
|
if (infile) {
|
|
if (strcmp(infile, "-") == 0)
|
|
infp = stdin;
|
|
else if ((infp = fopen(infile, "r")) == NULL)
|
|
err(1, "Opening input file `%s'", infile);
|
|
}
|
|
|
|
/* open database */
|
|
db = dbopen(oi.file, oi.flags, oi.mode, oi.dbtype, oi.info);
|
|
if (db == NULL)
|
|
err(1, "Opening database `%s'", oi.file);
|
|
|
|
|
|
/* manipulate database */
|
|
rv = 0;
|
|
if (flags & F_WRITE) { /* write entries */
|
|
for (ch = 0; ch < argc; ch += 2)
|
|
if ((rv = db_put(argv[ch], argv[ch+1])))
|
|
goto cleanup;
|
|
if (infp) {
|
|
while (parseline(infp, fieldsep, &key, &val)) {
|
|
if ((rv = db_put(key, val)))
|
|
goto cleanup;
|
|
}
|
|
if (ferror(infp)) {
|
|
warnx("Reading `%s'", infile);
|
|
goto cleanup;
|
|
}
|
|
}
|
|
} else if (!infp && argc == 0) { /* read all */
|
|
db_dump();
|
|
} else { /* read/delete specific */
|
|
int (*dbop)(char *);
|
|
|
|
if (flags & F_DELETE)
|
|
dbop = db_del;
|
|
else
|
|
dbop = db_get;
|
|
for (ch = 0; ch < argc; ch++) {
|
|
if ((rv = dbop(argv[ch])))
|
|
goto cleanup;
|
|
}
|
|
if (infp) {
|
|
while (parseline(infp, fieldsep, &key, NULL)) {
|
|
if ((rv = dbop(key)))
|
|
goto cleanup;
|
|
}
|
|
if (ferror(infp)) {
|
|
warnx("Reading `%s'", infile);
|
|
goto cleanup;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* close database */
|
|
cleanup:
|
|
if (db->close(db) == -1)
|
|
err(1, "Closing database `%s'", oi.file);
|
|
if (infp)
|
|
fclose(infp);
|
|
return (rv);
|
|
}
|
|
|
|
void
|
|
db_print(DBT *key, DBT *val)
|
|
{
|
|
|
|
if (flags & F_SHOW_KEY)
|
|
printf("%.*s", (int)key->size, (char *)key->data);
|
|
if ((flags & F_SHOW_KEY) && (flags & F_SHOW_VALUE))
|
|
printf("%s", outputsep);
|
|
if (flags & F_SHOW_VALUE)
|
|
printf("%.*s", (int)val->size, (char *)val->data);
|
|
printf("\n");
|
|
}
|
|
|
|
int
|
|
db_dump(void)
|
|
{
|
|
DBT key, val;
|
|
int rv;
|
|
|
|
while ((rv = db->seq(db, &key, &val, R_NEXT)) == 0)
|
|
db_print(&key, &val);
|
|
if (rv == -1)
|
|
warn("Error dumping database");
|
|
return (rv == 1 ? 0 : 1);
|
|
}
|
|
|
|
static void
|
|
db_makekey(DBT *key, char *keystr, int downcase)
|
|
{
|
|
char *p;
|
|
|
|
memset(key, 0, sizeof(*key));
|
|
key->data = keystr;
|
|
key->size = strlen(keystr) + (flags & F_NO_NUL ? 0 : 1);
|
|
if (downcase && flags & F_IGNORECASE) {
|
|
for (p = keystr; *p; p++)
|
|
if (isupper((int)*p))
|
|
*p = tolower((int)*p);
|
|
}
|
|
}
|
|
|
|
int
|
|
db_del(char *keystr)
|
|
{
|
|
DBT key;
|
|
|
|
db_makekey(&key, keystr, 1);
|
|
switch (db->del(db, &key, 0)) {
|
|
case -1:
|
|
warn("Error deleting key `%s'", keystr);
|
|
return (1);
|
|
case 0:
|
|
if (! (flags & F_QUIET))
|
|
printf("Deleted key `%s'\n", keystr);
|
|
break;
|
|
case 1:
|
|
warnx("Key `%s' does not exist", keystr);
|
|
return (1);
|
|
}
|
|
return (0);
|
|
}
|
|
|
|
int
|
|
db_get(char *keystr)
|
|
{
|
|
DBT key, val;
|
|
|
|
db_makekey(&key, keystr, 1);
|
|
switch (db->get(db, &key, &val, 0)) {
|
|
case -1:
|
|
warn("Error reading key `%s'", keystr);
|
|
return (1);
|
|
case 0:
|
|
db_print(&key, &val);
|
|
break;
|
|
case 1:
|
|
if (! (flags & F_QUIET)) {
|
|
warnx("Unknown key `%s'", keystr);
|
|
return (1);
|
|
}
|
|
break;
|
|
}
|
|
return (0);
|
|
}
|
|
|
|
int
|
|
db_put(char *keystr, char *valstr)
|
|
{
|
|
DBT key, val;
|
|
|
|
db_makekey(&key, keystr, 1);
|
|
db_makekey(&val, valstr, 1);
|
|
switch (db->put(db, &key, &val,
|
|
(flags & F_REPLACE) ? 0 : R_NOOVERWRITE)) {
|
|
case -1:
|
|
warn("Error writing key `%s'", keystr);
|
|
return (1);
|
|
case 0:
|
|
if (! (flags & F_QUIET))
|
|
printf("Added key `%s'\n", keystr);
|
|
break;
|
|
case 1:
|
|
if (! (flags & F_QUIET))
|
|
warnx("Key `%s' already exists", keystr);
|
|
return (1);
|
|
}
|
|
return (0);
|
|
}
|
|
|
|
int
|
|
parseline(FILE *fp, const char *sep, char **kp, char **vp)
|
|
{
|
|
size_t len;
|
|
char *key, *val;
|
|
|
|
key = fgetln(fp, &len);
|
|
if (key == NULL) /* end of file, or error */
|
|
return (0);
|
|
|
|
if (key[len-1] == '\n') /* check for \n at EOL */
|
|
key[--len] = '\0';
|
|
else
|
|
return (0);
|
|
|
|
*kp = key;
|
|
if (vp == NULL) /* don't split if don't want value */
|
|
return (1);
|
|
if ((val = strchr(key, sep[0])) == NULL)
|
|
val = key + len;
|
|
else
|
|
*val++ = '\0';
|
|
*vp = val;
|
|
return (1);
|
|
}
|
|
|
|
void
|
|
usage(void)
|
|
{
|
|
const char *p = getprogname();
|
|
|
|
fprintf(stderr,
|
|
"Usage: %s [-KV] [-Niq] [-E end] [-f inf] [-O str] type dbfile [key [...]]\n"
|
|
" %s -d [-Niq] [-E end] [-f inf] type dbfile [key [...]]\n"
|
|
" %s -w [-Niq] [-E end] [-f inf] [-CDR] [-F sep] [-m mod]\n"
|
|
" type dbfile [key val [...]]\n"
|
|
,p ,p ,p );
|
|
fprintf(stderr,
|
|
"Supported modes:\n"
|
|
"\t\tread keys [default]\n"
|
|
"\t-d\tdelete keys\n"
|
|
"\t-w\twrite (add) keys/values\n"
|
|
"Supported options:\n"
|
|
"\t-C\tcreate empty (truncated) database\n"
|
|
"\t-D\tallow duplicates\n"
|
|
"\t-E end\tdatabase endian: `B'ig, `L'ittle, `H'ost [default: H]\n"
|
|
"\t-F sep\tfield separator character [default: ' ']\n"
|
|
"\t-K\tprint key\n"
|
|
"\t-N\tdon't NUL terminate key\n"
|
|
"\t-R\treplace existing keys\n"
|
|
"\t-V\tprint value\n"
|
|
"\t-f inf\tfile of keys (read|delete) or keys/vals (write)\n"
|
|
"\t-i\tignore case of key by converting to lower case\n"
|
|
"\t-m mod\tmode of created database [default: 0644]\n"
|
|
"\t-q\tquiet operation (missing keys aren't errors)\n"
|
|
"\t-O str\toutput field separator string [default: '\\t']\n"
|
|
);
|
|
exit(1);
|
|
}
|