#![cfg(feature = "std")] #![no_std] extern crate std; use std::string::String; use std::sync::Mutex; use std::vec::Vec; use once_cell::sync::Lazy; static CHUNKS: Lazy>> = Lazy::new(Mutex::default); fn take_chunks() -> Vec { use core::mem::take; take(&mut CHUNKS.lock().unwrap()) } #[inline(never)] fn black_box(input: D) -> D { unsafe { let output = std::ptr::read_volatile(&input); std::mem::forget(input); output } } pub mod first_mod { use crate::CHUNKS; #[allow(clippy::missing_safety_doc)] pub unsafe fn write(value: &str) { use std::string::ToString; let mut chunks = CHUNKS.lock().unwrap(); chunks.push(value.to_string()); } } custom_print::define_macros!({ print, println }, concat, unsafe fn (crate::first_mod::write)(&str)); mod submodule { #[test] fn test_string_writer() { use crate::{black_box, take_chunks}; print!("first"); assert_eq!(take_chunks(), &["first"]); print!("first {}\nthird\n", black_box("second")); assert_eq!(take_chunks(), &["first second\nthird\n"]); println!(); assert_eq!(take_chunks(), &["\n"]); println!("first"); assert_eq!(take_chunks(), &["first\n"]); println!("first {}\nthird\n", black_box("second")); assert_eq!(take_chunks(), &["first second\nthird\n\n"]); } }