use std::fmt::Display;
use std::ops::Deref;
use serde::{Deserialize, Serialize};
use surrealdb_types_derive::write_sql;
use crate as surrealdb_types;
use crate::sql::{SqlFormat, ToSql};
#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd, Serialize, Deserialize)]
#[repr(transparent)]
#[cfg_attr(feature = "arbitrary", derive(arbitrary::Arbitrary))]
pub struct Table(pub(crate) String);
impl Table {
pub fn new(s: impl Into<String>) -> Self {
Table(s.into())
}
pub fn into_string(self) -> String {
self.0
}
pub fn into_inner(self) -> String {
self.0
}
pub fn as_str(&self) -> &str {
&self.0
}
}
impl Deref for Table {
type Target = String;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl Display for Table {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.0)
}
}
impl ToSql for Table {
fn fmt_sql(&self, f: &mut String, fmt: SqlFormat) {
use crate::utils::escape::EscapeSqonIdent;
write_sql!(f, fmt, "{}", EscapeSqonIdent(&self.0));
}
}
impl From<&str> for Table {
fn from(s: &str) -> Self {
Table::new(s.to_string())
}
}
impl From<String> for Table {
fn from(s: String) -> Self {
Table::new(s)
}
}
impl From<Table> for String {
fn from(value: Table) -> Self {
value.0
}
}