/*
* Copyright � 2007 Alistair Crooks. All rights reserved.
*
* 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. The name of the author may not be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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/types.h>
static struct stat dbst; /* stat info of database file */
static BTREEINFO bt; /* btree information */
static int verbose; /* how chatty are we? */
static DB *db; /* data base operations struct */
/* perform the stat operation */
/* if this is the root, then just synthesise the data */
/* otherwise, retrieve the data, and be sure to fill in the size */
/* we use the mtime of the database file for each of the records */
static int
dbfs_getattr(const char *path, struct stat *st)
{
int res = 0;
DBT k;
DBT v;
/* readdir operation */
/* run through the database file, returning records by key */
static int
dbfs_readdir(const char *path, void *buf, fuse_fill_dir_t filler,
off_t offset, struct fuse_file_info * fi)
{
static int ret;
static DBT k;
int flag;
DBT v;
(void) fi;
if (offset == 0) {
(void) memset(&k, 0x0, sizeof(k));
(void) filler(buf, ".", NULL, 0);
(void) filler(buf, "..", NULL, 0);
flag = R_FIRST;
ret = 0;
} else {
flag = R_CURSOR;
}
if (ret != 0) {
return 0;
}
for ( ; (ret = (*db->seq)(db, &k, &v, flag)) == 0 ; flag = R_NEXT) {
if (filler(buf, k.data, NULL, 0) != 0) {
return 0;
}
}
return 0;
}
/* open the file in the file system */
/* use seq method to get the record - get doesn't seem to work */
static int
dbfs_open(const char *path, struct fuse_file_info * fi)
{
DBT k;
DBT v;
/* read the file's contents in the file system */
/* use seq method to get the record - get doesn't seem to work */
static int
dbfs_read(const char *path, char *buf, size_t size, off_t offset,
struct fuse_file_info * fi)
{
size_t len;
DBT k;
DBT v;
(void) fi;