use carbon_core::{
instruction::InstructionMetadata,
postgres::{metadata::InstructionRowMetadata, primitives::Pubkey},
};
#[derive(sqlx::FromRow, Debug, Clone)]
pub struct MarginfiAccountSetKeeperCloseFlagsRow {
#[sqlx(flatten)]
pub instruction_metadata: InstructionRowMetadata,
pub bank_keys_opt: Option<Vec<Pubkey>>,
#[sqlx(rename = "__accounts")]
pub accounts: sqlx::types::Json<Vec<solana_instruction::AccountMeta>>,
}
impl MarginfiAccountSetKeeperCloseFlagsRow {
pub fn from_parts(
source: crate::instructions::marginfi_account_set_keeper_close_flags::MarginfiAccountSetKeeperCloseFlags,
metadata: InstructionMetadata,
accounts: Vec<solana_instruction::AccountMeta>,
) -> Self {
Self {
instruction_metadata: metadata.into(),
bank_keys_opt: source
.bank_keys_opt
.map(|value| value.into_iter().map(|element| element.into()).collect()),
accounts: sqlx::types::Json(accounts),
}
}
}
impl TryFrom<MarginfiAccountSetKeeperCloseFlagsRow> for crate::instructions::marginfi_account_set_keeper_close_flags::MarginfiAccountSetKeeperCloseFlags {
type Error = carbon_core::error::Error;
fn try_from(source: MarginfiAccountSetKeeperCloseFlagsRow) -> Result<Self, Self::Error> {
Ok(Self {
bank_keys_opt: source.bank_keys_opt.map(|value| value.into_iter().map(|element| *element).collect()),
})
}
}
impl carbon_core::postgres::operations::Table for crate::instructions::marginfi_account_set_keeper_close_flags::MarginfiAccountSetKeeperCloseFlags {
fn table() -> &'static str {
"marginfi_account_set_keeper_close_flags_instruction"
}
fn columns() -> Vec<&'static str> {
vec![
"__signature",
"__instruction_index",
"__stack_height",
"__slot",
"bank_keys_opt",
"__accounts",
]
}
}
#[async_trait::async_trait]
impl carbon_core::postgres::operations::Insert for MarginfiAccountSetKeeperCloseFlagsRow {
async fn insert(&self, pool: &sqlx::PgPool) -> carbon_core::error::CarbonResult<()> {
sqlx::query(
r#"
INSERT INTO marginfi_account_set_keeper_close_flags_instruction (
"bank_keys_opt",
__signature, __instruction_index, __stack_height, __slot, __accounts
) VALUES (
$1, $2, $3, $4, $5, $6
)"#,
)
.bind(&self.bank_keys_opt)
.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 MarginfiAccountSetKeeperCloseFlagsRow {
async fn upsert(&self, pool: &sqlx::PgPool) -> carbon_core::error::CarbonResult<()> {
sqlx::query(
r#"INSERT INTO marginfi_account_set_keeper_close_flags_instruction (
"bank_keys_opt",
__signature, __instruction_index, __stack_height, __slot, __accounts
) VALUES (
$1, $2, $3, $4, $5, $6
) ON CONFLICT (
__signature, __instruction_index, __stack_height
) DO UPDATE SET
"bank_keys_opt" = EXCLUDED."bank_keys_opt",
__instruction_index = EXCLUDED.__instruction_index,
__stack_height = EXCLUDED.__stack_height,
__slot = EXCLUDED.__slot,
__accounts = EXCLUDED.__accounts
"#,
)
.bind(&self.bank_keys_opt)
.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 MarginfiAccountSetKeeperCloseFlagsRow {
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 marginfi_account_set_keeper_close_flags_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 MarginfiAccountSetKeeperCloseFlagsRow {
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 marginfi_account_set_keeper_close_flags_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 MarginfiAccountSetKeeperCloseFlagsMigrationOperation;
#[async_trait::async_trait]
impl sqlx_migrator::Operation<sqlx::Postgres>
for MarginfiAccountSetKeeperCloseFlagsMigrationOperation
{
async fn up(
&self,
connection: &mut sqlx::PgConnection,
) -> Result<(), sqlx_migrator::error::Error> {
sqlx::query(
r#"CREATE TABLE IF NOT EXISTS marginfi_account_set_keeper_close_flags_instruction (
-- Instruction data
"bank_keys_opt" BYTEA[],
-- 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 marginfi_account_set_keeper_close_flags_instruction"#)
.execute(connection)
.await?;
Ok(())
}
}