exasol 0.3.4

Exasol client library implemented in Rust.
Documentation
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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
//! HTTP Transport options for IMPORT and EXPORT.
//!
//! Defaults to 0 threads (meaning a thread will be created for all available Exasol nodes in the cluster),
//! no compression while encryption is conditioned by the `native-tls` and `rustls` feature flags.

use crossbeam::channel::Sender;
use csv::Terminator;
use std::fmt::{Display, Formatter};
use std::sync::atomic::AtomicBool;
use std::sync::{Arc, Barrier};
use std::time::Duration;

pub trait HttpTransportOpts {
    fn num_threads(&self) -> usize;

    fn encryption(&self) -> bool;

    fn compression(&self) -> bool;

    fn take_timeout(&mut self) -> Option<Duration>;

    /// Sets the timeout of socket read and write operations.
    /// The socket will error out of the timeout is exceeded.
    fn set_timeout(&mut self, timeout: Option<Duration>);
}

/// Export options
///
/// # Defaults
///
/// num_threads: 0 -> this means a thread per node will be spawned
/// compression: false
/// encryption: *if encryption features are enabled true, else false*
/// comment: None
/// encoding: None -> database default will be used
/// null: None -> by default NULL values turn to ""
/// row_separator: `csv` crate's special Terminator::CRLF
/// column_separator: ','
/// column_delimiter: '"'
/// timeout: 120 seconds
/// with_column_names: true
#[derive(Clone, Debug)]
pub struct ExportOpts {
    num_threads: usize,
    compression: bool,
    encryption: bool,
    query: Option<String>,
    table_name: Option<String>,
    comment: Option<String>,
    encoding: Option<String>,
    null: Option<String>,
    row_separator: Terminator,
    column_separator: u8,
    column_delimiter: u8,
    timeout: Option<Duration>,
    with_column_names: bool,
}

#[allow(clippy::derivable_impls)]
impl Default for ExportOpts {
    fn default() -> Self {
        Self {
            num_threads: 0,
            compression: false,
            encryption: cfg!(any(feature = "native-tls-basic", feature = "rustls")),
            query: None,
            table_name: None,
            comment: None,
            encoding: None,
            null: None,
            row_separator: Terminator::CRLF,
            column_separator: b',',
            column_delimiter: b'"',
            timeout: Some(Duration::from_secs(120)),
            with_column_names: true,
        }
    }
}

impl HttpTransportOpts for ExportOpts {
    fn num_threads(&self) -> usize {
        self.num_threads
    }

    fn encryption(&self) -> bool {
        self.encryption
    }

    fn compression(&self) -> bool {
        self.compression
    }

    fn take_timeout(&mut self) -> Option<Duration> {
        self.timeout.take()
    }

    fn set_timeout(&mut self, timeout: Option<Duration>) {
        self.timeout = timeout
    }
}

impl ExportOpts {
    pub fn new() -> Self {
        Self::default()
    }

    pub fn set_encryption(&mut self, flag: bool) {
        Self::validate_encryption(flag);
        self.encryption = flag
    }

    pub fn set_compression(&mut self, flag: bool) {
        Self::validate_compression(flag);
        self.compression = flag
    }

    pub fn set_num_threads(&mut self, num: usize) {
        self.num_threads = num
    }

    pub fn query(&self) -> Option<&str> {
        self.query.as_deref()
    }

    /// Setting the query clears the table name
    pub fn set_query<T>(&mut self, query: T)
    where
        T: Into<String>,
    {
        self.query = Some(query.into());
        self.table_name = None;
    }

    pub fn table_name(&self) -> Option<&str> {
        self.table_name.as_deref()
    }

    /// Setting the table name clears the query
    pub fn set_table_name<T>(&mut self, table: T)
    where
        T: Into<String>,
    {
        self.table_name = Some(table.into());
        self.query = None;
    }

    pub fn comment(&self) -> Option<&str> {
        self.comment.as_deref()
    }

    pub fn set_comment<T>(&mut self, comment: T)
    where
        T: Into<String>,
    {
        self.comment = Some(comment.into())
    }

    pub fn encoding(&self) -> Option<&str> {
        self.encoding.as_deref()
    }

