indeyets                Fri Nov  7 13:28:23 2008 UTC

  Modified files:              (Branch: PHP_5_3)
    /php-src/sapi/apache2filter php_functions.c 
  Log:
  new parameter-parsing API
  
http://cvs.php.net/viewvc.cgi/php-src/sapi/apache2filter/php_functions.c?r1=1.44.2.2.2.2.2.5&r2=1.44.2.2.2.2.2.6&diff_format=u
Index: php-src/sapi/apache2filter/php_functions.c
diff -u php-src/sapi/apache2filter/php_functions.c:1.44.2.2.2.2.2.5 
php-src/sapi/apache2filter/php_functions.c:1.44.2.2.2.2.2.6
--- php-src/sapi/apache2filter/php_functions.c:1.44.2.2.2.2.2.5 Sun Nov  2 
21:19:39 2008
+++ php-src/sapi/apache2filter/php_functions.c  Fri Nov  7 13:28:23 2008
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: php_functions.c,v 1.44.2.2.2.2.2.5 2008/11/02 21:19:39 felipe Exp $ */
+/* $Id: php_functions.c,v 1.44.2.2.2.2.2.6 2008/11/07 13:28:23 indeyets Exp $ 
*/
 
 
 #define ZEND_INCLUDE_FULL_WINDOWS_HEADERS
@@ -59,23 +59,22 @@
  Perform an apache sub-request */
 PHP_FUNCTION(virtual)
 {
-       zval **filename;
+       char *filename;
+       int filename_len;
        request_rec *rr;
 
-       if (ZEND_NUM_ARGS() != 1 || zend_get_parameters_ex(1, &filename) == 
FAILURE) {
-               WRONG_PARAM_COUNT;
+       if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &filename, 
&filename_len) == FAILURE) {
+               return;
        }
 
-       convert_to_string_ex(filename);
-       
-       if (!(rr = php_apache_lookup_uri(Z_STRVAL_PP(filename) TSRMLS_CC))) {
-               php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to include 
'%s' - URI lookup failed", Z_STRVAL_PP(filename));
+       if (!(rr = php_apache_lookup_uri(filename TSRMLS_CC))) {
+               php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to include 
'%s' - URI lookup failed", filename);
                RETURN_FALSE;
        }
        
        if (rr->status == HTTP_OK) {
                if (ap_run_sub_req(rr)) {
-                       php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to 
include '%s' - request execution failed", Z_STRVAL_PP(filename));
+                       php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to 
include '%s' - request execution failed", filename);
                        ap_destroy_sub_req(rr);
                        RETURN_FALSE;
                }
@@ -83,7 +82,7 @@
                RETURN_TRUE;
        }
        
-       php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to include '%s' - 
error finding URI", Z_STRVAL_PP(filename));
+       php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to include '%s' - 
error finding URI", filename);
        ap_destroy_sub_req(rr);
        RETURN_FALSE;
 }
@@ -99,16 +98,15 @@
 PHP_FUNCTION(apache_lookup_uri)
 {
        request_rec *rr;
-       zval **filename;
+       char *filename;
+       int filename_len;
 
-       if (ZEND_NUM_ARGS() != 1 || zend_get_parameters_ex(1, &filename) == 
FAILURE) {
-               WRONG_PARAM_COUNT;
+       if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &filename, 
&filename_len) == FAILURE) {
+               return;
        }
 
-       convert_to_string_ex(filename);
-       
-       if (!(rr = php_apache_lookup_uri(Z_STRVAL_PP(filename) TSRMLS_CC))) {
-               php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to include 
'%s' - URI lookup failed", Z_STRVAL_PP(filename));
+       if (!(rr = php_apache_lookup_uri(filename TSRMLS_CC))) {
+               php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to include 
'%s' - URI lookup failed", filename);
                RETURN_FALSE;
        }
        
@@ -145,7 +143,7 @@
                return;
        }
        
-       php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to include '%s' - 
error finding URI", Z_STRVAL_PP(filename));
+       php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to include '%s' - 
error finding URI", filename);
        ap_destroy_sub_req(rr);
        RETURN_FALSE;
 }
