- ditch usage of clunky HTTP_GSC/HTTP_GSP macros
[m6w6/ext-http] / http_deflatestream_object.c
index 9d99bc9aa239c9d371d520e70cb6b518d0116f15..d1e0d6fe5680d911fdf85e46276e574e94d99f07 100644 (file)
@@ -30,6 +30,11 @@ HTTP_BEGIN_ARGS(__construct, 0)
        HTTP_ARG_VAL(flags, 0)
 HTTP_END_ARGS;
 
+HTTP_BEGIN_ARGS(factory, 0)
+       HTTP_ARG_VAL(flags, 0)
+       HTTP_ARG_VAL(class_name, 0)
+HTTP_END_ARGS;
+
 HTTP_BEGIN_ARGS(update, 1)
        HTTP_ARG_VAL(data, 0)
 HTTP_END_ARGS;
@@ -50,6 +55,8 @@ zend_function_entry http_deflatestream_object_fe[] = {
        HTTP_DEFLATE_ME(flush, ZEND_ACC_PUBLIC)
        HTTP_DEFLATE_ME(finish, ZEND_ACC_PUBLIC)
        
+       HTTP_DEFLATE_ME(factory, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
+       
        EMPTY_FUNCTION_ENTRY
 };
 static zend_object_handlers http_deflatestream_object_handlers;
@@ -139,11 +146,7 @@ void _http_deflatestream_object_free(zend_object *object TSRMLS_DC)
 }
 
 /* {{{ proto void HttpDeflateStream::__construct([int flags = 0])
- *
- * Creates a new HttpDeflateStream object instance.
- * 
- * Accepts an optional int parameter specifying how to initialize the deflate stream.
- */ 
+       Creates a new HttpDeflateStream object instance. */
 PHP_METHOD(HttpDeflateStream, __construct)
 {
        long flags = 0;
@@ -162,14 +165,29 @@ PHP_METHOD(HttpDeflateStream, __construct)
 }
 /* }}} */
 
+/* {{{ proto HttpDeflateStream HttpDeflateStream::factory([int flags[, string class = "HttpDeflateStream"]])
+       Creates a new HttpDeflateStream object instance. */
+PHP_METHOD(HttpDeflateStream, factory)
+{
+       long flags = 0;
+       char *cn = NULL;
+       int cl = 0;
+       
+       SET_EH_THROW_HTTP();
+       if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|ls", &flags, &cn, &cl)) {
+               zend_object_value ov;
+               http_encoding_stream *s = http_encoding_deflate_stream_init(NULL, flags & 0x0fffffff);
+               
+               if (SUCCESS == http_object_new(&ov, cn, cl, _http_deflatestream_object_new_ex, http_deflatestream_object_ce, s, NULL)) {
+                       RETVAL_OBJVAL(ov, 0);
+               }
+       }
+       SET_EH_NORMAL();
+}
+/* }}} */
+
 /* {{{ proto string HttpDeflateStream::update(string data)
- *
- * Passes more data through the deflate stream.
- * 
- * Expects a string parameter containing (a part of) the data to deflate.
- * 
- * Returns deflated data on success or FALSE on failure.
- */
+       Passes more data through the deflate stream. */
 PHP_METHOD(HttpDeflateStream, update)
 {
        int data_len;
@@ -194,11 +212,7 @@ PHP_METHOD(HttpDeflateStream, update)
 /* }}} */
 
 /* {{{ proto string HttpDeflateStream::flush([string data])
- *
- * Flushes the deflate stream.
- * 
- * Returns some deflated data as string on success or FALSE on failure.
- */ 
+       Flushes the deflate stream. */
 PHP_METHOD(HttpDeflateStream, flush)
 {
        int data_len = 0;
@@ -239,11 +253,7 @@ PHP_METHOD(HttpDeflateStream, flush)
 /* }}} */
 
 /* {{{ proto string HttpDeflateStream::finish([string data])
- *
- * Finalizes the deflate stream.  The deflate stream can be reused after finalizing.
- * 
- * Returns the final part of deflated data.
- */ 
+       Finalizes the deflate stream.  The deflate stream can be reused after finalizing. */
 PHP_METHOD(HttpDeflateStream, finish)
 {
        int data_len = 0;
@@ -287,7 +297,6 @@ PHP_METHOD(HttpDeflateStream, finish)
 }
 /* }}} */
 
-
 #endif /* ZEND_ENGINE_2 && HTTP_HAVE_ZLIB*/
 
 /*