akita 0.7.0

Akita - Mini orm for 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
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
/*
 *
 *  *
 *  *      Copyright (c) 2018-2025, SnackCloud All rights reserved.
 *  *
 *  *   Redistribution and use in source and binary forms, with or without
 *  *   modification, are permitted provided that the following conditions are met:
 *  *
 *  *   Redistributions of source code must retain the above copyright notice,
 *  *   this list of conditions and the following disclaimer.
 *  *   Redistributions in binary form must reproduce the above copyright
 *  *   notice, this list of conditions and the following disclaimer in the
 *  *   documentation and/or other materials provided with the distribution.
 *  *   Neither the name of the www.snackcloud.cn developer nor the names of its
 *  *   contributors may be used to endorse or promote products derived from
 *  *   this software without specific prior written permission.
 *  *   Author: SnackCloud
 *  *
 *
 */
use crate::comm::ExecuteResult;
use crate::driver::blocking::oracle::OracleConnection;
use crate::errors::{AkitaError, SmartBacktrace};
use crate::{database_err, oracle_err};
use akita_core::{AkitaValue, OperationType, Params, Row, Rows, SqlInjectionDetector};
use chrono::{DateTime, Local, NaiveDate, NaiveDateTime, Utc};
use indexmap::IndexMap;
use once_cell::sync::Lazy;
use oracle::sql_type::{OracleType, Timestamp};
use oracle::ResultSet;
use serde_json::Value;
use std::collections::HashSet;
use std::sync::RwLock;

pub struct OracleAdapter {
    conn: OracleConnection,
    in_transaction: RwLock<bool>,
}

impl OracleAdapter {
    pub fn new(conn: OracleConnection) -> Self {
        Self {
            conn,
            in_transaction: RwLock::new(false),
        }
    }

    /// Start the transaction
    #[track_caller]
    pub fn start_transaction(&self) -> crate::prelude::Result<()> {
        match self.in_transaction.write() {
            Ok(mut in_transaction) => {
                if !*in_transaction {
                    self.conn
                        .execute("SET TRANSACTION ISOLATION LEVEL READ COMMITTED", &[])?;
                    *in_transaction = true;
                }
            }
            Err(_) => {}
        }

        Ok(())
    }

    /// Submit transactions
    #[track_caller]
    pub fn commit_transaction(&self) -> crate::prelude::Result<()> {
        match self.in_transaction.write() {
            Ok(mut in_transaction) => {
                if *in_transaction {
                    self.conn.execute("COMMIT", &[])?;
                    *in_transaction = false;
                }
            }
            Err(_) => {}
        }

        Ok(())
    }

    /// Roll back transactions
    #[track_caller]
    pub fn rollback_transaction(&self) -> crate::prelude::Result<()> {
        match self.in_transaction.write() {
            Ok(mut in_transaction) => {
                if *in_transaction {
                    self.conn.execute("ROLLBACK", &[])?;
                    *in_transaction = false;
                }
            }
            Err(_) => {}
        }

        Ok(())
    }

    #[track_caller]
    pub fn query(&self, sql: &str, params: Params) -> crate::prelude::Result<Rows> {
        // Prepare the statement
        let mut stmt = self.conn.statement(sql).build()?;
        // Getting column information
        let column_count = stmt.bind_names().len();
        let column_names: Vec<String> = stmt
            .bind_names()
            .iter()
            .map(|col| col.to_string())
            .collect();
        // Binding parameters
        bind_oracle_params(&mut stmt, &params)?;

        // Executing queries
        let rows = stmt.query(&[])?;

        // Conversion result
        let mut records = Rows::new();
        for row_result in rows {
            let row = row_result?;
            let mut record = Vec::new();
            for i in 0..column_count {
                let value = get_value_from_oracle_row(&row, i)?;
                record.push(value);
            }
            records.push(Row {
                columns: column_names.clone(),
                data: record,
            });
        }
        Ok(records)
    }

    #[allow(suspicious_double_ref_op)]
    #[track_caller]
    pub fn execute(&self, sql: &str, params: Params) -> Result<ExecuteResult, AkitaError> {
        let opt_type = OperationType::detect_operation_type(sql);
        // Prepare the statement
        let mut stmt = self.conn.statement(sql).build()?;
        // Getting column information
        let column_count = stmt.bind_names().len();
        let column_names: Vec<String> = stmt
            .bind_names()
            .iter()
            .map(|col| col.to_string())
            .collect();

        // Binding parameters
        bind_oracle_params(&mut stmt, &params)?;

        match opt_type {
            OperationType::Select => {
                let rows = stmt.query(&[])?;
                self.convert_rows(column_count, column_names, rows)
            }
            _ => {
                let _rows = stmt.execute(&[])?;
                // If not in the transaction, commit automatically
                let in_transaction = self.in_transaction.read().map_or(false, |lock| *lock);
                if !in_transaction {
                    self.conn.commit()?;
                }
                Ok(ExecuteResult::None)
            }
        }
    }

