risingwave_frontend/catalog/
connection_catalog.rs1use risingwave_pb::catalog::connection::Info;
16use risingwave_pb::catalog::{PbConnection, connection};
17
18use crate::catalog::{ConnectionId, OwnedByUserCatalog};
19use crate::user::UserId;
20
21#[derive(Clone, Debug, PartialEq)]
22pub struct ConnectionCatalog {
23 pub id: ConnectionId,
24 pub name: String,
25 pub info: connection::Info,
26 pub owner: UserId,
27}
28
29impl ConnectionCatalog {
30 pub fn connection_type(&self) -> &str {
31 match &self.info {
32 Info::PrivateLinkService(srv) => srv.get_provider().unwrap().as_str_name(),
33 Info::ConnectionParams(params) => params.get_connection_type().unwrap().as_str_name(),
34 }
35 }
36
37 pub fn provider(&self) -> &str {
38 match &self.info {
39 Info::PrivateLinkService(_) => "PRIVATELINK",
40 Info::ConnectionParams(_) => panic!("ConnectionParams is not supported as provider."),
41 }
42 }
43}
44
45impl From<&PbConnection> for ConnectionCatalog {
46 fn from(prost: &PbConnection) -> Self {
47 Self {
48 id: prost.id,
49 name: prost.name.clone(),
50 info: prost.info.clone().unwrap(),
51 owner: prost.owner,
52 }
53 }
54}
55
56impl OwnedByUserCatalog for ConnectionCatalog {
57 fn owner(&self) -> UserId {
58 self.owner
59 }
60}