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
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
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
/*
 *
 *  *
 *  *      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
 *  *
 *
 */

//!
//! Akita
//!

use std::borrow::Borrow;
use std::cell::RefCell;
use std::rc::Rc;
use std::sync::{Arc, Mutex, OnceLock};

use crate::config::XmlSqlLoaderConfig;
use crate::driver::blocking::DbDriver;
use crate::interceptor::blocking::{InterceptorBuilder, InterceptorChain};
use crate::key::SnowflakeGenerator;
use crate::mapper::blocking::AkitaMapper;
use crate::mapper::IPage;
use crate::pool::blocking::{DBPoolWrapper, PooledConnection};
use crate::prelude::AkitaError;
use crate::prelude::{AkitaConfig, IdentifierGenerator, Wrapper};
use crate::{database_err, interceptor_err};
use akita_core::{
    cfg_if, AkitaValue, AndOr, Condition, FromAkitaValue, GetFields, GetTableName, IntoAkitaValue,
    JoinClause, JoinType, OrderByClause, OrderDirection, Params, Rows, SetOperation, SqlOperator,
    SqlSecurityConfig,
};
use once_cell::sync::Lazy;

use crate::transaction::blocking::AkitaTransaction;
use crate::xml::XmlSqlLoader;

cfg_if! {if #[cfg(all(
    any(
        feature = "mysql-sync",
        feature = "postgres-sync",
        feature = "sqlite-sync",
        feature = "oracle-sync",
        feature = "mssql-sync"
    )
))] {
    use crate::repository::EntityRepository;
}}

cfg_if! {if #[cfg(feature = "mysql-sync")]{
    use crate::driver::blocking::mysql::{MySQL};
}}

cfg_if! {if #[cfg(feature = "sqlite-sync")]{
    use crate::driver::blocking::sqlite::{Sqlite};
}}

cfg_if! {if #[cfg(feature = "oracle-sync")]{
    use crate::driver::blocking::oracle::{Oracle};
}}

cfg_if! {if #[cfg(feature = "mssql-sync")]{
    use crate::driver::blocking::mssql::{Mssql};
}}

cfg_if! {if #[cfg(feature = "postgres-sync")]{
    use crate::driver::blocking::postgres::{Postgres};
}}

#[allow(unused)]
#[derive(Clone)]
pub struct Akita {
    /// the connection pool
    pool: DBPoolWrapper,
    interceptor_chain: Option<Arc<InterceptorChain>>,
}

impl std::fmt::Debug for Akita {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("Akita")
            .field("pool", &"Pool { ... }")
            .field(
                "interceptor_chain",
                &match &self.interceptor_chain {
                    Some(_) => "Some(InterceptorChain)",
                    None => "None",
                },
            )
            .finish()
    }
}

#[allow(unused)]
impl Akita {
    pub fn new(cfg: AkitaConfig) -> Result<Self, AkitaError> {
        let pool = DBPoolWrapper::new(cfg)?;
        Ok(Self {
            pool,
            interceptor_chain: None,
        })
    }

    pub fn from_pool(pool: DBPoolWrapper) -> Result<Self, AkitaError> {
        Ok(Self {
            pool,
            interceptor_chain: None,
        })
    }

    pub fn with_interceptor_chain(mut self, interceptor_chain: InterceptorChain) -> Self {
        self.interceptor_chain = Some(Arc::new(interceptor_chain));
        self
    }

    pub fn with_interceptor_builder(
        mut self,
        builder: InterceptorBuilder,
    ) -> Result<Self, AkitaError> {
        let chain = builder.build()?;
        self.interceptor_chain = Some(Arc::new(chain));
        Ok(self)
    }

    pub fn interceptor_chain(&self) -> Option<&Arc<InterceptorChain>> {
        self.interceptor_chain.as_ref()
    }

