use super::{Block, Tag};
use crate::encoding::Encoder;
use crate::Content;
use crate::traits::{Combine, ContentSequence};
use std::ops::Range;
#[derive(Clone, Copy)]
pub struct Section<'section, Contents: ContentSequence> {
blocks: &'section [Block<'section>],
contents: Contents,
}
type Next<C, X> = (<C as Combine>::I, <C as Combine>::J, <C as Combine>::K, X);
impl<'section> Section<'section, ()> {
#[inline]
pub(crate) fn new(blocks: &'section [Block<'section>]) -> Self {
let rst = Self {
blocks,
contents: (),
};
rst
}
}
impl<'section, C> Section<'section, C>
where
C: ContentSequence,
{
#[inline]
fn slice(self, range: Range<usize>) -> Self {
let rst = Self {
blocks: &self.blocks[range],
contents: self.contents,
};
rst
}
#[inline]
pub fn with<X>(self, content: &X) -> Section<'section, Next<C, &X>>
where
X: Content + ?Sized,
{
let rst = Section {
blocks: self.blocks,
contents: self.contents.combine(content),
};
rst
}
#[inline]
pub fn without_last(self) -> Section<'section, C::Previous>
{
let rst = Section {
blocks: self.blocks,
contents: self.contents.crawl_back(),
};
rst
}
pub fn render<E, IC: Content>(&self, encoder: &mut E, content: Option<&IC>) -> Result<(), E::Error>
where
E: Encoder,
{
let mut index = 0;
while let Some(block) = self.blocks.get(index) { index += 1;
encoder.write_unescaped(block.html)?;
match block.tag {
Tag::Escaped => {
if block.name == "$value" {
if let Some(content) = content {
content.render_escaped(encoder)?;
}
} else {
self.contents.render_field_escaped(block.hash, block.name, encoder)?;
}
}
Tag::Unescaped => {
if block.name == "$value" {
if let Some(content) = content {
content.render_unescaped(encoder)?;
}
} else {
self.contents.render_field_unescaped(block.hash, block.name, encoder)?;
}
}
Tag::Section => {
self.contents.render_field_section(
block.hash, block.name, self.slice(index..index + block.children as usize), encoder,
)?;
index += block.children as usize;
}
Tag::Inverse => {
self.contents.render_field_inverse(
block.hash,
block.name,
self.slice(index..index + block.children as usize),
encoder,
)?;
index += block.children as usize;
}
Tag::NotNone => {
let rst = self.contents.render_field_notnone_section(
block.hash,
block.name,
self.slice(index..index + block.children as usize),
encoder,
)?;
if !rst {
index += block.children as usize;
}
}
_ => {}
}
}
Ok(())
}
}