pgwire::pg_protocol

Struct PgProtocol

source
pub struct PgProtocol<S, SM>
where SM: SessionManager,
{
Show 15 fields stream: Conn<S>, state: PgProtocolState, is_terminate: bool, session_mgr: Arc<SM>, session: Option<Arc<SM::Session>>, result_cache: HashMap<String, ResultCache<<SM::Session as Session>::ValuesStream>>, unnamed_prepare_statement: Option<<SM::Session as Session>::PreparedStatement>, prepare_statement_store: HashMap<String, <SM::Session as Session>::PreparedStatement>, unnamed_portal: Option<<SM::Session as Session>::Portal>, portal_store: HashMap<String, <SM::Session as Session>::Portal>, statement_portal_dependency: HashMap<String, Vec<String>>, tls_context: Option<SslContext>, ignore_util_sync: bool, peer_addr: AddressRef, redact_sql_option_keywords: Option<RedactSqlOptionKeywordsRef>,
}
Expand description

The state machine for each psql connection. Read pg messages from tcp stream and write results back.

Fields§

§stream: Conn<S>

Used for write/read pg messages.

§state: PgProtocolState

Current states of pg connection.

§is_terminate: bool

Whether the connection is terminated.

§session_mgr: Arc<SM>§session: Option<Arc<SM::Session>>§result_cache: HashMap<String, ResultCache<<SM::Session as Session>::ValuesStream>>§unnamed_prepare_statement: Option<<SM::Session as Session>::PreparedStatement>§prepare_statement_store: HashMap<String, <SM::Session as Session>::PreparedStatement>§unnamed_portal: Option<<SM::Session as Session>::Portal>§portal_store: HashMap<String, <SM::Session as Session>::Portal>§statement_portal_dependency: HashMap<String, Vec<String>>§tls_context: Option<SslContext>§ignore_util_sync: bool§peer_addr: AddressRef§redact_sql_option_keywords: Option<RedactSqlOptionKeywordsRef>

Implementations§

source§

impl<S, SM> PgProtocol<S, SM>
where S: AsyncWrite + AsyncRead + Unpin, SM: SessionManager,

source

pub fn new( stream: S, session_mgr: Arc<SM>, tls_config: Option<TlsConfig>, peer_addr: AddressRef, redact_sql_option_keywords: Option<RedactSqlOptionKeywordsRef>, ) -> Self

source

pub async fn process(&mut self, msg: FeMessage) -> bool

Processes one message. Returns true if the connection is terminated.

source

fn root_span_for_msg(&self, msg: &FeMessage) -> Span

The root tracing span for processing a message. The target of the span is PGWIRE_ROOT_SPAN_TARGET.

This is used to provide context for the (slow) query logs and traces.

The span is only effective if there’s a current session and the message is query-related. Otherwise, Span::none() is returned.

source

async fn do_process(&mut self, msg: FeMessage) -> Option<()>

Return type Option<()> is essentially a bool, but allows ? for early return.

  • None means to terminate the current connection
  • Some(()) means to continue processing the next message
source

async fn do_process_inner(&mut self, msg: FeMessage) -> PsqlResult<()>

source

pub async fn read_message(&mut self) -> Result<FeMessage>

source

fn ready_for_query(&mut self) -> Result<()>

Writes a ReadyForQuery message to the client without flushing.

source

async fn process_gss_msg(&mut self) -> PsqlResult<()>

source

async fn process_ssl_msg(&mut self) -> PsqlResult<()>

source

fn process_startup_msg(&mut self, msg: FeStartupMessage) -> PsqlResult<()>

source

async fn process_password_msg( &mut self, msg: FePasswordMessage, ) -> PsqlResult<()>

source

fn process_cancel_msg(&mut self, m: FeCancelMessage) -> PsqlResult<()>

source

async fn process_query_msg( &mut self, query_string: Result<&str>, ) -> PsqlResult<()>

source

async fn inner_process_query_msg( &mut self, sql: Arc<str>, session: Arc<SM::Session>, ) -> PsqlResult<()>

source

async fn inner_process_query_msg_one_stmt( &mut self, stmt: Statement, session: Arc<SM::Session>, ) -> PsqlResult<()>

source

fn process_terminate(&mut self)

source

fn process_health_check(&mut self)

source

async fn process_parse_msg(&mut self, msg: FeParseMessage) -> PsqlResult<()>

source

async fn inner_process_parse_msg( &mut self, session: Arc<SM::Session>, sql: &str, statement_name: String, type_ids: Vec<i32>, ) -> PsqlResult<()>

source

fn process_bind_msg(&mut self, msg: FeBindMessage) -> PsqlResult<()>

source

async fn process_execute_msg(&mut self, msg: FeExecuteMessage) -> PsqlResult<()>

source

fn process_describe_msg(&mut self, msg: FeDescribeMessage) -> PsqlResult<()>

source

fn process_close_msg(&mut self, msg: FeCloseMessage) -> PsqlResult<()>

source

fn remove_portal(&mut self, portal_name: &str)

source

fn get_portal( &self, portal_name: &str, ) -> PsqlResult<<SM::Session as Session>::Portal>

source

fn get_statement( &self, statement_name: &str, ) -> PsqlResult<<SM::Session as Session>::PreparedStatement>

Trait Implementations§

source§

impl<S, SM> Drop for PgProtocol<S, SM>
where SM: SessionManager,

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<S, SM> Freeze for PgProtocol<S, SM>

§

impl<S, SM> !RefUnwindSafe for PgProtocol<S, SM>

§

impl<S, SM> Send for PgProtocol<S, SM>
where S: Send,

§

impl<S, SM> !Sync for PgProtocol<S, SM>

§

impl<S, SM> Unpin for PgProtocol<S, SM>

§

impl<S, SM> !UnwindSafe for PgProtocol<S, SM>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FutureExt for T

§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
§

impl<T> IntoResult<T> for T

§

type Err = Infallible

§

fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>

source§

impl<M> MetricVecRelabelExt for M

source§

fn relabel( self, metric_level: MetricLevel, relabel_threshold: MetricLevel, ) -> RelabeledMetricVec<M>

source§

fn relabel_n( self, metric_level: MetricLevel, relabel_threshold: MetricLevel, relabel_num: usize, ) -> RelabeledMetricVec<M>

source§

fn relabel_debug_1( self, relabel_threshold: MetricLevel, ) -> RelabeledMetricVec<M>

Equivalent to RelabeledMetricVec::with_metric_level_relabel_n with metric_level set to MetricLevel::Debug and relabel_num set to 1.
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more