php-src/ext/session/mod_user.c

186 lines
3.8 KiB
C
Raw Normal View History

1999-09-17 05:40:59 +00:00
/*
+----------------------------------------------------------------------+
2001-12-11 15:32:16 +00:00
| PHP Version 4 |
1999-09-17 05:40:59 +00:00
+----------------------------------------------------------------------+
2001-12-11 15:32:16 +00:00
| Copyright (c) 1997-2002 The PHP Group |
1999-09-17 05:40:59 +00:00
+----------------------------------------------------------------------+
| This source file is subject to version 2.02 of the PHP license, |
1999-09-17 05:40:59 +00:00
| 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. |
1999-09-17 05:40:59 +00:00
| 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. |
+----------------------------------------------------------------------+
2000-07-10 10:09:15 +00:00
| Authors: Sascha Schumann <sascha@schumann.cx> |
1999-09-17 05:40:59 +00:00
+----------------------------------------------------------------------+
*/
2001-06-06 14:32:27 +00:00
/* $Id$ */
1999-09-17 05:40:59 +00:00
#include "php.h"
#include "php_session.h"
#include "mod_user.h"
ps_module ps_mod_user = {
PS_MOD(user)
};
2000-01-05 19:37:13 +00:00
#define SESS_ZVAL_LONG(val, a) \
1999-09-17 05:40:59 +00:00
{ \
MAKE_STD_ZVAL(a); \
Z_TYPE_P(a) = IS_LONG; \
Z_LVAL_P(a) = val; \
1999-09-17 05:40:59 +00:00
}
2000-01-05 19:37:13 +00:00
#define SESS_ZVAL_STRING(vl, a) \
1999-09-17 05:40:59 +00:00
{ \
int len = strlen(vl); \
MAKE_STD_ZVAL(a); \
Z_TYPE_P(a) = IS_STRING; \
Z_STRLEN_P(a) = len; \
Z_STRVAL_P(a) = estrndup(vl, len); \
1999-09-17 05:40:59 +00:00
}
2000-01-05 19:37:13 +00:00
#define SESS_ZVAL_STRINGN(vl, ln, a) \
1999-09-17 05:40:59 +00:00
{ \
MAKE_STD_ZVAL(a); \
Z_TYPE_P(a) = IS_STRING; \
Z_STRLEN_P(a) = ln; \
Z_STRVAL_P(a) = estrndup(vl, ln); \
1999-09-17 05:40:59 +00:00
}
static zval *ps_call_handler(zval *func, int argc, zval **argv)
1999-09-17 05:40:59 +00:00
{
int i;
zval *retval = NULL;
TSRMLS_FETCH();
1999-09-17 05:40:59 +00:00
MAKE_STD_ZVAL(retval);
if (call_user_function(EG(function_table), NULL, func, retval,
2001-07-30 08:24:42 +00:00
argc, argv TSRMLS_CC) == FAILURE) {
zval_ptr_dtor(&retval);
retval = NULL;
1999-09-17 05:40:59 +00:00
}
2000-02-11 13:41:30 +00:00
for (i = 0; i < argc; i++) {
zval_ptr_dtor(&argv[i]);
1999-09-17 05:40:59 +00:00
}
return retval;
}
#define STDVARS \
zval *retval; \
int ret = FAILURE; \
ps_user *mdata = PS_GET_MOD_DATA(); \
2000-02-11 13:41:30 +00:00
if (!mdata) \
return FAILURE
1999-09-17 05:40:59 +00:00
#define PSF(a) mdata->name.ps_##a
#define FINISH \
2000-02-11 13:41:30 +00:00
if (retval) { \
1999-09-17 05:40:59 +00:00
convert_to_long(retval); \
ret = Z_LVAL_P(retval); \
zval_ptr_dtor(&retval); \
1999-09-17 05:40:59 +00:00
} \
return ret
PS_OPEN_FUNC(user)
{
zval *args[2];
STDVARS;
2000-01-05 19:37:13 +00:00
SESS_ZVAL_STRING(save_path, args[0]);
SESS_ZVAL_STRING(session_name, args[1]);
1999-09-17 05:40:59 +00:00
retval = ps_call_handler(PSF(open), 2, args);
FINISH;
}
PS_CLOSE_FUNC(user)
{
int i;
STDVARS;
retval = ps_call_handler(PSF(close), 0, NULL);
2000-02-11 13:41:30 +00:00
for (i = 0; i < 6; i++)
zval_ptr_dtor(&mdata->names[i]);
1999-09-17 05:40:59 +00:00
efree(mdata);
PS_SET_MOD_DATA(NULL);
FINISH;
}
PS_READ_FUNC(user)
{
zval *args[1];
STDVARS;
2000-01-05 19:37:13 +00:00
SESS_ZVAL_STRING(key, args[0]);
1999-09-17 05:40:59 +00:00
retval = ps_call_handler(PSF(read), 1, args);
2000-02-11 13:41:30 +00:00
if (retval) {
if (Z_TYPE_P(retval) == IS_STRING) {
*val = estrndup(Z_STRVAL_P(retval), Z_STRLEN_P(retval));
*vallen = Z_STRLEN_P(retval);
1999-09-17 05:40:59 +00:00
ret = SUCCESS;
}
zval_ptr_dtor(&retval);
1999-09-17 05:40:59 +00:00
}
return ret;
}
PS_WRITE_FUNC(user)
{
zval *args[2];
STDVARS;
2000-01-05 19:37:13 +00:00
SESS_ZVAL_STRING(key, args[0]);
SESS_ZVAL_STRINGN(val, vallen, args[1]);
1999-09-17 05:40:59 +00:00
retval = ps_call_handler(PSF(write), 2, args);
FINISH;
}
PS_DESTROY_FUNC(user)
{
zval *args[1];
STDVARS;
2000-01-05 19:37:13 +00:00
SESS_ZVAL_STRING(key, args[0]);
1999-09-17 05:40:59 +00:00
retval = ps_call_handler(PSF(destroy), 1, args);
FINISH;
}
PS_GC_FUNC(user)
{
zval *args[1];
STDVARS;
2000-01-05 19:37:13 +00:00
SESS_ZVAL_LONG(maxlifetime, args[0]);
1999-09-17 05:40:59 +00:00
retval = ps_call_handler(PSF(gc), 1, args);
FINISH;
}
2001-06-06 14:32:27 +00:00
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: sw=4 ts=4 fdm=marker
* vim<600: sw=4 ts=4
2001-06-06 14:32:27 +00:00
*/