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
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
// Copyright (c) 2017 mimir developers
//
// Licensed under the Apache License, Version 2.0
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT
// license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. All files in the project carrying such notice may not be copied,
// modified, or distributed except according to those terms.

//! These structs are used for initializing parameters used during connection creation, pool
//! creation, or subscription creation.
use error::Result;
use odpi::structs::{
    ODPIAppContext, ODPICommonCreateParams, ODPIConnCreateParams, ODPIPoolCreateParams,
    ODPISubscrCreateParams,
};
use odpi::{enums, externs, flags};
use pool::Pool;
use std::convert::TryFrom;
use std::ffi::{CStr, CString};
use util::{ODPIStr, PrivateTryFromUsize};

/// This structure is used for passing application context to the database during the process of
/// creating standalone connections. These values are ignored when acquiring a connection from a
/// session pool or when using DRCP (Database Resident Connection Pooling).
#[derive(Builder, Clone, Debug)]
pub struct AppContext {
    /// The ODPI-C dpiAppContext struct.
    #[builder(default)]
    inner: ODPIAppContext,
}

impl AppContext {
    /// Create a new `AppContext` struct.
    pub fn new(namespace: &str, name: &str, value: &str) -> Result<Self> {
        let namespace_s: ODPIStr = TryFrom::try_from(namespace)?;
        let name_s: ODPIStr = TryFrom::try_from(name)?;
        let value_s: ODPIStr = TryFrom::try_from(value)?;

        let ctxt = ODPIAppContext {
            namespace_name: namespace_s.ptr(),
            namespace_name_length: namespace_s.len(),
            name: name_s.ptr(),
            name_length: name_s.len(),
            value: value_s.ptr(),
            value_length: value_s.len(),
        };

        Ok(Self { inner: ctxt })
    }

    /// Get the `namespace_name` value.
    ///
    /// Specifies the value of the "namespace" parameter to sys_context(). It is expected to be a
    /// byte string in the encoding specified in the `ODPIConnCreateParams` structure and must not
    /// be NULL.
    pub fn get_namespace_name(&self) -> String {
        let namespace_name_s =
            ODPIStr::new(self.inner.namespace_name, self.inner.namespace_name_length);
        namespace_name_s.into()
    }

    /// Get the `name` value.
    ///
    /// Specifies the value of the "parameter" parameter to sys_context(). It is expected to be a
    /// byte string in the encoding specified in the `ODPIConnCreateParams` structure and must not
    /// be NULL.
    pub fn get_name(&self) -> String {
        let name_s = ODPIStr::new(self.inner.name, self.inner.name_length);
        name_s.into()
    }

    /// Get the `value` value.
    ///
    /// Specifies the value that will be returned from sys_context(). It is expected to be a byte
    /// string in the encoding specified in the `ODPIConnCreateParams` structure and must not be
    /// NULL.
    pub fn get_value(&self) -> String {
        let value_s = ODPIStr::new(self.inner.value, self.inner.value_length);
        value_s.into()
    }
}

impl From<ODPIAppContext> for AppContext {
    fn from(inner: ODPIAppContext) -> Self {
        Self { inner }
    }
}

/// This structure is used for creating session pools and standalone connections to the database.
pub struct CommonCreate {
    /// The ODPI-C dpiCommonCreateParams struct.
    inner: ODPICommonCreateParams,
    /// Encoding
    encoding: Option<CString>,
    /// NChar Encoding
    nchar_encoding: Option<CString>,
}

impl CommonCreate {
    /// Get the inner FFI struct.
    #[doc(hidden)]
    pub fn inner(&self) -> ODPICommonCreateParams {
        self.inner
    }

    /// Get the `create_mode` value.
    ///
    /// Specifies the mode used for creating connections. It is expected to be one or more of the
    /// values from the enumeration `ODPICreateMode`, OR'ed together. The default value is
    /// DPI_MODE_CREATE_DEFAULT.
    pub fn get_create_mode(&self) -> flags::ODPICreateMode {
        self.inner.create_mode
    }

    /// Set the `create_mode` value.
    pub fn set_create_mode(&mut self, create_mode: flags::ODPICreateMode) -> &mut Self {
        self.inner.create_mode = create_mode;
        self
    }

