use {
crate::types::RemainingAccountsInfo,
carbon_core::{
instruction::InstructionMetadata,
postgres::{
metadata::InstructionRowMetadata,
primitives::{U128, U64},
},
},
};
#[derive(sqlx::FromRow, Debug, Clone)]
pub struct IncreaseLiquidityV2Row {
#[sqlx(flatten)]
pub instruction_metadata: InstructionRowMetadata,
pub liquidity_amount: U128,
pub token_max_a: U64,
pub token_max_b: U64,
pub remaining_accounts_info: Option<sqlx::types::Json<RemainingAccountsInfo>>,
#[sqlx(rename = "__accounts")]
pub accounts: sqlx::types::Json<Vec<solana_instruction::AccountMeta>>,
}
impl IncreaseLiquidityV2Row {
pub fn from_parts(
source: crate::instructions::increase_liquidity_v2::IncreaseLiquidityV2,
metadata: InstructionMetadata,
accounts: Vec<solana_instruction::AccountMeta>,
) -> Self {
Self {
instruction_metadata: metadata.into(),
liquidity_amount: source.liquidity_amount.into(),
token_max_a: source.token_max_a.into(),
token_max_b: source.token_max_b.into(),
remaining_accounts_info: source.remaining_accounts_info.map(sqlx::types::Json),
accounts: sqlx::types::Json(accounts),
}
}
}
impl TryFrom<IncreaseLiquidityV2Row>
for crate::instructions::increase_liquidity_v2::IncreaseLiquidityV2
{
type Error = carbon_core::error::Error;
fn try_from(source: IncreaseLiquidityV2Row) -> Result<Self, Self::Error> {
Ok(Self {
liquidity_amount: *source.liquidity_amount,
token_max_a: *source.token_max_a,
token_max_b: *source.token_max_b,
remaining_accounts_info: source.remaining_accounts_info.map(|value| value.0),
})
}
}
impl carbon_core::postgres::operations::Table
for crate::instructions::increase_liquidity_v2::IncreaseLiquidityV2
{
fn table() -> &'static str {
"increase_liquidity_v2_instruction"
}
fn columns() -> Vec<&'static str> {
vec![
"__signature",
"__instruction_index",
"__stack_height",
"__slot",
"liquidity_amount",
"token_max_a",
"token_max_b",
"remaining_accounts_info",
"__accounts",
]
}
}
#[async_trait::async_trait]
impl carbon_core::postgres::operations::Insert for IncreaseLiquidityV2Row {
async fn insert(&self, pool: &sqlx::PgPool) -> carbon_core::error::CarbonResult<()> {
sqlx::query(
r#"
INSERT INTO increase_liquidity_v2_instruction (
"liquidity_amount",
"token_max_a",
"token_max_b",
"remaining_accounts_info",
__signature, __instruction_index, __stack_height, __slot, __accounts
) VALUES (
$1, $2, $3, $4, $5, $6, $7, $8, $9
)"#,
)
.bind(&self.liquidity_amount)
.bind(&self.token_max_a)
.bind(&self.token_max_b)
.bind(&self.remaining_accounts_info)
.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 IncreaseLiquidityV2Row {
async fn upsert(&self, pool: &sqlx::PgPool) -> carbon_core::error::CarbonResult<()> {
sqlx::query(
r#"INSERT INTO increase_liquidity_v2_instruction (
"liquidity_amount",
"token_max_a",
"token_max_b",
"remaining_accounts_info",
__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
"liquidity_amount" = EXCLUDED."liquidity_amount",
"token_max_a" = EXCLUDED."token_max_a",
"token_max_b" = EXCLUDED."token_max_b",
"remaining_accounts_info" = EXCLUDED."remaining_accounts_info",
__instruction_index = EXCLUDED.__instruction_index,
__stack_height = EXCLUDED.__stack_height,
__slot = EXCLUDED.__slot,
__accounts = EXCLUDED.__accounts
"#,
)
.bind(&self.liquidity_amount)
.bind(&self.token_max_a)
.bind(&self.token_max_b)
.bind(&self.remaining_accounts_info)
.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 IncreaseLiquidityV2Row {
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 increase_liquidity_v2_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 IncreaseLiquidityV2Row {
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 increase_liquidity_v2_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 IncreaseLiquidityV2MigrationOperation;
#[async_trait::async_trait]
impl sqlx_migrator::Operation<sqlx::Postgres> for IncreaseLiquidityV2MigrationOperation {
async fn up(
&self,
connection: &mut sqlx::PgConnection,
) -> Result<(), sqlx_migrator::error::Error> {
sqlx::query(
r#"CREATE TABLE IF NOT EXISTS increase_liquidity_v2_instruction (
-- Instruction data
"liquidity_amount" NUMERIC(39) NOT NULL,
"token_max_a" NUMERIC(20) NOT NULL,
"token_max_b" NUMERIC(20) NOT NULL,
"remaining_accounts_info" JSONB,
-- 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 increase_liquidity_v2_instruction"#)
.execute(connection)
.await?;
Ok(())
}
}