1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
/* * Copyright 2018 Fluence Labs Limited * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ //! This module allows log messages from the Wasm side. It is implemented as a logging facade for //! crate [`log`]. //! //! # Examples //! //! This example initializes [`WasmLogger`] if target arch is Wasm and [`simple_logger`] otherwise. //! Macros from crate [`log`] are used as a logging facade. //! //! ``` //! use fluence::sdk::*; //! use log::{error, trace}; //! use simple_logger; //! //! fn main() { //! if cfg!(target_arch = "wasm32") { //! logger::WasmLogger::init_with_level(log::Level::Info).unwrap(); //! } else { //! simple_logger::init_with_level(log::Level::Info).unwrap(); //! } //! //! error!("This message will be logged."); //! trace!("This message will not be logged."); //! } //! //! ``` //! //! This example provides methods for [`WasmLogger`] initialization only for Wasm target without //! specifying logger level: //! //! ``` //! use fluence::sdk::*; //! use log::info; //! //! /// This method initializes WasmLogger and should be called at the start of the application. //! #[no_mangle] //! #[cfg(target_arch = "wasm32")] //! fn init_logger() { //! logger::WasmLogger::init().unwrap(); //! info!("If you can see this message that logger was successfully initialized."); //! } //! //! ``` //! //! [`WasmLogger`]: struct.WasmLogger.html //! [`log`]: https://docs.rs/log //! [`simple_logger`]: https://docs.rs/simple_logger //! [`static_lazy`]: https://docs.rs/lazy_static //! [`lazy_static::initialize()`]: https://docs.rs/lazy_static/1.3.0/lazy_static/fn.initialize.html //! [`backend app debugging`]: https://fluence.dev/docs/debugging /// The Wasm Logger. /// /// This struct implements the [`Log`] trait from the [`log`] crate, which allows it to act as a /// logger. /// /// For initialization of WasmLogger as a default logger please see [`init()`] /// and [`init_with_level()`] /// /// [log-crate-url]: https://docs.rs/log/ /// [`Log`]: https://docs.rs/log/0.4.6/log/trait.Log.html /// [`init_with_level()`]: struct.WasmLogger.html#method.init_with_level /// [`init()`]: struct.WasmLogger.html#method.init pub struct WasmLogger { level: log::Level, } #[allow(dead_code)] impl WasmLogger { /// Initializes the global logger with a [`WasmLogger`] instance, sets /// `max_log_level` to a given log level. /// /// ``` /// # use fluence::sdk::*; /// # use log::info; /// # /// # fn main() { /// if cfg!(target_arch = "wasm32") { /// logger::WasmLogger::init_with_level(log::Level::Error).unwrap(); /// } /// error!("This message will be logged."); /// info!("This message will not be logged."); /// # } /// ``` pub fn init_with_level(level: log::Level) -> Result<(), log::SetLoggerError> { let logger = WasmLogger { level }; log::set_boxed_logger(Box::new(logger))?; log::set_max_level(level.to_level_filter()); Ok(()) } /// Initializes the global logger with a [`WasmLogger`] instance, sets /// `max_log_level` to `Level::Info`. /// /// ``` /// # use fluence::sdk::*; /// # use log::info; /// # /// # fn main() { /// if cfg!(target_arch = "wasm32") { /// fluence::logger::WasmLogger::init().unwrap(); /// } /// /// error!("This message will be logged."); /// trace!("This message will not be logged."); /// # } /// ``` pub fn init() -> Result<(), log::SetLoggerError> { WasmLogger::init_with_level(log::Level::Info) } } impl log::Log for WasmLogger { #[inline] fn enabled(&self, metadata: &log::Metadata<'_>) -> bool { metadata.level() <= self.level } #[inline] fn log(&self, record: &log::Record<'_>) { if !self.enabled(record.metadata()) { return; } let log_msg = format!( "{:<5} [{}] {}\n", record.level().to_string(), record.module_path().unwrap_or_default(), record.args() ); unsafe { log_utf8_string(log_msg.as_ptr() as i32, log_msg.len() as i32) }; } // in our case flushing is performed by the VM itself #[inline] fn flush(&self) {} } /// log_utf8_string should be provided directly by a host. #[link(wasm_import_module = "host")] extern "C" { // Writes a byte string of size bytes that starts from ptr to a logger pub fn log_utf8_string(ptr: i32, size: i32); }