mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-14 17:02:56 +00:00
This upgrades the `proxy/` crate as well as the forked libraries in `libs/proxy/` to edition 2024. Also reformats the imports of those forked libraries via: ``` cargo +nightly fmt -p proxy -p postgres-protocol2 -p postgres-types2 -p tokio-postgres2 -- -l --config imports_granularity=Module,group_imports=StdExternalCrate,reorder_imports=true ``` It can be read commit-by-commit: the first commit has no formatting changes, only changes to accomodate the new edition. Part of #10918
157 lines
3.8 KiB
Rust
157 lines
3.8 KiB
Rust
use std::fmt;
|
|
use std::sync::{Arc, Weak};
|
|
|
|
use postgres_protocol2::Oid;
|
|
use postgres_protocol2::message::backend::Field;
|
|
use postgres_protocol2::message::frontend;
|
|
|
|
use crate::client::InnerClient;
|
|
use crate::codec::FrontendMessage;
|
|
use crate::connection::RequestMessages;
|
|
use crate::types::Type;
|
|
|
|
struct StatementInner {
|
|
client: Weak<InnerClient>,
|
|
name: &'static str,
|
|
params: Vec<Type>,
|
|
columns: Vec<Column>,
|
|
}
|
|
|
|
impl Drop for StatementInner {
|
|
fn drop(&mut self) {
|
|
if let Some(client) = self.client.upgrade() {
|
|
let buf = client.with_buf(|buf| {
|
|
frontend::close(b'S', self.name, buf).unwrap();
|
|
frontend::sync(buf);
|
|
buf.split().freeze()
|
|
});
|
|
let _ = client.send(RequestMessages::Single(FrontendMessage::Raw(buf)));
|
|
}
|
|
}
|
|
}
|
|
|
|
/// A prepared statement.
|
|
///
|
|
/// Prepared statements can only be used with the connection that created them.
|
|
#[derive(Clone)]
|
|
pub struct Statement(Arc<StatementInner>);
|
|
|
|
impl Statement {
|
|
pub(crate) fn new(
|
|
inner: &Arc<InnerClient>,
|
|
name: &'static str,
|
|
params: Vec<Type>,
|
|
columns: Vec<Column>,
|
|
) -> Statement {
|
|
Statement(Arc::new(StatementInner {
|
|
client: Arc::downgrade(inner),
|
|
name,
|
|
params,
|
|
columns,
|
|
}))
|
|
}
|
|
|
|
pub(crate) fn new_anonymous(params: Vec<Type>, columns: Vec<Column>) -> Statement {
|
|
Statement(Arc::new(StatementInner {
|
|
client: Weak::new(),
|
|
name: "<anonymous>",
|
|
params,
|
|
columns,
|
|
}))
|
|
}
|
|
|
|
pub(crate) fn name(&self) -> &str {
|
|
self.0.name
|
|
}
|
|
|
|
/// Returns the expected types of the statement's parameters.
|
|
pub fn params(&self) -> &[Type] {
|
|
&self.0.params
|
|
}
|
|
|
|
/// Returns information about the columns returned when the statement is queried.
|
|
pub fn columns(&self) -> &[Column] {
|
|
&self.0.columns
|
|
}
|
|
}
|
|
|
|
/// Information about a column of a query.
|
|
pub struct Column {
|
|
name: String,
|
|
type_: Type,
|
|
|
|
// raw fields from RowDescription
|
|
table_oid: Oid,
|
|
column_id: i16,
|
|
format: i16,
|
|
|
|
// that better be stored in self.type_, but that is more radical refactoring
|
|
type_oid: Oid,
|
|
type_size: i16,
|
|
type_modifier: i32,
|
|
}
|
|
|
|
impl Column {
|
|
pub(crate) fn new(name: String, type_: Type, raw_field: Field<'_>) -> Column {
|
|
Column {
|
|
name,
|
|
type_,
|
|
table_oid: raw_field.table_oid(),
|
|
column_id: raw_field.column_id(),
|
|
format: raw_field.format(),
|
|
type_oid: raw_field.type_oid(),
|
|
type_size: raw_field.type_size(),
|
|
type_modifier: raw_field.type_modifier(),
|
|
}
|
|
}
|
|
|
|
/// Returns the name of the column.
|
|
pub fn name(&self) -> &str {
|
|
&self.name
|
|
}
|
|
|
|
/// Returns the type of the column.
|
|
pub fn type_(&self) -> &Type {
|
|
&self.type_
|
|
}
|
|
|
|
/// Returns the table OID of the column.
|
|
pub fn table_oid(&self) -> Oid {
|
|
self.table_oid
|
|
}
|
|
|
|
/// Returns the column ID of the column.
|
|
pub fn column_id(&self) -> i16 {
|
|
self.column_id
|
|
}
|
|
|
|
/// Returns the format of the column.
|
|
pub fn format(&self) -> i16 {
|
|
self.format
|
|
}
|
|
|
|
/// Returns the type OID of the column.
|
|
pub fn type_oid(&self) -> Oid {
|
|
self.type_oid
|
|
}
|
|
|
|
/// Returns the type size of the column.
|
|
pub fn type_size(&self) -> i16 {
|
|
self.type_size
|
|
}
|
|
|
|
/// Returns the type modifier of the column.
|
|
pub fn type_modifier(&self) -> i32 {
|
|
self.type_modifier
|
|
}
|
|
}
|
|
|
|
impl fmt::Debug for Column {
|
|
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
fmt.debug_struct("Column")
|
|
.field("name", &self.name)
|
|
.field("type", &self.type_)
|
|
.finish()
|
|
}
|
|
}
|