    #[cfg(all(any(
        feature = "mysql-sync",
        feature = "postgres-sync",
        feature = "sqlite-sync",
        feature = "oracle-sync",
        feature = "mssql-sync"
    )))]
    pub fn repository<T>(&self) -> EntityRepository<Akita, T> {
        EntityRepository::new(self.clone())
    }

    /// get DataBase Connection used for the next step
    pub fn acquire(&self) -> Result<DbDriver, AkitaError> {
        let pool = self.get_pool()?;
        let conn = pool.acquire()?;
        let sql_security_config = pool.config().sql_security().map(Clone::clone);
        let platform = match conn {
            #[cfg(feature = "mysql-sync")]
            PooledConnection::PooledMysql(pooled_mysql) => {
                let mut db = MySQL::new(pooled_mysql).with_sql_security(sql_security_config);

                if let Some(chain) = &self.interceptor_chain {
                    db = db.with_interceptor_chain(Arc::clone(chain));
                }
                if let Some(database) = self.database_name() {
                    db = db.with_database(database);
                }
                DbDriver::MysqlDriver(Box::new(db))
            }
            #[cfg(feature = "sqlite-sync")]
            PooledConnection::PooledSqlite(pooled_sqlite) => {
                let mut db = Sqlite::new(pooled_sqlite).with_sql_security(sql_security_config);
                if let Some(chain) = &self.interceptor_chain {
                    db = db.with_interceptor_chain(Arc::clone(chain));
                }
                if let Some(database) = self.database_name() {
                    db = db.with_database(database);
                }
                DbDriver::SqliteDriver(Box::new(db))
            }
            #[cfg(feature = "postgres-sync")]
            PooledConnection::PooledPostgres(pooled_postgres) => {
                let mut db = Postgres::new(pooled_postgres).with_sql_security(sql_security_config);
                if let Some(chain) = &self.interceptor_chain {
                    db = db.with_interceptor_chain(Arc::clone(chain));
                }
                if let Some(database) = self.database_name() {
                    db = db.with_database(database);
                }
                DbDriver::PostgresDriver(Box::new(db))
            }
            #[cfg(feature = "oracle-sync")]
            PooledConnection::PooledOracle(pooled_oracle) => {
                let mut db = Oracle::new(pooled_oracle).with_sql_security(sql_security_config);
                if let Some(chain) = &self.interceptor_chain {
                    db = db.with_interceptor_chain(Arc::clone(chain));
                }
                if let Some(database) = self.database_name() {
                    db = db.with_database(database);
                }
                DbDriver::OracleDriver(Box::new(db))
            }
            #[cfg(feature = "mssql-sync")]
            PooledConnection::PooledMssql(pooled_mssql) => {
                let mut db = Mssql::new(pooled_mssql).with_sql_security(sql_security_config);
                if let Some(chain) = self.interceptor_chain.as_ref() {
                    db = db.with_interceptor_chain(Arc::clone(chain));
                }
                if let Some(database) = self.database_name() {
                    db = db.with_database(database);
                }
                DbDriver::MssqlDriver(Box::new(db))
            }
            _ => return Err(database_err!("database must be init.")),
        };

        Ok(platform)
    }

    pub fn start_transaction(&self) -> Result<AkitaTransaction, AkitaError> {
        let mut conn = self.acquire()?;
        conn.start()?;
        Ok(AkitaTransaction {
            conn,
            committed: false,
            rolled_back: false,
        })
    }

    /// get conn pool
    pub fn get_pool(&self) -> Result<&DBPoolWrapper, AkitaError> {
        Ok(&self.pool)
    }

    pub fn new_wrapper(&self) -> Wrapper {
        Wrapper::new()
    }

    pub fn wrapper(&self) -> Wrapper {
        Wrapper::new()
    }

    pub fn database_name(&self) -> Option<String> {
        self.pool.config().get_database().unwrap_or_default()
    }
}

#[allow(unused)]
impl AkitaMapper for Akita {
    /// Get all the table of records
    fn list<T>(&self, wrapper: Wrapper) -> Result<Vec<T>, AkitaError>
    where
        T: GetTableName + GetFields + FromAkitaValue,
    {
        let mut conn = self.acquire()?;
        conn.list(wrapper)
    }