    /// Get the `encoding` value.
    ///
    /// Specifies the encoding to use for CHAR data, as a null-terminated ASCII string. Either an
    /// IANA or Oracle specific character set name is expected. NULL is also acceptable which
    /// implies the use of the NLS_LANG environment variable. The default value is NULL.
    pub fn get_encoding(&self) -> String {
        let encoding_cstr = unsafe { CStr::from_ptr(self.inner.encoding) };
        encoding_cstr.to_string_lossy().into_owned()
    }

    /// Set the `encoding` value.
    pub fn set_encoding(&mut self, encoding: &str) -> Result<&mut Self> {
        // Put the CString into the struct so it isn't dropped immediately, ensure the pointer
        // is valid.
        let enc_cstr = CString::new(encoding)?;
        let enc_ptr = enc_cstr.as_ptr();
        self.encoding = Some(enc_cstr);
        self.inner.encoding = enc_ptr;
        Ok(self)
    }

    /// Get the `nchar_encoding` value.
    ///
    /// Specifies the encoding to use for NCHAR data, as a null-terminated ASCII string. Either an
    /// IANA or Oracle specific character set name is expected. NULL is also acceptable which
    /// implies the use of the NLS_NCHAR environment variable. The default value is NULL.
    pub fn get_nchar_encoding(&self) -> String {
        let encoding_cstr = unsafe { CStr::from_ptr(self.inner.nchar_encoding) };
        encoding_cstr.to_string_lossy().into_owned()
    }

    /// Set the `nchar_encoding` value.
    pub fn set_nchar_encoding(&mut self, nchar_encoding: &str) -> Result<&mut Self> {
        // Put the CString into the struct so it isn't dropped immediately, ensure the pointer
        // is valid.
        let nchar_enc_cstr = CString::new(nchar_encoding)?;
        let nchar_enc_ptr = nchar_enc_cstr.as_ptr();
        self.nchar_encoding = Some(nchar_enc_cstr);
        self.inner.encoding = nchar_enc_ptr;
        self.inner.nchar_encoding = nchar_enc_ptr;
        Ok(self)
    }

    /// Get the `edition` value.
    ///
    /// Specifies the edition to be used when creating a standalone connection. It is expected to be
    /// NULL (meaning that no edition is set) or a byte string in the encoding specified by the
    /// `encoding` member. The default value is NULL.
    pub fn get_edition(&self) -> String {
        let edition_s = ODPIStr::new(self.inner.edition, self.inner.edition_length);
        edition_s.into()
    }

    /// Set the `edition` value.
    pub fn set_edition(&mut self, edition: &str) -> Result<&mut Self> {
        let edition_s: ODPIStr = TryFrom::try_from(edition)?;
        self.inner.edition = edition_s.ptr();
        self.inner.edition_length = edition_s.len();
        Ok(self)
    }

    /// Get the `driver_name` value.
    ///
    /// Specifies the name of the driver that is being used. It is expected to be NULL or a byte
    /// string in the encoding specified by the dpiCommonCreateParams.encoding member. The default
    /// value is NULL.
    pub fn get_driver_name(&self) -> String {
        let driver_name_s = ODPIStr::new(self.inner.driver_name, self.inner.driver_name_length);
        driver_name_s.into()
    }

    /// Set the `driver_name` value.
    pub fn set_driver_name(&mut self, driver_name: &str) -> Result<&mut Self> {
        let driver_name_s: ODPIStr = TryFrom::try_from(driver_name)?;
        self.inner.driver_name = driver_name_s.ptr();
        self.inner.driver_name_length = driver_name_s.len();
        Ok(self)
    }
}

impl From<ODPICommonCreateParams> for CommonCreate {
    fn from(inner: ODPICommonCreateParams) -> Self {
        Self {
            inner,
            encoding: None,
            nchar_encoding: None,
        }
    }
}

/// This structure is used for creating connections to the database, whether standalone or acquired
/// from a session pool. All members are initialized to default values using the
/// `init_common_conn_params` function. Care should be taken to ensure a copy of this structure
/// exists only as long as needed to create the connection since it can contain a clear text copy of
/// credentials used for connecting to the database.
#[derive(Debug, Default)]
pub struct ConnCreate {
    /// The ODPI-C dpiConnCreateParams struct.
    conn: ODPIConnCreateParams,
}

impl ConnCreate {
    /// Create a new `ConnCreate` struct.
    #[doc(hidden)]
    pub fn new(conn: ODPIConnCreateParams) -> Self {
        Self { conn }
    }

