php-src/ext/dba/dba.c

604 lines
14 KiB
C
Raw Normal View History

1999-07-21 15:12:32 +00:00
/*
+----------------------------------------------------------------------+
2001-12-11 15:32:16 +00:00
| PHP Version 4 |
1999-07-21 15:12:32 +00:00
+----------------------------------------------------------------------+
2001-12-11 15:32:16 +00:00
| Copyright (c) 1997-2002 The PHP Group |
1999-07-21 15:12:32 +00:00
+----------------------------------------------------------------------+
| This source file is subject to version 2.02 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
| http://www.php.net/license/2_02.txt. |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
1999-07-21 15:12:32 +00:00
+----------------------------------------------------------------------+
2002-02-28 08:29:35 +00:00
| Author: Sascha Schumann <sascha@schumann.cx> |
1999-07-21 15:12:32 +00:00
+----------------------------------------------------------------------+
*/
/* $Id$ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
1999-07-21 15:12:32 +00:00
#include "php.h"
#if HAVE_DBA
#include "php_dba.h"
#include "ext/standard/info.h"
1999-07-21 15:12:32 +00:00
#include "php_gdbm.h"
#include "php_ndbm.h"
#include "php_dbm.h"
#include "php_cdb.h"
#include "php_db2.h"
#include "php_db3.h"
1999-07-21 15:12:32 +00:00
/* {{{ dba_functions[]
*/
1999-07-21 15:12:32 +00:00
function_entry dba_functions[] = {
PHP_FE(dba_open, NULL)
PHP_FE(dba_popen, NULL)
PHP_FE(dba_close, NULL)
PHP_FE(dba_delete, NULL)
PHP_FE(dba_exists, NULL)
PHP_FE(dba_fetch, NULL)
PHP_FE(dba_insert, NULL)
PHP_FE(dba_replace, NULL)
PHP_FE(dba_firstkey, NULL)
PHP_FE(dba_nextkey, NULL)
PHP_FE(dba_optimize, NULL)
PHP_FE(dba_sync, NULL)
PHP_FE(dba_handlers, NULL)
PHP_FE(dba_list, NULL)
2001-08-11 16:39:07 +00:00
{NULL, NULL, NULL}
1999-07-21 15:12:32 +00:00
};
/* }}} */
1999-07-21 15:12:32 +00:00
PHP_MINIT_FUNCTION(dba);
PHP_MINFO_FUNCTION(dba);
1999-07-21 15:12:32 +00:00
zend_module_entry dba_module_entry = {
STANDARD_MODULE_HEADER,
"dba",
dba_functions,
PHP_MINIT(dba),
NULL,
NULL,
NULL,
PHP_MINFO(dba),
NO_VERSION_YET,
STANDARD_MODULE_PROPERTIES
1999-07-21 15:12:32 +00:00
};
2000-05-02 03:38:26 +00:00
#ifdef COMPILE_DL_DBA
ZEND_GET_MODULE(dba)
#endif
1999-07-21 15:12:32 +00:00
typedef struct dba_handler {
char *name;
2001-08-14 05:44:33 +00:00
int (*open)(dba_info * TSRMLS_DC);
1999-07-21 15:12:32 +00:00
void (*close)(dba_info *);
char* (*fetch)(dba_info *, char *, int, int, int *);
1999-07-21 15:12:32 +00:00
int (*update)(dba_info *, char *, int, char *, int, int);
int (*exists)(dba_info *, char *, int);
int (*delete)(dba_info *, char *, int);
char* (*firstkey)(dba_info *, int *);
char* (*nextkey)(dba_info *, int *);
int (*optimize)(dba_info *);
int (*sync)(dba_info *);
} dba_handler;
/* {{{ macromania */
#define DBA_ID_PARS \
zval **id; \
dba_info *info = NULL; \
int ac = ZEND_NUM_ARGS()
1999-07-21 15:12:32 +00:00
/* these are used to get the standard arguments */
#define DBA_GET1 \
1999-12-18 22:40:35 +00:00
if(ac != 1 || zend_get_parameters_ex(ac, &id) != SUCCESS) { \
WRONG_PARAM_COUNT; \
1999-07-21 15:12:32 +00:00
}
#define DBA_GET2 \
zval **key; \
1999-12-18 22:40:35 +00:00
if(ac != 2 || zend_get_parameters_ex(ac, &key, &id) != SUCCESS) { \
WRONG_PARAM_COUNT; \
} \
convert_to_string_ex(key)
1999-07-21 15:12:32 +00:00
#define DBA_GET2_3 \
zval **key; \
zval **tmp; \
int skip = 0; \
switch(ac) { \
case 2: \
if (zend_get_parameters_ex(ac, &key, &id) != SUCCESS) { \
WRONG_PARAM_COUNT; \
} \
break; \
case 3: \
if (zend_get_parameters_ex(ac, &key, &tmp, &id) != SUCCESS) { \
WRONG_PARAM_COUNT; \
} \
convert_to_long_ex(tmp); \
skip = Z_LVAL_PP(tmp); \
break; \
default: \
WRONG_PARAM_COUNT; \
} \
convert_to_string_ex(key)
#define DBA_ID_GET \
ZEND_FETCH_RESOURCE2(info, dba_info *, id, -1, "DBA identifier", le_db, le_pdb);
1999-07-21 15:12:32 +00:00
#define DBA_ID_GET1 DBA_ID_PARS; DBA_GET1; DBA_ID_GET
#define DBA_ID_GET2 DBA_ID_PARS; DBA_GET2; DBA_ID_GET
#define DBA_ID_GET2_3 DBA_ID_PARS; DBA_GET2_3; DBA_ID_GET
1999-07-21 15:12:32 +00:00
/* a DBA handler must have specific routines */
#define DBA_HND(x) \
{\
#x, dba_open_##x, dba_close_##x, dba_fetch_##x, dba_update_##x, \
dba_exists_##x, dba_delete_##x, dba_firstkey_##x, dba_nextkey_##x, \
dba_optimize_##x, dba_sync_##x \
},
/* check whether the user has write access */
#define DBA_WRITE_CHECK \
if(info->mode != DBA_WRITER && info->mode != DBA_TRUNC && info->mode != DBA_CREAT) { \
2002-11-01 14:15:24 +00:00
php_error_docref(NULL TSRMLS_CC, E_WARNING, "You cannot perform a modification to a database without proper access"); \
1999-07-21 15:12:32 +00:00
RETURN_FALSE; \
}
/* }}} */
/* {{{ globals */
static dba_handler handler[] = {
#if DBA_GDBM
DBA_HND(gdbm)
#endif
#if DBA_DBM
DBA_HND(dbm)
#endif
#if DBA_NDBM
DBA_HND(ndbm)
#endif
#if DBA_CDB
DBA_HND(cdb)
#endif
#if DBA_DB2
DBA_HND(db2)
#endif
#if DBA_DB3
DBA_HND(db3)
1999-07-21 15:12:32 +00:00
#endif
{ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL }
};
static int le_db;
static int le_pdb;
/* }}} */
/* {{{ dba_close
*/
2000-10-26 17:38:01 +00:00
static void dba_close(dba_info *info)
1999-07-21 15:12:32 +00:00
{
if(info->hnd) info->hnd->close(info);
if(info->path) free(info->path);
free(info);
}
/* }}} */
/* {{{ dba_close_rsrc
*/
2001-07-31 05:44:11 +00:00
static void dba_close_rsrc(zend_rsrc_list_entry *rsrc TSRMLS_DC)
2000-10-26 17:38:01 +00:00
{
dba_info *info = (dba_info *)rsrc->ptr;
2001-07-31 05:44:11 +00:00
2000-10-26 17:38:01 +00:00
dba_close(info);
}
/* }}} */
2000-10-26 17:38:01 +00:00
/* {{{ PHP_MINIT_FUNCTION
*/
PHP_MINIT_FUNCTION(dba)
1999-07-21 15:12:32 +00:00
{
le_db = zend_register_list_destructors_ex(dba_close_rsrc, NULL, "dba", module_number);
le_pdb = zend_register_list_destructors_ex(NULL, dba_close_rsrc, "dba persistent", module_number);
1999-07-21 15:12:32 +00:00
return SUCCESS;
}
/* }}} */
1999-07-21 15:12:32 +00:00
/* {{{ PHP_MSHUTDOWN_FUNCTION
*/
PHP_MSHUTDOWN_FUNCTION(dba)
1999-07-21 15:12:32 +00:00
{
return SUCCESS;
}
/* }}} */
1999-07-21 15:12:32 +00:00
#include "ext/standard/php_smart_str.h"
2000-12-01 01:25:36 +00:00
/* {{{ PHP_MINFO_FUNCTION
*/
PHP_MINFO_FUNCTION(dba)
1999-07-21 15:12:32 +00:00
{
dba_handler *hptr;
smart_str handlers = {0};
2000-12-01 01:25:36 +00:00
1999-07-21 15:12:32 +00:00
for(hptr = handler; hptr->name; hptr++) {
smart_str_appends(&handlers, hptr->name);
smart_str_appendc(&handlers, ' ');
2000-12-01 01:25:36 +00:00
}
php_info_print_table_start();
php_info_print_table_row(2, "DBA support", "enabled");
if (handlers.c) {
smart_str_0(&handlers);
php_info_print_table_row(2, "Supported handlers", handlers.c);
smart_str_free(&handlers);
} else {
php_info_print_table_row(2, "Supported handlers", "none");
}
2000-12-01 01:25:36 +00:00
php_info_print_table_end();
1999-07-21 15:12:32 +00:00
}
/* }}} */
/* {{{ php_dba_update
*/
1999-12-17 21:34:28 +00:00
static void php_dba_update(INTERNAL_FUNCTION_PARAMETERS, int mode)
1999-07-21 15:12:32 +00:00
{
DBA_ID_PARS;
zval **val, **key;
1999-07-21 15:12:32 +00:00
1999-12-18 22:40:35 +00:00
if(ac != 3 || zend_get_parameters_ex(ac, &key, &val, &id) != SUCCESS) {
1999-07-21 15:12:32 +00:00
WRONG_PARAM_COUNT;
}
convert_to_string_ex(key);
convert_to_string_ex(val);
1999-07-21 15:12:32 +00:00
DBA_ID_GET;
DBA_WRITE_CHECK;
if(info->hnd->update(info, VALLEN(key), VALLEN(val), mode) == SUCCESS)
RETURN_TRUE;
RETURN_FALSE;
}
/* }}} */
1999-07-21 15:12:32 +00:00
#define FREENOW if(args) efree(args); if(key) efree(key)
/* {{{ php_dba_open
*/
1999-12-17 21:34:28 +00:00
static void php_dba_open(INTERNAL_FUNCTION_PARAMETERS, int persistent)
1999-07-21 15:12:32 +00:00
{
zval ***args = (zval ***) NULL;
int ac = ZEND_NUM_ARGS();
1999-07-21 15:12:32 +00:00
dba_mode_t modenr;
dba_info *info;
dba_handler *hptr;
char *key = NULL;
int keylen = 0;
int i;
if(ac < 3) {
WRONG_PARAM_COUNT;
}
/* we pass additional args to the respective handler */
args = emalloc(ac * sizeof(zval *));
if (zend_get_parameters_array_ex(ac, args) != SUCCESS) {
1999-07-21 15:12:32 +00:00
FREENOW;
WRONG_PARAM_COUNT;
}
/* we only take string arguments */
for (i = 0; i < ac; i++) {
convert_to_string_ex(args[i]);
2000-11-22 21:47:15 +00:00
keylen += Z_STRLEN_PP(args[i]);
1999-07-21 15:12:32 +00:00
}
if (persistent) {
list_entry *le;
1999-07-21 15:12:32 +00:00
/* calculate hash */
key = emalloc(keylen);
keylen = 0;
for(i = 0; i < ac; i++) {
2001-08-11 16:39:07 +00:00
memcpy(key+keylen, Z_STRVAL_PP(args[i]), Z_STRLEN_PP(args[i]));
2000-11-22 21:47:15 +00:00
keylen += Z_STRLEN_PP(args[i]);
1999-07-21 15:12:32 +00:00
}
/* try to find if we already have this link in our persistent list */
if (zend_hash_find(&EG(persistent_list), key, keylen+1, (void **) &le) == SUCCESS) {
1999-07-21 15:12:32 +00:00
FREENOW;
if (Z_TYPE_P(le) != le_pdb) {
RETURN_FALSE;
}
info = (dba_info *)le->ptr;
ZEND_REGISTER_RESOURCE(return_value, info, le_pdb);
return;
1999-07-21 15:12:32 +00:00
}
}
for (hptr = handler; hptr->name && strcasecmp(hptr->name, Z_STRVAL_PP(args[2])); hptr++);
1999-07-21 15:12:32 +00:00
if (!hptr->name) {
2002-11-01 14:15:24 +00:00
php_error_docref(NULL TSRMLS_CC, E_WARNING, "No such handler: %s", Z_STRVAL_PP(args[2]));
1999-07-21 15:12:32 +00:00
FREENOW;
RETURN_FALSE;
}
switch (Z_STRVAL_PP(args[1])[0]) {
1999-07-21 15:12:32 +00:00
case 'c':
modenr = DBA_CREAT;
break;
case 'w':
modenr = DBA_WRITER;
break;
case 'r':
modenr = DBA_READER;
break;
case 'n':
modenr = DBA_TRUNC;
break;
default:
2002-11-01 14:15:24 +00:00
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Illegal DBA mode: %s", Z_STRVAL_PP(args[1]));
1999-07-21 15:12:32 +00:00
FREENOW;
RETURN_FALSE;
}
info = malloc(sizeof(*info));
memset(info, 0, sizeof(info));
info->path = strdup(Z_STRVAL_PP(args[0]));
1999-07-21 15:12:32 +00:00
info->mode = modenr;
info->argc = ac - 3;
info->argv = args + 3;
1999-07-21 15:39:28 +00:00
info->hnd = NULL;
1999-07-21 15:12:32 +00:00
if (hptr->open(info TSRMLS_CC) != SUCCESS) {
1999-07-21 15:12:32 +00:00
dba_close(info);
2002-11-01 14:15:24 +00:00
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Driver initialization failed for handler: %s", Z_STRVAL_PP(args[2]));
1999-07-21 15:12:32 +00:00
FREENOW;
RETURN_FALSE;
}
1999-07-21 15:12:32 +00:00
info->hnd = hptr;
info->argc = 0;
info->argv = NULL;
if (persistent) {
list_entry new_le;
Z_TYPE(new_le) = le_pdb;
new_le.ptr = info;
if (zend_hash_update(&EG(persistent_list), key, keylen+1, &new_le, sizeof(list_entry), NULL) == FAILURE) {
FREENOW;
RETURN_FALSE;
}
1999-07-21 15:12:32 +00:00
}
ZEND_REGISTER_RESOURCE(return_value, info, (persistent ? le_pdb : le_db));
1999-07-21 15:12:32 +00:00
FREENOW;
}
/* }}} */
#undef FREENOW
1999-07-21 15:12:32 +00:00
2000-07-13 18:44:57 +00:00
/* {{{ proto int dba_popen(string path, string mode, string handlername [, string ...])
2000-02-24 16:30:42 +00:00
Opens path using the specified handler in mode persistently */
1999-07-21 15:12:32 +00:00
PHP_FUNCTION(dba_popen)
{
1999-12-17 21:34:28 +00:00
php_dba_open(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1);
1999-07-21 15:12:32 +00:00
}
/* }}} */
2000-07-13 18:44:57 +00:00
/* {{{ proto int dba_open(string path, string mode, string handlername [, string ...])
2000-02-24 16:30:42 +00:00
Opens path using the specified handler in mode*/
1999-07-21 15:12:32 +00:00
PHP_FUNCTION(dba_open)
{
1999-12-17 21:34:28 +00:00
php_dba_open(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
1999-07-21 15:12:32 +00:00
}
/* }}} */
/* {{{ proto void dba_close(resource handle)
2000-02-24 16:30:42 +00:00
Closes database */
1999-07-21 15:12:32 +00:00
PHP_FUNCTION(dba_close)
{
DBA_ID_GET1;
1999-07-21 15:12:32 +00:00
zend_list_delete(Z_RESVAL_PP(id));
1999-07-21 15:12:32 +00:00
}
/* }}} */
/* {{{ proto bool dba_exists(string key, int handle)
2000-02-24 16:30:42 +00:00
Checks, if the specified key exists */
1999-07-21 15:12:32 +00:00
PHP_FUNCTION(dba_exists)
{
DBA_ID_GET2;
if(info->hnd->exists(info, VALLEN(key)) == SUCCESS) {
RETURN_TRUE;
}
RETURN_FALSE;
}
/* }}} */
/* {{{ proto string dba_fetch(string key, [int skip ,] int handle)
2000-02-24 16:30:42 +00:00
Fetches the data associated with key */
1999-07-21 15:12:32 +00:00
PHP_FUNCTION(dba_fetch)
{
char *val;
int len = 0;
DBA_ID_GET2_3;
1999-07-21 15:12:32 +00:00
if (ac==3 && strcmp(info->hnd->name, "cdb")) {
php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Handler %s does not support optional skip parameter", info->hnd->name);
}
if((val = info->hnd->fetch(info, VALLEN(key), skip, &len)) != NULL) {
1999-07-21 15:12:32 +00:00
RETURN_STRINGL(val, len, 0);
}
RETURN_FALSE;
}
/* }}} */
/* {{{ proto string dba_firstkey(int handle)
2000-02-24 16:30:42 +00:00
Resets the internal key pointer and returns the first key */
1999-07-21 15:12:32 +00:00
PHP_FUNCTION(dba_firstkey)
{
char *fkey;
int len;
DBA_ID_GET1;
fkey = info->hnd->firstkey(info, &len);
if(fkey)
RETURN_STRINGL(fkey, len, 0);
RETURN_FALSE;
}
/* }}} */
/* {{{ proto string dba_nextkey(int handle)
2000-02-24 16:30:42 +00:00
Returns the next key */
1999-07-21 15:12:32 +00:00
PHP_FUNCTION(dba_nextkey)
{
char *nkey;
int len;
DBA_ID_GET1;
nkey = info->hnd->nextkey(info, &len);
if(nkey)
RETURN_STRINGL(nkey, len, 0);
RETURN_FALSE;
}
/* }}} */
/* {{{ proto bool dba_delete(string key, int handle)
2000-02-24 16:30:42 +00:00
Deletes the entry associated with key */
1999-07-21 15:12:32 +00:00
PHP_FUNCTION(dba_delete)
{
DBA_ID_GET2;
DBA_WRITE_CHECK;
if(info->hnd->delete(info, VALLEN(key)) == SUCCESS)
RETURN_TRUE;
RETURN_FALSE;
}
/* }}} */
/* {{{ proto bool dba_insert(string key, string value, int handle)
2000-02-24 16:30:42 +00:00
Inserts value as key, returns false, if key exists already */
1999-07-21 15:12:32 +00:00
PHP_FUNCTION(dba_insert)
{
1999-12-17 21:34:28 +00:00
php_dba_update(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1);
1999-07-21 15:12:32 +00:00
}
/* }}} */
/* {{{ proto bool dba_replace(string key, string value, int handle)
2000-02-24 16:30:42 +00:00
Inserts value as key, replaces key, if key exists already */
1999-07-21 15:12:32 +00:00
PHP_FUNCTION(dba_replace)
{
1999-12-17 21:34:28 +00:00
php_dba_update(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
1999-07-21 15:12:32 +00:00
}
/* }}} */
/* {{{ proto bool dba_optimize(int handle)
2000-02-24 16:30:42 +00:00
Optimizes (e.g. clean up, vacuum) database */
1999-07-21 15:12:32 +00:00
PHP_FUNCTION(dba_optimize)
{
DBA_ID_GET1;
DBA_WRITE_CHECK;
if(info->hnd->optimize(info) == SUCCESS) {
RETURN_TRUE;
}
RETURN_FALSE;
}
/* }}} */
/* {{{ proto bool dba_sync(int handle)
2000-02-24 16:30:42 +00:00
Synchronizes database */
1999-07-21 15:12:32 +00:00
PHP_FUNCTION(dba_sync)
{
DBA_ID_GET1;
if(info->hnd->sync(info) == SUCCESS) {
RETURN_TRUE;
}
RETURN_FALSE;
}
/* }}} */
/* {{{ proto array dba_handlers()
List configured databases */
PHP_FUNCTION(dba_handlers)
{
dba_handler *hptr;
if (ZEND_NUM_ARGS()!=0) {
ZEND_WRONG_PARAM_COUNT();
RETURN_FALSE;
}
if (array_init(return_value) == FAILURE) {
php_error_docref(NULL TSRMLS_CC, E_ERROR, "Unable to initialize array");
RETURN_FALSE;
}
for(hptr = handler; hptr->name; hptr++) {
add_next_index_string(return_value, hptr->name, 1);
}
}
/* }}} */
/* {{{ proto array dba_list()
List configured databases */
PHP_FUNCTION(dba_list)
{
ulong numitems, i;
zend_rsrc_list_entry *le;
dba_info *info;
if (ZEND_NUM_ARGS()!=0) {
ZEND_WRONG_PARAM_COUNT();
RETURN_FALSE;
}
if (array_init(return_value) == FAILURE) {
php_error_docref(NULL TSRMLS_CC, E_ERROR, "Unable to initialize array");
RETURN_FALSE;
}
numitems = zend_hash_next_free_element(&EG(regular_list));
for (i=1; i<numitems; i++) {
if (zend_hash_index_find(&EG(regular_list), i, (void **) &le)==FAILURE) {
continue;
}
if (Z_TYPE_P(le) == le_db || Z_TYPE_P(le) == le_pdb) {
info = (dba_info *)(le->ptr);
add_index_string(return_value, i, info->path, 1);
}
}
}
/* }}} */
1999-07-21 15:12:32 +00:00
#endif
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: sw=4 ts=4 fdm=marker
* vim<600: sw=4 ts=4
*/