@@ -195,31 +193,28 @@
 PHP_FUNCTION(apache_note)
 {
        php_struct *ctx;
-       zval **note_name, **note_val;
+       char *note_name, *note_val;
+       int note_name_len, note_val_len;
        char *old_note_val=NULL;
        int arg_count = ZEND_NUM_ARGS();
 
-       if (arg_count<1 || arg_count>2 ||
-               zend_get_parameters_ex(arg_count, &note_name, &note_val) == 
FAILURE) {
-               WRONG_PARAM_COUNT;
+       if (zend_parse_parameters(arg_count TSRMLS_CC, "s|s", &note_name, 
&note_name_len, &note_val, &note_val_len) == FAILURE) {
+               return;
        }
-       
+
        ctx = SG(server_context);
-       
-       convert_to_string_ex(note_name);
 
-       old_note_val = (char *) apr_table_get(ctx->r->notes, 
Z_STRVAL_PP(note_name));
-       
+       old_note_val = (char *) apr_table_get(ctx->r->notes, note_name);
+
        if (arg_count == 2) {
-               convert_to_string_ex(note_val);
-               apr_table_set(ctx->r->notes, Z_STRVAL_PP(note_name), 
Z_STRVAL_PP(note_val));
+               apr_table_set(ctx->r->notes, note_name, note_val);
        }
 
        if (old_note_val) {
                RETURN_STRING(old_note_val, 1);
-       } else {
-               RETURN_FALSE;
        }
+
+       RETURN_FALSE;
 }
 /* }}} */
 
@@ -229,26 +224,24 @@
 PHP_FUNCTION(apache_setenv)
 {
        php_struct *ctx;
-       zval **variable=NULL, **string_val=NULL, **walk_to_top=NULL;
+       char *variable=NULL, *string_val=NULL;
+       int variable_len, string_val_len;
+       zend_bool walk_to_top = 0;
        int arg_count = ZEND_NUM_ARGS();
 
-       if (arg_count<1 || arg_count>3 ||
-               zend_get_parameters_ex(arg_count, &variable, &string_val, 
&walk_to_top) == FAILURE) {
-               WRONG_PARAM_COUNT;
+       if (zend_parse_parameters(arg_count TSRMLS_CC, "ss|b", &variable, 
&variable_len, &string_val, &string_val_len, &walk_to_top) == FAILURE) {
+               return;
        }
 
        ctx = SG(server_context);
 
-       if (arg_count == 3 && Z_STRVAL_PP(walk_to_top)) {
+       if (arg_count == 3 && walk_to_top) {
                while(ctx->f->r->prev) {
                        ctx->f->r = ctx->f->r->prev;
-               }       
+               }
        }
 
-       convert_to_string_ex(variable);
-       convert_to_string_ex(string_val);
-       
-       apr_table_set(ctx->r->subprocess_env, Z_STRVAL_PP(variable), 
Z_STRVAL_PP(string_val));
+       apr_table_set(ctx->r->subprocess_env, variable, string_val);
 
        RETURN_TRUE;
 }
@@ -259,31 +252,30 @@
 PHP_FUNCTION(apache_getenv)
 {
        php_struct *ctx;
-       zval **variable=NULL, **walk_to_top=NULL;
+       char *variable=NULL;
+       int variable_len;
+       zend_bool walk_to_top = 0;
        int arg_count = ZEND_NUM_ARGS();
        char *env_val=NULL;
 
-       if (arg_count<1 || arg_count>2 ||
-               zend_get_parameters_ex(arg_count, &variable, &walk_to_top) == 
FAILURE) {
-               WRONG_PARAM_COUNT;
+       if (zend_parse_parameters(arg_count TSRMLS_CC, "s|b", &variable, 
&variable_len, &walk_to_top) == FAILURE) {
+               return;
        }
 
        ctx = SG(server_context);
 
-       if (arg_count == 2 && Z_STRVAL_PP(walk_to_top)) {
+       if (arg_count == 2 && walk_to_top) {
                while(ctx->f->r->prev) {
                        ctx->f->r = ctx->f->r->prev;
-               }       
+               }
        }
 
-       convert_to_string_ex(variable);
-       
-       env_val = (char*) apr_table_get(ctx->r->subprocess_env, 
Z_STRVAL_PP(variable));
+       env_val = (char*) apr_table_get(ctx->r->subprocess_env, variable);
        if (env_val != NULL) {
                RETURN_STRING(env_val, 1);
-       } else { 
-               RETURN_FALSE;
-       }       
+       }
+
+       RETURN_FALSE;
 }
 /* }}} */
 



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to