    /// Get the inner FFI struct.
    #[doc(hidden)]
    pub fn inner(&self) -> ODPIConnCreateParams {
        self.conn
    }

    /// Get the `auth_mode` value.
    ///
    /// Specifies the mode used for authorizing connections. It is expected to be one or more of the
    /// values from the enumeration `ODPIAuthMode`, OR'ed together. The default value is
    /// DPI_MODE_AUTH_DEFAULT.
    pub fn get_auth_mode(&self) -> flags::ODPIAuthMode {
        self.conn.auth_mode
    }

    /// Set the `auth_mode` value.
    pub fn set_auth_mode(&mut self, auth_mode: flags::ODPIAuthMode) -> &mut Self {
        self.conn.auth_mode = auth_mode;
        self
    }

    /// Get the `connection_class` value.
    ///
    /// Specifies the connection class to use when connecting to the database. This is used with
    /// DRCP (database resident connection pooling) or to further subdivide a session pool. It is
    /// expected to be NULL (meaning that no connection class will be set) or a byte string in the
    /// encoding used for CHAR data. The default value is NULL.
    pub fn get_connection_class(&self) -> String {
        let connection_class_s = ODPIStr::new(
            self.conn.connection_class,
            self.conn.connection_class_length,
        );
        connection_class_s.into()
    }

    /// Set the `connection_class` value.
    pub fn set_connection_class(&mut self, connection_class: &str) -> Result<&mut Self> {
        let connection_class_s: ODPIStr = TryFrom::try_from(connection_class)?;
        self.conn.connection_class = connection_class_s.ptr();
        self.conn.connection_class_length = connection_class_s.len();
        Ok(self)
    }

    /// Get the `purity` value.
    ///
    /// Specifies the level of purity required when creating a connection using a connection class.
    /// It is expected to be one of the values from the enumeration `ODPIPurity`. The default value
    /// is DPI_PURITY_DEFAULT.
    pub fn get_purity(&self) -> enums::ODPIPurity {
        self.conn.purity
    }

    /// Set the `purity` value.
    pub fn set_purity(&mut self, purity: enums::ODPIPurity) -> &mut Self {
        self.conn.purity = purity;
        self
    }

    /// Get the `new_password` value. (Do we need to expose this?)
    ///
    /// Specifies the new password to set when creating a connection. This value is only used when
    /// creating a standalone connection. It is expected to be NULL or a byte string in the encoding
    ///  used for CHAR data. The default value of this member is NULL. If specified, the password
    /// for the user is changed when the connection is created (useful when the password has expired
    /// and a session cannot be established without changing the password).
    pub fn get_new_password(&self) -> String {
        let new_password_s = ODPIStr::new(self.conn.new_password, self.conn.new_password_length);
        new_password_s.into()
    }

    /// Set the `new_password` value.
    pub fn set_new_password(&mut self, new_password: &str) -> Result<&mut Self> {
        let new_password_s: ODPIStr = TryFrom::try_from(new_password)?;
        self.conn.new_password = new_password_s.ptr();
        self.conn.new_password_length = new_password_s.len();
        Ok(self)
    }

    /// Get the `app_context` value.
    ///
    /// Specifies the application context that will be set when the connection is created. This
    /// value is only used when creating standalone connections. It is expected to be NULL or an
    /// array of `ODPIAppContext` structures. The context specified here can be used in logon
    /// triggers, for example. The default value is NULL.
    #[cfg_attr(feature = "cargo-clippy", allow(cast_possible_wrap))]
    pub fn get_app_context(&self) -> Result<Vec<AppContext>> {
        let len: isize = self.conn.num_app_context as isize;
        let head_ptr = self.conn.app_context;

        let mut app_contexts = Vec::new();
        for i in 0..len {
            app_contexts.push(unsafe { *head_ptr.offset(i) }.into());
        }
        Ok(app_contexts)
    }

    /// Set the `app_context` value.
    pub fn set_app_context(&mut self, app_contexts: &[AppContext]) -> Result<&mut Self> {
        let len: u32 = u32::private_try_from(app_contexts.len())?;
        let mut oac_vec: Vec<ODPIAppContext> = Vec::new();
        for ac in app_contexts {
            oac_vec.push(ac.inner);
        }
        let ac_ptr = app_contexts.as_ptr();
        self.conn.app_context = ac_ptr as *mut ODPIAppContext;
        self.conn.num_app_context = len;
        Ok(self)
    }