    /// Oracle-specific: Get the next value in the sequence
    #[track_caller]
    pub fn next_sequence_value(&mut self, sequence_name: &str) -> Result<u64, AkitaError> {
        let sql = format!("SELECT {}.NEXTVAL FROM DUAL", sequence_name);
        let rows = self.execute(&sql, Params::None)?.rows();

        if let Some(row) = rows.get(0) {
            if let Some(value) = row.get::<u64, _>(0) {
                return Ok(value);
            }
        }

        Err(database_err!("Failed to get sequence value".to_string()))
    }

    /// Oracle-specific: Get the current sequence value
    #[track_caller]
    pub fn current_sequence_value(&mut self, sequence_name: &str) -> Result<u64, AkitaError> {
        let sql = format!("SELECT {}.CURRVAL FROM DUAL", sequence_name);
        let rows = self.execute(&sql, Params::None)?.rows();

        if let Some(row) = rows.get(0) {
            if let Some(value) = row.get::<u64, _>(0) {
                return Ok(value);
            }
        }
        Err(database_err!(
            "Failed to get current sequence value".to_string()
        ))
    }

    #[track_caller]
    pub fn convert_rows(
        &self,
        column_count: usize,
        column_names: Vec<String>,
        rows: ResultSet<oracle::Row>,
    ) -> Result<ExecuteResult, AkitaError> {
        let mut records = Rows::new();
        for row_result in rows {
            let row = row_result?;

            let mut record = Vec::new();

            for i in 0..column_count {
                let value = get_value_from_oracle_row(&row, i)?;
                record.push(value);
            }

            records.push(crate::prelude::Row {
                columns: column_names.clone(),
                data: record,
            });
        }

        Ok(ExecuteResult::Rows(records))
    }

    /// Get the number of affected rows
    pub fn affected_rows(&self) -> u64 {
        0
    }

    pub fn connection_id(&self) -> u32 {
        0
    }

    /// Get the last inserted ID
    pub fn last_insert_id(&self) -> u64 {
        0
    }
}

/// Binding Oracle parameters
fn bind_oracle_params(stmt: &mut oracle::Statement, params: &Params) -> Result<(), AkitaError> {
    match params {
        Params::None => Ok(()),
        Params::Positional(param) => {
            for (i, value) in param.iter().enumerate() {
                bind_oracle_value(stmt, i, value)?;
            }
            Ok(())
        }
        Params::Named(param) => {
            for (name, value) in param.iter() {
                bind_oracle_value_by_name(stmt, name, value)?;
            }
            Ok(())
        }
    }
}

/// helper function that converts AkitaValue to Oracle argument values
fn convert_to_oracle_value(val: AkitaValue) -> Box<dyn oracle::sql_type::ToSql> {
    match val {
        AkitaValue::Text(v) => Box::new(v),
        AkitaValue::Bool(v) => {
            let int_val = if v { 1 } else { 0 };
            Box::new(int_val)
        }
        AkitaValue::Tinyint(v) => Box::new(v as i16),
        AkitaValue::Smallint(v) => Box::new(v),
        AkitaValue::Int(v) => Box::new(v),
        AkitaValue::Bigint(v) => Box::new(v),
        AkitaValue::Float(v) => Box::new(v),
        AkitaValue::Double(v) => Box::new(v),
        AkitaValue::BigDecimal(ref v) => Box::new(v.to_string()),
        AkitaValue::Blob(ref v) => Box::new(v.clone()),
        AkitaValue::Char(v) => Box::new(format!("{}", v)),
        AkitaValue::Json(j) => match j {
            Value::Bool(v) => Box::new(v),
            Value::Number(v) => {
                if let Some(n) = v.as_u64() {
                    Box::new(n as i64)
                } else if let Some(n) = v.as_f64() {
                    Box::new(n)
                } else if let Some(n) = v.as_i64() {
                    Box::new(n)
                } else {
                    Box::new(v.to_string())
                }
            }
            Value::String(v) => Box::new(v),
            _ => Box::new(serde_json::to_string(&j).unwrap_or_default()),
        },
        AkitaValue::Uuid(ref v) => {
            // The UUID is passed as a string
            Box::new(v.to_string())
        }
        AkitaValue::Date(ref v) => Box::new(v.clone()),
        AkitaValue::DateTime(ref v) => Box::new(v.clone()),
        AkitaValue::Null => {
            // For NULL values, we need to create a special value
            // The Oracle driver usually handles NULL automatically
            Box::new(Option::<String>::None)
        }
        _ => {
            // For unsupported types, convert to text
            tracing::warn!("Unsupported value type: {:?}, converting to text", val);
            Box::new(val.to_string())
        }
    }
}