    /// Get one the table of records
    fn select_one<T>(&self, wrapper: Wrapper) -> Result<Option<T>, AkitaError>
    where
        T: GetTableName + GetFields + FromAkitaValue,
    {
        let mut conn = self.acquire()?;
        conn.select_one(wrapper)
    }

    /// Get one the table of records by id
    fn select_by_id<T, I>(&self, id: I) -> Result<Option<T>, AkitaError>
    where
        T: GetTableName + GetFields + FromAkitaValue,
        I: IntoAkitaValue,
    {
        let mut conn = self.acquire()?;
        conn.select_by_id(id)
    }

    /// Get table of records with page
    fn page<T>(&self, page: u64, size: u64, wrapper: Wrapper) -> Result<IPage<T>, AkitaError>
    where
        T: GetTableName + GetFields + FromAkitaValue,
    {
        let mut conn = self.acquire()?;
        conn.page(page, size, wrapper)
    }

    /// Get the total count of records
    fn count<T>(&self, wrapper: Wrapper) -> Result<u64, AkitaError>
    where
        T: GetTableName + GetFields,
    {
        let mut conn = self.acquire()?;
        conn.count::<T>(wrapper)
    }

    /// Remove the records by wrapper.
    fn remove<T>(&self, wrapper: Wrapper) -> Result<u64, AkitaError>
    where
        T: GetTableName + GetFields,
    {
        let mut conn = self.acquire()?;
        conn.remove::<T>(wrapper)
    }

    fn remove_by_ids<T, I>(&self, ids: Vec<I>) -> Result<u64, AkitaError>
    where
        I: IntoAkitaValue,
        T: GetTableName + GetFields,
    {
        let mut conn = self.acquire()?;
        conn.remove_by_ids::<T, I>(ids)
    }

    /// Remove the records by id.
    fn remove_by_id<T, I>(&self, id: I) -> Result<u64, AkitaError>
    where
        I: IntoAkitaValue,
        T: GetTableName + GetFields,
    {
        let mut conn = self.acquire()?;
        conn.remove_by_id::<T, I>(id)
    }

    /// Update the records by wrapper.
    fn update<T>(&self, entity: &T, wrapper: Wrapper) -> Result<u64, AkitaError>
    where
        T: GetTableName + GetFields + IntoAkitaValue,
    {
        let mut conn = self.acquire()?;
        conn.update(entity, wrapper)
    }

    /// Update the records by id.
    fn update_by_id<T>(&self, entity: &T) -> Result<u64, AkitaError>
    where
        T: GetTableName + GetFields + IntoAkitaValue,
    {
        let mut conn = self.acquire()?;
        conn.update_by_id(entity)
    }

    fn update_batch_by_id<T>(&self, entities: &Vec<T>) -> Result<u64, AkitaError>
    where
        T: GetTableName + GetFields + IntoAkitaValue,
    {
        let mut conn = self.acquire()?;
        conn.update_batch_by_id(entities)
    }

    #[allow(unused_variables)]
    fn save_batch<T, E>(&self, entities: E) -> crate::prelude::Result<()>
    where
        E: IntoIterator<Item = T>,
        T: GetTableName + GetFields + IntoAkitaValue,
    {
        let mut conn = self.acquire()?;
        conn.save_batch(entities)
    }

    /// called multiple times when using database platform that doesn;t support multiple value
    fn save<T, I>(&self, entity: &T) -> Result<Option<I>, AkitaError>
    where
        T: GetTableName + GetFields + IntoAkitaValue,
        I: FromAkitaValue,
    {
        let mut conn = self.acquire()?;
        conn.save(entity)
    }

    fn save_or_update<T, I>(&self, entity: &T) -> Result<Option<I>, AkitaError>
    where
        T: GetTableName + GetFields + IntoAkitaValue,
        I: FromAkitaValue,
    {
        let mut conn = self.acquire()?;
        conn.save_or_update(entity)
    }

