1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
use r2d2;
use std::cell::RefCell;
use std::io::Write;

#[cfg(feature = "ssl")]
use crate::cluster::{new_ssl_pool, ClusterSslConfig, SslConnectionPool};
use crate::cluster::{
  new_tcp_pool, startup, CDRSSession, ClusterTcpConfig, GetCompressor, GetConnection,
  TcpConnectionPool,
};
use crate::error;
use crate::load_balancing::LoadBalancingStrategy;
use crate::transport::{CDRSTransport, TransportTcp};

use crate::authenticators::Authenticator;
use crate::cluster::SessionPager;
use crate::compression::Compression;
use crate::events::{new_listener, EventStream, Listener};
use crate::frame::events::SimpleServerEvent;
use crate::frame::parser::parse_frame;
use crate::frame::{Frame, IntoBytes};
use crate::query::{BatchExecutor, ExecExecutor, PrepareExecutor, QueryExecutor};

#[cfg(feature = "ssl")]
use crate::transport::TransportTls;
#[cfg(feature = "ssl")]
use openssl::ssl::SslConnector;

/// CDRS session that holds one pool of authorized connecitons per node.
/// `compression` field contains data compressor that will be used
/// for decompressing data received from Cassandra server.
pub struct Session<LB> {
  load_balancing: LB,
  #[allow(dead_code)]
  pub compression: Compression,
}

impl<'a, LB> GetCompressor<'a> for Session<LB> {
  /// Returns compression that current session has.
  fn get_compressor(&self) -> Compression {
    self.compression.clone()
  }
}

impl<'a, LB: Sized> Session<LB> {
  /// Basing on current session returns new `SessionPager` that can be used
  /// for performing paged queries.
  pub fn paged<
    T: CDRSTransport + 'static,
    M: r2d2::ManageConnection<Connection = RefCell<T>, Error = error::Error>,
  >(
    &'a self,
    page_size: i32,
  ) -> SessionPager<'a, M, Session<LB>, T>
  where
    Session<LB>: CDRSSession<'static, T, M>,
  {
    return SessionPager::new(self, page_size);
  }
}

impl<
    T: CDRSTransport + Send + Sync + 'static,
    M: r2d2::ManageConnection<Connection = RefCell<T>, Error = error::Error> + Sized,
    LB: LoadBalancingStrategy<r2d2::Pool<M>>,
  > GetConnection<T, M> for Session<LB>
{
  fn get_connection(&self) -> Option<r2d2::PooledConnection<M>> {
    self.load_balancing.next().and_then(|pool| pool.get().ok())
  }
}

impl<
    'a,
    T: CDRSTransport + 'static,
    M: r2d2::ManageConnection<Connection = RefCell<T>, Error = error::Error> + Sized,
    LB: LoadBalancingStrategy<r2d2::Pool<M>> + Sized,
  > QueryExecutor<T, M> for Session<LB>
{
}

impl<
    'a,
    T: CDRSTransport + 'static,
    LB: LoadBalancingStrategy<r2d2::Pool<M>> + Sized,
    M: r2d2::ManageConnection<Connection = RefCell<T>, Error = error::Error> + Sized,
  > PrepareExecutor<T, M> for Session<LB>
{
}

impl<
    'a,
    T: CDRSTransport + 'static,
    LB: LoadBalancingStrategy<r2d2::Pool<M>> + Sized,
    M: r2d2::ManageConnection<Connection = RefCell<T>, Error = error::Error> + Sized,
  > ExecExecutor<T, M> for Session<LB>
{
}

impl<
    'a,
    T: CDRSTransport + 'static,
    LB: LoadBalancingStrategy<r2d2::Pool<M>> + Sized,
    M: r2d2::ManageConnection<Connection = RefCell<T>, Error = error::Error> + Sized,
  > BatchExecutor<T, M> for Session<LB>
{
}

impl<
    'a,
    T: CDRSTransport + 'static,
    M: r2d2::ManageConnection<Connection = RefCell<T>, Error = error::Error> + Sized,
    LB: LoadBalancingStrategy<r2d2::Pool<M>> + Sized,
  > CDRSSession<'a, T, M> for Session<LB>
{
}

/// Creates new session that will perform queries without any compression. `Compression` type
/// can be changed at any time.
/// As a parameter it takes:
/// * cluster config
/// * load balancing strategy (cannot be changed during `Session` life time).
pub fn new<'a, A, LB>(
  node_configs: &ClusterTcpConfig<'a, A>,
  mut load_balancing: LB,
) -> error::Result<Session<LB>>
where
  A: Authenticator + 'static + Sized,
  LB: LoadBalancingStrategy<TcpConnectionPool<A>> + Sized,
{
  let mut nodes: Vec<TcpConnectionPool<A>> = Vec::with_capacity(node_configs.0.len());

  for node_config in &node_configs.0 {
    let node_connection_pool = new_tcp_pool(node_config.clone())?;
    nodes.push(node_connection_pool);
  }

  load_balancing.init(nodes);

  Ok(Session {
    load_balancing,
    compression: Compression::None,
  })
}

/// Creates new session that will perform queries with Snappy compression. `Compression` type
/// can be changed at any time.
/// As a parameter it takes:
/// * cluster config
/// * load balancing strategy (cannot be changed during `Session` life time).
pub fn new_snappy<'a, A, LB>(
  node_configs: &ClusterTcpConfig<'a, A>,
  mut load_balancing: LB,
) -> error::Result<Session<LB>>
where
  A: Authenticator + 'static + Sized,
  LB: LoadBalancingStrategy<TcpConnectionPool<A>> + Sized,
{
  let mut nodes: Vec<TcpConnectionPool<A>> = Vec::with_capacity(node_configs.0.len());

  for node_config in &node_configs.0 {
    let node_connection_pool = new_tcp_pool(node_config.clone())?;
    nodes.push(node_connection_pool);
  }

  load_balancing.init(nodes);

  Ok(Session {
    load_balancing,
    compression: Compression::Snappy,
  })
}

