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
use bumpalo::Bump;
use std::cell::RefCell;
use super::*;
use super::utils::{with_bump_allocator, with_bump_allocator_mut};
pub struct PrintOptions {
pub max_width: u32,
pub indent_width: u8,
pub use_tabs: bool,
pub new_line_text: &'static str,
}
pub fn format(get_print_items: impl FnOnce() -> PrintItems, options: PrintOptions) -> String {
increment_formatting_count();
let print_items = get_print_items();
let result = with_bump_allocator_mut(|bump| {
let result = print_with_allocator(bump, &print_items, &options);
if decrement_formatting_count() {
bump.reset();
}
result
});
result
}
pub fn print(print_items: PrintItems, options: PrintOptions) -> String {
panic_if_not_formatting();
with_bump_allocator(|bump| {
print_with_allocator(bump, &print_items, &options)
})
}
fn print_with_allocator(bump: &Bump, print_items: &PrintItems, options: &PrintOptions) -> String {
let write_items = get_write_items(bump, print_items, GetWriteItemsOptions {
indent_width: options.indent_width,
max_width: options.max_width,
});
print_write_items(write_items, PrintWriteItemsOptions {
use_tabs: options.use_tabs,
new_line_text: options.new_line_text,
indent_width: options.indent_width,
})
}
thread_local! {
static FORMATTING_COUNT: RefCell<u32> = RefCell::new(0);
}
fn increment_formatting_count() {
FORMATTING_COUNT.with(|formatting_count_cell| {
let mut formatting_count = formatting_count_cell.borrow_mut();
*formatting_count += 1;
})
}
fn decrement_formatting_count() -> bool {
FORMATTING_COUNT.with(|formatting_count_cell| {
let mut formatting_count = formatting_count_cell.borrow_mut();
*formatting_count -= 1;
*formatting_count == 0
})
}
fn panic_if_not_formatting() {
FORMATTING_COUNT.with(|formatting_count_cell| {
if *formatting_count_cell.borrow() == 0 {
panic!("dprint_core::formatting::print cannot be called except within the provided closure to dprint_core::formatting::format");
}
})
}