branch off v1 as R_1_7
[m6w6/ext-http] / http_encoding_api.c
index a31b5b79772cc0533c2af23274674cdb158db89d..1d9b9163a31af614fda99c992818fe4ef40ed7a3 100644 (file)
@@ -6,16 +6,12 @@
     | modification, are permitted provided that the conditions mentioned |
     | in the accompanying LICENSE file are met.                          |
     +--------------------------------------------------------------------+
-    | Copyright (c) 2004-2005, Michael Wallner <mike@php.net>            |
+    | Copyright (c) 2004-2010, Michael Wallner <mike@php.net>            |
     +--------------------------------------------------------------------+
 */
 
 /* $Id$ */
 
-#ifdef HAVE_CONFIG_H
-#      include "config.h"
-#endif
-
 #define HTTP_WANT_ZLIB
 #include "php_http.h"
 
@@ -24,6 +20,7 @@
 #include "php_http_send_api.h"
 #include "php_http_headers_api.h"
 
+/* {{{ */
 #ifdef HTTP_HAVE_ZLIB
 PHP_MINIT_FUNCTION(http_encoding)
 {
@@ -38,41 +35,52 @@ PHP_MINIT_FUNCTION(http_encoding)
        HTTP_LONG_CONSTANT("HTTP_DEFLATE_STRATEGY_HUFF", HTTP_DEFLATE_STRATEGY_HUFF);
        HTTP_LONG_CONSTANT("HTTP_DEFLATE_STRATEGY_RLE", HTTP_DEFLATE_STRATEGY_RLE);
        HTTP_LONG_CONSTANT("HTTP_DEFLATE_STRATEGY_FIXED", HTTP_DEFLATE_STRATEGY_FIXED);
+       
+       HTTP_LONG_CONSTANT("HTTP_ENCODING_STREAM_FLUSH_NONE", HTTP_ENCODING_STREAM_FLUSH_NONE);
+       HTTP_LONG_CONSTANT("HTTP_ENCODING_STREAM_FLUSH_SYNC", HTTP_ENCODING_STREAM_FLUSH_SYNC);
+       HTTP_LONG_CONSTANT("HTTP_ENCODING_STREAM_FLUSH_FULL", HTTP_ENCODING_STREAM_FLUSH_FULL);
+       
        return SUCCESS;
 }
 
 PHP_RINIT_FUNCTION(http_encoding)
 {
-       getGlobals(G);
-       
-       if (G->send.inflate.start_auto) {
-               php_ob_set_internal_handler(_http_ob_inflatehandler, 0x1000, "http inflate", 0 TSRMLS_CC);
+       if (HTTP_G->send.inflate.start_auto) {
+#ifdef PHP_OUTPUT_NEWAPI
+               php_output_start_internal(ZEND_STRL("http inflate"), _http_ob_inflatehandler, HTTP_INFLATE_BUFFER_SIZE, 0 TSRMLS_CC);
+#else
+               php_ob_set_internal_handler(_http_ob_inflatehandler, HTTP_INFLATE_BUFFER_SIZE, "http inflate", 0 TSRMLS_CC);
+#endif
        }
-       if (G->send.deflate.start_auto) {
-               php_ob_set_internal_handler(_http_ob_deflatehandler, 0x8000, "http deflate", 0 TSRMLS_CC);
+       if (HTTP_G->send.deflate.start_auto) {
+#ifdef PHP_OUTPUT_NEWAPI
+               php_output_start_internal(ZEND_STRL("http deflate"), _http_ob_deflatehandler, HTTP_DEFLATE_BUFFER_SIZE, 0 TSRMLS_CC);
+#else
+               php_ob_set_internal_handler(_http_ob_deflatehandler, HTTP_DEFLATE_BUFFER_SIZE, "http deflate", 0 TSRMLS_CC);
+#endif
        }
        return SUCCESS;
 }
 
 PHP_RSHUTDOWN_FUNCTION(http_encoding)
 {
-       getGlobals(G);
-       
-       if (G->send.deflate.stream) {
-               http_encoding_deflate_stream_free((http_encoding_stream **) &G->send.deflate.stream);
+       if (HTTP_G->send.deflate.stream) {
+               http_encoding_deflate_stream_free((http_encoding_stream **) &HTTP_G->send.deflate.stream);
        }
-       if (G->send.inflate.stream) {
-               http_encoding_inflate_stream_free((http_encoding_stream **) &G->send.inflate.stream);
+       if (HTTP_G->send.inflate.stream) {
+               http_encoding_inflate_stream_free((http_encoding_stream **) &HTTP_G->send.inflate.stream);
        }
        return SUCCESS;
 }
 #endif
+/* }}} */
 
+/* {{{ eol_match(char **, int *) */
 static inline int eol_match(char **line, int *eol_len)
 {
        char *ptr = *line;
        
-       while (0x20 == *ptr) ++ptr;
+       while (' ' == *ptr) ++ptr;
 
        if (ptr == http_locate_eol(*line, eol_len)) {
                *line = ptr;
@@ -81,6 +89,7 @@ static inline int eol_match(char **line, int *eol_len)
                return 0;
        }
 }
+/* }}} */
                        
 /* {{{ char *http_encoding_dechunk(char *, size_t, char **, size_t *) */
 PHP_HTTP_API const char *_http_encoding_dechunk(const char *encoded, size_t encoded_len, char **decoded, size_t *decoded_len TSRMLS_DC)
@@ -156,67 +165,130 @@ PHP_HTTP_API const char *_http_encoding_dechunk(const char *encoded, size_t enco
 }
 /* }}} */
 
-#ifdef HTTP_HAVE_ZLIB
-
-#define HTTP_DEFLATE_LEVEL_SET(flags, level) \
-       switch (flags & 0xf) \
-       { \
-               default: \
-                       if ((flags & 0xf) < 10) { \
-                               level = flags & 0xf; \
-                               break; \
-                       } \
-               case HTTP_DEFLATE_LEVEL_DEF: \
-                       level = Z_DEFAULT_COMPRESSION; \
-               break; \
+/* {{{ int http_encoding_response_start(size_t) */
+PHP_HTTP_API int _http_encoding_response_start(size_t content_length, zend_bool ignore_http_ohandler TSRMLS_DC)
+{
+       int response = HTTP_G->send.deflate.response;
+#ifdef PHP_OUTPUT_NEWAPI
+       int ohandler = php_output_handler_started(ZEND_STRL("ob_gzhandler") TSRMLS_CC) || php_output_handler_started(ZEND_STRL("zlib output compression") TSRMLS_CC);
+#else
+       int ohandler = php_ob_handler_used("ob_gzhandler" TSRMLS_CC) || php_ob_handler_used("zlib output compression" TSRMLS_CC);
+#endif
+       
+       if (!ohandler && !ignore_http_ohandler) {
+#ifdef PHP_OUTPUT_NEWAPI
+               ohandler = php_output_handler_started(ZEND_STRL("ob_defaltehandler") TSRMLS_CC) || php_output_handler_started(ZEND_STRL("http deflate") TSRMLS_CC);
+#else
+               ohandler = php_ob_handler_used("ob_deflatehandler" TSRMLS_CC) || php_ob_handler_used("http deflate" TSRMLS_CC);
+#endif
        }
        
-#define HTTP_DEFLATE_WBITS_SET(flags, wbits) \
-       switch (flags & 0xf0) \
-       { \
-               case HTTP_DEFLATE_TYPE_GZIP: \
-                       wbits = HTTP_WINDOW_BITS_GZIP; \
-               break; \
-               case HTTP_DEFLATE_TYPE_RAW: \
-                       wbits = HTTP_WINDOW_BITS_RAW; \
-               break; \
-               default: \
-                       wbits = HTTP_WINDOW_BITS_ZLIB; \
-               break; \
+       if (response && !ohandler) {
+#ifdef HTTP_HAVE_ZLIB
+               HashTable *selected;
+               zval zsupported;
+               
+               HTTP_G->send.deflate.encoding = 0;
+               
+               INIT_PZVAL(&zsupported);
+               array_init(&zsupported);
+               add_next_index_stringl(&zsupported, "gzip", lenof("gzip"), 1);
+               add_next_index_stringl(&zsupported, "x-gzip", lenof("x-gzip"), 1);
+               add_next_index_stringl(&zsupported, "deflate", lenof("deflate"), 1);
+               
+               if ((selected = http_negotiate_encoding(&zsupported))) {
+                       STATUS hs = FAILURE;
+                       char *encoding = NULL;
+                       ulong idx;
+                       
+                       if (HASH_KEY_IS_STRING == zend_hash_get_current_key(selected, &encoding, &idx, 0) && encoding) {
+                               if (!strcmp(encoding, "gzip") || !strcmp(encoding, "x-gzip")) {
+                                       if (SUCCESS == (hs = http_send_header_string("Content-Encoding: gzip"))) {
+                                               HTTP_G->send.deflate.encoding = HTTP_ENCODING_GZIP;
+                                       }
+                               } else if (!strcmp(encoding, "deflate")) {
+                                       if (SUCCESS == (hs = http_send_header_string("Content-Encoding: deflate"))) {
+                                               HTTP_G->send.deflate.encoding = HTTP_ENCODING_DEFLATE;
+                                       }
+                               }
+                               if (SUCCESS == hs) {
+                                       http_send_header_string("Vary: Accept-Encoding");
+                               }
+                       }
+                       
+                       zend_hash_destroy(selected);
+                       FREE_HASHTABLE(selected);
+               }
+               
+               zval_dtor(&zsupported);
+#else
+               HTTP_G->send.deflate.encoding = 0;
+               php_start_ob_buffer_named("ob_gzhandler", 0, 0 TSRMLS_CC);
+#endif /* HTTP_HAVE_ZLIB */
+       } else if (content_length && !ohandler) {
+               /* emit a content-length header */
+               phpstr header;
+
+               phpstr_init(&header);
+               phpstr_appendf(&header, "Content-Length: %zu", content_length);
+               phpstr_fix(&header);
+               http_send_header_string_ex(PHPSTR_VAL(&header), PHPSTR_LEN(&header), 1);
+               phpstr_dtor(&header);
+       } else {
+               HTTP_G->send.deflate.encoding = 0;
        }
+       
+       return HTTP_G->send.deflate.encoding;
+}
+/* }}} */
 
-#define HTTP_INFLATE_WBITS_SET(flags, wbits) \
-       if (flags & HTTP_INFLATE_TYPE_RAW) { \
-               wbits = HTTP_WINDOW_BITS_RAW; \
-       } else { \
-               wbits = HTTP_WINDOW_BITS_ANY; \
-       }
+#ifdef HTTP_HAVE_ZLIB
 
-#define HTTP_DEFLATE_STRATEGY_SET(flags, strategy) \
-       switch (flags & 0xf00) \
-       { \
-               case HTTP_DEFLATE_STRATEGY_FILT: \
-                       strategy = Z_FILTERED; \
-               break; \
-               case HTTP_DEFLATE_STRATEGY_HUFF: \
-                       strategy = Z_HUFFMAN_ONLY; \
-               break; \
-               case HTTP_DEFLATE_STRATEGY_RLE: \
-                       strategy = Z_RLE; \
-               break; \
-               case HTTP_DEFLATE_STRATEGY_FIXED: \
-                       strategy = Z_FIXED; \
-               break; \
-               default: \
-                       strategy = Z_DEFAULT_STRATEGY; \
-               break; \
+/* {{{ inline int http_inflate_rounds */
+static inline int http_inflate_rounds(z_stream *Z, int flush, char **buf, size_t *len)
+{
+       int status = 0, round = 0;
+       phpstr buffer;
+       
+       *buf = NULL;
+       *len = 0;
+       
+       phpstr_init_ex(&buffer, Z->avail_in, PHPSTR_INIT_PREALLOC);
+       
+       do {
+               if (PHPSTR_NOMEM == phpstr_resize_ex(&buffer, buffer.size, 0, 1)) {
+                       status = Z_MEM_ERROR;
+               } else {
+                       Z->avail_out = buffer.free;
+                       Z->next_out = (Bytef *) buffer.data + buffer.used;
+#if 0
+                       fprintf(stderr, "\n%3d: %3d PRIOR: size=%7lu,\tfree=%7lu,\tused=%7lu,\tavail_in=%7lu,\tavail_out=%7lu\n", round, status, buffer.size, buffer.free, buffer.used, Z->avail_in, Z->avail_out);
+#endif
+                       status = inflate(Z, flush);
+                       
+                       buffer.used += buffer.free - Z->avail_out;
+                       buffer.free = Z->avail_out;
+#if 0
+                       fprintf(stderr, "%3d: %3d AFTER: size=%7lu,\tfree=%7lu,\tused=%7lu,\tavail_in=%7lu,\tavail_out=%7lu\n", round, status, buffer.size, buffer.free, buffer.used, Z->avail_in, Z->avail_out);
+#endif
+                       HTTP_INFLATE_BUFFER_SIZE_ALIGN(buffer.size);
+               }
+       } while ((Z_BUF_ERROR == status || (Z_OK == status && Z->avail_in)) && ++round < HTTP_INFLATE_ROUNDS);
+       
+       if (status == Z_OK || status == Z_STREAM_END) {
+               phpstr_shrink(&buffer);
+               phpstr_fix(&buffer);
+               *buf = buffer.data;
+               *len = buffer.used;
+       } else {
+               phpstr_dtor(&buffer);
        }
+       
+       return status;
+}
+/* }}} */
 
-#define HTTP_WINDOW_BITS_ZLIB  0x0000000f
-#define HTTP_WINDOW_BITS_GZIP  0x0000001f
-#define HTTP_WINDOW_BITS_ANY   0x0000002f
-#define HTTP_WINDOW_BITS_RAW   -0x000000f
-
+/* {{{ STATUS http_encoding_deflate(int, char *, size_t, char **, size_t *) */
 PHP_HTTP_API STATUS _http_encoding_deflate(int flags, const char *data, size_t data_len, char **encoded, size_t *encoded_len ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC TSRMLS_DC)
 {
        int status, level, wbits, strategy;
@@ -232,7 +304,7 @@ PHP_HTTP_API STATUS _http_encoding_deflate(int flags, const char *data, size_t d
        
        status = deflateInit2(&Z, level, Z_DEFLATED, wbits, MAX_MEM_LEVEL, strategy);
        if (Z_OK == status) {
-               *encoded_len = HTTP_ENCODING_BUFLEN(data_len);
+               *encoded_len = HTTP_DEFLATE_BUFFER_SIZE_GUESS(data_len);
                *encoded = emalloc_rel(*encoded_len);
                
                Z.next_in = (Bytef *) data;
@@ -254,63 +326,51 @@ PHP_HTTP_API STATUS _http_encoding_deflate(int flags, const char *data, size_t d
                }
        }
        
-       http_error_ex(HE_WARNING, HTTP_E_ENCODING, "Could not deflate data: %s (%s)", zError(status));
+       http_error_ex(HE_WARNING, HTTP_E_ENCODING, "Could not deflate data: %s", zError(status));
        return FAILURE;
 }
+/* }}} */
 
+/* {{{ STATUS http_encoding_inflate(char *, size_t, char **, size_t) */
 PHP_HTTP_API STATUS _http_encoding_inflate(const char *data, size_t data_len, char **decoded, size_t *decoded_len ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC TSRMLS_DC)
 {
-       int status, max = 0, wbits = HTTP_WINDOW_BITS_ANY;
        z_stream Z;
-       phpstr buffer;
+       int status, wbits = HTTP_WINDOW_BITS_ANY;
        
        memset(&Z, 0, sizeof(z_stream));
-       *decoded = NULL;
-       *decoded_len = 0;
-       
-       phpstr_init_ex(&buffer, data_len << 2, PHPSTR_INIT_PREALLOC);
-       buffer.size = data_len;
        
-retry_inflate:                 
+retry_raw_inflate:
        status = inflateInit2(&Z, wbits);
        if (Z_OK == status) {
                Z.next_in = (Bytef *) data;
                Z.avail_in = data_len;
                
-               do {
-                       phpstr_resize(&buffer, data_len << 2);
-
-                       do {
-                               Z.avail_out = (buffer.free -= Z.total_out - buffer.used);
-                               Z.next_out = (Bytef *) buffer.data + (buffer.used = Z.total_out);
-                               status = inflate(&Z, Z_NO_FLUSH);
-                       } while (Z_OK == status);
-               } while (Z_BUF_ERROR == status && ++max < HTTP_ENCODING_MAXTRY);
-               
-               if (Z_DATA_ERROR == status && HTTP_WINDOW_BITS_ANY == wbits) {
-                       /* raw deflated data? */
-                       inflateEnd(&Z);
-                       wbits = HTTP_WINDOW_BITS_RAW;
-                       goto retry_inflate;
+               switch (status = http_inflate_rounds(&Z, Z_NO_FLUSH, decoded, decoded_len)) {
+                       case Z_STREAM_END:
+                               inflateEnd(&Z);
+                               return SUCCESS;
+
+                       case Z_OK:
+                               status = Z_DATA_ERROR;
+                               break;
+                       
+                       case Z_DATA_ERROR:
+                               /* raw deflated data? */
+                               if (HTTP_WINDOW_BITS_ANY == wbits) {
+                                       inflateEnd(&Z);
+                                       wbits = HTTP_WINDOW_BITS_RAW;
+                                       goto retry_raw_inflate;
+                               }
                }
-               
                inflateEnd(&Z);
-               
-               if (Z_STREAM_END == status) {
-                       *decoded_len = Z.total_out;
-                       *decoded = erealloc_rel(buffer.data, *decoded_len + 1);
-                       (*decoded)[*decoded_len] = '\0';
-                       return SUCCESS;
-               } else {
-                       phpstr_dtor(&buffer);
-               }
        }
        
        http_error_ex(HE_WARNING, HTTP_E_ENCODING, "Could not inflate data: %s", zError(status));
        return FAILURE;
 }
+/* }}} */
 
-
+/* {{{ http_encoding_stream *_http_encoding_deflate_stream_init(http_encoding_stream *, int) */
 PHP_HTTP_API http_encoding_stream *_http_encoding_deflate_stream_init(http_encoding_stream *s, int flags ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC TSRMLS_DC)
 {
        int status, level, wbits, strategy, free_stream;
@@ -328,7 +388,7 @@ PHP_HTTP_API http_encoding_stream *_http_encoding_deflate_stream_init(http_encod
        if (Z_OK == (status = deflateInit2(&s->stream, level, Z_DEFLATED, wbits, MAX_MEM_LEVEL, strategy))) {
                int p = (flags & HTTP_ENCODING_STREAM_PERSISTENT) ? PHPSTR_INIT_PERSISTENT:0;
                
-               if ((s->stream.opaque = phpstr_init_ex(NULL, 0x8000, p))) {
+               if ((s->stream.opaque = phpstr_init_ex(NULL, HTTP_DEFLATE_BUFFER_SIZE, p))) {
                        return s;
                }
                deflateEnd(&s->stream);
@@ -341,7 +401,9 @@ PHP_HTTP_API http_encoding_stream *_http_encoding_deflate_stream_init(http_encod
        }
        return NULL;
 }
+/* }}} */
 
+/* {{{ http_encoding_stream *http_encoding_inflate_stream_init(http_encoding_stream *, int) */
 PHP_HTTP_API http_encoding_stream *_http_encoding_inflate_stream_init(http_encoding_stream *s, int flags ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC TSRMLS_DC)
 {
        int status, wbits, free_stream;
@@ -357,7 +419,7 @@ PHP_HTTP_API http_encoding_stream *_http_encoding_inflate_stream_init(http_encod
        if (Z_OK == (status = inflateInit2(&s->stream, wbits))) {
                int p = (flags & HTTP_ENCODING_STREAM_PERSISTENT) ? PHPSTR_INIT_PERSISTENT:0;
                
-               if ((s->stream.opaque = phpstr_init_ex(NULL, 0x8000, p))) {
+               if ((s->stream.opaque = phpstr_init_ex(NULL, HTTP_DEFLATE_BUFFER_SIZE, p))) {
                        return s;
                }
                inflateEnd(&s->stream);
@@ -370,7 +432,9 @@ PHP_HTTP_API http_encoding_stream *_http_encoding_inflate_stream_init(http_encod
        }
        return NULL;
 }
+/* }}} */
 
+/* {{{ STATUS http_encoding_deflate_stream_update(http_encoding_stream *, char *, size_t, char **, size_t *) */
 PHP_HTTP_API STATUS _http_encoding_deflate_stream_update(http_encoding_stream *s, const char *data, size_t data_len, char **encoded, size_t *encoded_len ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC TSRMLS_DC)
 {
        int status;
@@ -382,24 +446,26 @@ PHP_HTTP_API STATUS _http_encoding_deflate_stream_update(http_encoding_stream *s
        s->stream.avail_in = PHPSTR_LEN(s->stream.opaque);
        
        /* deflate */
-       *encoded_len = HTTP_ENCODING_BUFLEN(data_len);
+       *encoded_len = HTTP_DEFLATE_BUFFER_SIZE_GUESS(data_len);
        *encoded = emalloc_rel(*encoded_len);
        s->stream.avail_out = *encoded_len;
        s->stream.next_out = (Bytef *) *encoded;
        
-       switch (status = deflate(&s->stream, Z_NO_FLUSH))
-       {
+       switch (status = deflate(&s->stream, HTTP_ENCODING_STREAM_FLUSH_FLAG(s->flags))) {
                case Z_OK:
                case Z_STREAM_END:
                        /* cut processed chunk off the buffer */
-                       phpstr_cut(PHPSTR(s->stream.opaque), 0, PHPSTR_LEN(s->stream.opaque) - s->stream.avail_in);
+                       if (s->stream.avail_in) {
+                               phpstr_cut(PHPSTR(s->stream.opaque), 0, PHPSTR_LEN(s->stream.opaque) - s->stream.avail_in);
+                       } else {
+                               phpstr_reset(PHPSTR(s->stream.opaque));
+                       }
                        
                        /* size buffer down to actual size */
                        *encoded_len -= s->stream.avail_out;
                        *encoded = erealloc_rel(*encoded, *encoded_len + 1);
                        (*encoded)[*encoded_len] = '\0';
                        return SUCCESS;
-               break;
        }
        
        STR_SET(*encoded, NULL);
@@ -407,67 +473,52 @@ PHP_HTTP_API STATUS _http_encoding_deflate_stream_update(http_encoding_stream *s
        http_error_ex(HE_WARNING, HTTP_E_ENCODING, "Failed to update deflate stream: %s", zError(status));
        return FAILURE;
 }
+/* }}} */
 
+/* {{{ STATUS http_encoding_inflate_stream_update(http_encoding_stream *, char *, size_t, char **, size_t *) */
 PHP_HTTP_API STATUS _http_encoding_inflate_stream_update(http_encoding_stream *s, const char *data, size_t data_len, char **decoded, size_t *decoded_len ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC TSRMLS_DC)
 {
-       int status, max = 0;
+       int status;
        
        /* append input to buffer */
        phpstr_append(PHPSTR(s->stream.opaque), data, data_len);
        
-       /* for realloc() */
-       *decoded = NULL;
-       *decoded_len = data_len << 1;
-       
-       /* inflate */
-       do {
-               *decoded_len <<= 1;
-               *decoded = erealloc_rel(*decoded, *decoded_len);
-               
 retry_raw_inflate:
-               s->stream.next_in = (Bytef *) PHPSTR_VAL(s->stream.opaque);
-               s->stream.avail_in = PHPSTR_LEN(s->stream.opaque);
+       s->stream.next_in = (Bytef *) PHPSTR_VAL(s->stream.opaque);
+       s->stream.avail_in = PHPSTR_LEN(s->stream.opaque);
        
-               s->stream.next_out = (Bytef *) *decoded;
-               s->stream.avail_out = *decoded_len;
-               
-               switch (status = inflate(&s->stream, Z_NO_FLUSH))
-               {
-                       case Z_OK:
-                       case Z_STREAM_END:
-                               /* cut off */
+       switch (status = http_inflate_rounds(&s->stream, HTTP_ENCODING_STREAM_FLUSH_FLAG(s->flags), decoded, decoded_len)) {
+               case Z_OK:
+               case Z_STREAM_END:
+                       /* cut off */
+                       if (s->stream.avail_in) {
                                phpstr_cut(PHPSTR(s->stream.opaque), 0, PHPSTR_LEN(s->stream.opaque) - s->stream.avail_in);
-                               
-                               /* size down */
-                               *decoded_len -= s->stream.avail_out;
-                               *decoded = erealloc_rel(*decoded, *decoded_len + 1);
-                               (*decoded)[*decoded_len] = '\0';
-                               return SUCCESS;
-                       break;
-                       
-                       case Z_DATA_ERROR:
-                               /* raw deflated data ? */
-                               if (!(s->flags & HTTP_INFLATE_TYPE_RAW) && !s->stream.total_out) {
-                                       inflateEnd(&s->stream);
-                                       s->flags |= HTTP_INFLATE_TYPE_RAW;
-                                       inflateInit2(&s->stream, HTTP_WINDOW_BITS_RAW);
-                                       goto retry_raw_inflate;
-                               }
-                       break;
-               }
-       } while (Z_BUF_ERROR == status && ++max < HTTP_ENCODING_MAXTRY);
+                       } else {
+                               phpstr_reset(PHPSTR(s->stream.opaque));
+                       }
+                       return SUCCESS;
+               
+               case Z_DATA_ERROR:
+                       /* raw deflated data ? */
+                       if (!(s->flags & HTTP_INFLATE_TYPE_RAW) && !s->stream.total_out) {
+                               inflateEnd(&s->stream);
+                               s->flags |= HTTP_INFLATE_TYPE_RAW;
+                               inflateInit2(&s->stream, HTTP_WINDOW_BITS_RAW);
+                               goto retry_raw_inflate;
+                       }
+       }
        
-       STR_SET(*decoded, NULL);
-       *decoded_len = 0;
        http_error_ex(HE_WARNING, HTTP_E_ENCODING, "Failed to update inflate stream: %s", zError(status));
        return FAILURE;
 }
+/* }}} */
 
+/* {{{ STATUS http_encoding_deflate_stream_flush(http_encoding_stream *, char **, size_t *) */
 PHP_HTTP_API STATUS _http_encoding_deflate_stream_flush(http_encoding_stream *s, char **encoded, size_t *encoded_len ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC TSRMLS_DC)
 {
        int status;
        
-       *encoded_len = 0x800;
+       *encoded_len = HTTP_DEFLATE_BUFFER_SIZE;
        *encoded = emalloc_rel(*encoded_len);
        
        s->stream.avail_in = 0;
@@ -475,15 +526,13 @@ PHP_HTTP_API STATUS _http_encoding_deflate_stream_flush(http_encoding_stream *s,
        s->stream.avail_out = *encoded_len;
        s->stream.next_out = (Bytef *) *encoded;
        
-       switch (status = deflate(&s->stream, Z_SYNC_FLUSH))
-       {
+       switch (status = deflate(&s->stream, Z_FULL_FLUSH)) {
                case Z_OK:
                case Z_STREAM_END:
-                       *encoded_len = 0x800 - s->stream.avail_out;
+                       *encoded_len = HTTP_DEFLATE_BUFFER_SIZE - s->stream.avail_out;
                        *encoded = erealloc_rel(*encoded, *encoded_len + 1);
                        (*encoded)[*encoded_len] = '\0';
                        return SUCCESS;
-               break;
        }
        
        STR_SET(*encoded, NULL);
@@ -491,19 +540,23 @@ PHP_HTTP_API STATUS _http_encoding_deflate_stream_flush(http_encoding_stream *s,
        http_error_ex(HE_WARNING, HTTP_E_ENCODING, "Failed to flush deflate stream: %s", zError(status));
        return FAILURE;
 }
+/* }}} */
 
+/* {{{ STATUS http_encoding_inflate_straem_flush(http_encoding_stream *, char **, size_t *) */
 PHP_HTTP_API STATUS _http_encoding_inflate_stream_flush(http_encoding_stream *s, char **decoded, size_t *decoded_len ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC TSRMLS_DC)
 {
        /* noop */
        *decoded = estrndup("", *decoded_len = 0);
        return SUCCESS;
 }
+/* }}} */
 
+/* {{{ STATUS http_encoding_deflate_stream_finish(http_encoding_stream *, char **, size_t *) */
 PHP_HTTP_API STATUS _http_encoding_deflate_stream_finish(http_encoding_stream *s, char **encoded, size_t *encoded_len ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC TSRMLS_DC)
 {
        int status;
        
-       *encoded_len = 0x800;
+       *encoded_len = HTTP_DEFLATE_BUFFER_SIZE;
        *encoded = emalloc_rel(*encoded_len);
        
        /* deflate remaining input */
@@ -533,12 +586,20 @@ PHP_HTTP_API STATUS _http_encoding_deflate_stream_finish(http_encoding_stream *s
        http_error_ex(HE_WARNING, HTTP_E_ENCODING, "Failed to finish deflate stream: %s", zError(status));
        return FAILURE;
 }
+/* }}} */
 
+/* {{{ STATUS http_encoding_inflate_stream_finish(http_encoding_stream *, char **, size_t *) */
 PHP_HTTP_API STATUS _http_encoding_inflate_stream_finish(http_encoding_stream *s, char **decoded, size_t *decoded_len ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC TSRMLS_DC)
 {
        int status;
        
-       *decoded_len = s->stream.avail_in << 2;
+       if (!PHPSTR_LEN(s->stream.opaque)) {
+               *decoded = NULL;
+               *decoded_len = 0;
+               return SUCCESS;
+       }
+       
+       *decoded_len = (PHPSTR_LEN(s->stream.opaque) + 1) * HTTP_INFLATE_ROUNDS;
        *decoded = emalloc_rel(*decoded_len);
        
        /* inflate remaining input */
@@ -564,7 +625,9 @@ PHP_HTTP_API STATUS _http_encoding_inflate_stream_finish(http_encoding_stream *s
        http_error_ex(HE_WARNING, HTTP_E_ENCODING, "Failed to finish inflate stream: %s", zError(status));
        return FAILURE;
 }
+/* }}} */
 
+/* {{{ void http_encoding_deflate_stream_dtor(http_encoding_stream *) */
 PHP_HTTP_API void _http_encoding_deflate_stream_dtor(http_encoding_stream *s TSRMLS_DC)
 {
        if (s) {
@@ -574,7 +637,9 @@ PHP_HTTP_API void _http_encoding_deflate_stream_dtor(http_encoding_stream *s TSR
                deflateEnd(&s->stream);
        }
 }
+/* }}} */
 
+/* {{{ void http_encoding_inflate_stream_dtor(http_encoding_stream *) */
 PHP_HTTP_API void _http_encoding_inflate_stream_dtor(http_encoding_stream *s TSRMLS_DC)
 {
        if (s) {
@@ -584,7 +649,9 @@ PHP_HTTP_API void _http_encoding_inflate_stream_dtor(http_encoding_stream *s TSR
                inflateEnd(&s->stream);
        }
 }
+/* }}} */
 
+/* {{{ void http_encoding_deflate_stream_free(http_encoding_stream **) */
 PHP_HTTP_API void _http_encoding_deflate_stream_free(http_encoding_stream **s TSRMLS_DC)
 {
        if (s) {
@@ -595,7 +662,9 @@ PHP_HTTP_API void _http_encoding_deflate_stream_free(http_encoding_stream **s TS
                *s = NULL;
        }
 }
+/* }}} */
 
+/* {{{ void http_encoding_inflate_stream_free(http_encoding_stream **) */
 PHP_HTTP_API void _http_encoding_inflate_stream_free(http_encoding_stream **s TSRMLS_DC)
 {
        if (s) {
@@ -606,10 +675,12 @@ PHP_HTTP_API void _http_encoding_inflate_stream_free(http_encoding_stream **s TS
                *s = NULL;
        }
 }
+/* }}} */
 
+/* {{{ void http_ob_deflatehandler(char *, uint, char **, uint *, int) */
 void _http_ob_deflatehandler(char *output, uint output_len, char **handled_output, uint *handled_output_len, int mode TSRMLS_DC)
 {
-       getGlobals(G);
+       int encoding;
        
        *handled_output = NULL;
        *handled_output_len = 0;
@@ -617,41 +688,46 @@ void _http_ob_deflatehandler(char *output, uint output_len, char **handled_outpu
        if (mode & PHP_OUTPUT_HANDLER_START) {
                int flags;
                
-               if (G->send.deflate.stream) {
+               if (HTTP_G->send.deflate.stream) {
                        zend_error(E_ERROR, "ob_deflatehandler() can only be used once");
                        return;
                }
                
-               G->send.deflate.encoding = !0;
+               HTTP_G->send.deflate.response = 1;
+               encoding = http_encoding_response_start(0, 1);
+               HTTP_G->send.deflate.response = 0;
                
-               switch (http_encoding_response_start(0))
-               {
+               switch (encoding) {
                        case HTTP_ENCODING_GZIP:
                                flags = HTTP_DEFLATE_TYPE_GZIP;
-                       break;
+                               break;
                        
                        case HTTP_ENCODING_DEFLATE:
                                flags = HTTP_DEFLATE_TYPE_ZLIB;
-                       break;
+                               break;
                        
                        default:
                                goto deflate_passthru_plain;
-                       break;
                }
                
-               flags |= (G->send.deflate.start_flags &~ 0xf0);
-               G->send.deflate.stream = http_encoding_deflate_stream_init(NULL, flags);
+               flags |= (HTTP_G->send.deflate.start_flags &~ 0xf0);
+               HTTP_G->send.deflate.stream = http_encoding_deflate_stream_init(NULL, flags);
        }
        
-       if (G->send.deflate.stream) {
-               http_encoding_deflate_stream_update((http_encoding_stream *) G->send.deflate.stream, output, output_len, handled_output, handled_output_len);
+       if (HTTP_G->send.deflate.stream) {
+               if (output_len) {
+                       size_t tmp_len;
+                       
+                       http_encoding_deflate_stream_update((http_encoding_stream *) HTTP_G->send.deflate.stream, output, output_len, handled_output, &tmp_len);
+                       *handled_output_len = tmp_len;
+               }
                
                if (mode & PHP_OUTPUT_HANDLER_END) {
                        char *remaining = NULL;
                        size_t remaining_len = 0;
                        
-                       http_encoding_deflate_stream_finish((http_encoding_stream *) G->send.deflate.stream, &remaining, &remaining_len);
-                       http_encoding_deflate_stream_free((http_encoding_stream **) &G->send.deflate.stream);
+                       http_encoding_deflate_stream_finish((http_encoding_stream *) HTTP_G->send.deflate.stream, &remaining, &remaining_len);
+                       http_encoding_deflate_stream_free((http_encoding_stream **) &HTTP_G->send.deflate.stream);
                        if (remaining) {
                                *handled_output = erealloc(*handled_output, *handled_output_len + remaining_len + 1);
                                memcpy(*handled_output + *handled_output_len, remaining, remaining_len);
@@ -664,31 +740,36 @@ deflate_passthru_plain:
                *handled_output = estrndup(output, *handled_output_len = output_len);
        }
 }
+/* }}} */
 
+/* {{{ void http_ob_inflatehandler(char *, uint, char **, uint *, int) */
 void _http_ob_inflatehandler(char *output, uint output_len, char **handled_output, uint *handled_output_len, int mode TSRMLS_DC)
 {
-       getGlobals(G);
-       
        *handled_output = NULL;
        *handled_output_len = 0;
        
        if (mode & PHP_OUTPUT_HANDLER_START) {
-               if (G->send.inflate.stream) {
+               if (HTTP_G->send.inflate.stream) {
                        zend_error(E_ERROR, "ob_inflatehandler() can only be used once");
                        return;
                }
-               G->send.inflate.stream = http_encoding_inflate_stream_init(NULL, (HTTP_G(send).inflate.start_flags &~ 0xf0));
+               HTTP_G->send.inflate.stream = http_encoding_inflate_stream_init(NULL, (HTTP_G->send.inflate.start_flags &~ 0xf0));
        }
        
-       if (G->send.inflate.stream) {
-               http_encoding_inflate_stream_update((http_encoding_stream *) G->send.inflate.stream, output, output_len, handled_output, handled_output_len);
+       if (HTTP_G->send.inflate.stream) {
+               if (output_len) {
+                       size_t tmp_len;
+                       
+                       http_encoding_inflate_stream_update((http_encoding_stream *) HTTP_G->send.inflate.stream, output, output_len, handled_output, &tmp_len);
+                       *handled_output_len = tmp_len;
+               }
                
                if (mode & PHP_OUTPUT_HANDLER_END) {
                        char *remaining = NULL;
                        size_t remaining_len = 0;
                        
-                       http_encoding_inflate_stream_finish((http_encoding_stream *) G->send.inflate.stream, &remaining, &remaining_len);
-                       http_encoding_inflate_stream_free((http_encoding_stream **) &G->send.inflate.stream);
+                       http_encoding_inflate_stream_finish((http_encoding_stream *) HTTP_G->send.inflate.stream, &remaining, &remaining_len);
+                       http_encoding_inflate_stream_free((http_encoding_stream **) &HTTP_G->send.inflate.stream);
                        if (remaining) {
                                *handled_output = erealloc(*handled_output, *handled_output_len + remaining_len + 1);
                                memcpy(*handled_output + *handled_output_len, remaining, remaining_len);
@@ -700,197 +781,10 @@ void _http_ob_inflatehandler(char *output, uint output_len, char **handled_outpu
                *handled_output = estrndup(output, *handled_output_len = output_len);
        }
 }
-
-static const char http_encoding_gzip_header[] = {
-       (const char) 0x1f,                      // fixed value
-       (const char) 0x8b,                      // fixed value
-       (const char) Z_DEFLATED,        // compression algorithm
-       (const char) 0,                         // none of the possible flags defined by the GZIP "RFC"
-       (const char) 0,                         // MTIME
-       (const char) 0,                         // =*=
-       (const char) 0,                         // =*=
-       (const char) 0,                         // =*=
-       (const char) 0,                         // two possible flag values for 9 compression levels? o_O
-#ifdef PHP_WIN32
-       (const char) 0x0b                       // OS_CODE
-#else
-       (const char) 0x03                       // OS_CODE
-#endif
-};
-
-PHP_HTTP_API STATUS _http_encoding_gzencode_verify(const char *data, size_t data_len, const char **encoded, size_t *encoded_len, int error_level TSRMLS_DC)
-{
-       size_t offset = sizeof(http_encoding_gzip_header);
-       
-       if (data_len < offset) {
-               goto really_bad_gzip_header;
-       }
-       
-       if (data[0] != (const char) 0x1F || data[1] != (const char) 0x8B) {
-               http_error_ex(error_level TSRMLS_CC, HTTP_E_ENCODING, "Unrecognized GZIP header start: 0x%02X 0x%02X", (int) data[0], (int) (data[1] & 0xFF));
-               return FAILURE;
-       }
-       
-       if (data[2] != (const char) Z_DEFLATED) {
-               http_error_ex(error_level TSRMLS_CC, HTTP_E_ENCODING, "Unrecognized compression format (%d)", (int) (data[2] & 0xFF));
-               /* still try to decode */
-       }
-       if ((data[3] & 0x4) == 0x4) {
-               if (data_len < offset + 2) {
-                       goto really_bad_gzip_header;
-               }
-               /* there are extra fields, the length follows the common header as 2 bytes LSB */
-               offset += (unsigned) ((data[offset] & 0xFF));
-               offset += 1;
-               offset += (unsigned) ((data[offset] & 0xFF) << 8);
-               offset += 1;
-       }
-       if ((data[3] & 0x8) == 0x8) {
-               if (data_len <= offset) {
-                       goto really_bad_gzip_header;
-               }
-               /* there's a file name */
-               offset += strlen(&data[offset]) + 1 /*NUL*/;
-       }
-       if ((data[3] & 0x10) == 0x10) {
-               if (data_len <= offset) {
-                       goto really_bad_gzip_header;
-               }
-               /* there's a comment */
-               offset += strlen(&data[offset]) + 1 /* NUL */;
-       }
-       if ((data[3] & 0x2) == 0x2) {
-               /* there's a CRC16 of the header */
-               offset += 2;
-               if (data_len <= offset) {
-                       goto really_bad_gzip_header;
-               } else {
-                       ulong crc, cmp;
-                       
-                       cmp =  (unsigned) ((data[offset-2] & 0xFF));
-                       cmp += (unsigned) ((data[offset-1] & 0xFF) << 8);
-                       
-                       crc = crc32(0L, Z_NULL, 0);
-                       crc = crc32(crc, (const Bytef *) data, sizeof(http_encoding_gzip_header));
-                       
-                       if (cmp != (crc & 0xFFFF)) {
-                               http_error_ex(error_level TSRMLS_CC, HTTP_E_ENCODING, "GZIP headers CRC checksums so not match (%lu, %lu)", cmp, crc & 0xFFFF);
-                               return FAILURE;
-                       }
-               }
-       }
-       
-       if (data_len < offset + 8) {
-               http_error(error_level TSRMLS_CC, HTTP_E_ENCODING, "Missing or truncated GZIP footer");
-               return FAILURE;
-       }
-       
-       if (encoded) {
-               *encoded = data + offset;
-       }
-       if (encoded_len) {
-               *encoded_len = data_len - offset - 8 /* size of the assumed GZIP footer */;     
-       }
-       
-       return SUCCESS;
-       
-really_bad_gzip_header:
-       http_error(error_level TSRMLS_CC, HTTP_E_ENCODING, "Missing or truncated GZIP header");
-       return FAILURE;
-}
-
-PHP_HTTP_API STATUS _http_encoding_gzdecode_verify(const char *data, size_t data_len, const char *decoded, size_t decoded_len, int error_level TSRMLS_DC)
-{
-       STATUS status = SUCCESS;
-       ulong len, cmp, crc;
-       
-       crc = crc32(0L, Z_NULL, 0);
-       crc = crc32(crc, (const Bytef *) decoded, decoded_len);
-       
-       cmp  = (unsigned) ((data[data_len-8] & 0xFF));
-       cmp += (unsigned) ((data[data_len-7] & 0xFF) << 8);
-       cmp += (unsigned) ((data[data_len-6] & 0xFF) << 16);
-       cmp += (unsigned) ((data[data_len-5] & 0xFF) << 24);
-       len  = (unsigned) ((data[data_len-4] & 0xFF));
-       len += (unsigned) ((data[data_len-3] & 0xFF) << 8);
-       len += (unsigned) ((data[data_len-2] & 0xFF) << 16);
-       len += (unsigned) ((data[data_len-1] & 0xFF) << 24);
-       
-       if (cmp != crc) {
-               http_error_ex(error_level TSRMLS_CC, HTTP_E_ENCODING, "Could not verify data integrity: CRC checksums do not match (%lu, %lu)", cmp, crc);
-               status = FAILURE;
-       }
-       if (len != decoded_len) {
-               http_error_ex(error_level TSRMLS_CC, HTTP_E_ENCODING, "Could not verify data integrity: data sizes do not match (%lu, %lu)", len, decoded_len);
-               status = FAILURE;
-       }
-       return status;
-}
+/* }}} */
 
 #endif /* HTTP_HAVE_ZLIB */
 
-PHP_HTTP_API int _http_encoding_response_start(size_t content_length TSRMLS_DC)
-{
-       if (    php_ob_handler_used("ob_gzhandler" TSRMLS_CC) ||
-                       php_ob_handler_used("zlib output compression" TSRMLS_CC)) {
-               HTTP_G(send).deflate.encoding = 0;
-       } else {
-               if (!HTTP_G(send).deflate.encoding) {
-                       /* emit a content-length header */
-                       if (content_length) {
-                               char cl_header_str[128];
-                               size_t cl_header_len;
-                               cl_header_len = snprintf(cl_header_str, lenof(cl_header_str), "Content-Length: %zu", content_length);
-                               http_send_header_string_ex(cl_header_str, cl_header_len, 1);
-                       }
-               } else {
-#ifndef HTTP_HAVE_ZLIB
-                       HTTP_G(send).deflate.encoding = 0;
-                       php_start_ob_buffer_named("ob_gzhandler", 0, 0 TSRMLS_CC);
-#else
-                       HashTable *selected;
-                       zval zsupported;
-                       
-                       INIT_PZVAL(&zsupported);
-                       array_init(&zsupported);
-                       add_next_index_stringl(&zsupported, "gzip", lenof("gzip"), 1);
-                       add_next_index_stringl(&zsupported, "x-gzip", lenof("x-gzip"), 1);
-                       add_next_index_stringl(&zsupported, "deflate", lenof("deflate"), 1);
-                       
-                       HTTP_G(send).deflate.encoding = 0;
-                       
-                       if ((selected = http_negotiate_encoding(&zsupported))) {
-                               STATUS hs = FAILURE;
-                               char *encoding = NULL;
-                               ulong idx;
-                               
-                               if (HASH_KEY_IS_STRING == zend_hash_get_current_key(selected, &encoding, &idx, 0) && encoding) {
-                                       if (!strcmp(encoding, "gzip") || !strcmp(encoding, "x-gzip")) {
-                                               if (SUCCESS == (hs = http_send_header_string("Content-Encoding: gzip"))) {
-                                                       HTTP_G(send).deflate.encoding = HTTP_ENCODING_GZIP;
-                                               }
-                                       } else if (!strcmp(encoding, "deflate")) {
-                                               if (SUCCESS == (hs = http_send_header_string("Content-Encoding: deflate"))) {
-                                                       HTTP_G(send).deflate.encoding = HTTP_ENCODING_DEFLATE;
-                                               }
-                                       }
-                                       if (SUCCESS == hs) {
-                                               http_send_header_string("Vary: Accept-Encoding");
-                                       }
-                               }
-                               
-                               zend_hash_destroy(selected);
-                               FREE_HASHTABLE(selected);
-                       }
-                       
-                       zval_dtor(&zsupported);
-                       return HTTP_G(send).deflate.encoding;
-#endif
-               }
-       }
-       return 0;
-}
-
 /*
  * Local variables:
  * tab-width: 4