summaryrefslogtreecommitdiff
path: root/src/node_zlib.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_zlib.cc')
-rw-r--r--src/node_zlib.cc30
1 files changed, 28 insertions, 2 deletions
diff --git a/src/node_zlib.cc b/src/node_zlib.cc
index deacb713d..406c042b9 100644
--- a/src/node_zlib.cc
+++ b/src/node_zlib.cc
@@ -39,7 +39,8 @@ static Persistent<String> callback_sym;
static Persistent<String> onerror_sym;
enum node_zlib_mode {
- DEFLATE = 1,
+ NONE,
+ DEFLATE,
INFLATE,
GZIP,
GUNZIP,
@@ -60,17 +61,40 @@ class ZCtx : public ObjectWrap {
ZCtx(node_zlib_mode mode) : ObjectWrap(), dictionary_(NULL), mode_(mode) {}
+
~ZCtx() {
+ Clear();
+ }
+
+
+ void Clear() {
+ assert(!write_in_progress_ && "write in progress");
+ assert(init_done_ && "clear before init");
+ assert(mode_ <= UNZIP);
+
if (mode_ == DEFLATE || mode_ == GZIP || mode_ == DEFLATERAW) {
(void)deflateEnd(&strm_);
} else if (mode_ == INFLATE || mode_ == GUNZIP || mode_ == INFLATERAW ||
mode_ == UNZIP) {
(void)inflateEnd(&strm_);
}
+ mode_ = NONE;
+
+ if (dictionary_ != NULL) {
+ delete[] dictionary_;
+ dictionary_ = NULL;
+ }
+ }
+
- if (dictionary_ != NULL) delete[] dictionary_;
+ static Handle<Value> Clear(const Arguments& args) {
+ HandleScope scope;
+ ZCtx *ctx = ObjectWrap::Unwrap<ZCtx>(args.This());
+ ctx->Clear();
+ return scope.Close(Undefined());
}
+
// write(flush, in, in_off, in_len, out, out_off, out_len)
static Handle<Value> Write(const Arguments& args) {
HandleScope scope;
@@ -78,6 +102,7 @@ class ZCtx : public ObjectWrap {
ZCtx *ctx = ObjectWrap::Unwrap<ZCtx>(args.This());
assert(ctx->init_done_ && "write before init");
+ assert(ctx->mode_ != NONE && "already finalized");
assert(!ctx->write_in_progress_ && "write already in progress");
ctx->write_in_progress_ = true;
@@ -450,6 +475,7 @@ void InitZlib(Handle<Object> target) {
NODE_SET_PROTOTYPE_METHOD(z, "write", ZCtx::Write);
NODE_SET_PROTOTYPE_METHOD(z, "init", ZCtx::Init);
+ NODE_SET_PROTOTYPE_METHOD(z, "clear", ZCtx::Clear);
NODE_SET_PROTOTYPE_METHOD(z, "reset", ZCtx::Reset);
z->SetClassName(String::NewSymbol("Zlib"));