madsim_tokio_postgres/
lib.rs

1//! An asynchronous, pipelined, PostgreSQL client.
2//!
3//! # Example
4//!
5//! ```no_run
6//! use tokio_postgres::{NoTls, Error};
7//!
8//! # #[cfg(not(feature = "runtime"))] fn main() {}
9//! # #[cfg(feature = "runtime")]
10//! #[tokio::main] // By default, tokio_postgres uses the tokio crate as its runtime.
11//! async fn main() -> Result<(), Error> {
12//!     // Connect to the database.
13//!     let (client, connection) =
14//!         tokio_postgres::connect("host=localhost user=postgres", NoTls).await?;
15//!
16//!     // The connection object performs the actual communication with the database,
17//!     // so spawn it off to run on its own.
18//!     tokio::spawn(async move {
19//!         if let Err(e) = connection.await {
20//!             eprintln!("connection error: {}", e);
21//!         }
22//!     });
23//!
24//!     // Now we can execute a simple statement that just returns its parameter.
25//!     let rows = client
26//!         .query("SELECT $1::TEXT", &[&"hello world"])
27//!         .await?;
28//!
29//!     // And then check that we got back the same string we sent over.
30//!     let value: &str = rows[0].get(0);
31//!     assert_eq!(value, "hello world");
32//!
33//!     Ok(())
34//! }
35//! ```
36//!
37//! # Behavior
38//!
39//! Calling a method like `Client::query` on its own does nothing. The associated request is not sent to the database
40//! until the future returned by the method is first polled. Requests are executed in the order that they are first
41//! polled, not in the order that their futures are created.
42//!
43//! # Pipelining
44//!
45//! The client supports *pipelined* requests. Pipelining can improve performance in use cases in which multiple,
46//! independent queries need to be executed. In a traditional workflow, each query is sent to the server after the
47//! previous query completes. In contrast, pipelining allows the client to send all of the queries to the server up
48//! front, minimizing time spent by one side waiting for the other to finish sending data:
49//!
50//! ```not_rust
51//!             Sequential                              Pipelined
52//! | Client         | Server          |    | Client         | Server          |
53//! |----------------|-----------------|    |----------------|-----------------|
54//! | send query 1   |                 |    | send query 1   |                 |
55//! |                | process query 1 |    | send query 2   | process query 1 |
56//! | receive rows 1 |                 |    | send query 3   | process query 2 |
57//! | send query 2   |                 |    | receive rows 1 | process query 3 |
58//! |                | process query 2 |    | receive rows 2 |                 |
59//! | receive rows 2 |                 |    | receive rows 3 |                 |
60//! | send query 3   |                 |
61//! |                | process query 3 |
62//! | receive rows 3 |                 |
63//! ```
64//!
65//! In both cases, the PostgreSQL server is executing the queries sequentially - pipelining just allows both sides of
66//! the connection to work concurrently when possible.
67//!
68//! Pipelining happens automatically when futures are polled concurrently (for example, by using the futures `join`
69//! combinator):
70//!
71//! ```rust
72//! use futures::future;
73//! use std::future::Future;
74//! use tokio_postgres::{Client, Error, Statement};
75//!
76//! async fn pipelined_prepare(
77//!     client: &Client,
78//! ) -> Result<(Statement, Statement), Error>
79//! {
80//!     future::try_join(
81//!         client.prepare("SELECT * FROM foo"),
82//!         client.prepare("INSERT INTO bar (id, name) VALUES ($1, $2)")
83//!     ).await
84//! }
85//! ```
86//!
87//! # Runtime
88//!
89//! The client works with arbitrary `AsyncRead + AsyncWrite` streams. Convenience APIs are provided to handle the
90//! connection process, but these are gated by the `runtime` Cargo feature, which is enabled by default. If disabled,
91//! all dependence on the tokio runtime is removed.
92//!
93//! # SSL/TLS support
94//!
95//! TLS support is implemented via external libraries. `Client::connect` and `Config::connect` take a TLS implementation
96//! as an argument. The `NoTls` type in this crate can be used when TLS is not required. Otherwise, the
97//! `postgres-openssl` and `postgres-native-tls` crates provide implementations backed by the `openssl` and `native-tls`
98//! crates, respectively.
99//!
100//! # Features
101//!
102//! The following features can be enabled from `Cargo.toml`:
103//!
104//! | Feature | Description | Extra dependencies | Default |
105//! | ------- | ----------- | ------------------ | ------- |
106//! | `runtime` | Enable convenience API for the connection process based on the `tokio` crate. | [tokio](https://crates.io/crates/tokio) 1.0 with the features `net` and `time` | yes |
107//! | `with-bit-vec-0_6` | Enable support for the `bit-vec` crate. | [bit-vec](https://crates.io/crates/bit-vec) 0.6 | no |
108//! | `with-chrono-0_4` | Enable support for the `chrono` crate. | [chrono](https://crates.io/crates/chrono) 0.4 | no |
109//! | `with-eui48-0_4` | Enable support for the 0.4 version of the `eui48` crate. | [eui48](https://crates.io/crates/eui48) 0.4 | no |
110//! | `with-eui48-1` | Enable support for the 1.0 version of the `eui48` crate. | [eui48](https://crates.io/crates/eui48) 1.0 | no |
111//! | `with-geo-types-0_6` | Enable support for the 0.6 version of the `geo-types` crate. | [geo-types](https://crates.io/crates/geo-types/0.6.0) 0.6 | no |
112//! | `with-geo-types-0_7` | Enable support for the 0.7 version of the `geo-types` crate. | [geo-types](https://crates.io/crates/geo-types/0.7.0) 0.7 | no |
113//! | `with-serde_json-1` | Enable support for the `serde_json` crate. | [serde_json](https://crates.io/crates/serde_json) 1.0 | no |
114//! | `with-uuid-0_8` | Enable support for the `uuid` crate. | [uuid](https://crates.io/crates/uuid) 0.8 | no |
115//! | `with-uuid-1` | Enable support for the `uuid` crate. | [uuid](https://crates.io/crates/uuid) 1.0 | no |
116//! | `with-time-0_2` | Enable support for the 0.2 version of the `time` crate. | [time](https://crates.io/crates/time/0.2.0) 0.2 | no |
117//! | `with-time-0_3` | Enable support for the 0.3 version of the `time` crate. | [time](https://crates.io/crates/time/0.3.0) 0.3 | no |
118#![doc(html_root_url = "https://docs.rs/tokio-postgres/0.7")]
119#![warn(rust_2018_idioms, clippy::all, missing_docs)]
120
121pub use crate::cancel_token::CancelToken;
122pub use crate::client::Client;
123pub use crate::config::Config;
124pub use crate::connection::Connection;
125pub use crate::copy_in::CopyInSink;
126pub use crate::copy_out::CopyOutStream;
127use crate::error::DbError;
128pub use crate::error::Error;
129pub use crate::generic_client::GenericClient;
130pub use crate::portal::Portal;
131pub use crate::query::RowStream;
132pub use crate::row::{Row, SimpleQueryRow};
133pub use crate::simple_query::SimpleQueryStream;
134#[cfg(feature = "runtime")]
135pub use crate::socket::Socket;
136pub use crate::statement::{Column, Statement};
137#[cfg(feature = "runtime")]
138use crate::tls::MakeTlsConnect;
139pub use crate::tls::NoTls;
140pub use crate::to_statement::ToStatement;
141pub use crate::transaction::Transaction;
142pub use crate::transaction_builder::{IsolationLevel, TransactionBuilder};
143use crate::types::ToSql;
144
145pub mod binary_copy;
146mod bind;
147#[cfg(feature = "runtime")]
148mod cancel_query;
149mod cancel_query_raw;
150mod cancel_token;
151mod client;
152mod codec;
153pub mod config;
154#[cfg(feature = "runtime")]
155mod connect;
156mod connect_raw;
157#[cfg(feature = "runtime")]
158mod connect_socket;
159mod connect_tls;
160mod connection;
161mod copy_in;
162mod copy_out;
163pub mod error;
164mod generic_client;
165mod maybe_tls_stream;
166mod portal;
167mod prepare;
168mod query;
169pub mod row;
170mod simple_query;
171#[cfg(feature = "runtime")]
172mod socket;
173mod statement;
174pub mod tls;
175mod to_statement;
176mod transaction;
177mod transaction_builder;
178pub mod types;
179
180/// A convenience function which parses a connection string and connects to the database.
181///
182/// See the documentation for [`Config`] for details on the connection string format.
183///
184/// Requires the `runtime` Cargo feature (enabled by default).
185///
186/// [`Config`]: config/struct.Config.html
187#[cfg(feature = "runtime")]
188pub async fn connect<T>(
189    config: &str,
190    tls: T,
191) -> Result<(Client, Connection<Socket, T::Stream>), Error>
192where
193    T: MakeTlsConnect<Socket>,
194{
195    let config = config.parse::<Config>()?;
196    config.connect(tls).await
197}
198
199/// An asynchronous notification.
200#[derive(Clone, Debug)]
201pub struct Notification {
202    process_id: i32,
203    channel: String,
204    payload: String,
205}
206
207impl Notification {
208    /// The process ID of the notifying backend process.
209    pub fn process_id(&self) -> i32 {
210        self.process_id
211    }
212
213    /// The name of the channel that the notify has been raised on.
214    pub fn channel(&self) -> &str {
215        &self.channel
216    }
217
218    /// The "payload" string passed from the notifying process.
219    pub fn payload(&self) -> &str {
220        &self.payload
221    }
222}
223
224/// An asynchronous message from the server.
225#[allow(clippy::large_enum_variant)]
226#[derive(Debug, Clone)]
227#[non_exhaustive]
228pub enum AsyncMessage {
229    /// A notice.
230    ///
231    /// Notices use the same format as errors, but aren't "errors" per-se.
232    Notice(DbError),
233    /// A notification.
234    ///
235    /// Connections can subscribe to notifications with the `LISTEN` command.
236    Notification(Notification),
237}
238
239/// Message returned by the `SimpleQuery` stream.
240#[non_exhaustive]
241pub enum SimpleQueryMessage {
242    /// A row of data.
243    Row(SimpleQueryRow),
244    /// A statement in the query has completed.
245    ///
246    /// The number of rows modified or selected is returned.
247    CommandComplete(u64),
248}
249
250fn slice_iter<'a>(
251    s: &'a [&'a (dyn ToSql + Sync)],
252) -> impl ExactSizeIterator<Item = &'a dyn ToSql> + 'a {
253    s.iter().map(|s| *s as _)
254}