mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
Inline DBA_GET2 macro
It was used only twice
This commit is contained in:
parent
29ef6523dd
commit
c6862d0ed5
@ -89,8 +89,6 @@ ZEND_TSRMLS_CACHE_DEFINE()
|
||||
ZEND_GET_MODULE(dba)
|
||||
#endif
|
||||
|
||||
/* these are used to get the standard arguments */
|
||||
|
||||
/* {{{ php_dba_myke_key */
|
||||
static size_t php_dba_make_key(zval *key, char **key_str, char **key_free)
|
||||
{
|
||||
@ -134,17 +132,6 @@ static size_t php_dba_make_key(zval *key, char **key_str, char **key_free)
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
#define DBA_GET2 \
|
||||
zval *key; \
|
||||
char *key_str, *key_free; \
|
||||
size_t key_len; \
|
||||
if (zend_parse_parameters(ac, "zr", &key, &id) == FAILURE) { \
|
||||
RETURN_THROWS(); \
|
||||
} \
|
||||
if ((key_len = php_dba_make_key(key, &key_str, &key_free)) == 0) {\
|
||||
RETURN_FALSE; \
|
||||
}
|
||||
|
||||
#define DBA_FETCH_RESOURCE(info, id) \
|
||||
if ((info = (dba_info *)zend_fetch_resource2(Z_RES_P(id), "DBA identifier", le_db, le_pdb)) == NULL) { \
|
||||
RETURN_THROWS(); \
|
||||
@ -910,7 +897,16 @@ PHP_FUNCTION(dba_exists)
|
||||
zval *id;
|
||||
dba_info *info = NULL;
|
||||
int ac = ZEND_NUM_ARGS();
|
||||
DBA_GET2;
|
||||
zval *key;
|
||||
char *key_str, *key_free;
|
||||
size_t key_len;
|
||||
|
||||
if (zend_parse_parameters(ac, "zr", &key, &id) == FAILURE) {
|
||||
RETURN_THROWS();
|
||||
}
|
||||
if ((key_len = php_dba_make_key(key, &key_str, &key_free)) == 0) {
|
||||
RETURN_FALSE;
|
||||
}
|
||||
DBA_FETCH_RESOURCE_WITH_ID(info, id);
|
||||
|
||||
if(info->hnd->exists(info, key_str, key_len) == SUCCESS) {
|
||||
@ -1078,7 +1074,16 @@ PHP_FUNCTION(dba_delete)
|
||||
zval *id;
|
||||
dba_info *info = NULL;
|
||||
int ac = ZEND_NUM_ARGS();
|
||||
DBA_GET2;
|
||||
zval *key;
|
||||
char *key_str, *key_free;
|
||||
size_t key_len;
|
||||
|
||||
if (zend_parse_parameters(ac, "zr", &key, &id) == FAILURE) {
|
||||
RETURN_THROWS();
|
||||
}
|
||||
if ((key_len = php_dba_make_key(key, &key_str, &key_free)) == 0) {
|
||||
RETURN_FALSE;
|
||||
}
|
||||
DBA_FETCH_RESOURCE_WITH_ID(info, id);
|
||||
|
||||
DBA_WRITE_CHECK_WITH_ID;
|
||||
|
Loading…
Reference in New Issue
Block a user