    /// Get the `num_app_context` value.
    ///
    /// Specifies the number of elements found in the dpiConnCreateParams.appContext member. The
    /// default value is 0.
    pub fn get_num_app_context(&self) -> u32 {
        self.conn.num_app_context
    }

    /// Get the `external_auth` value.
    ///
    /// Specifies whether external authentication should be used to create the connection. If this
    /// value is 0, the user name and password values must be specified in the call to
    /// `ConnCreateection.create` otherwise, the user name and password values must be zero length
    /// orNULL. The default value is 0.
    pub fn get_external_auth(&self) -> i32 {
        self.conn.external_auth
    }

    /// Set the `external_auth` value.
    pub fn set_external_auth(&mut self, external_auth: i32) -> &mut Self {
        self.conn.external_auth = external_auth;
        self
    }

    /// Get the `external_handle` value.
    ///
    /// Specifies an OCI service context handle created externally that will be used instead of
    /// creating a connection. The default value is NULL.
    pub fn get_external_handle(&self) -> *mut ::std::os::raw::c_void {
        self.conn.external_handle
    }

    /// Set the `external_handle` value.
    pub fn set_external_handle(
        &mut self,
        external_handle: *mut ::std::os::raw::c_void,
    ) -> &mut Self {
        self.conn.external_handle = external_handle;
        self
    }

    /// Get the `pool` value.
    ///
    /// Specifies the session pool from which to acquire a connection or NULL if a standalone
    /// connection should be created. The default value is NULL.
    pub fn get_pool(&self) -> Result<Pool> {
        Ok(TryFrom::try_from(self.conn.pool)?)
    }

    /// Set the `pool` value.
    pub fn set_pool(&mut self, pool: &Pool) -> &mut Self {
        self.conn.pool = pool.inner();
        self
    }

    /// Get the `tag` value.
    ///
    /// Specifies the tag to use when acquiring a connection from a session pool. This member is
    /// ignored when creating a standalone connection. If specified, the tag restricts the type of
    /// session that can be returned to those with that tag or a NULL tag. If the member
    /// `match_any_tag` is set, however, any session can be returned if no matching sessions are
    /// found.
    ///
    /// The value is expected to be NULL (any session can be returned) or a byte string in the
    /// encoding used for CHAR data. The default value is NULL.
    pub fn get_tag(&self) -> String {
        let tag_s = ODPIStr::new(self.conn.tag, self.conn.tag_length);
        tag_s.into()
    }

    /// Set the `tag` value.
    pub fn set_tag(&mut self, tag: &str) -> Result<&mut Self> {
        let tag_s: ODPIStr = TryFrom::try_from(tag)?;
        self.conn.tag = tag_s.ptr();
        self.conn.tag_length = tag_s.len();
        Ok(self)
    }

    /// Get the `match_any_tag` value.
    ///
    /// Specifies whether any tagged session should be accepted when acquiring a connection from a
    /// session pool, if no connection using the tag specified in the `tag` is available. This value
    /// is only used when acquiring a connection from a session pool. The default value is false.
    pub fn get_match_any_tag(&self) -> bool {
        self.conn.match_any_tag == 1
    }

    /// Set the `match_any_tag` value.
    pub fn set_match_any_tag(&mut self, match_any_tag: bool) -> &mut Self {
        self.conn.match_any_tag = if match_any_tag { 1 } else { 0 };
        self
    }

    /// Get the `out_tag` value.
    ///
    /// Specifies the tag of the connection that was acquired from a session pool, or NULL if the
    /// session was not tagged. This member is left untouched when creating a standalone connection
    /// and is filled in only if the connection acquired from the session pool was tagged. If filled
    /// in, it is a byte string in the encoding used for CHAR data.
    pub fn get_out_tag(&self) -> String {
        if self.conn.out_tag.is_null() {
            "".to_string()
        } else {
            let res = ODPIStr::new(self.conn.out_tag, self.conn.out_tag_length);
            res.into()
        }
    }

    /// Get the `out_tag_found` value.
    pub fn get_out_tag_found(&self) -> bool {
        self.conn.out_tag_found != 0
    }
}

