nautilus_model/python/events/order/
rejected.rs

1// -------------------------------------------------------------------------------------------------
2//  Copyright (C) 2015-2025 Nautech Systems Pty Ltd. All rights reserved.
3//  https://nautechsystems.io
4//
5//  Licensed under the GNU Lesser General Public License Version 3.0 (the "License");
6//  You may not use this file except in compliance with the License.
7//  You may obtain a copy of the License at https://www.gnu.org/licenses/lgpl-3.0.en.html
8//
9//  Unless required by applicable law or agreed to in writing, software
10//  distributed under the License is distributed on an "AS IS" BASIS,
11//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12//  See the License for the specific language governing permissions and
13//  limitations under the License.
14// -------------------------------------------------------------------------------------------------
15
16use std::str::FromStr;
17
18use nautilus_core::{
19    python::{serialization::from_dict_pyo3, to_pyvalue_err},
20    UUID4,
21};
22use pyo3::{basic::CompareOp, prelude::*, types::PyDict};
23use ustr::Ustr;
24
25use crate::{
26    events::OrderRejected,
27    identifiers::{AccountId, ClientOrderId, InstrumentId, StrategyId, TraderId},
28};
29#[pymethods]
30impl OrderRejected {
31    #[allow(clippy::too_many_arguments)]
32    #[new]
33    fn py_new(
34        trader_id: TraderId,
35        strategy_id: StrategyId,
36        instrument_id: InstrumentId,
37        client_order_id: ClientOrderId,
38        account_id: AccountId,
39        reason: &str,
40        event_id: UUID4,
41        ts_event: u64,
42        ts_init: u64,
43        reconciliation: bool,
44    ) -> PyResult<Self> {
45        let reason = Ustr::from_str(reason).map_err(to_pyvalue_err)?;
46        Ok(Self::new(
47            trader_id,
48            strategy_id,
49            instrument_id,
50            client_order_id,
51            account_id,
52            reason,
53            event_id,
54            ts_event.into(),
55            ts_init.into(),
56            reconciliation,
57        ))
58    }
59
60    fn __richcmp__(&self, other: &Self, op: CompareOp, py: Python<'_>) -> Py<PyAny> {
61        match op {
62            CompareOp::Eq => self.eq(other).into_py(py),
63            CompareOp::Ne => self.ne(other).into_py(py),
64            _ => py.NotImplemented(),
65        }
66    }
67
68    fn __repr__(&self) -> String {
69        format!("{:?}", self)
70    }
71
72    fn __str__(&self) -> String {
73        self.to_string()
74    }
75
76    #[staticmethod]
77    #[pyo3(name = "from_dict")]
78    fn py_from_dict(py: Python<'_>, values: Py<PyDict>) -> PyResult<Self> {
79        from_dict_pyo3(py, values)
80    }
81
82    #[pyo3(name = "to_dict")]
83    fn py_to_dict(&self, py: Python<'_>) -> PyResult<PyObject> {
84        let dict = PyDict::new(py);
85        dict.set_item("type", stringify!(OrderRejected))?;
86        dict.set_item("trader_id", self.trader_id.to_string())?;
87        dict.set_item("strategy_id", self.strategy_id.to_string())?;
88        dict.set_item("instrument_id", self.instrument_id.to_string())?;
89        dict.set_item("client_order_id", self.client_order_id.to_string())?;
90        dict.set_item("account_id", self.account_id.to_string())?;
91        dict.set_item("reason", self.reason.to_string())?;
92        dict.set_item("event_id", self.event_id.to_string())?;
93        dict.set_item("ts_event", self.ts_event.as_u64())?;
94        dict.set_item("ts_init", self.ts_init.as_u64())?;
95        dict.set_item("reconciliation", self.reconciliation)?;
96        Ok(dict.into())
97    }
98}