mirror of
https://github.com/penpot/penpot.git
synced 2026-02-27 06:43:53 +00:00
227 lines
5.9 KiB
Rust
227 lines
5.9 KiB
Rust
#[allow(dead_code)]
|
|
#[cfg(target_arch = "wasm32")]
|
|
pub fn get_time() -> i32 {
|
|
crate::get_now!() as i32
|
|
}
|
|
|
|
#[allow(dead_code)]
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
pub fn get_time() -> i32 {
|
|
let now = std::time::Instant::now();
|
|
now.elapsed().as_millis() as i32
|
|
}
|
|
|
|
/// Log a message to the browser console (only when profile-macros feature is enabled)
|
|
#[macro_export]
|
|
macro_rules! console_log {
|
|
($($arg:tt)*) => {
|
|
#[cfg(all(feature = "profile-macros", target_arch = "wasm32"))]
|
|
{
|
|
use $crate::run_script;
|
|
run_script!(format!("console.log('{}')", format!($($arg)*)));
|
|
}
|
|
#[cfg(all(feature = "profile-macros", not(target_arch = "wasm32")))]
|
|
{
|
|
println!($($arg)*);
|
|
}
|
|
};
|
|
}
|
|
|
|
/// Begin a timed section with logging (only when profile-macros feature is enabled)
|
|
/// Returns the start time - store it and pass to end_timed_log!
|
|
#[macro_export]
|
|
macro_rules! begin_timed_log {
|
|
($name:expr) => {{
|
|
#[cfg(feature = "profile-macros")]
|
|
{
|
|
$crate::performance::get_time()
|
|
}
|
|
#[cfg(not(feature = "profile-macros"))]
|
|
{
|
|
0.0
|
|
}
|
|
}};
|
|
}
|
|
|
|
/// End a timed section and log the duration (only when profile-macros feature is enabled)
|
|
#[macro_export]
|
|
macro_rules! end_timed_log {
|
|
($name:expr, $start:expr) => {{
|
|
#[cfg(all(feature = "profile-macros", target_arch = "wasm32"))]
|
|
{
|
|
let duration = $crate::performance::get_time() - $start;
|
|
use $crate::run_script;
|
|
run_script!(format!(
|
|
"console.log('[PERF] {}: {:.2}ms')",
|
|
$name, duration
|
|
));
|
|
}
|
|
#[cfg(all(feature = "profile-macros", not(target_arch = "wasm32")))]
|
|
{
|
|
let duration = $crate::performance::get_time() - $start;
|
|
println!("[PERF] {}: {:.2}ms", $name, duration);
|
|
}
|
|
}};
|
|
}
|
|
|
|
#[allow(unused_imports)]
|
|
pub use console_log;
|
|
|
|
#[allow(unused_imports)]
|
|
pub use begin_timed_log;
|
|
|
|
#[allow(unused_imports)]
|
|
pub use end_timed_log;
|
|
|
|
#[macro_export]
|
|
macro_rules! mark {
|
|
($name:expr) => {
|
|
#[cfg(all(feature = "profile-macros", target_arch = "wasm32"))]
|
|
{
|
|
use $crate::run_script;
|
|
run_script!(format!("performance.mark('{}')", $name));
|
|
}
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! measure {
|
|
($name:expr) => {
|
|
#[cfg(all(feature = "profile-macros", target_arch = "wasm32"))]
|
|
{
|
|
use $crate::run_script;
|
|
run_script!(format!("performance.measure('{}')", $name));
|
|
}
|
|
};
|
|
($name:expr, $mark_begin:expr) => {
|
|
#[cfg(all(feature = "profile-macros", target_arch = "wasm32"))]
|
|
{
|
|
use $crate::run_script;
|
|
run_script!(format!(
|
|
"performance.measure('{}','{}')",
|
|
$name, $mark_begin
|
|
));
|
|
}
|
|
};
|
|
($name:expr, $mark_begin:expr, $mark_end:expr) => {
|
|
#[cfg(all(feature = "profile-macros", target_arch = "wasm32"))]
|
|
{
|
|
use $crate::run_script;
|
|
run_script!(format!(
|
|
"performance.measure('{}','{}','{}')",
|
|
$name, $mark_begin, $mark_end
|
|
));
|
|
}
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! begin_mark_name {
|
|
($name:expr) => {
|
|
format!("{}::begin", $name)
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! end_mark_name {
|
|
($name:expr) => {
|
|
format!("{}::end", $name)
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! measure_marks {
|
|
($name:expr) => {
|
|
#[cfg(all(feature = "profile-macros", target_arch = "wasm32"))]
|
|
{
|
|
use $crate::{begin_mark_name, end_mark_name, measure};
|
|
measure!($name, begin_mark_name!($name), end_mark_name!($name));
|
|
}
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! clear_marks {
|
|
() => {
|
|
use $crate::run_script;
|
|
run_script!("performance.clearMarks()");
|
|
};
|
|
($($name:expr),*) => {
|
|
format!("{}", [$(format!("performance.clearMarks('{}')", $name)),*].join("; "))
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! clear_measures {
|
|
() => {
|
|
use $crate::run_script;
|
|
run_script!("performance.clearMeasures()");
|
|
};
|
|
($($name:expr),*) => {
|
|
format!("{}", [$(format!("performance.clearMeasures('{}')", $name)),*].join("; "))
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! begin_measure {
|
|
($name:expr) => {
|
|
#[cfg(all(feature = "profile-macros", target_arch = "wasm32"))]
|
|
{
|
|
use $crate::{begin_mark_name, mark};
|
|
mark!(begin_mark_name!($name));
|
|
}
|
|
};
|
|
($name:expr, $clear_marks:expr) => {
|
|
#[cfg(all(feature = "profile-macros", target_arch = "wasm32"))]
|
|
{
|
|
use $crate::{begin_mark_name, clear_marks, end_mark_name, mark};
|
|
if $clear_marks {
|
|
clear_marks!(begin_mark_name!($name), end_mark_name($name));
|
|
}
|
|
mark!(begin_mark_name!($name));
|
|
}
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! end_measure {
|
|
($name:expr) => {
|
|
#[cfg(all(feature = "profile-macros", target_arch = "wasm32"))]
|
|
{
|
|
use $crate::{end_mark_name, mark, measure_marks};
|
|
mark!(end_mark_name!($name));
|
|
measure_marks!($name);
|
|
}
|
|
};
|
|
($name:expr, $clear_marks:expr) => {
|
|
#[cfg(all(feature = "profile-macros", target_arch = "wasm32"))]
|
|
{
|
|
use $crate::{begin_mark_name, clear_marks, end_mark_name, mark, measure_marks};
|
|
mark!(end_mark_name!($name));
|
|
measure_marks!($name);
|
|
if $clear_marks {
|
|
clear_marks!(begin_mark_name!($name), end_mark_name($name));
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
// We need to reexport the macro to make it public.
|
|
#[allow(unused_imports)]
|
|
pub use clear_marks;
|
|
|
|
#[allow(unused_imports)]
|
|
pub use clear_measures;
|
|
|
|
#[allow(unused_imports)]
|
|
pub use mark;
|
|
|
|
#[allow(unused_imports)]
|
|
pub use measure;
|
|
|
|
#[allow(unused_imports)]
|
|
pub use begin_measure;
|
|
|
|
#[allow(unused_imports)]
|
|
pub use end_measure;
|