/// This structure is used for creating session pools, which can in turn be used to create
/// connections that are acquired from that session pool. All members are initialized to default
/// values using the `init_pool_create_params()` function.
pub struct PoolCreate {
    /// The ODPI-C dpiPoolCreateParams struct.
    pool: ODPIPoolCreateParams,
}

impl PoolCreate {
    /// Create a new `PoolCreate` struct.
    #[doc(hidden)]
    pub fn new(pool: ODPIPoolCreateParams) -> Self {
        Self { pool }
    }

    /// Get the inner FFI struct.
    #[doc(hidden)]
    pub fn inner(&self) -> ODPIPoolCreateParams {
        self.pool
    }

    /// Get the `min_sessions` value.
    ///
    /// Specifies the minimum number of sessions to be created by the session pool. This value is
    /// ignored if the `homogeneous` member has a value of 0. The default value is 1.
    pub fn get_min_sessions(&self) -> u32 {
        self.pool.min_sessions
    }

    /// Set the `min_sessions` value.
    pub fn set_min_sessions(&mut self, min_sessions: u32) -> &mut Self {
        self.pool.min_sessions = min_sessions;
        self
    }

    /// Get the `max_sessions` value.
    ///
    /// Specifies the maximum number of sessions that can be created by the session pool. Values of
    /// and higher are acceptable. The default value is 1.
    pub fn get_max_sessions(&self) -> u32 {
        self.pool.max_sessions
    }

    /// Set the `max_sessions` value.
    pub fn set_max_sessions(&mut self, max_sessions: u32) -> &mut Self {
        self.pool.max_sessions = max_sessions;
        self
    }

    /// Get the `session_increment` value.
    ///
    /// Specifies the number of sessions that will be created by the session pool when more sessions
    /// are required and the number of sessions is less than the maximum allowed. This value is
    /// ignored if the `homogeneous` member has a value of 0. This value added to the `min_sessions`
    /// member value must not exceed the `max_sessions` member value. The default value is 0.
    pub fn get_session_increment(&self) -> u32 {
        self.pool.session_increment
    }

    /// Set the `session_increment` value.
    pub fn set_session_increment(&mut self, session_increment: u32) -> &mut Self {
        self.pool.session_increment = session_increment;
        self
    }

    /// Get the `ping_interval` value.
    ///
    /// Specifies the number of seconds since a connection has last been used before a ping will be
    /// performed to verify that the connection is still valid. A negative value disables this
    /// check. The default value is 60. This value is ignored in clients 12.2 and later since a much
    /// faster internal check is done by the Oracle client.
    pub fn get_ping_interval(&self) -> i32 {
        self.pool.ping_interval
    }

    /// Set the `ping_interval` value.
    pub fn set_ping_interval(&mut self, ping_interval: i32) -> &mut Self {
        self.pool.ping_interval = ping_interval;
        self
    }

    /// Get the `ping_timeout` value.
    ///
    /// Specifies the number of milliseconds to wait when performing a ping to verify the connection
    /// is still valid before the connection is considered invalid and is dropped. The default value
    /// is 5000 (5 seconds). This value is ignored in clients 12.2 and later since a much faster
    /// internal check is done by the Oracle client.
    pub fn get_ping_timeout(&self) -> i32 {
        self.pool.ping_timeout
    }

    /// Set the `ping_timeout` value.
    pub fn set_ping_timeout(&mut self, ping_timeout: i32) -> &mut Self {
        self.pool.ping_timeout = ping_timeout;
        self
    }

    /// Get the `homogeneous` value.
    ///
    /// Specifies whether the pool is homogeneous or not. In a homogeneous pool all connections use
    /// the same credentials whereas in a heterogeneous pool other credentials are permitted. The
    /// default value is true.
    pub fn get_homogeneous(&self) -> bool {
        self.pool.homogeneous == 1
    }

    /// Set the `homogeneous` value.
    pub fn set_homogeneous(&mut self, homogeneous: bool) -> &mut Self {
        self.pool.homogeneous = if homogeneous { 1 } else { 0 };
        self
    }

    /// Get the `external_auth` value.
    ///
    /// Specifies whether external authentication should be used to create the sessions in the pool.
    /// If this value is 0, the user name and password values must be specified in the call to \
    /// `create()` otherwise, the user name and password values must be zero length or NULL. The
    /// default value is 0.
    pub fn get_external_auth(&self) -> bool {
        self.pool.external_auth == 1
    }

