use std::str::FromStr;
use crate::table::Iter;
use crate::{Item, RawString, Table};
#[derive(Debug, Clone)]
pub struct ImDocument<S> {
pub(crate) root: Item,
pub(crate) trailing: RawString,
pub(crate) raw: S,
}
impl ImDocument<&'static str> {
pub fn new() -> Self {
Default::default()
}
}
#[cfg(feature = "parse")]
impl<S: AsRef<str>> ImDocument<S> {
pub fn parse(raw: S) -> Result<Self, crate::TomlError> {
crate::parser::parse_document(raw)
}
}
impl<S: AsRef<str>> ImDocument<S> {
pub(crate) fn despan(&mut self) {
self.root.despan(self.raw.as_ref());
self.trailing.despan(self.raw.as_ref());
}
}
impl<S> ImDocument<S> {
pub fn as_item(&self) -> &Item {
&self.root
}
pub fn as_table(&self) -> &Table {
self.root.as_table().expect("root should always be a table")
}
pub fn iter(&self) -> Iter<'_> {
self.as_table().iter()
}
pub fn trailing(&self) -> &RawString {
&self.trailing
}
}
impl<S: AsRef<str>> ImDocument<S> {
pub fn raw(&self) -> &str {
self.raw.as_ref()
}
}
impl<S: AsRef<str>> ImDocument<S> {
pub fn into_mut(mut self) -> DocumentMut {
self.despan();
DocumentMut {
root: self.root,
trailing: self.trailing,
}
}
}
impl Default for ImDocument<&'static str> {
fn default() -> Self {
Self {
root: Item::Table(Table::with_pos(Some(0))),
trailing: Default::default(),
raw: "",
}
}
}
#[cfg(feature = "parse")]
impl FromStr for ImDocument<String> {
type Err = crate::TomlError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
Self::parse(s.to_owned())
}
}
impl<S> std::ops::Deref for ImDocument<S> {
type Target = Table;
fn deref(&self) -> &Self::Target {
self.as_table()
}
}
#[derive(Debug, Clone)]
pub struct DocumentMut {
pub(crate) root: Item,
pub(crate) trailing: RawString,
}
impl DocumentMut {
pub fn new() -> Self {
Default::default()
}
pub fn as_item(&self) -> &Item {
&self.root
}
pub fn as_item_mut(&mut self) -> &mut Item {
&mut self.root
}
pub fn as_table(&self) -> &Table {
self.root.as_table().expect("root should always be a table")
}
pub fn as_table_mut(&mut self) -> &mut Table {
self.root
.as_table_mut()
.expect("root should always be a table")
}
pub fn iter(&self) -> Iter<'_> {
self.as_table().iter()
}
pub fn set_trailing(&mut self, trailing: impl Into<RawString>) {
self.trailing = trailing.into();
}
pub fn trailing(&self) -> &RawString {
&self.trailing
}
}
impl Default for DocumentMut {
fn default() -> Self {
Self {
root: Item::Table(Table::with_pos(Some(0))),
trailing: Default::default(),
}
}
}
#[cfg(feature = "parse")]
impl FromStr for DocumentMut {
type Err = crate::TomlError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
let im = ImDocument::from_str(s)?;
Ok(im.into_mut())
}
}
impl std::ops::Deref for DocumentMut {
type Target = Table;
fn deref(&self) -> &Self::Target {
self.as_table()
}
}
impl std::ops::DerefMut for DocumentMut {
fn deref_mut(&mut self) -> &mut Self::Target {
self.as_table_mut()
}
}
impl From<Table> for DocumentMut {
fn from(root: Table) -> Self {
Self {
root: Item::Table(root),
..Default::default()
}
}
}
#[test]
#[cfg(feature = "parse")]
#[cfg(feature = "display")]
fn default_roundtrip() {
DocumentMut::default()
.to_string()
.parse::<DocumentMut>()
.unwrap();
}