110 lines
No EOL
2.9 KiB
C
Executable file
110 lines
No EOL
2.9 KiB
C
Executable file
/* NeoStats - IRC Statistical Services
|
|
** Copyright (c) 1999-2004 Adam Rutter, Justin Hammond, Mark Hetherington
|
|
** http://www.neostats.net/
|
|
**
|
|
** This program is free software; you can redistribute it and/or modify
|
|
** it under the terms of the GNU General Public License as published by
|
|
** the Free Software Foundation; either version 2 of the License, or
|
|
** (at your option) any later version.
|
|
**
|
|
** This program is distributed in the hope that it will be useful,
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
** GNU General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with this program; if not, write to the Free Software
|
|
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
** USA
|
|
**
|
|
** NeoStats CVS Identification
|
|
** $Id$
|
|
*/
|
|
|
|
#include "stats.h"
|
|
#include "log.h"
|
|
|
|
#ifdef USE_BERKELEY
|
|
#include <db.h>
|
|
|
|
static DBT dbkey;
|
|
static DBT dbdata;
|
|
static int dbret;
|
|
|
|
typedef struct db_entry {
|
|
DB* dbp;
|
|
char dbname[MAXPATH];
|
|
}db_entry;
|
|
|
|
db_entry db_list[NUM_MODULES];
|
|
|
|
int DBOpenDatabase(void)
|
|
{
|
|
int index;
|
|
nlog(LOG_DEBUG1, LOG_MOD, "DBOpenDatabase");
|
|
|
|
index = get_mod_num (segv_inmodule);
|
|
|
|
if (index == NS_FAILURE) {
|
|
return -1;
|
|
}
|
|
|
|
ircsnprintf(db_list[index].dbname, MAXPATH, "data/%s.db", segv_inmodule);
|
|
|
|
if ((dbret = db_create(&db_list[index].dbp, NULL, 0)) != 0) {
|
|
nlog(LOG_DEBUG1, LOG_MOD, "db_create: %s", db_strerror(dbret));
|
|
return -1;
|
|
}
|
|
if ((dbret = db_list[index].dbp->open(db_list[index].dbp, NULL, db_list[index].dbname, NULL, DB_BTREE, DB_CREATE, 0664)) != 0) {
|
|
nlog(LOG_DEBUG1, LOG_MOD, "dbp->open: %s", db_strerror(dbret));
|
|
return -1;
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
void DBCloseDatabase(void)
|
|
{
|
|
int index;
|
|
|
|
nlog(LOG_DEBUG1, LOG_MOD, "DBCloseDatabase");
|
|
index = get_mod_num (segv_inmodule);
|
|
db_list[index].dbp->close(db_list[index].dbp, 0);
|
|
}
|
|
|
|
void* DBGetData(char* key)
|
|
{
|
|
int index;
|
|
|
|
nlog(LOG_DEBUG1, LOG_MOD, "DBGetData %s", key);
|
|
index = get_mod_num (segv_inmodule);
|
|
memset(&dbkey, 0, sizeof(dbkey));
|
|
memset(&dbdata, 0, sizeof(dbdata));
|
|
dbkey.data = key;
|
|
dbkey.size = strlen(key);
|
|
if ((dbret = db_list[index].dbp->get(db_list[index].dbp, NULL, &dbkey, &dbdata, 0)) == 0)
|
|
{
|
|
/* nlog(LOG_DEBUG1, LOG_MOD, "DBGetData %s", dbdata.data);*/
|
|
return dbdata.data;
|
|
}
|
|
nlog(LOG_DEBUG1, LOG_MOD, "dbp->get: fail");
|
|
return NULL;
|
|
}
|
|
|
|
void DBSetData(char* key, void* data, int size)
|
|
{
|
|
int index;
|
|
|
|
nlog(LOG_DEBUG1, LOG_MOD, "DBSetData %s %s", key, data);
|
|
index = get_mod_num (segv_inmodule);
|
|
memset(&dbkey, 0, sizeof(dbkey));
|
|
memset(&dbdata, 0, sizeof(dbdata));
|
|
dbkey.data = key;
|
|
dbkey.size = strlen(key);
|
|
dbdata.data = data;
|
|
dbdata.size = size;
|
|
if ((dbret = db_list[index].dbp->put(db_list[index].dbp, NULL, &dbkey, &dbdata, 0)) != 0) {
|
|
nlog(LOG_DEBUG1, LOG_MOD, "dbp->put: %s", db_strerror(dbret));
|
|
}
|
|
}
|
|
|
|
#endif /* USE_BERKELEY */ |