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