aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-14 19:50:40 +0900
committernsfisis <nsfisis@gmail.com>2026-05-14 19:50:40 +0900
commit34ff0250aca29044181251a6763916bd55433962 (patch)
treec010593869e584dc71e04938554f73367929c511
parenta2f96c58f82fbd5544a9c2e7cababb0fbc445b51 (diff)
downloadphp-shirabe-34ff0250aca29044181251a6763916bd55433962.tar.gz
php-shirabe-34ff0250aca29044181251a6763916bd55433962.tar.zst
php-shirabe-34ff0250aca29044181251a6763916bd55433962.zip
feat(port): port Silencer.php
-rw-r--r--crates/shirabe-php-shim/src/lib.rs11
-rw-r--r--crates/shirabe/src/util/silencer.rs47
2 files changed, 58 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/lib.rs b/crates/shirabe-php-shim/src/lib.rs
index 35202ba..c2a20cf 100644
--- a/crates/shirabe-php-shim/src/lib.rs
+++ b/crates/shirabe-php-shim/src/lib.rs
@@ -139,6 +139,17 @@ pub fn implode(glue: &str, pieces: &[String]) -> String {
todo!()
}
+pub fn error_reporting(level: Option<i64>) -> i64 {
+ todo!()
+}
+
+pub const E_WARNING: i64 = 2;
+pub const E_NOTICE: i64 = 8;
+pub const E_USER_WARNING: i64 = 512;
+pub const E_USER_NOTICE: i64 = 1024;
+pub const E_DEPRECATED: i64 = 8192;
+pub const E_USER_DEPRECATED: i64 = 16384;
+
pub const PHP_URL_PATH: i64 = 5;
pub const PATHINFO_FILENAME: i64 = 64;
pub const DIRECTORY_SEPARATOR: &str = "/";
diff --git a/crates/shirabe/src/util/silencer.rs b/crates/shirabe/src/util/silencer.rs
index 4c45f23..39ec1db 100644
--- a/crates/shirabe/src/util/silencer.rs
+++ b/crates/shirabe/src/util/silencer.rs
@@ -1 +1,48 @@
//! ref: composer/src/Composer/Util/Silencer.php
+
+use std::sync::Mutex;
+use anyhow::Result;
+use shirabe_php_shim::{
+ error_reporting,
+ E_WARNING, E_NOTICE, E_USER_WARNING, E_USER_NOTICE, E_DEPRECATED, E_USER_DEPRECATED,
+};
+
+static STACK: Mutex<Vec<i64>> = Mutex::new(Vec::new());
+
+pub struct Silencer;
+
+impl Silencer {
+ pub fn suppress(mask: Option<i64>) -> i64 {
+ let mask = mask.unwrap_or(E_WARNING | E_NOTICE | E_USER_WARNING | E_USER_NOTICE | E_DEPRECATED | E_USER_DEPRECATED);
+ let old = error_reporting(None);
+ STACK.lock().unwrap().push(old);
+ error_reporting(Some(old & !mask));
+ old
+ }
+
+ pub fn restore() {
+ let mut stack = STACK.lock().unwrap();
+ if !stack.is_empty() {
+ let level = stack.pop().unwrap();
+ drop(stack);
+ error_reporting(Some(level));
+ }
+ }
+
+ pub fn call<F, T>(callable: F) -> Result<T>
+ where
+ F: FnOnce() -> Result<T>,
+ {
+ Self::suppress(None);
+ match callable() {
+ Ok(result) => {
+ Self::restore();
+ Ok(result)
+ }
+ Err(e) => {
+ Self::restore();
+ Err(e)
+ }
+ }
+ }
+}