    /// Set the `external_auth` value.
    pub fn set_external_auth(&mut self, external_auth: bool) -> &mut Self {
        self.pool.external_auth = if external_auth { 1 } else { 0 };
        self
    }

    /// Get the `get_mode` value.
    ///
    /// Specifies the mode to use when sessions are acquired from the pool. It is expected to be one
    /// of the values from the enumeration `ODPIPoolGetMode`. The default value is
    /// DPI_MODE_POOL_GET_NOWAIT
    pub fn get_get_mode(&self) -> enums::ODPIPoolGetMode {
        self.pool.get_mode
    }

    /// Set the `get_mode` value.
    pub fn set_get_mode(&mut self, get_mode: enums::ODPIPoolGetMode) -> &mut Self {
        self.pool.get_mode = get_mode;
        self
    }

    /// Get the `out_pool_name` value.
    ///
    /// This member is populated upon successful creation of a pool using the function `create()`.
    /// It is a byte string in the encoding used for CHAR data. Any value specified prior to
    /// creating the session pool is ignored.
    pub fn get_out_pool_name(&self) -> String {
        if self.pool.out_pool_name.is_null() {
            "".to_string()
        } else {
            let res = ODPIStr::new(self.pool.out_pool_name, self.pool.out_pool_name_length);
            res.into()
        }
    }
}

/// This structure is used for creating subscriptions to messages sent for object change
/// notification, query change notification or advanced queuing. All members are initialized to
/// default values using the `init_subscr_create_arams()` function.
pub struct SubscrCreate {
    /// The ODPI-C dpiSubscrCreateParams struct.
    subscr: ODPISubscrCreateParams,
}

impl SubscrCreate {
    #[doc(hidden)]
    /// Create a new `SubscrCreate` struct.
    pub fn new(subscr: ODPISubscrCreateParams) -> Self {
        Self { subscr }
    }

    /// Get the inner FFI struct.
    #[doc(hidden)]
    pub fn inner(&self) -> ODPISubscrCreateParams {
        self.subscr
    }

    /// Get the `subscr_namespace` value.
    ///
    /// Specifies the namespace in which the subscription is created. It is expected to be one of
    /// the values from the enumeration `ODPISubscrNamespace`. The default value is
    /// DPI_SUBSCR_NAMESPACE_DBCHANGE.
    pub fn get_subscr_namespace(&self) -> enums::ODPISubscrNamespace {
        self.subscr.subscr_namespace
    }

    /// Set the `subscr_namespace` value.
    pub fn set_subscr_namespace(
        &mut self,
        subscr_namespace: enums::ODPISubscrNamespace,
    ) -> &mut Self {
        self.subscr.subscr_namespace = subscr_namespace;
        self
    }

    /// Get the `protocol` value.
    ///
    /// Specifies the protocol used for sending notifications for the subscription. It is expected
    /// to be one of the values from the enumeration `ODPISubscrProtocol`. The default value is
    /// DPI_SUBSCR_PROTO_CALLBACK.
    pub fn get_protocol(&self) -> enums::ODPISubscrProtocol {
        self.subscr.protocol
    }

    /// Set the `protocol` value.
    pub fn set_protocol(&mut self, protocol: enums::ODPISubscrProtocol) -> &mut Self {
        self.subscr.protocol = protocol;
        self
    }

    /// Get the `qos` value.
    ///
    /// Specifies the quality of service flags to use with the subscription. It is expected to be
    /// one or more of the values from the enumeration `ODPISubscrQOS`, OR'ed together. The default
    /// value is to have no flags set.
    pub fn get_qos(&self) -> flags::ODPISubscrQOS {
        self.subscr.qos
    }

    /// Set the `qos` value.
    pub fn set_qos(&mut self, qos: flags::ODPISubscrQOS) -> &mut Self {
        self.subscr.qos = qos;
        self
    }

    /// Get the `operations` value.
    ///
    /// Specifies which operations on the registered tables or queries should result in
    /// notifications. It is expected to be one or more of the values from the enumeration
    /// `ODPIOpCode`, OR'ed together. The default value is DPI_OPCODE_ALL_OPS.
    pub fn get_operations(&self) -> flags::ODPIOpCode {
        self.subscr.operations
    }