    pub fn set_encoding<T>(&mut self, encoding: T)
    where
        T: Into<String>,
    {
        self.encoding = Some(encoding.into())
    }

    pub fn null(&self) -> Option<&str> {
        self.null.as_deref()
    }

    pub fn set_null<T>(&mut self, value: T)
    where
        T: Into<String>,
    {
        self.null = Some(value.into())
    }

    pub fn row_separator(&self) -> Terminator {
        self.row_separator
    }

    pub fn set_row_separator(&mut self, sep: Terminator) {
        self.row_separator = sep
    }

    pub fn column_separator(&self) -> u8 {
        self.column_separator
    }

    pub fn set_column_separator(&mut self, sep: u8) {
        self.column_separator = sep
    }

    pub fn column_delimiter(&self) -> u8 {
        self.column_delimiter
    }

    pub fn set_column_delimiter(&mut self, delimiter: u8) {
        self.column_delimiter = delimiter
    }

    pub fn with_column_names(&self) -> bool {
        self.with_column_names
    }

    /// When this is `true`, which is the default, the column names header is also exported
    /// as the first row. This is important for deserializing structs from rows, for instance.
    pub fn set_with_column_names(&mut self, flag: bool) {
        self.with_column_names = flag
    }

    fn validate_encryption(flag: bool) {
        if flag && cfg!(not(any(feature = "native-tls-basic", feature = "rustls"))) {
            panic!("native-tls or rustls features must be enabled to use encryption")
        }
    }

    fn validate_compression(flag: bool) {
        if flag && cfg!(not(feature = "flate2")) {
            panic!("flate2 feature must be enabled to use compression")
        }
    }
}

/// HTTP Transport import options.
///
/// # Defaults
///
/// num_threads: 0 -> this means a thread per node will be spawned
/// compression: false
/// encryption: *if encryption features are enabled true, else false*
/// columns: None -> all table columns will be considered
/// comment: None
/// encoding: None -> database default will be used
/// null: None -> by default NULL values turn to ""
/// row_separator: `csv` crate's special Terminator::CRLF
/// column_separator: ','
/// column_delimiter: '"'
/// timeout: 120 seconds
/// skip: 0 rows
/// trim: None
#[derive(Clone, Debug)]
pub struct ImportOpts {
    num_threads: usize,
    compression: bool,
    encryption: bool,
    columns: Option<Vec<String>>,
    table_name: Option<String>,
    comment: Option<String>,
    encoding: Option<String>,
    null: Option<String>,
    row_separator: Terminator,
    column_separator: u8,
    column_delimiter: u8,
    timeout: Option<Duration>,
    skip: usize,
    trim: Option<TrimType>,
}

#[allow(clippy::derivable_impls)]
impl Default for ImportOpts {
    fn default() -> Self {
        Self {
            num_threads: 0,
            compression: false,
            encryption: cfg!(any(feature = "native-tls-basic", feature = "rustls")),
            columns: None,
            table_name: None,
            comment: None,
            encoding: None,
            null: None,
            row_separator: Terminator::CRLF,
            column_separator: b',',
            column_delimiter: b'"',
            timeout: Some(Duration::from_secs(120)),
            skip: 0,
            trim: None,
        }
    }
}

impl HttpTransportOpts for ImportOpts {
    fn num_threads(&self) -> usize {
        self.num_threads
    }

    fn encryption(&self) -> bool {
        self.encryption
    }

    fn compression(&self) -> bool {
        self.compression
    }

    fn take_timeout(&mut self) -> Option<Duration> {
        self.timeout.take()
    }

    fn set_timeout(&mut self, timeout: Option<Duration>) {
        self.timeout = timeout
    }
}

impl ImportOpts {
    pub fn new() -> Self {
        Self::default()
    }

    pub fn set_encryption(&mut self, flag: bool) {
        Self::validate_encryption(flag);
        self.encryption = flag
    }

    pub fn set_compression(&mut self, flag: bool) {
        Self::validate_compression(flag);
        self.compression = flag
    }

    pub fn set_num_threads(&mut self, num: usize) {
        self.num_threads = num
    }

    pub fn columns(&self) -> Option<&[String]> {
        self.columns.as_deref()
    }