    fn exec_iter<S: Into<String>, P: Into<Params>>(
        &self,
        sql: S,
        params: P,
    ) -> Result<Rows, AkitaError> {
        let mut conn = self.acquire()?;
        conn.exec_iter(sql, params)
    }
}

/// Chained calls
#[allow(mismatched_lifetime_syntaxes)]
impl Akita {
    /// Add a new chain query method
    pub fn query_builder<T>(&self) -> QueryBuilder<T>
    where
        T: GetTableName,
    {
        QueryBuilder::new(self).table(T::table_name().complete_name())
    }

    /// Or go straight back to the wrapper
    pub fn update_builder<T>(&self) -> UpdateBuilder<T>
    where
        T: GetTableName,
    {
        UpdateBuilder::new(self).table(T::table_name().complete_name())
    }
}

/// Added query builder
pub struct QueryBuilder<'a, T> {
    akita: &'a Akita,
    wrapper: Wrapper,
    _phantom: std::marker::PhantomData<T>,
}

impl<'a, T> QueryBuilder<'a, T> {
    pub fn new(akita: &'a Akita) -> Self {
        Self {
            akita,
            wrapper: Wrapper::new(),
            _phantom: std::marker::PhantomData,
        }
    }

    pub fn limit(mut self, limit: u64) -> Self {
        self.wrapper = self.wrapper.limit(limit);
        self
    }

    pub fn eq<S: Into<String>, V: Into<AkitaValue>>(mut self, column: S, value: V) -> Self {
        self.wrapper = self.wrapper.eq(column, value);
        self
    }

    pub fn table<S: Into<String>>(mut self, table: S) -> Self {
        self.wrapper = self.wrapper.table(table);
        self
    }

    pub fn alias<S: Into<String>>(mut self, alias: S) -> Self {
        self.wrapper = self.wrapper.alias(alias);
        self
    }

    // ========== SELECT ==========

    pub fn select<S: Into<String>>(mut self, columns: Vec<S>) -> Self {
        self.wrapper = self.wrapper.select(columns);
        self
    }

    pub fn select_distinct<S: Into<String>>(mut self, columns: Vec<S>) -> Self {
        self.wrapper = self.wrapper.select_distinct(columns);
        self
    }

    // ========== WHERE ==========

    pub fn ne<S, V>(mut self, column: S, value: V) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
    {
        self.wrapper = self.wrapper.ne(column, value);
        self
    }

    pub fn gt<S, V>(mut self, column: S, value: V) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
    {
        self.wrapper = self.wrapper.gt(column, value);
        self
    }

    pub fn ge<S, V>(mut self, column: S, value: V) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
    {
        self.wrapper = self.wrapper.ge(column, value);
        self
    }

    pub fn lt<S, V>(mut self, column: S, value: V) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
    {
        self.wrapper = self.wrapper.lt(column, value);
        self
    }

    pub fn le<S, V>(mut self, column: S, value: V) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
    {
        self.wrapper = self.wrapper.le(column, value);
        self
    }

    pub fn like<S, V>(mut self, column: S, value: V) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
    {
        self.wrapper = self.wrapper.like(column, value);
        self
    }

    pub fn not_like<S, V>(mut self, column: S, value: V) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
    {
        self.wrapper = self.wrapper.not_like(column, value);
        self
    }

    pub fn is_null<S: Into<String>>(mut self, column: S) -> Self {
        self.wrapper = self.wrapper.is_null(column);
        self
    }

    pub fn is_not_null<S: Into<String>>(mut self, column: S) -> Self {
        self.wrapper = self.wrapper.is_not_null(column);
        self
    }

    pub fn r#in<S, V, I>(mut self, column: S, values: I) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
        I: IntoIterator<Item = V>,
    {
        self.wrapper = self.wrapper.r#in(column, values);
        self
    }