/// Bind Oracle values by location
fn bind_oracle_value(
    stmt: &mut oracle::Statement,
    index: usize,
    value: &AkitaValue,
) -> Result<(), AkitaError> {
    let pos = index + 1; // Oracle parameters start at 1
    match value {
        AkitaValue::Text(v) => stmt
            .bind(pos, v)
            .map_err(|e| database_err!(format!("Failed to bind text parameter: {}", e))),
        AkitaValue::Bool(v) => {
            let int_val = if *v { 1 } else { 0 };
            stmt.bind(pos, &int_val)
                .map_err(|e| database_err!(format!("Failed to bind bool parameter: {}", e)))
        }
        AkitaValue::Int(v) => stmt
            .bind(pos, v)
            .map_err(|e| database_err!(format!("Failed to bind int parameter: {}", e))),
        AkitaValue::Bigint(v) => stmt
            .bind(pos, v)
            .map_err(|e| database_err!(format!("Failed to bind bigint parameter: {}", e))),
        AkitaValue::Float(v) => stmt
            .bind(pos, v)
            .map_err(|e| database_err!(format!("Failed to bind float parameter: {}", e))),
        AkitaValue::Double(v) => stmt
            .bind(pos, v)
            .map_err(|e| database_err!(format!("Failed to bind double parameter: {}", e))),
        AkitaValue::Blob(v) => stmt
            .bind(pos, v)
            .map_err(|e| database_err!(format!("Failed to bind blob parameter: {}", e))),
        AkitaValue::Date(v) => {
            // Convert the date string to oracle::Timestamp
            stmt.bind(pos, v)
                .map_err(|e| database_err!(format!("Failed to bind date parameter: {}", e)))
        }
        AkitaValue::DateTime(v) => {
            // Convert the datetime string to oracle::Timestamp
            stmt.bind(pos, v)
                .map_err(|e| database_err!(format!("Failed to bind datetime parameter: {}", e)))
        }
        AkitaValue::Json(j) => match j {
            Value::Bool(v) => stmt
                .bind(pos, v)
                .map_err(|e| database_err!(format!("Failed to bind datetime parameter: {}", e))),
            Value::Number(v) => {
                if let Some(n) = v.as_u64() {
                    stmt.bind(pos, &n).map_err(|e| {
                        database_err!(format!("Failed to bind datetime parameter: {}", e))
                    })
                } else if let Some(n) = v.as_f64() {
                    stmt.bind(pos, &n).map_err(|e| {
                        database_err!(format!("Failed to bind datetime parameter: {}", e))
                    })
                } else if let Some(n) = v.as_i64() {
                    stmt.bind(pos, &n).map_err(|e| {
                        database_err!(format!("Failed to bind datetime parameter: {}", e))
                    })
                } else {
                    stmt.bind(pos, &v.to_string()).map_err(|e| {
                        database_err!(format!("Failed to bind datetime parameter: {}", e))
                    })
                }
            }
            Value::String(v) => stmt
                .bind(pos, v)
                .map_err(|e| database_err!(format!("Failed to bind datetime parameter: {}", e))),
            _ => stmt
                .bind(pos, &serde_json::to_string(&j).unwrap_or_default())
                .map_err(|e| database_err!(format!("Failed to bind datetime parameter: {}", e))),
        },
        AkitaValue::Null => stmt
            .bind(pos, &"null")
            .map_err(|e| database_err!(format!("Failed to bind null parameter: {}", e))),
        _ => {
            // For unsupported types, convert to text
            stmt.bind(pos, &value.to_string())
                .map_err(|e| database_err!(format!("Failed to bind parameter as text: {}", e)))
        }
    }
}

