use carbon_core::{
instruction::InstructionMetadata,
postgres::{
metadata::InstructionRowMetadata,
primitives::{U64, U8},
},
};
#[derive(sqlx::FromRow, Debug, Clone)]
pub struct MigrateToAmmRow {
#[sqlx(flatten)]
pub instruction_metadata: InstructionRowMetadata,
pub base_lot_size: U64,
pub quote_lot_size: U64,
pub market_vault_signer_nonce: U8,
#[sqlx(rename = "__accounts")]
pub accounts: sqlx::types::Json<Vec<solana_instruction::AccountMeta>>,
}
impl MigrateToAmmRow {
pub fn from_parts(
source: crate::instructions::migrate_to_amm::MigrateToAmm,
metadata: InstructionMetadata,
accounts: Vec<solana_instruction::AccountMeta>,
) -> Self {
Self {
instruction_metadata: metadata.into(),
base_lot_size: source.base_lot_size.into(),
quote_lot_size: source.quote_lot_size.into(),
market_vault_signer_nonce: source.market_vault_signer_nonce.into(),
accounts: sqlx::types::Json(accounts),
}
}
}
impl TryFrom<MigrateToAmmRow> for crate::instructions::migrate_to_amm::MigrateToAmm {
type Error = carbon_core::error::Error;
fn try_from(source: MigrateToAmmRow) -> Result<Self, Self::Error> {
Ok(Self {
base_lot_size: *source.base_lot_size,
quote_lot_size: *source.quote_lot_size,
market_vault_signer_nonce: source.market_vault_signer_nonce.try_into().map_err(
|_| {
carbon_core::error::Error::Custom(
"Failed to convert value from postgres primitive".to_string(),
)
},
)?,
})
}
}
impl carbon_core::postgres::operations::Table
for crate::instructions::migrate_to_amm::MigrateToAmm
{
fn table() -> &'static str {
"migrate_to_amm_instruction"
}
fn columns() -> Vec<&'static str> {
vec![
"__signature",
"__instruction_index",
"__stack_height",
"__slot",
"base_lot_size",
"quote_lot_size",
"market_vault_signer_nonce",
"__accounts",
]
}
}
#[async_trait::async_trait]
impl carbon_core::postgres::operations::Insert for MigrateToAmmRow {
async fn insert(&self, pool: &sqlx::PgPool) -> carbon_core::error::CarbonResult<()> {
sqlx::query(
r#"
INSERT INTO migrate_to_amm_instruction (
"base_lot_size",
"quote_lot_size",
"market_vault_signer_nonce",
__signature, __instruction_index, __stack_height, __slot, __accounts
) VALUES (
$1, $2, $3, $4, $5, $6, $7, $8
)"#,
)
.bind(&self.base_lot_size)
.bind(&self.quote_lot_size)
.bind(self.market_vault_signer_nonce)
.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 MigrateToAmmRow {
async fn upsert(&self, pool: &sqlx::PgPool) -> carbon_core::error::CarbonResult<()> {
sqlx::query(
r#"INSERT INTO migrate_to_amm_instruction (
"base_lot_size",
"quote_lot_size",
"market_vault_signer_nonce",
__signature, __instruction_index, __stack_height, __slot, __accounts
) VALUES (
$1, $2, $3, $4, $5, $6, $7, $8
) ON CONFLICT (
__signature, __instruction_index, __stack_height
) DO UPDATE SET
"base_lot_size" = EXCLUDED."base_lot_size",
"quote_lot_size" = EXCLUDED."quote_lot_size",
"market_vault_signer_nonce" = EXCLUDED."market_vault_signer_nonce",
__instruction_index = EXCLUDED.__instruction_index,
__stack_height = EXCLUDED.__stack_height,
__slot = EXCLUDED.__slot,
__accounts = EXCLUDED.__accounts
"#,
)
.bind(&self.base_lot_size)
.bind(&self.quote_lot_size)
.bind(self.market_vault_signer_nonce)
.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 MigrateToAmmRow {
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 migrate_to_amm_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 MigrateToAmmRow {
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 migrate_to_amm_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 MigrateToAmmMigrationOperation;
#[async_trait::async_trait]
impl sqlx_migrator::Operation<sqlx::Postgres> for MigrateToAmmMigrationOperation {
async fn up(
&self,
connection: &mut sqlx::PgConnection,
) -> Result<(), sqlx_migrator::error::Error> {
sqlx::query(
r#"CREATE TABLE IF NOT EXISTS migrate_to_amm_instruction (
-- Instruction data
"base_lot_size" NUMERIC(20) NOT NULL,
"quote_lot_size" NUMERIC(20) NOT NULL,
"market_vault_signer_nonce" INT2 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 migrate_to_amm_instruction"#)
.execute(connection)
.await?;
Ok(())
}
}