use std::str::FromStr;
use nautilus_core::{
UUID4,
python::{IntoPyObjectNautilusExt, serialization::from_dict_pyo3, to_pyvalue_err},
};
use pyo3::{basic::CompareOp, prelude::*, types::PyDict};
use ustr::Ustr;
use crate::{
events::OrderRejected,
identifiers::{AccountId, ClientOrderId, InstrumentId, StrategyId, TraderId},
};
#[pymethods]
#[pyo3_stub_gen::derive::gen_stub_pymethods]
impl OrderRejected {
#[allow(clippy::too_many_arguments)]
#[new]
fn py_new(
trader_id: TraderId,
strategy_id: StrategyId,
instrument_id: InstrumentId,
client_order_id: ClientOrderId,
account_id: AccountId,
reason: &str,
event_id: UUID4,
ts_event: u64,
ts_init: u64,
reconciliation: bool,
) -> PyResult<Self> {
let reason = Ustr::from_str(reason).map_err(to_pyvalue_err)?;
Ok(Self::new(
trader_id,
strategy_id,
instrument_id,
client_order_id,
account_id,
reason,
event_id,
ts_event.into(),
ts_init.into(),
reconciliation,
false, ))
}
fn __richcmp__(&self, other: &Self, op: CompareOp, py: Python<'_>) -> Py<PyAny> {
match op {
CompareOp::Eq => self.eq(other).into_py_any_unwrap(py),
CompareOp::Ne => self.ne(other).into_py_any_unwrap(py),
_ => py.NotImplemented(),
}
}
fn __repr__(&self) -> String {
format!("{self:?}")
}
fn __str__(&self) -> String {
self.to_string()
}
#[staticmethod]
#[pyo3(name = "from_dict")]
fn py_from_dict(py: Python<'_>, values: Py<PyDict>) -> PyResult<Self> {
from_dict_pyo3(py, values)
}
#[getter]
#[pyo3(name = "trader_id")]
fn py_trader_id(&self) -> TraderId {
self.trader_id
}
#[getter]
#[pyo3(name = "strategy_id")]
fn py_strategy_id(&self) -> StrategyId {
self.strategy_id
}
#[getter]
#[pyo3(name = "instrument_id")]
fn py_instrument_id(&self) -> InstrumentId {
self.instrument_id
}
#[getter]
#[pyo3(name = "client_order_id")]
fn py_client_order_id(&self) -> ClientOrderId {
self.client_order_id
}
#[getter]
#[pyo3(name = "account_id")]
fn py_account_id(&self) -> AccountId {
self.account_id
}
#[getter]
#[pyo3(name = "reason")]
fn py_reason(&self) -> String {
self.reason.as_str().to_string()
}
#[getter]
#[pyo3(name = "event_id")]
fn py_event_id(&self) -> UUID4 {
self.event_id
}
#[getter]
#[pyo3(name = "ts_event")]
fn py_ts_event(&self) -> u64 {
self.ts_event.as_u64()
}
#[getter]
#[pyo3(name = "ts_init")]
fn py_ts_init(&self) -> u64 {
self.ts_init.as_u64()
}
#[getter]
#[pyo3(name = "reconciliation")]
fn py_reconciliation(&self) -> bool {
self.reconciliation != 0
}
#[getter]
#[pyo3(name = "due_post_only")]
fn py_due_post_only(&self) -> bool {
self.due_post_only != 0
}
#[pyo3(name = "to_dict")]
fn py_to_dict(&self, py: Python<'_>) -> PyResult<Py<PyAny>> {
let dict = PyDict::new(py);
dict.set_item("type", stringify!(OrderRejected))?;
dict.set_item("trader_id", self.trader_id.to_string())?;
dict.set_item("strategy_id", self.strategy_id.to_string())?;
dict.set_item("instrument_id", self.instrument_id.to_string())?;
dict.set_item("client_order_id", self.client_order_id.to_string())?;
dict.set_item("account_id", self.account_id.to_string())?;
dict.set_item("reason", self.reason.to_string())?;
dict.set_item("event_id", self.event_id.to_string())?;
dict.set_item("ts_event", self.ts_event.as_u64())?;
dict.set_item("ts_init", self.ts_init.as_u64())?;
dict.set_item("reconciliation", self.reconciliation)?;
dict.set_item("due_post_only", self.due_post_only)?;
Ok(dict.into())
}
}