use carbon_core::{
instruction::InstructionMetadata,
postgres::{metadata::InstructionRowMetadata, primitives::U64},
};
#[derive(sqlx::FromRow, Debug, Clone)]
pub struct CreateTokenFallbackRow {
#[sqlx(flatten)]
pub instruction_metadata: InstructionRowMetadata,
pub salt: U64,
pub name: String,
pub symbol: String,
pub uri: String,
#[sqlx(rename = "__accounts")]
pub accounts: sqlx::types::Json<Vec<solana_instruction::AccountMeta>>,
}
impl CreateTokenFallbackRow {
pub fn from_parts(
source: crate::instructions::create_token_fallback::CreateTokenFallback,
metadata: InstructionMetadata,
accounts: Vec<solana_instruction::AccountMeta>,
) -> Self {
Self {
instruction_metadata: metadata.into(),
salt: source.salt.into(),
name: source.name,
symbol: source.symbol,
uri: source.uri,
accounts: sqlx::types::Json(accounts),
}
}
}
impl TryFrom<CreateTokenFallbackRow>
for crate::instructions::create_token_fallback::CreateTokenFallback
{
type Error = carbon_core::error::Error;
fn try_from(source: CreateTokenFallbackRow) -> Result<Self, Self::Error> {
Ok(Self {
salt: *source.salt,
name: source.name,
symbol: source.symbol,
uri: source.uri,
})
}
}
impl carbon_core::postgres::operations::Table
for crate::instructions::create_token_fallback::CreateTokenFallback
{
fn table() -> &'static str {
"create_token_fallback_instruction"
}
fn columns() -> Vec<&'static str> {
vec![
"__signature",
"__instruction_index",
"__stack_height",
"__slot",
"salt",
"name",
"symbol",
"uri",
"__accounts",
]
}
}
#[async_trait::async_trait]
impl carbon_core::postgres::operations::Insert for CreateTokenFallbackRow {
async fn insert(&self, pool: &sqlx::PgPool) -> carbon_core::error::CarbonResult<()> {
sqlx::query(
r#"
INSERT INTO create_token_fallback_instruction (
"salt",
"name",
"symbol",
"uri",
__signature, __instruction_index, __stack_height, __slot, __accounts
) VALUES (
$1, $2, $3, $4, $5, $6, $7, $8, $9
)"#,
)
.bind(&self.salt)
.bind(&self.name)
.bind(&self.symbol)
.bind(&self.uri)
.bind(&self.instruction_metadata.signature)
.bind(self.instruction_metadata.instruction_index)
.bind(self.instruction_metadata.stack_height)
.bind(&self.instruction_metadata.slot)
.bind(&self.accounts)
.execute(pool)
.await
.map_err(|e| carbon_core::error::Error::Custom(e.to_string()))?;
Ok(())
}
}
#[async_trait::async_trait]
impl carbon_core::postgres::operations::Upsert for CreateTokenFallbackRow {
async fn upsert(&self, pool: &sqlx::PgPool) -> carbon_core::error::CarbonResult<()> {
sqlx::query(
r#"INSERT INTO create_token_fallback_instruction (
"salt",
"name",
"symbol",
"uri",
__signature, __instruction_index, __stack_height, __slot, __accounts
) VALUES (
$1, $2, $3, $4, $5, $6, $7, $8, $9
) ON CONFLICT (
__signature, __instruction_index, __stack_height
) DO UPDATE SET
"salt" = EXCLUDED."salt",
"name" = EXCLUDED."name",
"symbol" = EXCLUDED."symbol",
"uri" = EXCLUDED."uri",
__instruction_index = EXCLUDED.__instruction_index,
__stack_height = EXCLUDED.__stack_height,
__slot = EXCLUDED.__slot,
__accounts = EXCLUDED.__accounts
"#,
)
.bind(&self.salt)
.bind(&self.name)
.bind(&self.symbol)
.bind(&self.uri)
.bind(&self.instruction_metadata.signature)
.bind(self.instruction_metadata.instruction_index)
.bind(self.instruction_metadata.stack_height)
.bind(&self.instruction_metadata.slot)
.bind(&self.accounts)
.execute(pool)
.await
.map_err(|e| carbon_core::error::Error::Custom(e.to_string()))?;
Ok(())
}
}
#[async_trait::async_trait]
impl carbon_core::postgres::operations::Delete for CreateTokenFallbackRow {
type Key = (
String,
carbon_core::postgres::primitives::U32,
carbon_core::postgres::primitives::U32,
);
async fn delete(key: Self::Key, pool: &sqlx::PgPool) -> carbon_core::error::CarbonResult<()> {
sqlx::query(
r#"DELETE FROM create_token_fallback_instruction WHERE
__signature = $1 AND __instruction_index = $2 AND __stack_height = $3
"#,
)
.bind(key.0)
.bind(key.1)
.bind(key.2)
.execute(pool)
.await
.map_err(|e| carbon_core::error::Error::Custom(e.to_string()))?;
Ok(())
}
}
#[async_trait::async_trait]
impl carbon_core::postgres::operations::Lookup for CreateTokenFallbackRow {
type Key = (
String,
carbon_core::postgres::primitives::U32,
carbon_core::postgres::primitives::U32,
);
async fn lookup(
key: Self::Key,
pool: &sqlx::PgPool,
) -> carbon_core::error::CarbonResult<Option<Self>> {
let row = sqlx::query_as(
r#"SELECT * FROM create_token_fallback_instruction WHERE
__signature = $1 AND __instruction_index = $2 AND __stack_height = $3
"#,
)
.bind(key.0)
.bind(key.1)
.bind(key.2)
.fetch_optional(pool)
.await
.map_err(|e| carbon_core::error::Error::Custom(e.to_string()))?;
Ok(row)
}
}
pub struct CreateTokenFallbackMigrationOperation;
#[async_trait::async_trait]
impl sqlx_migrator::Operation<sqlx::Postgres> for CreateTokenFallbackMigrationOperation {
async fn up(
&self,
connection: &mut sqlx::PgConnection,
) -> Result<(), sqlx_migrator::error::Error> {
sqlx::query(
r#"CREATE TABLE IF NOT EXISTS create_token_fallback_instruction (
-- Instruction data
"salt" NUMERIC(20) NOT NULL,
"name" TEXT NOT NULL,
"symbol" TEXT NOT NULL,
"uri" TEXT NOT NULL,
-- Instruction metadata
__signature TEXT NOT NULL,
__instruction_index BIGINT NOT NULL,
__stack_height BIGINT NOT NULL,
__slot NUMERIC(20),
__accounts JSONB NOT NULL,
PRIMARY KEY (__signature, __instruction_index, __stack_height)
)"#,
)
.execute(connection)
.await?;
Ok(())
}
async fn down(
&self,
connection: &mut sqlx::PgConnection,
) -> Result<(), sqlx_migrator::error::Error> {
sqlx::query(r#"DROP TABLE IF EXISTS create_token_fallback_instruction"#)
.execute(connection)
.await?;
Ok(())
}
}