1mod _type;
4mod bailout_guard;
5pub mod ce;
6mod class;
7#[cfg(feature = "observer")]
8pub(crate) mod error_observer;
9mod ex;
10#[cfg(feature = "observer")]
11pub(crate) mod exception_observer;
12mod function;
13mod globals;
14mod handlers;
15mod ini_entry_def;
16mod linked_list;
17mod module;
18pub(crate) mod module_globals;
19#[cfg(feature = "observer")]
20pub(crate) mod observer;
21mod streams;
22mod try_catch;
23#[cfg(feature = "observer")]
24pub(crate) mod zend_extension;
25
26use crate::{
27 error::Result,
28 ffi::{php_output_write, php_printf, sapi_module},
29};
30use std::ffi::CString;
31use std::os::raw::c_char;
32
33pub use _type::ZendType;
34pub use bailout_guard::BailoutGuard;
35pub use bailout_guard::run_bailout_cleanups;
36pub use class::ClassEntry;
37#[cfg(feature = "observer")]
38pub use error_observer::{BacktraceFrame, ErrorInfo, ErrorObserver, ErrorType};
39pub use ex::ExecuteData;
40#[cfg(feature = "observer")]
41pub use exception_observer::{ExceptionInfo, ExceptionObserver};
42pub use function::Function;
43pub use function::FunctionEntry;
44pub use globals::ExecutorGlobals;
45pub use globals::FileGlobals;
46pub use globals::ProcessGlobals;
47pub use globals::SapiGlobals;
48pub use globals::SapiHeader;
49pub use globals::SapiHeaders;
50pub use globals::SapiModule;
51pub use handlers::ZendObjectHandlers;
52pub use ini_entry_def::IniEntryDef;
53pub use linked_list::ZendLinkedList;
54pub use module::{ModuleEntry, StaticModuleEntry, cleanup_module_allocations};
55pub use module_globals::{ModuleGlobal, ModuleGlobals};
56#[cfg(feature = "observer")]
57pub use observer::{FcallInfo, FcallObserver};
58pub use streams::*;
59#[cfg(feature = "embed")]
60pub(crate) use try_catch::panic_wrapper;
61pub use try_catch::{CatchError, bailout, try_catch, try_catch_first};
62#[cfg(feature = "observer")]
63pub use zend_extension::{ZendExtensionBuilder, ZendExtensionHandler};
64
65#[cfg(feature = "observer")]
74pub(crate) unsafe fn register_extension(ext: *mut crate::ffi::zend_extension) {
75 unsafe {
76 crate::ffi::zend_register_extension(ext, std::ptr::null_mut());
77 }
78}
79
80const FORMAT_STR: &[u8] = b"%s\0";
82
83pub fn printf(message: &str) -> Result<()> {
95 let message = CString::new(message)?;
96 unsafe {
97 php_printf(FORMAT_STR.as_ptr().cast(), message.as_ptr());
98 };
99 Ok(())
100}
101
102pub fn write(data: &[u8]) -> Result<usize> {
133 unsafe {
134 if let Some(ub_write) = sapi_module.ub_write {
135 Ok(ub_write(data.as_ptr().cast::<c_char>(), data.len()))
136 } else {
137 Err(crate::error::Error::SapiWriteUnavailable)
138 }
139 }
140}
141
142#[inline]
174#[must_use]
175pub fn output_write(data: &[u8]) -> usize {
176 unsafe { php_output_write(data.as_ptr().cast::<c_char>(), data.len()) }
177}
178
179pub fn php_sapi_name() -> String {
187 let c_str = unsafe { std::ffi::CStr::from_ptr(sapi_module.name) };
188 c_str.to_str().expect("Unable to parse CStr").to_string()
189}