    /// Set the `operations` value.
    pub fn set_operations(&mut self, operations: flags::ODPIOpCode) -> &mut Self {
        self.subscr.operations = operations;
        self
    }

    /// Get the `port_number` value.
    ///
    /// Specifies the port number on which to receive notifications. The default value is 0, which
    /// means that a port number will be selected by the Oracle client.
    pub fn get_port_number(&self) -> u32 {
        self.subscr.port_number
    }

    /// Set the `port_number` value.
    pub fn set_port_number(&mut self, port_number: u32) -> &mut Self {
        self.subscr.port_number = port_number;
        self
    }

    /// Get the `timeout` value.
    ///
    /// Specifies the length of time, in seconds, before the subscription is unregistered. If the
    /// value is 0, the subscription remains active until explicitly unregistered. The default value
    /// is 0.
    pub fn get_timeout(&self) -> u32 {
        self.subscr.timeout
    }

    /// Set the `timeout` value.
    pub fn set_timeout(&mut self, timeout: u32) -> &mut Self {
        self.subscr.timeout = timeout;
        self
    }

    /// Get the `name` value.
    ///
    /// Specifies the name of the subscription, as a byte string in the encoding used for CHAR data.
    /// This name must be consistent with the namespace identified in the `subscr_namespace` member.
    /// The default value is NULL.
    pub fn get_name(&self) -> String {
        if self.subscr.name.is_null() {
            "".to_string()
        } else {
            let res = ODPIStr::new(self.subscr.name, self.subscr.name_length);
            res.into()
        }
    }

    /// Set the `name` value.
    pub fn set_name(&mut self, name: &str) -> Result<&mut Self> {
        let name_s: ODPIStr = TryFrom::try_from(name)?;
        self.subscr.name = name_s.ptr();
        self.subscr.name_length = name_s.len();
        Ok(self)
    }

    /// Get the `callback` value.
    ///
    /// Specifies the callback that will be called when a notification is sent to the subscription,
    /// if the `protocol` member is set to DPI_SUBSCR_PROTO_CALLBACK. The callback accepts the
    /// following arguments:
    ///
    /// * context -- the value of the `callbackContext` member.
    /// * message -- a pointer to the message that is being sent. The message is in the form
    /// `ODPISubscrMessage`.
    ///
    /// The default value is NULL. If a callback is specified and a notification is sent, this will
    /// be performed on a separate thread. If database operations are going to take place, ensure
    /// that the create mode DPI_MODE_CREATE_THREADED is set in the structure `CreateParams` when
    /// creating the session pool or standalone connection that will be used in this callback.
    pub fn get_callback(&self) -> externs::ODPISubscrCallback {
        self.subscr.callback
    }

    /// Set the `callback` value.
    pub fn set_callback(&mut self, callback: externs::ODPISubscrCallback) -> &mut Self {
        self.subscr.callback = callback;
        self
    }

    /// Get the `callback_context` value.
    ///
    /// Specifies the value that will be used as the first argument to the callback specified in the
    /// `callback` member. The default value is NULL.
    pub fn get_callback_context(&self) -> *mut ::std::os::raw::c_void {
        self.subscr.callback_context
    }

    /// Set the `callback_context` value.
    pub fn set_callback_context(
        &mut self,
        callback_context: *mut ::std::os::raw::c_void,
    ) -> &mut Self {
        self.subscr.callback_context = callback_context;
        self
    }

    /// Get the `recipient_name` value.
    ///
    /// Specifies the name of the recipient to which notifications are sent when the `protocol`
    /// member is not set to DPI_SUBSCR_PROTO_CALLBACK. The value is expected to be a byte string in
    /// the encoding used for CHAR data. The default value is NULL.
    pub fn get_recipient_name(&self) -> String {
        if self.subscr.recipient_name.is_null() {
            "".to_string()
        } else {
            let res = ODPIStr::new(
                self.subscr.recipient_name,
                self.subscr.recipient_name_length,
            );
            res.into()
        }
    }

    /// Set the `recipient_name` value.
    pub fn set_recipient_name(&mut self, recipient_name: &str) -> Result<&mut Self> {
        let recipient_name_s: ODPIStr = TryFrom::try_from(recipient_name)?;
        self.subscr.recipient_name = recipient_name_s.ptr();
        self.subscr.recipient_name_length = recipient_name_s.len();
        Ok(self)
    }
}