use crate::pgrx_sql::PgrxSql;
use crate::to_sql::ToSqlFn;
use crate::SqlGraphEntity;
#[derive(Default, Clone)]
pub struct ToSqlConfigEntity {
pub enabled: bool,
pub callback: Option<ToSqlFn>,
pub content: Option<&'static str>,
}
impl ToSqlConfigEntity {
#[inline]
fn fields(&self) -> (bool, Option<&str>, Option<usize>) {
(self.enabled, self.content, self.callback.map(|f| f as usize))
}
pub fn to_sql(
&self,
entity: &SqlGraphEntity,
context: &PgrxSql,
) -> Option<eyre::Result<String>> {
use eyre::{eyre, WrapErr};
if !self.enabled {
return Some(Ok(format!(
"\n\
{sql_anchor_comment}\n\
-- Skipped due to `#[pgrx(sql = false)]`\n",
sql_anchor_comment = entity.sql_anchor_comment(),
)));
}
if let Some(content) = self.content {
let module_pathname = context.get_module_pathname();
let content = content.replace("@MODULE_PATHNAME@", &module_pathname);
return Some(Ok(format!(
"\n\
{sql_anchor_comment}\n\
{content}\n\
",
content = content,
sql_anchor_comment = entity.sql_anchor_comment()
)));
}
if let Some(callback) = self.callback {
let content = callback(entity, context)
.map_err(|e| eyre!(e))
.wrap_err("Failed to run specified `#[pgrx(sql = path)] function`");
return match content {
Ok(content) => {
let module_pathname = &context.get_module_pathname();
let content = content.replace("@MODULE_PATHNAME@", &module_pathname);
Some(Ok(format!(
"\n\
{sql_anchor_comment}\n\
{content}\
",
content = content,
sql_anchor_comment = entity.sql_anchor_comment(),
)))
}
Err(e) => Some(Err(e)),
};
}
None
}
}
impl std::cmp::PartialOrd for ToSqlConfigEntity {
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
Some(self.cmp(&other))
}
}
impl std::cmp::Ord for ToSqlConfigEntity {
fn cmp(&self, other: &Self) -> std::cmp::Ordering {
self.fields().cmp(&other.fields())
}
}
impl std::cmp::PartialEq for ToSqlConfigEntity {
fn eq(&self, other: &Self) -> bool {
self.fields() == other.fields()
}
}
impl std::cmp::Eq for ToSqlConfigEntity {}
impl std::hash::Hash for ToSqlConfigEntity {
fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
self.fields().hash(state);
}
}
impl std::fmt::Debug for ToSqlConfigEntity {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
let (enabled, content, callback) = self.fields();
f.debug_struct("ToSqlConfigEntity")
.field("enabled", &enabled)
.field("callback", &callback)
.field("content", &content)
.finish()
}
}