/// Get the value from the Oracle row
fn get_value_from_oracle_row(row: &oracle::Row, index: usize) -> Result<AkitaValue, AkitaError> {
    // Checks for NULL
    if row.sql_values().len() == 0 {
        return Ok(AkitaValue::Null);
    }
    // Get the value based on the column type
    let col_type = row.column_info()[index].oracle_type();

    match col_type {
        OracleType::Number(_, _) => {
            if let Ok(val) = row.get::<usize, i64>(index) {
                return Ok(AkitaValue::Bigint(val));
            }
            if let Ok(val) = row.get::<usize, f64>(index) {
                return Ok(AkitaValue::Double(val));
            }
            let val: String = row
                .get(index)
                .map_err(|e| database_err!(format!("Failed to get number value: {}", e)))?;
            Ok(AkitaValue::Text(val))
        }
        OracleType::Varchar2(_)
        | OracleType::Char(_)
        | OracleType::NChar(_)
        | OracleType::NVarchar2(_) => {
            let val: String = row
                .get(index)
                .map_err(|e| database_err!(format!("Failed to get string value: {}", e)))?;
            Ok(AkitaValue::Text(val))
        }
        OracleType::Date => {
            let val: NaiveDateTime = row
                .get(index)
                .map_err(|e| database_err!(format!("Failed to get Date value: {}", e)))?;
            Ok(AkitaValue::DateTime(val))
        }
        OracleType::Timestamp(_v) => {
            let val = row
                .get(index)
                .map_err(|e| database_err!(format!("Failed to get Date value: {}", e)))?;
            Ok(AkitaValue::Timestamp(val))
        }
        OracleType::TimestampTZ(_) => {
            // Try as Timestamp (for TIMESTAMP & TIMESTAMP WITH TIME ZONE)
            if let Ok(ts) = row.get::<usize, Timestamp>(index) {
                return Ok(AkitaValue::Timestamp(timestamp_to_utc(&ts)));
            }

            // Backend: Returns a string in some cases (TIMESTAMPTZ is common)
            let val: String = row.get(index)?;
            let dt = parse_timestamptz_str(&val);
            Ok(AkitaValue::Timestamp(dt))
        }
        OracleType::BLOB | OracleType::Raw(_) => {
            let val: Vec<u8> = row
                .get(index)
                .map_err(|e| database_err!(format!("Failed to get blob value: {}", e)))?;
            Ok(AkitaValue::Blob(val))
        }
        OracleType::NCLOB | OracleType::CLOB => {
            let val: String = row
                .get(index)
                .map_err(|e| database_err!(format!("Failed to get clob value: {}", e)))?;
            Ok(AkitaValue::Text(val))
        }
        _ => {
            // For an unknown type, try to get a string
            let val: String = row
                .get(index)
                .map_err(|e| database_err!(format!("Failed to get value: {}", e)))?;
            Ok(AkitaValue::Text(val))
        }
    }
}

fn timestamp_to_utc(ts: &Timestamp) -> DateTime<Utc> {
    let year = ts.year();
    let month = ts.month();
    let day = ts.day();
    let hour = ts.hour();
    let min = ts.minute();
    let sec = ts.second();
    let fsec = ts.nanosecond();
    let ndt = NaiveDate::from_ymd_opt(year, month, day)
        .unwrap()
        .and_hms_nano_opt(hour, min, sec, fsec)
        .unwrap();

    DateTime::<Utc>::from_naive_utc_and_offset(ndt, Utc)
}

fn parse_timestamptz_str(s: &str) -> DateTime<Utc> {
    DateTime::parse_from_rfc3339(s)
        .or_else(|_| DateTime::parse_from_str(s, "%Y-%m-%d %H:%M:%S %:z"))
        .unwrap()
        .with_timezone(&Utc)
}

/// Bind Oracle values by name
fn bind_oracle_value_by_name(
    stmt: &mut oracle::Statement,
    name: &str,
    value: &AkitaValue,
) -> Result<(), AkitaError> {
    match value {
        AkitaValue::Text(v) => stmt
            .bind(name, v)
            .map_err(|e| database_err!(format!("Failed to bind text parameter: {}", e))),
        AkitaValue::Bool(v) => {
            let int_val = if *v { 1 } else { 0 };
            stmt.bind(name, &int_val)
                .map_err(|e| database_err!(format!("Failed to bind bool parameter: {}", e)))
        }
        AkitaValue::Int(v) => stmt
            .bind(name, v)
            .map_err(|e| database_err!(format!("Failed to bind int parameter: {}", e))),
        AkitaValue::Bigint(v) => stmt
            .bind(name, v)
            .map_err(|e| database_err!(format!("Failed to bind bigint parameter: {}", e))),
        AkitaValue::Float(v) => stmt
            .bind(name, v)
            .map_err(|e| database_err!(format!("Failed to bind float parameter: {}", e))),
        AkitaValue::Double(v) => stmt
            .bind(name, v)
            .map_err(|e| database_err!(format!("Failed to bind double parameter: {}", e))),
        AkitaValue::Blob(v) => stmt
            .bind(name, v)
            .map_err(|e| database_err!(format!("Failed to bind blob parameter: {}", e))),
        AkitaValue::Null => stmt
            .bind(name, &value.to_string())
            .map_err(|e| database_err!(format!("Failed to bind null parameter: {}", e))),
        _ => {
            // For unsupported types, convert to text
            stmt.bind(name, &value.to_string())
                .map_err(|e| database_err!(format!("Failed to bind parameter as text: {}", e)))
        }
    }
}