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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
use pyo3::prelude::*;
use socket2::{Domain, Protocol, Socket, Type};
use std::net::SocketAddr;
#[pyclass]
#[derive(Debug)]
pub struct PySocket {
pub(crate) inner: Socket,
}
#[pymethods]
impl PySocket {
#[new]
pub fn new(address: String, port: i32, backlog: Option<i32>) -> PyResult<Self> {
let address: SocketAddr = format!("{}:{}", address, port).parse()?;
let (domain, ip_version) = PySocket::socket_domain(address);
tracing::info!("Shared socket listening on {address}, IP version: {ip_version}");
let socket = Socket::new(domain, Type::STREAM, Some(Protocol::TCP))?;
socket.set_reuse_port(true)?;
socket.set_reuse_address(true)?;
socket.bind(&address.into())?;
socket.listen(backlog.unwrap_or(1024))?;
Ok(PySocket { inner: socket })
}
#[pyo3(text_signature = "($self, socket, worker_number)")]
pub fn try_clone(&self) -> PyResult<PySocket> {
let copied = self.inner.try_clone()?;
Ok(PySocket { inner: copied })
}
}
impl PySocket {
pub fn get_socket(&self) -> Result<Socket, std::io::Error> {
self.inner.try_clone()
}
fn socket_domain(address: SocketAddr) -> (Domain, &'static str) {
if address.is_ipv6() {
(Domain::IPV6, "6")
} else {
(Domain::IPV4, "4")
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn socket_can_bind_on_random_port() {
let socket = PySocket::new("127.0.0.1".to_owned(), 0, None).unwrap();
assert!(socket.inner.is_listener().is_ok());
}
#[test]
fn socket_can_be_cloned() {
let socket = PySocket::new("127.0.0.1".to_owned(), 0, None).unwrap();
let cloned_socket = socket.try_clone().unwrap();
assert!(cloned_socket.inner.is_listener().is_ok());
}
}