From 1f0360c07382dbd86066d1aa8aa4bae34aff18c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Mon, 24 Apr 2023 12:22:21 +0200 Subject: refactor(ext/node): reorganize ops (#18799) Move all op related code of "ext/node" to "ext/node/ops" module. These files were unnecessarily scattered around the extension. --- ext/node/zlib/mode.rs | 71 --------------------------------------------------- 1 file changed, 71 deletions(-) delete mode 100644 ext/node/zlib/mode.rs (limited to 'ext/node/zlib/mode.rs') diff --git a/ext/node/zlib/mode.rs b/ext/node/zlib/mode.rs deleted file mode 100644 index ef89805ba..000000000 --- a/ext/node/zlib/mode.rs +++ /dev/null @@ -1,71 +0,0 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. - -use libz_sys as sys; - -#[derive(Debug)] -pub enum Error { - BadArgument, -} - -impl std::fmt::Display for Error { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - match self { - Error::BadArgument => write!(f, "bad argument"), - } - } -} - -impl std::error::Error for Error {} - -macro_rules! repr_i32 { - ($(#[$meta:meta])* $vis:vis enum $name:ident { - $($(#[$vmeta:meta])* $vname:ident $(= $val:expr)?,)* - }) => { - $(#[$meta])* - $vis enum $name { - $($(#[$vmeta])* $vname $(= $val)?,)* - } - - impl core::convert::TryFrom for $name { - type Error = Error; - - fn try_from(v: i32) -> Result { - match v { - $(x if x == $name::$vname as i32 => Ok($name::$vname),)* - _ => Err(Error::BadArgument), - } - } - } - } - } - -repr_i32! { - #[repr(i32)] - #[derive(Clone, Copy, Debug, PartialEq, Default)] - pub enum Mode { - #[default] - None, - Deflate, - Inflate, - Gzip, - Gunzip, - DeflateRaw, - InflateRaw, - Unzip, - } -} - -repr_i32! { - #[repr(i32)] - #[derive(Clone, Copy, Debug, PartialEq, Default)] - pub enum Flush { - #[default] - None = sys::Z_NO_FLUSH, - Partial = sys::Z_PARTIAL_FLUSH, - Sync = sys::Z_SYNC_FLUSH, - Full = sys::Z_FULL_FLUSH, - Finish = sys::Z_FINISH, - Block = sys::Z_BLOCK, - Trees = sys::Z_TREES, - } -} -- cgit v1.2.3