use {
super::super::cpi_event::CpiEvent,
carbon_core::{instruction::InstructionMetadata, postgres::metadata::InstructionRowMetadata},
};
#[derive(sqlx::FromRow, Debug, Clone)]
pub struct CpiEventRow {
#[sqlx(flatten)]
pub instruction_metadata: InstructionRowMetadata,
pub name: String,
pub data: sqlx::types::Json<CpiEvent>,
#[sqlx(rename = "__accounts")]
pub accounts: sqlx::types::Json<Vec<solana_instruction::AccountMeta>>,
}
impl CpiEventRow {
pub fn from_parts(
source: CpiEvent,
metadata: InstructionMetadata,
accounts: Vec<solana_instruction::AccountMeta>,
) -> Self {
Self {
instruction_metadata: metadata.into(),
name: match &source {
CpiEvent::DeleverageEvent(_) => "deleverage_event".to_string(),
CpiEvent::DeleverageWithdrawFlowEvent(_) => {
"deleverage_withdraw_flow_event".to_string()
}
CpiEvent::EditStakedSettingsEvent(_) => "edit_staked_settings_event".to_string(),
CpiEvent::HealthPulseEvent(_) => "health_pulse_event".to_string(),
CpiEvent::KeeperCloseOrderEvent(_) => "keeper_close_order_event".to_string(),
CpiEvent::LendingAccountBorrowEvent(_) => {
"lending_account_borrow_event".to_string()
}
CpiEvent::LendingAccountDepositEvent(_) => {
"lending_account_deposit_event".to_string()
}
CpiEvent::LendingAccountLiquidateEvent(_) => {
"lending_account_liquidate_event".to_string()
}
CpiEvent::LendingAccountRepayEvent(_) => "lending_account_repay_event".to_string(),
CpiEvent::LendingAccountWithdrawEvent(_) => {
"lending_account_withdraw_event".to_string()
}
CpiEvent::LendingPoolBankAccrueInterestEvent(_) => {
"lending_pool_bank_accrue_interest_event".to_string()
}
CpiEvent::LendingPoolBankCollectFeesEvent(_) => {
"lending_pool_bank_collect_fees_event".to_string()
}
CpiEvent::LendingPoolBankConfigureEvent(_) => {
"lending_pool_bank_configure_event".to_string()
}
CpiEvent::LendingPoolBankConfigureFrozenEvent(_) => {
"lending_pool_bank_configure_frozen_event".to_string()
}
CpiEvent::LendingPoolBankConfigureOracleEvent(_) => {
"lending_pool_bank_configure_oracle_event".to_string()
}
CpiEvent::LendingPoolBankCreateEvent(_) => {
"lending_pool_bank_create_event".to_string()
}
CpiEvent::LendingPoolBankHandleBankruptcyEvent(_) => {
"lending_pool_bank_handle_bankruptcy_event".to_string()
}
CpiEvent::LendingPoolBankSetFixedOraclePriceEvent(_) => {
"lending_pool_bank_set_fixed_oracle_price_event".to_string()
}
CpiEvent::LendingPoolSuperAdminDepositEvent(_) => {
"lending_pool_super_admin_deposit_event".to_string()
}
CpiEvent::LendingPoolSuperAdminWithdrawEvent(_) => {
"lending_pool_super_admin_withdraw_event".to_string()
}
CpiEvent::LiquidationReceiverEvent(_) => "liquidation_receiver_event".to_string(),
CpiEvent::MarginfiAccountCloseOrderEvent(_) => {
"marginfi_account_close_order_event".to_string()
}
CpiEvent::MarginfiAccountCreateEvent(_) => {
"marginfi_account_create_event".to_string()
}
CpiEvent::MarginfiAccountFreezeEvent(_) => {
"marginfi_account_freeze_event".to_string()
}
CpiEvent::MarginfiAccountPlaceOrderEvent(_) => {
"marginfi_account_place_order_event".to_string()
}
CpiEvent::MarginfiAccountTransferToNewAccount(_) => {
"marginfi_account_transfer_to_new_account".to_string()
}
CpiEvent::MarginfiGroupConfigureEvent(_) => {
"marginfi_group_configure_event".to_string()
}
CpiEvent::MarginfiGroupCreateEvent(_) => "marginfi_group_create_event".to_string(),
CpiEvent::RateLimitFlowEvent(_) => "rate_limit_flow_event".to_string(),
CpiEvent::SetKeeperCloseFlagsEvent(_) => "set_keeper_close_flags_event".to_string(),
},
data: sqlx::types::Json(source),
accounts: sqlx::types::Json(accounts),
}
}
}
impl TryFrom<CpiEventRow> for CpiEvent {
type Error = carbon_core::error::Error;
fn try_from(source: CpiEventRow) -> Result<Self, Self::Error> {
Ok(source.data.0)
}
}
impl carbon_core::postgres::operations::Table for CpiEvent {
fn table() -> &'static str {
"cpi_events"
}
fn columns() -> Vec<&'static str> {
vec![
"__signature",
"__instruction_index",
"__stack_height",
"__slot",
"name",
"data",
"__accounts",
]
}
}
#[async_trait::async_trait]
impl carbon_core::postgres::operations::Insert for CpiEventRow {
async fn insert(&self, pool: &sqlx::PgPool) -> carbon_core::error::CarbonResult<()> {
sqlx::query(
r#"
INSERT INTO cpi_events (
__signature, __instruction_index, __stack_height, __slot, "name", "data", __accounts
) VALUES (
$1, $2, $3, $4, $5, $6, $7
)"#,
)
.bind(&self.instruction_metadata.signature)
.bind(self.instruction_metadata.instruction_index)
.bind(self.instruction_metadata.stack_height)
.bind(&self.instruction_metadata.slot)
.bind(&self.name)
.bind(&self.data)
.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 CpiEventRow {
async fn upsert(&self, pool: &sqlx::PgPool) -> carbon_core::error::CarbonResult<()> {
sqlx::query(
r#"INSERT INTO cpi_events (
__signature, __instruction_index, __stack_height, __slot, "name", "data", __accounts
) VALUES (
$1, $2, $3, $4, $5, $6, $7
) ON CONFLICT (__signature, __instruction_index, __stack_height) DO UPDATE SET
__slot = EXCLUDED.__slot,
"name" = EXCLUDED."name",
"data" = EXCLUDED."data",
__accounts = EXCLUDED.__accounts
"#,
)
.bind(&self.instruction_metadata.signature)
.bind(self.instruction_metadata.instruction_index)
.bind(self.instruction_metadata.stack_height)
.bind(&self.instruction_metadata.slot)
.bind(&self.name)
.bind(&self.data)
.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 CpiEventRow {
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 cpi_events 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 CpiEventRow {
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 cpi_events 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 CpiEventMigrationOperation;
#[async_trait::async_trait]
impl sqlx_migrator::Operation<sqlx::Postgres> for CpiEventMigrationOperation {
async fn up(
&self,
connection: &mut sqlx::PgConnection,
) -> Result<(), sqlx_migrator::error::Error> {
sqlx::query(
r#"CREATE TABLE IF NOT EXISTS cpi_events (
-- Instruction data
"name" TEXT NOT NULL,
"data" JSONB 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 cpi_events"#)
.execute(connection)
.await?;
Ok(())
}
}