carbon-marginfi-v2-decoder 1.0.0

MarginfiV2 Decoder
Documentation
//! This code was AUTOGENERATED using the Codama library.
use carbon_core::{
    instruction::InstructionMetadata,
    postgres::{metadata::InstructionRowMetadata, primitives::U64},
};

#[derive(sqlx::FromRow, Debug, Clone)]
pub struct LendingPoolConfigureBankLimitsOnlyRow {
    #[sqlx(flatten)]
    pub instruction_metadata: InstructionRowMetadata,
    pub deposit_limit: Option<U64>,
    pub borrow_limit: Option<U64>,
    pub total_asset_value_init_limit: Option<U64>,
    #[sqlx(rename = "__accounts")]
    pub accounts: sqlx::types::Json<Vec<solana_instruction::AccountMeta>>,
}

impl LendingPoolConfigureBankLimitsOnlyRow {
    pub fn from_parts(
        source: crate::instructions::lending_pool_configure_bank_limits_only::LendingPoolConfigureBankLimitsOnly,
        metadata: InstructionMetadata,
        accounts: Vec<solana_instruction::AccountMeta>,
    ) -> Self {
        Self {
            instruction_metadata: metadata.into(),
            deposit_limit: source.deposit_limit.map(|value| value.into()),
            borrow_limit: source.borrow_limit.map(|value| value.into()),
            total_asset_value_init_limit: source
                .total_asset_value_init_limit
                .map(|value| value.into()),
            accounts: sqlx::types::Json(accounts),
        }
    }
}

impl TryFrom<LendingPoolConfigureBankLimitsOnlyRow> for crate::instructions::lending_pool_configure_bank_limits_only::LendingPoolConfigureBankLimitsOnly {
    type Error = carbon_core::error::Error;
    fn try_from(source: LendingPoolConfigureBankLimitsOnlyRow) -> Result<Self, Self::Error> {
        Ok(Self {
            deposit_limit: source.deposit_limit.map(|value| *value),
            borrow_limit: source.borrow_limit.map(|value| *value),
            total_asset_value_init_limit: source.total_asset_value_init_limit.map(|value| *value),
        })
    }
}

impl carbon_core::postgres::operations::Table for crate::instructions::lending_pool_configure_bank_limits_only::LendingPoolConfigureBankLimitsOnly {
    fn table() -> &'static str {
        "lending_pool_configure_bank_limits_only_instruction"
    }

    fn columns() -> Vec<&'static str> {
        vec![
            "__signature",
            "__instruction_index",
            "__stack_height",
            "__slot",
            "deposit_limit",
            "borrow_limit",
            "total_asset_value_init_limit",
            "__accounts",
        ]
    }
}

#[async_trait::async_trait]
impl carbon_core::postgres::operations::Insert for LendingPoolConfigureBankLimitsOnlyRow {
    async fn insert(&self, pool: &sqlx::PgPool) -> carbon_core::error::CarbonResult<()> {
        sqlx::query(
            r#"
            INSERT INTO lending_pool_configure_bank_limits_only_instruction (
                "deposit_limit",
                "borrow_limit",
                "total_asset_value_init_limit",
                __signature, __instruction_index, __stack_height, __slot, __accounts
            ) VALUES (
                $1, $2, $3, $4, $5, $6, $7, $8
            )"#,
        )
        .bind(&self.deposit_limit)
        .bind(&self.borrow_limit)
        .bind(&self.total_asset_value_init_limit)
        .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 LendingPoolConfigureBankLimitsOnlyRow {
    async fn upsert(&self, pool: &sqlx::PgPool) -> carbon_core::error::CarbonResult<()> {
        sqlx::query(
            r#"INSERT INTO lending_pool_configure_bank_limits_only_instruction (
                "deposit_limit",
                "borrow_limit",
                "total_asset_value_init_limit",
                __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
                "deposit_limit" = EXCLUDED."deposit_limit",
                "borrow_limit" = EXCLUDED."borrow_limit",
                "total_asset_value_init_limit" = EXCLUDED."total_asset_value_init_limit",
                __instruction_index = EXCLUDED.__instruction_index,
                __stack_height = EXCLUDED.__stack_height,
                __slot = EXCLUDED.__slot,
                __accounts = EXCLUDED.__accounts
            "#,
        )
        .bind(&self.deposit_limit)
        .bind(&self.borrow_limit)
        .bind(&self.total_asset_value_init_limit)
        .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 LendingPoolConfigureBankLimitsOnlyRow {
    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 lending_pool_configure_bank_limits_only_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 LendingPoolConfigureBankLimitsOnlyRow {
    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 lending_pool_configure_bank_limits_only_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 LendingPoolConfigureBankLimitsOnlyMigrationOperation;

#[async_trait::async_trait]
impl sqlx_migrator::Operation<sqlx::Postgres>
    for LendingPoolConfigureBankLimitsOnlyMigrationOperation
{
    async fn up(
        &self,
        connection: &mut sqlx::PgConnection,
    ) -> Result<(), sqlx_migrator::error::Error> {
        sqlx::query(
            r#"CREATE TABLE IF NOT EXISTS lending_pool_configure_bank_limits_only_instruction (
                -- Instruction data
                "deposit_limit" NUMERIC(20),
                "borrow_limit" NUMERIC(20),
                "total_asset_value_init_limit" NUMERIC(20),
                -- 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 lending_pool_configure_bank_limits_only_instruction"#)
            .execute(connection)
            .await?;
        Ok(())
    }
}