#[macro_export]
macro_rules! pgrx_resolved_type {
($ty:ty) => {
concat!(module_path!(), "::", stringify!($ty))
};
}
pub use aggregate::entity::{AggregateTypeEntity, PgAggregateEntity};
pub use aggregate::{
AggregateType, AggregateTypeList, FinalizeModify, ParallelOption, PgAggregate,
};
pub use control_file::ControlFile;
pub use enrich::CodeEnrichment;
pub use extension_sql::entity::{ExtensionSqlEntity, SqlDeclaredEntity};
pub use extension_sql::{ExtensionSql, ExtensionSqlFile, SqlDeclared};
pub use extern_args::{ExternArgs, parse_extern_attributes};
pub use pg_extern::entity::{
PgCastEntity, PgExternArgumentEntity, PgExternEntity, PgExternReturnEntity,
PgExternReturnEntityIteratedItem, PgOperatorEntity,
};
pub use pg_extern::{NameMacro, PgCast, PgExtern, PgExternArgument, PgOperator};
pub use pg_trigger::PgTrigger;
pub use pg_trigger::attribute::PgTriggerAttribute;
pub use pg_trigger::entity::PgTriggerEntity;
pub use pgrx_sql::PgrxSql;
pub use positioning_ref::PositioningRef;
pub use postgres_enum::PostgresEnum;
pub use postgres_enum::entity::PostgresEnumEntity;
pub use postgres_hash::PostgresHash;
pub use postgres_hash::entity::PostgresHashEntity;
pub use postgres_ord::PostgresOrd;
pub use postgres_ord::entity::PostgresOrdEntity;
pub use postgres_type::PostgresTypeDerive;
pub use postgres_type::entity::PostgresTypeEntity;
pub use schema::Schema;
pub use schema::entity::SchemaEntity;
pub use to_sql::entity::ToSqlConfigEntity;
pub use to_sql::{ToSql, ToSqlConfig};
pub use used_type::{UsedType, UsedTypeEntity};
pub(crate) mod aggregate;
pub(crate) mod composite_type;
pub(crate) mod control_file;
pub(crate) mod enrich;
pub(crate) mod extension_sql;
pub(crate) mod extern_args;
pub(crate) mod finfo;
#[macro_use]
pub(crate) mod fmt;
pub mod lifetimes;
pub mod metadata;
pub(crate) mod pg_extern;
pub(crate) mod pg_trigger;
pub(crate) mod pgrx_attribute;
pub(crate) mod pgrx_sql;
pub mod positioning_ref;
pub(crate) mod postgres_enum;
pub(crate) mod postgres_hash;
pub(crate) mod postgres_ord;
pub(crate) mod postgres_type;
pub(crate) mod schema;
pub mod section;
pub(crate) mod to_sql;
pub(crate) mod used_type;
pub trait SqlGraphIdentifier {
fn dot_identifier(&self) -> String;
fn rust_identifier(&self) -> String;
fn file(&self) -> Option<&str>;
fn line(&self) -> Option<u32>;
}
pub use postgres_type::Alignment;
#[derive(Debug, Clone, Hash, PartialEq, Eq, PartialOrd, Ord)]
#[allow(clippy::large_enum_variant)]
pub enum SqlGraphEntity<'a> {
ExtensionRoot(ControlFile),
Schema(SchemaEntity<'a>),
CustomSql(ExtensionSqlEntity<'a>),
Function(PgExternEntity<'a>),
Type(PostgresTypeEntity<'a>),
BuiltinType(String),
Enum(PostgresEnumEntity<'a>),
Ord(PostgresOrdEntity<'a>),
Hash(PostgresHashEntity<'a>),
Aggregate(PgAggregateEntity<'a>),
Trigger(PgTriggerEntity<'a>),
}
impl SqlGraphEntity<'_> {
pub fn sql_anchor_comment(&self) -> String {
let maybe_file_and_line = if let (Some(file), Some(line)) = (self.file(), self.line()) {
format!("-- {file}:{line}\n")
} else {
String::default()
};
format!(
"\
{maybe_file_and_line}\
-- {rust_identifier}\
",
rust_identifier = self.rust_identifier(),
)
}
pub fn type_ident_matches(&self, type_ident: &str) -> bool {
match self {
SqlGraphEntity::CustomSql(entity) => {
entity.creates.iter().any(|declared| declared.matches_type_ident(type_ident))
}
SqlGraphEntity::Enum(entity) => entity.matches_type_ident(type_ident),
SqlGraphEntity::Type(entity) => entity.matches_type_ident(type_ident),
SqlGraphEntity::BuiltinType(string) => string == type_ident,
_ => false,
}
}
pub fn type_matches(&self, arg: &dyn TypeIdentifiable) -> bool {
self.type_ident_matches(arg.type_ident())
}
}
pub trait TypeMatch {
fn type_ident(&self) -> &str;
fn matches_type_ident(&self, arg: &str) -> bool {
self.type_ident() == arg
}
}
pub fn type_keyed<'a, 'b, A: TypeMatch, B>((a, b): (&'a A, &'b B)) -> (&'a dyn TypeMatch, &'b B) {
(a, b)
}
pub trait TypeIdentifiable {
fn type_ident(&self) -> &str;
fn ty_name(&self) -> &str;
}
impl SqlGraphIdentifier for SqlGraphEntity<'_> {
fn dot_identifier(&self) -> String {
match self {
SqlGraphEntity::Schema(item) => item.dot_identifier(),
SqlGraphEntity::CustomSql(item) => item.dot_identifier(),
SqlGraphEntity::Function(item) => item.dot_identifier(),
SqlGraphEntity::Type(item) => item.dot_identifier(),
SqlGraphEntity::BuiltinType(item) => format!("builtin type {item}"),
SqlGraphEntity::Enum(item) => item.dot_identifier(),
SqlGraphEntity::Ord(item) => item.dot_identifier(),
SqlGraphEntity::Hash(item) => item.dot_identifier(),
SqlGraphEntity::Aggregate(item) => item.dot_identifier(),
SqlGraphEntity::Trigger(item) => item.dot_identifier(),
SqlGraphEntity::ExtensionRoot(item) => item.dot_identifier(),
}
}
fn rust_identifier(&self) -> String {
match self {
SqlGraphEntity::Schema(item) => item.rust_identifier(),
SqlGraphEntity::CustomSql(item) => item.rust_identifier(),
SqlGraphEntity::Function(item) => item.rust_identifier(),
SqlGraphEntity::Type(item) => item.rust_identifier(),
SqlGraphEntity::BuiltinType(item) => item.to_string(),
SqlGraphEntity::Enum(item) => item.rust_identifier(),
SqlGraphEntity::Ord(item) => item.rust_identifier(),
SqlGraphEntity::Hash(item) => item.rust_identifier(),
SqlGraphEntity::Aggregate(item) => item.rust_identifier(),
SqlGraphEntity::Trigger(item) => item.rust_identifier(),
SqlGraphEntity::ExtensionRoot(item) => item.rust_identifier(),
}
}
fn file(&self) -> Option<&str> {
match self {
SqlGraphEntity::Schema(item) => item.file(),
SqlGraphEntity::CustomSql(item) => item.file(),
SqlGraphEntity::Function(item) => item.file(),
SqlGraphEntity::Type(item) => item.file(),
SqlGraphEntity::BuiltinType(_item) => None,
SqlGraphEntity::Enum(item) => item.file(),
SqlGraphEntity::Ord(item) => item.file(),
SqlGraphEntity::Hash(item) => item.file(),
SqlGraphEntity::Aggregate(item) => item.file(),
SqlGraphEntity::Trigger(item) => item.file(),
SqlGraphEntity::ExtensionRoot(item) => item.file(),
}
}
fn line(&self) -> Option<u32> {
match self {
SqlGraphEntity::Schema(item) => item.line(),
SqlGraphEntity::CustomSql(item) => item.line(),
SqlGraphEntity::Function(item) => item.line(),
SqlGraphEntity::Type(item) => item.line(),
SqlGraphEntity::BuiltinType(_item) => None,
SqlGraphEntity::Enum(item) => item.line(),
SqlGraphEntity::Ord(item) => item.line(),
SqlGraphEntity::Hash(item) => item.line(),
SqlGraphEntity::Aggregate(item) => item.line(),
SqlGraphEntity::Trigger(item) => item.line(),
SqlGraphEntity::ExtensionRoot(item) => item.line(),
}
}
}
impl ToSql for SqlGraphEntity<'_> {
fn to_sql(&self, context: &PgrxSql) -> eyre::Result<String> {
match self {
SqlGraphEntity::Schema(SchemaEntity { name: "public" | "pg_catalog", .. }) => {
Ok(String::default())
}
SqlGraphEntity::Schema(item) => item.to_sql(context),
SqlGraphEntity::CustomSql(item) => item.to_sql(context),
SqlGraphEntity::Function(item) => {
if let Some(result) = item.to_sql_config.to_sql(self, context) {
result
} else if context
.graph
.neighbors_undirected(*context.externs.get(item).unwrap())
.any(|neighbor| {
let SqlGraphEntity::Type(PostgresTypeEntity {
module_path,
in_fn_path,
out_fn_path,
receive_fn_path,
send_fn_path,
..
}) = &context.graph[neighbor]
else {
return false;
};
let resolve = |path: &str| {
if path.contains("::") {
path.to_string()
} else {
format!("{module_path}::{path}")
}
};
let is_in_fn = item.full_path == resolve(in_fn_path);
let is_out_fn = item.full_path == resolve(out_fn_path);
let is_receive_fn = receive_fn_path
.as_ref()
.is_some_and(|path| item.full_path == resolve(path));
let is_send_fn = send_fn_path
.as_ref()
.is_some_and(|path| item.full_path == resolve(path));
is_in_fn || is_out_fn || is_receive_fn || is_send_fn
})
{
Ok(String::default())
} else {
item.to_sql(context)
}
}
SqlGraphEntity::Type(item) => {
item.to_sql_config.to_sql(self, context).unwrap_or_else(|| item.to_sql(context))
}
SqlGraphEntity::BuiltinType(_) => Ok(String::default()),
SqlGraphEntity::Enum(item) => {
item.to_sql_config.to_sql(self, context).unwrap_or_else(|| item.to_sql(context))
}
SqlGraphEntity::Ord(item) => {
item.to_sql_config.to_sql(self, context).unwrap_or_else(|| item.to_sql(context))
}
SqlGraphEntity::Hash(item) => {
item.to_sql_config.to_sql(self, context).unwrap_or_else(|| item.to_sql(context))
}
SqlGraphEntity::Aggregate(item) => {
item.to_sql_config.to_sql(self, context).unwrap_or_else(|| item.to_sql(context))
}
SqlGraphEntity::Trigger(item) => {
item.to_sql_config.to_sql(self, context).unwrap_or_else(|| item.to_sql(context))
}
SqlGraphEntity::ExtensionRoot(item) => item.to_sql(context),
}
}
}
pub fn ident_is_acceptable_to_postgres(ident: &syn::Ident) -> Result<(), syn::Error> {
const POSTGRES_IDENTIFIER_MAX_LEN: usize = 64;
let len = ident.to_string().len();
if len >= POSTGRES_IDENTIFIER_MAX_LEN {
return Err(syn::Error::new(
ident.span(),
format!(
"Identifier `{ident}` was {len} characters long, PostgreSQL will truncate identifiers with less than \
{POSTGRES_IDENTIFIER_MAX_LEN} characters, opt for an identifier which Postgres won't truncate"
),
));
}
Ok(())
}