#[cfg(feature = "compile-with-external-structures")]
use crate::containers::ExternalMaybePtr;
#[cfg(feature = "compile-with-external-structures")]
type MaybePtr<T> = ExternalMaybePtr<T>;
#[cfg(not(feature = "compile-with-external-structures"))]
type MaybePtr<T> = Option<Box<T>>;
#[cfg(feature = "compile-with-external-structures")]
use crate::containers::ExternalList;
#[cfg(feature = "compile-with-external-structures")]
type List<T> = ExternalList<T>;
#[cfg(not(feature = "compile-with-external-structures"))]
type List<T> = Vec<T>;
#[cfg(feature = "compile-with-external-structures")]
use crate::containers::ExternalMaybeStringPtr;
#[cfg(feature = "compile-with-external-structures")]
type MaybeStringPtr = ExternalMaybeStringPtr;
#[cfg(not(feature = "compile-with-external-structures"))]
type MaybeStringPtr = Option<String>;
#[cfg(feature = "compile-with-external-structures")]
use crate::containers::ExternalStringPtr;
#[cfg(feature = "compile-with-external-structures")]
type StringPtr = ExternalStringPtr;
#[cfg(not(feature = "compile-with-external-structures"))]
type StringPtr = String;
use crate::bytes::BytesTrait;
use crate::Loc;
use crate::Node;
use crate::StringValue;
pub trait InnerNode {
fn expression(&self) -> &Loc;
fn str_type(&self) -> &'static str;
fn inspected_children(&self, indent: usize) -> Vec<String>;
fn inspect(&self, indent: usize) -> String {
let indented = " ".repeat(indent);
let mut sexp = format!("{}s(:{}", indented, self.str_type());
for child in self.inspected_children(indent) {
sexp.push_str(&child);
}
sexp.push(')');
sexp
}
fn print_with_locs(&self);
}
pub(crate) struct InspectVec {
indent: usize,
strings: Vec<String>,
}
impl InspectVec {
pub(crate) fn new(indent: usize) -> Self {
Self {
indent,
strings: vec![],
}
}
pub(crate) fn push_str(&mut self, string: &StringPtr) {
self.strings.push(format!(", {:?}", string));
}
pub(crate) fn push_raw_str(&mut self, string: &StringPtr) {
self.strings.push(format!(", {}", string.as_str()));
}
pub(crate) fn push_maybe_str(&mut self, string: &MaybeStringPtr) {
if let Some(string) = string.as_ref() {
self.strings.push(format!(", {:?}", string));
}
}
pub(crate) fn push_nil(&mut self) {
self.strings.push(", nil".to_string());
}
pub(crate) fn push_u8(&mut self, n: &u8) {
self.strings.push(format!(", {}", n))
}
pub(crate) fn push_node(&mut self, node: &Node) {
self.strings
.push(format!(",\n{}", node.inspect(self.indent + 1)))
}
pub(crate) fn push_maybe_node(&mut self, node: &MaybePtr<Node>) {
if let Some(node) = node.as_ref() {
self.push_node(node)
}
}
pub(crate) fn push_regex_options(&mut self, node: &MaybePtr<Node>) {
if let Some(node) = node.as_ref() {
self.push_node(node)
} else {
self.strings.push(format!(
",\n{}{}",
" ".repeat(self.indent + 1),
"s(:regopt)"
))
}
}
pub(crate) fn push_maybe_node_or_nil(&mut self, node: &MaybePtr<Node>) {
if let Some(node) = node.as_ref() {
self.push_node(node)
} else {
self.push_nil()
}
}
pub(crate) fn push_nodes(&mut self, nodes: &List<Node>) {
for node in nodes.iter() {
self.push_node(node)
}
}
pub(crate) fn push_chars(&mut self, chars: &MaybeStringPtr) {
if let Some(chars) = chars.as_ref() {
for c in chars.chars() {
self.push_str(&StringPtr::from(format!("{}", c)));
}
}
}
pub(crate) fn push_string_value(&mut self, s: &StringValue) {
self.push_str(&StringPtr::from(s.bytes.to_string_lossy()))
}
pub(crate) fn strings(&mut self) -> Vec<String> {
std::mem::take(&mut self.strings)
}
}