* wip: vendor sqlx-tracing * (compiles) standardize pg types used * more standardization * general log message improvements * wip: improve sqlx-tracing architecture * unify sqlx::Executor type * wip: try fix sqlx tracing * wip: sqlx-tracing compiles * so close * it compiles * fix ci
335 lines
9.6 KiB
Rust
335 lines
9.6 KiB
Rust
use futures::{StreamExt, TryStreamExt, future::BoxFuture};
|
|
use sqlx::{Acquire, Error};
|
|
use tracing::Instrument;
|
|
|
|
use crate::AnyConnection;
|
|
|
|
impl<'c, DB> crate::Transaction<'c, DB>
|
|
where
|
|
DB: crate::Database,
|
|
{
|
|
/// Returns a tracing-instrumented executor for this transaction.
|
|
///
|
|
/// This allows running queries with full span context and attributes.
|
|
pub fn executor(&mut self) -> crate::Connection<'_, DB> {
|
|
crate::Connection {
|
|
inner: &mut *self.inner,
|
|
attributes: self.attributes.clone(),
|
|
}
|
|
}
|
|
|
|
/// Commits this transaction or savepoint.
|
|
pub async fn commit(self) -> Result<(), Error> {
|
|
let attrs = &self.attributes;
|
|
let span = crate::instrument!("sqlx.commit", attrs);
|
|
let fut = self.inner.commit();
|
|
fut.instrument(span).await
|
|
}
|
|
|
|
/// Aborts this transaction or savepoint.
|
|
pub async fn rollback(self) -> Result<(), Error> {
|
|
let attrs = &self.attributes;
|
|
let span = crate::instrument!("sqlx.rollback", attrs);
|
|
let fut = self.inner.rollback();
|
|
fut.instrument(span).await
|
|
}
|
|
}
|
|
|
|
impl<'c, 't, DB> crate::Acquire<'t> for &'t mut crate::Transaction<'c, DB>
|
|
where
|
|
DB: crate::Database,
|
|
{
|
|
type Database = DB;
|
|
|
|
#[inline]
|
|
fn acquire(
|
|
self,
|
|
) -> BoxFuture<'t, Result<AnyConnection<'t, DB>, sqlx::Error>> {
|
|
let attrs = &self.attributes;
|
|
let span = crate::instrument!("sqlx.acquire", attrs);
|
|
let fut = self.inner.acquire();
|
|
let fut = async move {
|
|
let conn = fut.await.inspect_err(crate::span::record_error)?;
|
|
let conn = crate::Connection {
|
|
inner: conn,
|
|
attributes: attrs.clone(),
|
|
};
|
|
let conn = AnyConnection::Raw(conn);
|
|
Ok(conn)
|
|
};
|
|
Box::pin(fut.instrument(span))
|
|
}
|
|
|
|
fn begin(
|
|
self,
|
|
) -> BoxFuture<
|
|
't,
|
|
Result<crate::Transaction<'t, Self::Database>, sqlx::Error>,
|
|
> {
|
|
let attrs = &self.attributes;
|
|
let span = crate::instrument!("sqlx.begin", attrs);
|
|
let fut = self.inner.begin();
|
|
let fut = async move {
|
|
let txn = fut.await.inspect_err(crate::span::record_error)?;
|
|
let txn = crate::Transaction {
|
|
inner: txn,
|
|
attributes: attrs.clone(),
|
|
};
|
|
Ok(txn)
|
|
};
|
|
Box::pin(fut.instrument(span))
|
|
}
|
|
}
|
|
|
|
/// Implements `sqlx::Executor` for a mutable reference to a tracing-instrumented transaction.
|
|
///
|
|
/// Each method creates a tracing span for the SQL operation, attaches relevant attributes,
|
|
/// and records errors or row counts as appropriate for observability.
|
|
impl<'c, 't, DB> sqlx::Executor<'t> for &'t mut crate::Transaction<'c, DB>
|
|
where
|
|
DB: crate::Database,
|
|
for<'a> &'a mut DB::Connection: sqlx::Executor<'a, Database = DB>,
|
|
{
|
|
type Database = DB;
|
|
|
|
#[doc(hidden)]
|
|
fn describe<'e, 'q: 'e>(
|
|
self,
|
|
sql: &'q str,
|
|
) -> futures::future::BoxFuture<
|
|
'e,
|
|
Result<sqlx::Describe<Self::Database>, sqlx::Error>,
|
|
>
|
|
where
|
|
't: 'e,
|
|
{
|
|
let attrs = &self.attributes;
|
|
let span = crate::instrument!("sqlx.describe", attrs, sql);
|
|
Box::pin(
|
|
async move {
|
|
let fut = (&mut self.inner).describe(sql);
|
|
fut.await.inspect_err(crate::span::record_error)
|
|
}
|
|
.instrument(span),
|
|
)
|
|
}
|
|
|
|
fn execute<'e, 'q: 'e, E>(
|
|
self,
|
|
query: E,
|
|
) -> futures::future::BoxFuture<
|
|
'e,
|
|
Result<<Self::Database as sqlx::Database>::QueryResult, sqlx::Error>,
|
|
>
|
|
where
|
|
E: 'q + sqlx::Execute<'q, Self::Database>,
|
|
't: 'e,
|
|
{
|
|
let sql = query.sql();
|
|
let attrs = &self.attributes;
|
|
let span = crate::instrument!("sqlx.execute", attrs, sql);
|
|
let fut = (&mut self.inner).execute(query);
|
|
Box::pin(
|
|
async move { fut.await.inspect_err(crate::span::record_error) }
|
|
.instrument(span),
|
|
)
|
|
}
|
|
|
|
fn execute_many<'e, 'q: 'e, E>(
|
|
self,
|
|
query: E,
|
|
) -> futures::stream::BoxStream<
|
|
'e,
|
|
Result<<Self::Database as sqlx::Database>::QueryResult, sqlx::Error>,
|
|
>
|
|
where
|
|
E: 'q + sqlx::Execute<'q, Self::Database>,
|
|
't: 'e,
|
|
{
|
|
let sql = query.sql();
|
|
let attrs = &self.attributes;
|
|
let span = crate::instrument!("sqlx.execute_many", attrs, sql);
|
|
let stream = (&mut self.inner).execute_many(query);
|
|
use futures::StreamExt;
|
|
Box::pin(
|
|
stream
|
|
.inspect(move |_| {
|
|
let _enter = span.enter();
|
|
})
|
|
.inspect_err(crate::span::record_error),
|
|
)
|
|
}
|
|
|
|
fn fetch<'e, 'q: 'e, E>(
|
|
self,
|
|
query: E,
|
|
) -> futures::stream::BoxStream<
|
|
'e,
|
|
Result<<Self::Database as sqlx::Database>::Row, sqlx::Error>,
|
|
>
|
|
where
|
|
E: 'q + sqlx::Execute<'q, Self::Database>,
|
|
't: 'e,
|
|
{
|
|
let sql = query.sql();
|
|
let attrs = &self.attributes;
|
|
let span = crate::instrument!("sqlx.fetch", attrs, sql);
|
|
let stream = (&mut self.inner).fetch(query);
|
|
use futures::StreamExt;
|
|
Box::pin(
|
|
stream
|
|
.inspect(move |_| {
|
|
let _enter = span.enter();
|
|
})
|
|
.inspect_err(crate::span::record_error),
|
|
)
|
|
}
|
|
|
|
fn fetch_all<'e, 'q: 'e, E>(
|
|
self,
|
|
query: E,
|
|
) -> futures::future::BoxFuture<
|
|
'e,
|
|
Result<Vec<<Self::Database as sqlx::Database>::Row>, sqlx::Error>,
|
|
>
|
|
where
|
|
E: 'q + sqlx::Execute<'q, Self::Database>,
|
|
't: 'e,
|
|
{
|
|
let sql = query.sql();
|
|
let attrs = &self.attributes;
|
|
let span = crate::instrument!("sqlx.fetch_all", attrs, sql);
|
|
let fut = (&mut self.inner).fetch_all(query);
|
|
Box::pin(
|
|
async move {
|
|
fut.await
|
|
.inspect(|res| {
|
|
let span = tracing::Span::current();
|
|
span.record("db.response.returned_rows", res.len());
|
|
})
|
|
.inspect_err(crate::span::record_error)
|
|
}
|
|
.instrument(span),
|
|
)
|
|
}
|
|
|
|
fn fetch_many<'e, 'q: 'e, E>(
|
|
self,
|
|
query: E,
|
|
) -> futures::stream::BoxStream<
|
|
'e,
|
|
Result<
|
|
sqlx::Either<
|
|
<Self::Database as sqlx::Database>::QueryResult,
|
|
<Self::Database as sqlx::Database>::Row,
|
|
>,
|
|
sqlx::Error,
|
|
>,
|
|
>
|
|
where
|
|
E: 'q + sqlx::Execute<'q, Self::Database>,
|
|
't: 'e,
|
|
{
|
|
let sql = query.sql();
|
|
let attrs = &self.attributes;
|
|
let span = crate::instrument!("sqlx.fetch_all", attrs, sql);
|
|
let stream = (&mut self.inner).fetch_many(query);
|
|
Box::pin(
|
|
stream
|
|
.inspect(move |_| {
|
|
let _enter = span.enter();
|
|
})
|
|
.inspect_err(crate::span::record_error),
|
|
)
|
|
}
|
|
|
|
fn fetch_one<'e, 'q: 'e, E>(
|
|
self,
|
|
query: E,
|
|
) -> futures::future::BoxFuture<
|
|
'e,
|
|
Result<<Self::Database as sqlx::Database>::Row, sqlx::Error>,
|
|
>
|
|
where
|
|
E: 'q + sqlx::Execute<'q, Self::Database>,
|
|
't: 'e,
|
|
{
|
|
let sql = query.sql();
|
|
let attrs = &self.attributes;
|
|
let span = crate::instrument!("sqlx.fetch_one", attrs, sql);
|
|
let fut = (&mut self.inner).fetch_one(query);
|
|
Box::pin(
|
|
async move {
|
|
fut.await
|
|
.inspect(crate::span::record_one)
|
|
.inspect_err(crate::span::record_error)
|
|
}
|
|
.instrument(span),
|
|
)
|
|
}
|
|
|
|
fn fetch_optional<'e, 'q: 'e, E>(
|
|
self,
|
|
query: E,
|
|
) -> futures::future::BoxFuture<
|
|
'e,
|
|
Result<Option<<Self::Database as sqlx::Database>::Row>, sqlx::Error>,
|
|
>
|
|
where
|
|
E: 'q + sqlx::Execute<'q, Self::Database>,
|
|
't: 'e,
|
|
{
|
|
let sql = query.sql();
|
|
let attrs = &self.attributes;
|
|
let span = crate::instrument!("sqlx.fetch_optional", attrs, sql);
|
|
let fut = (&mut self.inner).fetch_optional(query);
|
|
Box::pin(
|
|
async move {
|
|
fut.await
|
|
.inspect(crate::span::record_optional)
|
|
.inspect_err(crate::span::record_error)
|
|
}
|
|
.instrument(span),
|
|
)
|
|
}
|
|
|
|
fn prepare<'e, 'q: 'e>(
|
|
self,
|
|
query: &'q str,
|
|
) -> futures::future::BoxFuture<
|
|
'e,
|
|
Result<<Self::Database as sqlx::Database>::Statement<'q>, sqlx::Error>,
|
|
>
|
|
where
|
|
't: 'e,
|
|
{
|
|
let attrs = &self.attributes;
|
|
let span = crate::instrument!("sqlx.prepare", attrs, query);
|
|
let fut = (&mut self.inner).prepare(query);
|
|
Box::pin(
|
|
async move { fut.await.inspect_err(crate::span::record_error) }
|
|
.instrument(span),
|
|
)
|
|
}
|
|
|
|
fn prepare_with<'e, 'q: 'e>(
|
|
self,
|
|
sql: &'q str,
|
|
parameters: &'e [<Self::Database as sqlx::Database>::TypeInfo],
|
|
) -> futures::future::BoxFuture<
|
|
'e,
|
|
Result<<Self::Database as sqlx::Database>::Statement<'q>, sqlx::Error>,
|
|
>
|
|
where
|
|
't: 'e,
|
|
{
|
|
let attrs = &self.attributes;
|
|
let span = crate::instrument!("sqlx.prepare_with", attrs, sql);
|
|
let fut = (&mut self.inner).prepare_with(sql, parameters);
|
|
Box::pin(
|
|
async move { fut.await.inspect_err(crate::span::record_error) }
|
|
.instrument(span),
|
|
)
|
|
}
|
|
}
|