use crate::begin_batch::BeginBatch;
use crate::common::{FQName, Identifier, Operand, TtlTimestamp};
use itertools::Itertools;
use std::collections::BTreeMap;
use std::fmt::{Display, Formatter};
#[derive(PartialEq, Debug, Clone)]
pub struct Insert {
pub begin_batch: Option<BeginBatch>,
pub table_name: FQName,
pub columns: Vec<Identifier>,
pub values: InsertValues,
pub using_ttl: Option<TtlTimestamp>,
pub if_not_exists: bool,
}
impl Insert {
pub fn get_value_map(&self) -> BTreeMap<Identifier, &Operand> {
let mut result = BTreeMap::new();
match &self.values {
InsertValues::Values(operands) => {
if self.columns.len() == operands.len() {
for (i, operand) in operands.iter().enumerate() {
result.insert(self.columns[i].clone(), operand);
}
}
}
InsertValues::Json(_) => {}
}
result
}
}
impl Display for Insert {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(
f,
"{}INSERT INTO {} ({}) {}{}{}",
self.begin_batch
.as_ref()
.map_or("".to_string(), |x| x.to_string()),
self.table_name,
self.columns.iter().map(|c| c.to_string()).join(", "),
self.values,
if self.if_not_exists {
" IF NOT EXISTS"
} else {
""
},
self.using_ttl
.as_ref()
.map_or("".to_string(), |x| x.to_string()),
)
}
}
#[derive(PartialEq, Debug, Clone)]
pub enum InsertValues {
Values(Vec<Operand>),
Json(String),
}
impl Display for InsertValues {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
match self {
InsertValues::Values(columns) => {
write!(f, "VALUES ({})", columns.iter().join(", "))
}
InsertValues::Json(text) => {
write!(f, "JSON {}", text)
}
}
}
}