]> git.lizzy.rs Git - connect-rs.git/blob - src/lib.rs
45e6e9095d8f886c592fe90252a64d7840ded252
[connect-rs.git] / src / lib.rs
1 //! This Rust crate provides a simple, brokerless message-queue abstraction over asynchronous
2 //! network streams. It guarantees ordered message delivery and reception, and both TCP and TLS
3 //! transports are supported.
4 //!
5 //! # Examples
6 //!
7 //! ````ignore
8 //! // create a client connection to the server
9 //! let mut conn = Connection::tcp_client(ip_address).await?;
10 //!
11 //! // construct a new message
12 //! let msg = String::from("Hello world!");
13 //! let envelope: ConnectDatagram = ConnectDatagram::new(65535, msg.into_bytes())?;
14 //!
15 //! // send a message to the server
16 //! conn.writer().send(envelope).await?;
17 //!
18 //! // wait for the echo-server to reply with an echo
19 //! if let Some(mut envelope) = conn.reader().next().await {
20 //!     // take the message payload from the envelope
21 //!     let data: Vec<u8> = envelope.take_data().unwrap();
22 //!
23 //!     // reconstruct the original message
24 //!     let msg = String::from_utf8(data)?;
25 //!     assert_eq!("Hello world!", msg.as_str());
26 //! }
27 //! ````
28 //!
29 //! In addition to the [crate documentation](https://docs.rs/connect/latest/connect/), please use
30 //! the provided [example programs](https://github.com/sachanganesh/connect-rs/tree/main/examples)
31 //! as a practical reference for crate usage.
32 //!
33 //! - TCP
34 //!     - [TCP Echo Server](https://github.com/sachanganesh/connect-rs/tree/main/examples/tcp-echo-server)
35 //!     - [TCP Client](https://github.com/sachanganesh/connect-rs/tree/main/examples/tcp-client)
36 //! - TLS (enable `tls` feature flag)
37 //!     - [TLS Echo Server](https://github.com/sachanganesh/connect-rs/tree/main/examples/tls-echo-server)
38 //!     - [TLS Client](https://github.com/sachanganesh/connect-rs/tree/main/examples/tls-client)
39 //!
40 //! # Why?
41 //!
42 //! When building networked applications, developers shouldn't have to focus on repeatedly solving
43 //! the problem of reliable, ordered message delivery over byte-streams. By using a message
44 //! queue abstraction, crate users can focus on core application logic and leave the low-level
45 //! networking and message-queue guarantees to the abstraction.
46 //!
47 //! Connect provides a `ConnectionWriter` and `ConnectionReader` interface to concurrently send
48 //! and receive messages over a network connection. Each user-provided message is prefixed by 8
49 //! bytes, containing a size-prefix (4 bytes), version tag (2 bytes), and recipient tag (2 bytes).
50 //! The size-prefix and version tag are used internally to deserialize messages received from the
51 //! network connection. The recipient tag is intended for crate users to identify the message
52 //! recipient, although the library leaves that up to the user's discretion.
53 //!
54 //! Library users must serialize their custom messages into bytes (`Vec<u8>`), prior to
55 //! constructing a `ConnectDatagram`, which can then be passed to a `ConnectionWriter`.
56 //! Consequently, `ConnectionReader`s will return `ConnectDatagram`s containing the message payload
57 //! (`Vec<u8>` again) to the user to deserialize.
58 //!
59 //! Requiring crate users to serialize data before constructing a datagram may appear redundant, but
60 //! gives the developer the freedom to use a serialization format of their choosing. This means that
61 //! library users can do interesting things such as:
62 //!
63 //! - Use the recipient tag to signify which serialization format was used for that message
64 //! - Use the recipient tag to signify the type of message being sent
65 //!
66 //! # Feature Flags
67 //!
68 //! - `tls`: enables usage of tls transport functionality
69 //!
70
71 // #![feature(doc_cfg)]
72
73 mod protocol;
74 mod reader;
75 pub mod tcp;
76 mod writer;
77
78 #[cfg(feature = "tls")]
79 // #[doc(cfg(feature = "tls"))]
80 pub mod tls;
81
82 use async_std::{net::SocketAddr, pin::Pin};
83 use futures::{AsyncRead, AsyncWrite};
84
85 pub use crate::protocol::{ConnectDatagram, DatagramError};
86 pub use crate::reader::ConnectionReader;
87 pub use crate::writer::{ConnectionWriteError, ConnectionWriter};
88 pub use futures::{SinkExt, StreamExt};
89
90 /// Wrapper around a [`ConnectionReader`] and [`ConnectionWriter`] to read and write on a network
91 /// connection.
92 pub struct Connection {
93     reader: ConnectionReader,
94     writer: ConnectionWriter,
95 }
96
97 #[allow(dead_code)]
98 impl Connection {
99     pub(crate) fn new(
100         local_addr: SocketAddr,
101         peer_addr: SocketAddr,
102         read_stream: Pin<Box<dyn AsyncRead + Send + Sync>>,
103         write_stream: Pin<Box<dyn AsyncWrite + Send + Sync>>,
104     ) -> Self {
105         Self {
106             reader: ConnectionReader::new(local_addr, peer_addr, read_stream),
107             writer: ConnectionWriter::new(local_addr, peer_addr, write_stream),
108         }
109     }
110
111     /// Get the local IP address and port.
112     pub fn local_addr(&self) -> SocketAddr {
113         self.reader.local_addr()
114     }
115
116     /// Get the peer IP address and port.
117     pub fn peer_addr(&self) -> SocketAddr {
118         self.reader.peer_addr()
119     }
120
121     /// Consume the [`Connection`] to split into separate [`ConnectionReader`] and
122     /// [`ConnectionWriter`] halves.
123     ///
124     /// [`Connection`]s are split when reading and writing must be concurrent operations.
125     pub fn split(self) -> (ConnectionReader, ConnectionWriter) {
126         (self.reader, self.writer)
127     }
128
129     /// Re-wrap the [`ConnectionReader`] and [`ConnectionWriter`] halves into a [`Connection`].
130     pub fn join(reader: ConnectionReader, writer: ConnectionWriter) -> Self {
131         Self { reader, writer }
132     }
133
134     /// Get mutable access to the underlying [`ConnectionReader`].
135     pub fn reader(&mut self) -> &mut ConnectionReader {
136         &mut self.reader
137     }
138
139     /// Get mutable access to the underlying [`ConnectionWriter`].
140     pub fn writer(&mut self) -> &mut ConnectionWriter {
141         &mut self.writer
142     }
143
144     /// Close the connection by closing both the reading and writing halves.
145     pub async fn close(self) -> SocketAddr {
146         let peer_addr = self.peer_addr();
147         let (reader, writer) = self.split();
148
149         drop(reader);
150
151         // writer.close().await;
152         drop(writer);
153
154         return peer_addr;
155     }
156 }
157
158 #[cfg(test)]
159 mod tests {}