    pub fn not_in<S, V, I>(mut self, column: S, values: I) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
        I: IntoIterator<Item = V>,
    {
        self.wrapper = self.wrapper.not_in(column, values);
        self
    }

    pub fn between<S, V>(mut self, column: S, start: V, end: V) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
    {
        self.wrapper = self.wrapper.between(column, start, end);
        self
    }

    pub fn not_between<S, V>(mut self, column: S, start: V, end: V) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
    {
        self.wrapper = self.wrapper.not_between(column, start, end);
        self
    }

    // ========== Logical operations ==========

    pub fn and<F>(mut self, func: F) -> Self
    where
        F: FnOnce(Wrapper) -> Wrapper,
    {
        self.wrapper = self.wrapper.and(func);
        self
    }

    pub fn or<F>(mut self, func: F) -> Self
    where
        F: FnOnce(Wrapper) -> Wrapper,
    {
        self.wrapper = self.wrapper.or(func);
        self
    }

    pub fn or_direct(mut self) -> Self {
        self.wrapper = self.wrapper.or_direct();
        self
    }

    // ========== JOIN ==========

    pub fn inner_join<S, C>(mut self, table: S, condition: C) -> Self
    where
        S: Into<String>,
        C: Into<String>,
    {
        self.wrapper = self.wrapper.inner_join(table, condition);
        self
    }

    pub fn left_join<S, C>(mut self, table: S, condition: C) -> Self
    where
        S: Into<String>,
        C: Into<String>,
    {
        self.wrapper = self.wrapper.left_join(table, condition);
        self
    }

    pub fn right_join<S, C>(mut self, table: S, condition: C) -> Self
    where
        S: Into<String>,
        C: Into<String>,
    {
        self.wrapper = self.wrapper.right_join(table, condition);
        self
    }

    pub fn full_join<S, C>(mut self, table: S, condition: C) -> Self
    where
        S: Into<String>,
        C: Into<String>,
    {
        self.wrapper = self.wrapper.full_join(table, condition);
        self
    }

    // ========== GROUP BY / HAVING ==========

    pub fn group_by<S: Into<String>>(mut self, columns: Vec<S>) -> Self {
        self.wrapper = self.wrapper.group_by(columns);
        self
    }

    pub fn having<S, V>(mut self, column: S, operator: SqlOperator, value: V) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
    {
        self.wrapper = self.wrapper.having(column, operator, value);
        self
    }

    // ========== ORDER BY ==========

    pub fn order_by_asc<S: Into<String>>(mut self, columns: Vec<S>) -> Self {
        self.wrapper = self.wrapper.order_by_asc(columns);
        self
    }

    pub fn order_by_desc<S: Into<String>>(mut self, columns: Vec<S>) -> Self {
        self.wrapper = self.wrapper.order_by_desc(columns);
        self
    }

    // ========== Conditional tagging method ==========

    /// When the condition is true, subsequent chained calls are executed
    pub fn when(mut self, condition: bool) -> Self {
        self.wrapper = self.wrapper.when(condition);
        self
    }

    /// When the condition is false, subsequent chained calls are executed
    pub fn unless(mut self, condition: bool) -> Self {
        self.wrapper = self.wrapper.unless(condition);
        self
    }

    /// Skip the next condition (whatever it is)
    pub fn skip_next(mut self) -> Self {
        self.wrapper = self.wrapper.skip_next();
        self
    }

    pub fn list(self) -> Result<Vec<T>, AkitaError>
    where
        T: GetTableName + GetFields + FromAkitaValue,
    {
        self.akita.list::<T>(self.wrapper)
    }

    /// Get one the table of records
    pub fn select_one(self) -> Result<Option<T>, AkitaError>
    where
        T: GetTableName + GetFields + FromAkitaValue,
    {
        self.akita.select_one::<T>(self.wrapper)
    }

    /// Get one the table of records by id
    pub fn select_by_id<I>(self, id: I) -> Result<Option<T>, AkitaError>
    where
        T: GetTableName + GetFields + FromAkitaValue,
        I: IntoAkitaValue,
    {
        self.akita.select_by_id::<T, I>(id)
    }