    pub fn set_columns<I, T>(&mut self, columns: I)
    where
        I: IntoIterator<Item = T>,
        T: Into<String>,
    {
        self.columns = Some(
            columns
                .into_iter()
                .map(|s| s.into())
                .collect::<Vec<String>>(),
        );
    }

    pub fn table_name(&self) -> Option<&str> {
        self.table_name.as_deref()
    }

    pub fn set_table_name<T>(&mut self, table: T)
    where
        T: Into<String>,
    {
        self.table_name = Some(table.into());
    }

    pub fn comment(&self) -> Option<&str> {
        self.comment.as_deref()
    }

    pub fn set_comment<T>(&mut self, comment: T)
    where
        T: Into<String>,
    {
        self.comment = Some(comment.into())
    }

    pub fn encoding(&self) -> Option<&str> {
        self.encoding.as_deref()
    }

    pub fn set_encoding<T>(&mut self, encoding: T)
    where
        T: Into<String>,
    {
        self.encoding = Some(encoding.into())
    }

    pub fn null(&self) -> Option<&str> {
        self.null.as_deref()
    }

    pub fn set_null<T>(&mut self, value: T)
    where
        T: Into<String>,
    {
        self.null = Some(value.into())
    }

    pub fn row_separator(&self) -> Terminator {
        self.row_separator
    }

    pub fn set_row_separator(&mut self, sep: Terminator) {
        self.row_separator = sep
    }

    pub fn column_separator(&self) -> u8 {
        self.column_separator
    }

    pub fn set_column_separator(&mut self, sep: u8) {
        self.column_separator = sep
    }

    pub fn column_delimiter(&self) -> u8 {
        self.column_delimiter
    }

    pub fn set_column_delimiter(&mut self, delimiter: u8) {
        self.column_delimiter = delimiter
    }

    pub fn skip(&self) -> usize {
        self.skip
    }

    /// Skipping rows could be used for skipping the header row of a file, for instance.
    pub fn set_skip(&mut self, num: usize) {
        self.skip = num
    }

    pub fn trim(&self) -> Option<TrimType> {
        self.trim
    }

    pub fn set_trim(&mut self, trim: Option<TrimType>) {
        self.trim = trim
    }

    fn validate_encryption(flag: bool) {
        if flag && cfg!(not(any(feature = "native-tls-basic", feature = "rustls"))) {
            panic!("native-tls or rustls features must be enabled to use encryption")
        }
    }

    fn validate_compression(flag: bool) {
        if flag && cfg!(not(feature = "flate2")) {
            panic!("flate2 feature must be enabled to use compression")
        }
    }
}

/// Trim options for IMPORT
#[derive(Debug, Clone, Copy)]
pub enum TrimType {
    Left,
    Right,
    Both,
}

impl Display for TrimType {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::Left => write!(f, "LTRIM"),
            Self::Right => write!(f, "RTRIM"),
            Self::Both => write!(f, "TRIM"),
        }
    }
}

/// Struct that holds internal utilities and parameters for HTTP transport
#[derive(Clone, Debug)]
pub struct HttpTransportConfig {
    pub barrier: Arc<Barrier>,
    pub run: Arc<AtomicBool>,
    pub addr_sender: Sender<String>,
    pub server_addr: String,
    pub encryption: bool,
    pub compression: bool,
    pub timeout: Option<Duration>,
}

impl HttpTransportConfig {
    /// Generates a Vec of configs, one for each given address
    pub fn generate(
        hosts: Vec<String>,
        barrier: Arc<Barrier>,
        run: Arc<AtomicBool>,
        addr_sender: Sender<String>,
        use_encryption: bool,
        use_compression: bool,
        timeout: Option<Duration>,
    ) -> Vec<Self> {
        hosts
            .into_iter()
            .map(|server_addr| Self {
                server_addr,
                barrier: barrier.clone(),
                run: run.clone(),
                addr_sender: addr_sender.clone(),
                encryption: use_encryption,
                compression: use_compression,
                timeout,
            })
            .collect()
    }

    pub fn take_timeout(&mut self) -> Option<Duration> {
        self.timeout.take()
    }
}