Skip to content

Commit

Permalink
chore(ext/node): cleanup zlib state ops (denoland#24300)
Browse files Browse the repository at this point in the history
  • Loading branch information
littledivy authored and zebreus committed Jul 8, 2024
1 parent 3859d20 commit 673da2a
Showing 1 changed file with 14 additions and 23 deletions.
37 changes: 14 additions & 23 deletions ext/node/ops/zlib/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
use deno_core::error::type_error;
use deno_core::error::AnyError;
use deno_core::op2;
use std::borrow::Cow;
use std::cell::RefCell;
use zlib::*;

mod alloc;
Expand Down Expand Up @@ -230,17 +228,17 @@ impl ZlibInner {
}

struct Zlib {
inner: RefCell<Option<ZlibInner>>,
inner: Option<ZlibInner>,
}

impl deno_core::GcResource for Zlib {}

impl deno_core::Resource for Zlib {
fn name(&self) -> Cow<str> {
"zlib".into()
impl Zlib {
fn as_mut(&mut self) -> Option<&mut ZlibInner> {
self.inner.as_mut()
}
}

impl deno_core::GcResource for Zlib {}

#[op2]
#[cppgc]
pub fn op_zlib_new(#[smi] mode: i32) -> Result<Zlib, AnyError> {
Expand All @@ -251,15 +249,12 @@ pub fn op_zlib_new(#[smi] mode: i32) -> Result<Zlib, AnyError> {
..Default::default()
};

Ok(Zlib {
inner: RefCell::new(Some(inner)),
})
Ok(Zlib { inner: Some(inner) })
}

#[op2(fast)]
pub fn op_zlib_close(#[cppgc] resource: &Zlib) -> Result<(), AnyError> {
let mut resource = resource.inner.borrow_mut();
let zlib = resource
pub fn op_zlib_close(#[cppgc] zlib: &mut Zlib) -> Result<(), AnyError> {
let zlib = zlib
.as_mut()
.ok_or_else(|| type_error("zlib not initialized"))?;

Expand All @@ -273,7 +268,7 @@ pub fn op_zlib_close(#[cppgc] resource: &Zlib) -> Result<(), AnyError> {
#[op2(fast)]
#[smi]
pub fn op_zlib_write(
#[cppgc] resource: &Zlib,
#[cppgc] zlib: &mut Zlib,
#[smi] flush: i32,
#[buffer] input: &[u8],
#[smi] in_off: u32,
Expand All @@ -283,7 +278,6 @@ pub fn op_zlib_write(
#[smi] out_len: u32,
#[buffer] result: &mut [u32],
) -> Result<i32, AnyError> {
let mut zlib = resource.inner.borrow_mut();
let zlib = zlib
.as_mut()
.ok_or_else(|| type_error("zlib not initialized"))?;
Expand All @@ -301,14 +295,13 @@ pub fn op_zlib_write(
#[op2(fast)]
#[smi]
pub fn op_zlib_init(
#[cppgc] resource: &Zlib,
#[cppgc] zlib: &mut Zlib,
#[smi] level: i32,
#[smi] window_bits: i32,
#[smi] mem_level: i32,
#[smi] strategy: i32,
#[buffer] dictionary: &[u8],
) -> Result<i32, AnyError> {
let mut zlib = resource.inner.borrow_mut();
let zlib = zlib
.as_mut()
.ok_or_else(|| type_error("zlib not initialized"))?;
Expand Down Expand Up @@ -348,8 +341,7 @@ pub fn op_zlib_init(

#[op2(fast)]
#[smi]
pub fn op_zlib_reset(#[cppgc] resource: &Zlib) -> Result<i32, AnyError> {
let mut zlib = resource.inner.borrow_mut();
pub fn op_zlib_reset(#[cppgc] zlib: &mut Zlib) -> Result<i32, AnyError> {
let zlib = zlib
.as_mut()
.ok_or_else(|| type_error("zlib not initialized"))?;
Expand All @@ -361,10 +353,9 @@ pub fn op_zlib_reset(#[cppgc] resource: &Zlib) -> Result<i32, AnyError> {

#[op2(fast)]
pub fn op_zlib_close_if_pending(
#[cppgc] resource: &Zlib,
#[cppgc] zlib: &mut Zlib,
) -> Result<(), AnyError> {
let pending_close = {
let mut zlib = resource.inner.borrow_mut();
let zlib = zlib
.as_mut()
.ok_or_else(|| type_error("zlib not initialized"))?;
Expand All @@ -373,7 +364,7 @@ pub fn op_zlib_close_if_pending(
zlib.pending_close
};
if pending_close {
if let Some(mut res) = resource.inner.borrow_mut().take() {
if let Some(mut res) = zlib.inner.take() {
let _ = res.close();
}
}
Expand Down

0 comments on commit 673da2a

Please sign in to comment.