1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0
 */

/* Automatically managed default lints */
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
/* End of automatically managed default lints */
#![allow(clippy::derive_partial_eq_without_eq)]
#![cfg_attr(docsrs, feature(doc_cfg))]

//! Rust/Python bindings, runtime and utilities.
//!
//! This crates implements all the generic code needed to start and manage
//! a Smithy Rust HTTP server where the business logic is implemented in Python,
//! leveraging [PyO3].
//!
//! [PyO3]: https://pyo3.rs/

pub mod context;
mod error;
pub mod lambda;
pub mod logging;
pub mod middleware;
mod server;
mod socket;
pub mod tls;
pub mod types;
mod util;

#[doc(inline)]
pub use error::{PyError, PyMiddlewareException};
#[doc(inline)]
pub use logging::{py_tracing_event, PyTracingHandler};
#[doc(inline)]
pub use middleware::{PyMiddlewareHandler, PyMiddlewareLayer, PyRequest, PyResponse};
#[doc(inline)]
pub use server::{PyApp, PyHandler};
#[doc(inline)]
pub use socket::PySocket;
#[doc(inline)]
pub use util::error::{rich_py_err, RichPyErr};

#[cfg(test)]
mod tests {
    use std::sync::Once;

    use pyo3::{PyErr, Python};
    use pyo3_asyncio::TaskLocals;

    static INIT: Once = Once::new();

    pub(crate) fn initialize() -> TaskLocals {
        INIT.call_once(|| {
            pyo3::prepare_freethreaded_python();
        });

        Python::with_gil(|py| {
            let asyncio = py.import("asyncio")?;
            let event_loop = asyncio.call_method0("new_event_loop")?;
            asyncio.call_method1("set_event_loop", (event_loop,))?;
            Ok::<TaskLocals, PyErr>(TaskLocals::new(event_loop))
        })
        .unwrap()
    }
}