/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996, 1997, 1998
* Sleepycat Software. All rights reserved.
*/
/*
* Copyright (c) 1990, 1993
* Margo Seltzer. All rights reserved.
*/
/*
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Margo Seltzer.
*
* 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
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University 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 REGENTS 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 REGENTS 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 "config.h"
#ifndef lint
#endif /* not lint */
#ifndef NO_SYSTEM_INCLUDES
#include <errno.h>
#include <fcntl.h>
#include <string.h>
#endif
#include "db_int.h"
#include "db_page.h"
#include "hash.h"
/*
*
* This package provides dbm and ndbm compatible interfaces to DB.
*
* The DBM routines, which call the NDBM routines.
*/
static void __db_no_open __P((void));
int
char *file;
{
if ((__cur_db =
return (0);
return (0);
return (-1);
}
int
{
}
return (0);
}
{
__db_no_open();
return (item);
}
}
{
__db_no_open();
return (item);
}
return (dbm_firstkey(__cur_db));
}
{
__db_no_open();
return (item);
}
return (dbm_nextkey(__cur_db));
}
int
{
__db_no_open();
return (-1);
}
}
int
{
__db_no_open();
return (-1);
}
}
static void
{
}
/*
* This package provides dbm and ndbm compatible interfaces to DB.
*
* The NDBM routines, which call the DB routines.
*/
/*
* Returns:
* *DBM on success
* NULL on failure
*/
DBM *
const char *file;
{
int sv_errno;
/*
* XXX
* Don't use sprintf(3)/snprintf(3) -- the former is dangerous, and
* the latter isn't standard, and we're manipulating strings handed
* us by the application.
*/
return (NULL);
}
return (NULL);
return (NULL);
}
}
/*
* Returns:
* Nothing.
*/
void
{
}
/*
* Returns:
* DATUM on success
* NULL on failure
*/
{
int ret;
/*
* because that cursor is the one used for sequential iteration and
* it has to remain stable in the face of intervening gets and puts.
*/
} else {
if (ret == DB_NOTFOUND)
else {
}
}
return (data);
}
/*
* Returns:
* DATUM on success
* NULL on failure
*/
{
int ret;
} else {
if (ret == DB_NOTFOUND)
else {
}
}
return (key);
}
/*
* Returns:
* DATUM on success
* NULL on failure
*/
{
int ret;
} else {
if (ret == DB_NOTFOUND)
else {
}
}
return (key);
}
/*
* Returns:
* 0 on success
* <0 failure
*/
int
{
int ret;
return (0);
if (ret == DB_NOTFOUND)
else {
}
return (-1);
}
/*
* Returns:
* 0 on success
* <0 failure
* 1 if DBM_INSERT and entry exists
*/
int
int flags;
{
int ret;
return (0);
if (ret == DB_KEYEXIST)
return (1);
return (-1);
}
int
{
}
int
{
return (0);
}
/*
* Returns:
* 1 if read-only
* 0 if not read-only
*/
int
{
}
/*
* XXX
* We only have a single file descriptor that we can return, not two. Return
* the same one for both files. Hopefully, the user is using it for locking
* and picked one to use at random.
*/
int
{
return (dbm_pagfno(dbm));
}
int
{
int fd;
return (fd);
}