/// Creates new session that will perform queries with LZ4 compression. `Compression` type
/// can be changed at any time.
/// As a parameter it takes:
/// * cluster config
/// * load balancing strategy (cannot be changed during `Session` life time).
pub fn new_lz4<'a, A, LB>(
  node_configs: &ClusterTcpConfig<'a, A>,
  mut load_balancing: LB,
) -> error::Result<Session<LB>>
where
  A: Authenticator + 'static + Sized,
  LB: LoadBalancingStrategy<TcpConnectionPool<A>> + Sized,
{
  let mut nodes: Vec<TcpConnectionPool<A>> = Vec::with_capacity(node_configs.0.len());

  for node_config in &node_configs.0 {
    let node_connection_pool = new_tcp_pool(node_config.clone())?;
    nodes.push(node_connection_pool);
  }

  load_balancing.init(nodes);

  Ok(Session {
    load_balancing,
    compression: Compression::Lz4,
  })
}

impl<'a, L> Session<L> {
  /// Returns new event listener.
  pub fn listen<A: Authenticator + 'static + Sized>(
    &self,
    node: &str,
    authenticator: A,
    events: Vec<SimpleServerEvent>,
  ) -> error::Result<(Listener<RefCell<TransportTcp>>, EventStream)> {
    let compression = self.get_compressor();
    let transport = TransportTcp::new(&node).map(RefCell::new)?;

    startup(&transport, &authenticator)?;

    let query_frame = Frame::new_req_register(events).into_cbytes();
    transport.borrow_mut().write(query_frame.as_slice())?;
    parse_frame(&transport, &compression)?;

    Ok(new_listener(transport))
  }
}

/// Creates new SSL-based session that will perform queries without any compression. `Compression` type
/// can be changed at any time.
/// As a parameter it takes:
/// * SSL cluster config
/// * load balancing strategy (cannot be changed during `Session` life time).
#[cfg(feature = "ssl")]
pub fn new_ssl<'a, A, LB>(
  node_configs: &ClusterSslConfig<'a, A>,
  mut load_balancing: LB,
) -> error::Result<Session<LB>>
where
  A: Authenticator + 'static + Sized,
  LB: LoadBalancingStrategy<SslConnectionPool<A>> + Sized,
{
  let mut nodes: Vec<SslConnectionPool<A>> = Vec::with_capacity(node_configs.0.len());

  for node_config in &node_configs.0 {
    let node_connection_pool = new_ssl_pool(node_config.clone())?;
    nodes.push(node_connection_pool);
  }

  load_balancing.init(nodes);

  Ok(Session {
    load_balancing,
    compression: Compression::None,
  })
}

/// Creates new SSL-based session that will perform queries with Snappy compression. `Compression` type
/// can be changed at any time.
/// As a parameter it takes:
/// * SSL cluster config
/// * load balancing strategy (cannot be changed during `Session` life time).
#[cfg(feature = "ssl")]
pub fn new_snappy_ssl<'a, A, LB>(
  node_configs: &ClusterSslConfig<'a, A>,
  mut load_balancing: LB,
) -> error::Result<Session<LB>>
where
  A: Authenticator + 'static + Sized,
  LB: LoadBalancingStrategy<SslConnectionPool<A>> + Sized,
{
  let mut nodes: Vec<SslConnectionPool<A>> = Vec::with_capacity(node_configs.0.len());

  for node_config in &node_configs.0 {
    let node_connection_pool = new_ssl_pool(node_config.clone())?;
    nodes.push(node_connection_pool);
  }

  load_balancing.init(nodes);

  Ok(Session {
    load_balancing,
    compression: Compression::Snappy,
  })
}

/// Creates new SSL-based session that will perform queries with LZ4 compression. `Compression` type
/// can be changed at any time.
/// As a parameter it takes:
/// * SSL cluster config
/// * load balancing strategy (cannot be changed during `Session` life time).
#[cfg(feature = "ssl")]
pub fn new_lz4_ssl<'a, A, LB>(
  node_configs: &ClusterSslConfig<'a, A>,
  mut load_balancing: LB,
) -> error::Result<Session<LB>>
where
  A: Authenticator + 'static + Sized,
  LB: LoadBalancingStrategy<SslConnectionPool<A>> + Sized,
{
  let mut nodes: Vec<SslConnectionPool<A>> = Vec::with_capacity(node_configs.0.len());

  for node_config in &node_configs.0 {
    let node_connection_pool = new_ssl_pool(node_config.clone())?;
    nodes.push(node_connection_pool);
  }

  load_balancing.init(nodes);

  Ok(Session {
    load_balancing,
    compression: Compression::Lz4,
  })
}

/// Returns new SSL-based event listener.
#[cfg(feature = "ssl")]
impl<'a, L> Session<L> {
  pub fn listen_ssl<A: Authenticator + 'static + Sized>(
    &self,
    node: (&str, &SslConnector),
    authenticator: A,
    events: Vec<SimpleServerEvent>,
  ) -> error::Result<(Listener<RefCell<TransportTls>>, EventStream)> {
    let (addr_ref, ssl_connector_ref) = node;
    let compression = self.get_compressor();
    let transport = TransportTls::new(addr_ref, ssl_connector_ref).map(RefCell::new)?;

    startup(&transport, &authenticator)?;

    let query_frame = Frame::new_req_register(events).into_cbytes();
    transport.borrow_mut().write(query_frame.as_slice())?;
    parse_frame(&transport, &compression)?;

    Ok(new_listener(transport))
  }
}