    /// Get table of records with page
    pub fn page(self, page: u64, size: u64) -> Result<IPage<T>, AkitaError>
    where
        T: GetTableName + GetFields + FromAkitaValue,
    {
        self.akita.page::<T>(page, size, self.wrapper)
    }

    /// Get the total count of records
    pub fn count(self) -> Result<u64, AkitaError>
    where
        T: GetTableName + GetFields,
    {
        self.akita.count::<T>(self.wrapper)
    }
}

/// Added a modified builder
pub struct UpdateBuilder<'a, T> {
    akita: &'a Akita,
    wrapper: Wrapper,
    _phantom: std::marker::PhantomData<T>,
}

impl<'a, T> UpdateBuilder<'a, T> {
    pub fn new(akita: &'a Akita) -> Self {
        Self {
            akita,
            wrapper: Wrapper::new(),
            _phantom: std::marker::PhantomData,
        }
    }

    pub fn eq<S: Into<String>, V: Into<AkitaValue>>(mut self, column: S, value: V) -> Self {
        self.wrapper = self.wrapper.eq(column, value);
        self
    }

    pub fn table<S: Into<String>>(mut self, table: S) -> Self {
        self.wrapper = self.wrapper.table(table);
        self
    }

    pub fn alias<S: Into<String>>(mut self, alias: S) -> Self {
        self.wrapper = self.wrapper.alias(alias);
        self
    }

    // ========== SELECT ==========

    pub fn select<S: Into<String>>(mut self, columns: Vec<S>) -> Self {
        self.wrapper = self.wrapper.select(columns);
        self
    }

    pub fn select_distinct<S: Into<String>>(mut self, columns: Vec<S>) -> Self {
        self.wrapper = self.wrapper.select_distinct(columns);
        self
    }

    // ========== WHERE ==========

    pub fn ne<S, V>(mut self, column: S, value: V) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
    {
        self.wrapper = self.wrapper.ne(column, value);
        self
    }

    pub fn gt<S, V>(mut self, column: S, value: V) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
    {
        self.wrapper = self.wrapper.gt(column, value);
        self
    }

    pub fn ge<S, V>(mut self, column: S, value: V) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
    {
        self.wrapper = self.wrapper.ge(column, value);
        self
    }

    pub fn lt<S, V>(mut self, column: S, value: V) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
    {
        self.wrapper = self.wrapper.lt(column, value);
        self
    }

    pub fn le<S, V>(mut self, column: S, value: V) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
    {
        self.wrapper = self.wrapper.le(column, value);
        self
    }

    pub fn like<S, V>(mut self, column: S, value: V) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
    {
        self.wrapper = self.wrapper.like(column, value);
        self
    }

    pub fn not_like<S, V>(mut self, column: S, value: V) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
    {
        self.wrapper = self.wrapper.not_like(column, value);
        self
    }

    pub fn is_null<S: Into<String>>(mut self, column: S) -> Self {
        self.wrapper = self.wrapper.is_null(column);
        self
    }

    pub fn is_not_null<S: Into<String>>(mut self, column: S) -> Self {
        self.wrapper = self.wrapper.is_not_null(column);
        self
    }

    pub fn r#in<S, V, I>(mut self, column: S, values: I) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
        I: IntoIterator<Item = V>,
    {
        self.wrapper = self.wrapper.r#in(column, values);
        self
    }

    pub fn not_in<S, V, I>(mut self, column: S, values: I) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
        I: IntoIterator<Item = V>,
    {
        self.wrapper = self.wrapper.not_in(column, values);
        self
    }

    pub fn between<S, V>(mut self, column: S, start: V, end: V) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
    {
        self.wrapper = self.wrapper.between(column, start, end);
        self
    }

    pub fn not_between<S, V>(mut self, column: S, start: V, end: V) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
    {
        self.wrapper = self.wrapper.not_between(column, start, end);
        self
    }

    // ========== Logical operations ==========

    pub fn and<F>(mut self, func: F) -> Self
    where
        F: FnOnce(Wrapper) -> Wrapper,
    {
        self.wrapper = self.wrapper.and(func);
        self
    }

    pub fn or<F>(mut self, func: F) -> Self
    where
        F: FnOnce(Wrapper) -> Wrapper,
    {
        self.wrapper = self.wrapper.or(func);
        self
    }

    pub fn or_direct(mut self) -> Self {
        self.wrapper = self.wrapper.or_direct();
        self
    }

    // ========== JOIN ==========

    pub fn inner_join<S, C>(mut self, table: S, condition: C) -> Self
    where
        S: Into<String>,
        C: Into<String>,
    {
        self.wrapper = self.wrapper.inner_join(table, condition);
        self
    }

    pub fn left_join<S, C>(mut self, table: S, condition: C) -> Self
    where
        S: Into<String>,
        C: Into<String>,
    {
        self.wrapper = self.wrapper.left_join(table, condition);
        self
    }

    pub fn right_join<S, C>(mut self, table: S, condition: C) -> Self
    where
        S: Into<String>,
        C: Into<String>,
    {
        self.wrapper = self.wrapper.right_join(table, condition);
        self
    }

    pub fn full_join<S, C>(mut self, table: S, condition: C) -> Self
    where
        S: Into<String>,
        C: Into<String>,
    {
        self.wrapper = self.wrapper.full_join(table, condition);
        self
    }

    // ========== ORDER BY ==========

    pub fn order_by_asc<S: Into<String>>(mut self, columns: Vec<S>) -> Self {
        self.wrapper = self.wrapper.order_by_asc(columns);
        self
    }

    pub fn order_by_desc<S: Into<String>>(mut self, columns: Vec<S>) -> Self {
        self.wrapper = self.wrapper.order_by_desc(columns);
        self
    }

    // ========== SET (UPDATE) ==========

    pub fn set<S, V>(mut self, column: S, value: V) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
    {
        self.wrapper = self.wrapper.set(column, value);
        self
    }

    pub fn set_multiple<S, V, I>(mut self, operations: I) -> Self
    where
        S: Into<String>,
        V: Into<AkitaValue>,
        I: IntoIterator<Item = (S, V)>,
    {
        self.wrapper = self.wrapper.set_multiple(operations);
        self
    }

    // ========== Conditional tagging method ==========

    /// When the condition is true, subsequent chained calls are executed
    pub fn when(mut self, condition: bool) -> Self {
        self.wrapper = self.wrapper.when(condition);
        self
    }

    /// When the condition is false, subsequent chained calls are executed
    pub fn unless(mut self, condition: bool) -> Self {
        self.wrapper = self.wrapper.unless(condition);
        self
    }

    /// Skip the next condition (whatever it is)
    pub fn skip_next(mut self) -> Self {
        self.wrapper = self.wrapper.skip_next();
        self
    }

    /// Remove the records by wrapper.
    pub fn remove(self) -> Result<u64, AkitaError>
    where
        T: GetTableName + GetFields,
    {
        self.akita.remove::<T>(self.wrapper)
    }

    pub fn remove_by_ids<I>(self, ids: Vec<I>) -> Result<u64, AkitaError>
    where
        I: IntoAkitaValue,
        T: GetTableName + GetFields,
    {
        self.akita.remove_by_ids::<T, I>(ids)
    }

    /// Remove the records by id.
    pub fn remove_by_id<I>(self, id: I) -> Result<u64, AkitaError>
    where
        I: IntoAkitaValue,
        T: GetTableName + GetFields,
    {
        self.akita.remove_by_id::<T, I>(id)
    }

    /// Update the records by wrapper.
    pub fn update(self, entity: &T) -> Result<u64, AkitaError>
    where
        T: GetTableName + GetFields + IntoAkitaValue,
    {
        self.akita.update(entity, self.wrapper)
    }
}