elasticube-core 1.1.1

High-performance embeddable OLAP cube library built on Apache Arrow and DataFusion, with support for dynamic aggregations, calculated fields, and incremental updates
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
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
//! Data source connectors for ElastiCube

use crate::error::{Error, Result};
use arrow::datatypes::Schema as ArrowSchema;
use arrow::record_batch::{RecordBatch, RecordBatchReader};
use std::fs::File;
use std::io::BufReader;
use std::sync::Arc;

/// Trait for data sources that can load data into a cube
///
/// Data sources must be Send + Sync to allow use in multi-threaded contexts,
/// particularly for Python bindings via PyO3.
pub trait DataSource: std::fmt::Debug + Send + Sync {
    /// Load data from the source
    ///
    /// Returns a tuple of (Arrow schema, vector of RecordBatches)
    fn load(&self) -> Result<(Arc<ArrowSchema>, Vec<RecordBatch>)>;
}

/// CSV data source configuration
#[derive(Debug, Clone)]
pub struct CsvSource {
    /// Path to the CSV file
    path: String,

    /// Whether the CSV has a header row
    has_header: bool,

    /// Batch size for reading (number of rows per batch)
    batch_size: usize,

    /// Optional schema (if None, will be inferred)
    schema: Option<Arc<ArrowSchema>>,

    /// Delimiter character (default: ',')
    delimiter: u8,
}

impl CsvSource {
    /// Create a new CSV source
    pub fn new(path: impl Into<String>) -> Self {
        Self {
            path: path.into(),
            has_header: true,
            batch_size: 8192,
            schema: None,
            delimiter: b',',
        }
    }

    /// Set whether the CSV has a header row
    pub fn with_header(mut self, has_header: bool) -> Self {
        self.has_header = has_header;
        self
    }

    /// Set the batch size for reading
    pub fn with_batch_size(mut self, batch_size: usize) -> Self {
        self.batch_size = batch_size;
        self
    }

    /// Set the expected schema
    pub fn with_schema(mut self, schema: Arc<ArrowSchema>) -> Self {
        self.schema = Some(schema);
        self
    }

    /// Set the delimiter character
    pub fn with_delimiter(mut self, delimiter: u8) -> Self {
        self.delimiter = delimiter;
        self
    }
}

impl DataSource for CsvSource {
    fn load(&self) -> Result<(Arc<ArrowSchema>, Vec<RecordBatch>)> {
        use arrow_csv::ReaderBuilder;

        // Open the file
        let file = File::open(&self.path).map_err(|e| {
            Error::io(format!("Failed to open CSV file '{}': {}", self.path, e))
        })?;

        // Create format with delimiter
        let format = arrow_csv::reader::Format::default()
            .with_header(self.has_header)
            .with_delimiter(self.delimiter);

        // Build the CSV reader with or without schema
        let reader = if let Some(schema) = &self.schema {
            ReaderBuilder::new(schema.clone())
                .with_format(format)
                .with_batch_size(self.batch_size)
                .build(file)
                .map_err(|e| {
                    Error::arrow(format!("Failed to create CSV reader: {}", e))
                })?
        } else {
            // For schema inference, create a buffered reader first
            let buf_reader = BufReader::new(file);
            let (inferred_schema, _) = format.infer_schema(buf_reader, Some(100))
                .map_err(|e| {
                    Error::arrow(format!("Failed to infer CSV schema: {}", e))
                })?;

            // Re-open the file for reading
            let file = File::open(&self.path).map_err(|e| {
                Error::io(format!("Failed to re-open CSV file '{}': {}", self.path, e))
            })?;

            ReaderBuilder::new(Arc::new(inferred_schema))
                .with_format(format)
                .with_batch_size(self.batch_size)
                .build(file)
                .map_err(|e| {
                    Error::arrow(format!("Failed to create CSV reader: {}", e))
                })?
        };

        // Get the schema from the reader
        let schema = reader.schema();

        // Read all batches
        let mut batches = Vec::new();
        for batch_result in reader {
            let batch = batch_result.map_err(|e| {
                Error::arrow(format!("Failed to read CSV batch: {}", e))
            })?;
            batches.push(batch);
        }

        if batches.is_empty() {
            return Err(Error::data(format!("CSV file '{}' is empty", self.path)));
        }

        Ok((schema, batches))
    }
}

/// Parquet data source configuration
#[derive(Debug, Clone)]
pub struct ParquetSource {
    /// Path to the Parquet file
    path: String,

    /// Batch size for reading
    batch_size: usize,
}

impl ParquetSource {
    /// Create a new Parquet source
    pub fn new(path: impl Into<String>) -> Self {
        Self {
            path: path.into(),
            batch_size: 8192,
        }
    }

    /// Set the batch size for reading
    pub fn with_batch_size(mut self, batch_size: usize) -> Self {
        self.batch_size = batch_size;
        self
    }
}

impl DataSource for ParquetSource {
    fn load(&self) -> Result<(Arc<ArrowSchema>, Vec<RecordBatch>)> {
        use parquet::arrow::arrow_reader::ParquetRecordBatchReaderBuilder;

        // Open the file
        let file = File::open(&self.path).map_err(|e| {
            Error::io(format!("Failed to open Parquet file '{}': {}", self.path, e))
        })?;

        // Create the Parquet reader
        let builder = ParquetRecordBatchReaderBuilder::try_new(file).map_err(|e| {
            Error::arrow(format!("Failed to create Parquet reader: {}", e))
        })?;

        let schema = builder.schema().clone();

        let reader = builder
            .with_batch_size(self.batch_size)
            .build()
            .map_err(|e| {
                Error::arrow(format!("Failed to build Parquet reader: {}", e))
            })?;

        // Read all batches
        let mut batches = Vec::new();
        for batch_result in reader {
            let batch = batch_result.map_err(|e| {
                Error::arrow(format!("Failed to read Parquet batch: {}", e))
            })?;
            batches.push(batch);
        }

        if batches.is_empty() {
            return Err(Error::data(format!("Parquet file '{}' is empty", self.path)));
        }

        Ok((schema, batches))
    }
}

/// JSON data source configuration
#[derive(Debug, Clone)]
pub struct JsonSource {
    /// Path to the JSON file
    path: String,

    /// Batch size for reading
    batch_size: usize,

    /// Optional schema (if None, will be inferred)
    schema: Option<Arc<ArrowSchema>>,
}

impl JsonSource {
    /// Create a new JSON source
    pub fn new(path: impl Into<String>) -> Self {
        Self {
            path: path.into(),
            batch_size: 8192,
            schema: None,
        }
    }

    /// Set the batch size for reading
    pub fn with_batch_size(mut self, batch_size: usize) -> Self {
        self.batch_size = batch_size;
        self
    }

    /// Set the expected schema
    pub fn with_schema(mut self, schema: Arc<ArrowSchema>) -> Self {
        self.schema = Some(schema);
        self
    }
}

impl DataSource for JsonSource {
    fn load(&self) -> Result<(Arc<ArrowSchema>, Vec<RecordBatch>)> {
        use arrow_json::ReaderBuilder;

        // Open the file with buffered reader
        let file = File::open(&self.path).map_err(|e| {
            Error::io(format!("Failed to open JSON file '{}': {}", self.path, e))
        })?;
        let buf_reader = BufReader::new(file);

        // Build the JSON reader
        let reader = if let Some(schema) = &self.schema {
            ReaderBuilder::new(schema.clone())
                .with_batch_size(self.batch_size)
                .build(buf_reader)
                .map_err(|e| {
                    Error::arrow(format!("Failed to create JSON reader: {}", e))
                })?
        } else {
            // For schema inference, read and infer first
            let file_for_infer = File::open(&self.path).map_err(|e| {
                Error::io(format!("Failed to open JSON file for schema inference '{}': {}", self.path, e))
            })?;
            let buf_reader_infer = BufReader::new(file_for_infer);

            let inferred_result = arrow_json::reader::infer_json_schema(buf_reader_infer, Some(100))
                .map_err(|e| {
                    Error::arrow(format!("Failed to infer JSON schema: {}", e))
                })?;

            // Extract schema from tuple (schema, inferred_rows)
            let inferred_schema = inferred_result.0;

            // Re-open the file for reading data
            let file = File::open(&self.path).map_err(|e| {
                Error::io(format!("Failed to re-open JSON file '{}': {}", self.path, e))
            })?;
            let buf_reader = BufReader::new(file);

            ReaderBuilder::new(Arc::new(inferred_schema))
                .with_batch_size(self.batch_size)
                .build(buf_reader)
                .map_err(|e| {
                    Error::arrow(format!("Failed to create JSON reader: {}", e))
                })?
        };

        let schema = reader.schema();

        // Read all batches
        let mut batches = Vec::new();
        for batch_result in reader {
            let batch = batch_result.map_err(|e| {
                Error::arrow(format!("Failed to read JSON batch: {}", e))
            })?;
            batches.push(batch);
        }

        if batches.is_empty() {
            return Err(Error::data(format!("JSON file '{}' is empty", self.path)));
        }

        Ok((schema, batches))
    }
}

/// In-memory data source from Arrow RecordBatches
#[derive(Debug)]
pub struct RecordBatchSource {
    schema: Arc<ArrowSchema>,
    batches: Vec<RecordBatch>,
}

impl RecordBatchSource {
    /// Create a new in-memory source from RecordBatches
    pub fn new(schema: Arc<ArrowSchema>, batches: Vec<RecordBatch>) -> Result<Self> {
        if batches.is_empty() {
            return Err(Error::data("RecordBatchSource requires at least one batch"));
        }

        // Validate that all batches have the same schema
        for batch in &batches {
            if batch.schema().as_ref() != schema.as_ref() {
                return Err(Error::schema(
                    "All RecordBatches must have the same schema as the provided schema"
                ));
            }
        }

        Ok(Self { schema, batches })
    }
}

impl DataSource for RecordBatchSource {
    fn load(&self) -> Result<(Arc<ArrowSchema>, Vec<RecordBatch>)> {
        Ok((self.schema.clone(), self.batches.clone()))
    }
}

// ==============================================================================
// Database Sources (via ODBC)
// ==============================================================================

#[cfg(feature = "database")]
pub mod database {
    use super::*;
    use arrow_odbc::OdbcReaderBuilder;
    use arrow_odbc::odbc_api::{Environment, ConnectionOptions};

    /// Configuration for connecting to databases via ODBC
    ///
    /// Supports PostgreSQL, MySQL, SQL Server, SQLite, and any ODBC-compatible database.
    ///
    /// # Example Connection Strings
    ///
    /// **PostgreSQL**:
    /// ```text
    /// Driver={PostgreSQL Unicode};Server=localhost;Port=5432;Database=mydb;Uid=user;Pwd=pass;
    /// ```
    ///
    /// **MySQL**:
    /// ```text
    /// Driver={MySQL ODBC 8.0 Unicode Driver};Server=localhost;Port=3306;Database=mydb;Uid=user;Pwd=pass;
    /// ```
    ///
    /// **SQL Server**:
    /// ```text
    /// Driver={ODBC Driver 17 for SQL Server};Server=localhost;Database=mydb;Uid=user;Pwd=pass;
    /// ```
    #[derive(Debug, Clone)]
    pub struct OdbcSource {
        /// ODBC connection string
        connection_string: String,

        /// SQL query to execute
        query: String,

        /// Maximum bytes per batch (default: 8MB)
        max_bytes_per_batch: usize,

        /// Maximum number of rows to fetch (None = unlimited)
        max_rows: Option<usize>,
    }

    impl OdbcSource {
        /// Create a new ODBC data source
        ///
        /// # Arguments
        /// * `connection_string` - ODBC connection string
        /// * `query` - SQL query to execute
        ///
        /// # Example
        /// ```rust,ignore
        /// let source = OdbcSource::new(
        ///     "Driver={PostgreSQL Unicode};Server=localhost;Database=sales;Uid=user;Pwd=pass",
        ///     "SELECT * FROM transactions WHERE date >= '2025-01-01'"
        /// );
        /// ```
        pub fn new(connection_string: impl Into<String>, query: impl Into<String>) -> Self {
            Self {
                connection_string: connection_string.into(),
                query: query.into(),
                max_bytes_per_batch: 8 * 1024 * 1024, // 8MB default
                max_rows: None,
            }
        }

        /// Set the maximum bytes per batch
        pub fn with_max_bytes_per_batch(mut self, max_bytes: usize) -> Self {
            self.max_bytes_per_batch = max_bytes;
            self
        }

        /// Set maximum number of rows to fetch
        pub fn with_max_rows(mut self, max_rows: usize) -> Self {
            self.max_rows = Some(max_rows);
            self
        }
    }

    impl DataSource for OdbcSource {
        fn load(&self) -> Result<(Arc<ArrowSchema>, Vec<RecordBatch>)> {
            // Create ODBC environment
            let env = Environment::new().map_err(|e| {
                Error::data(format!("Failed to create ODBC environment: {}", e))
            })?;

            // Connect to database
            let conn = env.connect_with_connection_string(
                &self.connection_string,
                ConnectionOptions::default()
            ).map_err(|e| {
                Error::data(format!("Failed to connect to database: {}", e))
            })?;

            // Execute query to get cursor
            // Third parameter is max_rows (None = unlimited)
            let cursor = match conn.execute(&self.query, (), self.max_rows).map_err(|e| {
                Error::data(format!("Failed to execute SQL query: {}", e))
            })? {
                Some(cursor) => cursor,
                None => {
                    return Err(Error::data("SQL query did not return a result set (cursor). Use SELECT statements for data loading."));
                }
            };

            // Build the ODBC reader
            let reader = OdbcReaderBuilder::new()
                .with_max_bytes_per_batch(self.max_bytes_per_batch)
                .build(cursor)
                .map_err(|e| {
                    Error::data(format!("Failed to create ODBC reader: {}", e))
                })?;

            let schema = reader.schema();

            // Read all batches
            // Note: max_rows is already handled by the execute() method above
            let mut batches = Vec::new();

            for batch_result in reader {
                let batch = batch_result.map_err(|e| {
                    Error::arrow(format!("Failed to read ODBC batch: {}", e))
                })?;
                batches.push(batch);
            }

            if batches.is_empty() {
                return Err(Error::data("ODBC query returned no results"));
            }

            Ok((schema, batches))
        }
    }

    /// Convenience wrapper for PostgreSQL connections
    ///
    /// # Example
    /// ```rust,ignore
    /// let source = PostgresSource::new("localhost", "mydb", "user", "pass")
    ///     .with_port(5432)
    ///     .with_query("SELECT * FROM sales");
    /// ```
    #[derive(Debug, Clone)]
    pub struct PostgresSource {
        host: String,
        database: String,
        username: String,
        password: String,
        port: u16,
        query: String,
        max_bytes_per_batch: usize,
    }

    impl PostgresSource {
        /// Create a new PostgreSQL data source
        pub fn new(
            host: impl Into<String>,
            database: impl Into<String>,
            username: impl Into<String>,
            password: impl Into<String>,
        ) -> Self {
            Self {
                host: host.into(),
                database: database.into(),
                username: username.into(),
                password: password.into(),
                port: 5432,
                query: String::new(),
                max_bytes_per_batch: 8 * 1024 * 1024, // 8MB default
            }
        }

        /// Set the port (default: 5432)
        pub fn with_port(mut self, port: u16) -> Self {
            self.port = port;
            self
        }

        /// Set the SQL query to execute
        pub fn with_query(mut self, query: impl Into<String>) -> Self {
            self.query = query.into();
            self
        }

        /// Set the maximum bytes per batch
        pub fn with_max_bytes_per_batch(mut self, max_bytes: usize) -> Self {
            self.max_bytes_per_batch = max_bytes;
            self
        }

        /// Build the ODBC connection string
        pub(crate) fn connection_string(&self) -> String {
            format!(
                "Driver={{PostgreSQL Unicode}};Server={};Port={};Database={};Uid={};Pwd={};",
                self.host, self.port, self.database, self.username, self.password
            )
        }
    }

    impl DataSource for PostgresSource {
        fn load(&self) -> Result<(Arc<ArrowSchema>, Vec<RecordBatch>)> {
            if self.query.is_empty() {
                return Err(Error::data("PostgreSQL query cannot be empty. Use with_query() to set it."));
            }

            let odbc_source = OdbcSource::new(self.connection_string(), &self.query)
                .with_max_bytes_per_batch(self.max_bytes_per_batch);

            odbc_source.load()
        }
    }

    /// Convenience wrapper for MySQL connections
    ///
    /// # Example
    /// ```rust,ignore
    /// let source = MySqlSource::new("localhost", "mydb", "user", "pass")
    ///     .with_port(3306)
    ///     .with_query("SELECT * FROM orders");
    /// ```
    #[derive(Debug, Clone)]
    pub struct MySqlSource {
        host: String,
        database: String,
        username: String,
        password: String,
        port: u16,
        query: String,
        max_bytes_per_batch: usize,
    }

    impl MySqlSource {
        /// Create a new MySQL data source
        pub fn new(
            host: impl Into<String>,
            database: impl Into<String>,
            username: impl Into<String>,
            password: impl Into<String>,
        ) -> Self {
            Self {
                host: host.into(),
                database: database.into(),
                username: username.into(),
                password: password.into(),
                port: 3306,
                query: String::new(),
                max_bytes_per_batch: 8 * 1024 * 1024, // 8MB default
            }
        }

        /// Set the port (default: 3306)
        pub fn with_port(mut self, port: u16) -> Self {
            self.port = port;
            self
        }

        /// Set the SQL query to execute
        pub fn with_query(mut self, query: impl Into<String>) -> Self {
            self.query = query.into();
            self
        }

        /// Set the maximum bytes per batch
        pub fn with_max_bytes_per_batch(mut self, max_bytes: usize) -> Self {
            self.max_bytes_per_batch = max_bytes;
            self
        }

        /// Build the ODBC connection string
        pub(crate) fn connection_string(&self) -> String {
            format!(
                "Driver={{MySQL ODBC 8.0 Unicode Driver}};Server={};Port={};Database={};Uid={};Pwd={};",
                self.host, self.port, self.database, self.username, self.password
            )
        }
    }

    impl DataSource for MySqlSource {
        fn load(&self) -> Result<(Arc<ArrowSchema>, Vec<RecordBatch>)> {
            if self.query.is_empty() {
                return Err(Error::data("MySQL query cannot be empty. Use with_query() to set it."));
            }

            let odbc_source = OdbcSource::new(self.connection_string(), &self.query)
                .with_max_bytes_per_batch(self.max_bytes_per_batch);

            odbc_source.load()
        }
    }
}

// ==============================================================================
// REST API Sources
// ==============================================================================

#[cfg(feature = "rest-api")]
pub mod rest {
    use super::*;
    use reqwest::blocking::Client;
    use std::collections::HashMap;
    use std::io::Cursor;

    /// HTTP method for REST API requests
    #[derive(Debug, Clone, Copy, PartialEq, Eq)]
    pub enum HttpMethod {
        Get,
        Post,
    }

    /// REST API data source that fetches JSON data
    ///
    /// Supports GET and POST requests with optional headers and query parameters.
    /// The response must be JSON (either array of objects or single object).
    ///
    /// # Example
    /// ```rust,ignore
    /// let source = RestApiSource::new("https://api.example.com/sales")
    ///     .with_method(HttpMethod::Get)
    ///     .with_header("Authorization", "Bearer token123")
    ///     .with_query_param("date_from", "2024-01-01");
    /// ```
    #[derive(Debug, Clone)]
    pub struct RestApiSource {
        /// Base URL for the API endpoint
        url: String,

        /// HTTP method (GET or POST)
        method: HttpMethod,

        /// HTTP headers
        headers: HashMap<String, String>,

        /// Query parameters (for GET requests)
        query_params: HashMap<String, String>,

        /// Request body (for POST requests)
        body: Option<String>,

        /// Batch size for reading
        batch_size: usize,

        /// Optional schema (if None, will be inferred from JSON)
        schema: Option<Arc<ArrowSchema>>,

        /// Timeout in seconds (default: 30)
        timeout_secs: u64,
    }

    impl RestApiSource {
        /// Create a new REST API data source
        pub fn new(url: impl Into<String>) -> Self {
            Self {
                url: url.into(),
                method: HttpMethod::Get,
                headers: HashMap::new(),
                query_params: HashMap::new(),
                body: None,
                batch_size: 8192,
                schema: None,
                timeout_secs: 30,
            }
        }

        /// Set the HTTP method
        pub fn with_method(mut self, method: HttpMethod) -> Self {
            self.method = method;
            self
        }

        /// Add an HTTP header
        pub fn with_header(mut self, key: impl Into<String>, value: impl Into<String>) -> Self {
            self.headers.insert(key.into(), value.into());
            self
        }

        /// Add a query parameter
        pub fn with_query_param(mut self, key: impl Into<String>, value: impl Into<String>) -> Self {
            self.query_params.insert(key.into(), value.into());
            self
        }

        /// Set the request body (for POST requests)
        pub fn with_body(mut self, body: impl Into<String>) -> Self {
            self.body = Some(body.into());
            self
        }

        /// Set the batch size
        pub fn with_batch_size(mut self, batch_size: usize) -> Self {
            self.batch_size = batch_size;
            self
        }

        /// Set the expected schema
        pub fn with_schema(mut self, schema: Arc<ArrowSchema>) -> Self {
            self.schema = Some(schema);
            self
        }

        /// Set the request timeout in seconds
        pub fn with_timeout_secs(mut self, timeout_secs: u64) -> Self {
            self.timeout_secs = timeout_secs;
            self
        }
    }

    impl DataSource for RestApiSource {
        fn load(&self) -> Result<(Arc<ArrowSchema>, Vec<RecordBatch>)> {
            use arrow_json::ReaderBuilder;

            // Build the HTTP client
            let client = Client::builder()
                .timeout(std::time::Duration::from_secs(self.timeout_secs))
                .build()
                .map_err(|e| Error::io(format!("Failed to create HTTP client: {}", e)))?;

            // Build the URL with query parameters
            let mut url = url::Url::parse(&self.url)
                .map_err(|e| Error::data(format!("Invalid URL '{}': {}", self.url, e)))?;

            for (key, value) in &self.query_params {
                url.query_pairs_mut().append_pair(key, value);
            }

            // Build the request
            let mut request = match self.method {
                HttpMethod::Get => client.get(url.as_str()),
                HttpMethod::Post => {
                    let mut req = client.post(url.as_str());
                    if let Some(body) = &self.body {
                        req = req.body(body.clone());
                    }
                    req
                }
            };

            // Add headers
            for (key, value) in &self.headers {
                request = request.header(key, value);
            }

            // Execute the request
            let response = request
                .send()
                .map_err(|e| Error::io(format!("HTTP request failed: {}", e)))?;

            // Check status
            if !response.status().is_success() {
                return Err(Error::data(format!(
                    "HTTP request failed with status {}: {}",
                    response.status(),
                    response.text().unwrap_or_default()
                )));
            }

            // Get the response body as bytes
            let response_bytes = response
                .bytes()
                .map_err(|e| Error::io(format!("Failed to read HTTP response: {}", e)))?;

            // Parse JSON and convert to Arrow RecordBatch
            let cursor = Cursor::new(response_bytes.as_ref());

            // Build the JSON reader
            let reader = if let Some(schema) = &self.schema {
                ReaderBuilder::new(schema.clone())
                    .with_batch_size(self.batch_size)
                    .build(cursor)
                    .map_err(|e| Error::arrow(format!("Failed to create JSON reader: {}", e)))?
            } else {
                // Infer schema from JSON
                let cursor_for_infer = Cursor::new(response_bytes.as_ref());
                let inferred_result = arrow_json::reader::infer_json_schema(cursor_for_infer, None)
                    .map_err(|e| Error::arrow(format!("Failed to infer JSON schema from API response: {}", e)))?;

                let inferred_schema = inferred_result.0;
                let cursor = Cursor::new(response_bytes.as_ref());

                ReaderBuilder::new(Arc::new(inferred_schema))
                    .with_batch_size(self.batch_size)
                    .build(cursor)
                    .map_err(|e| Error::arrow(format!("Failed to create JSON reader: {}", e)))?
            };

            let schema = reader.schema();

            // Read all batches
            let mut batches = Vec::new();
            for batch_result in reader {
                let batch = batch_result.map_err(|e| {
                    Error::arrow(format!("Failed to read JSON batch from API response: {}", e))
                })?;
                batches.push(batch);
            }

            if batches.is_empty() {
                return Err(Error::data(format!("API response from '{}' is empty", self.url)));
            }

            Ok((schema, batches))
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_csv_source_builder() {
        let source = CsvSource::new("test.csv")
            .with_header(true)
            .with_batch_size(1024)
            .with_delimiter(b';');

        assert_eq!(source.path, "test.csv");
        assert_eq!(source.has_header, true);
        assert_eq!(source.batch_size, 1024);
        assert_eq!(source.delimiter, b';');
    }

    #[test]
    fn test_parquet_source_builder() {
        let source = ParquetSource::new("test.parquet")
            .with_batch_size(2048);

        assert_eq!(source.path, "test.parquet");
        assert_eq!(source.batch_size, 2048);
    }

    #[test]
    fn test_json_source_builder() {
        let source = JsonSource::new("test.json")
            .with_batch_size(512);

        assert_eq!(source.path, "test.json");
        assert_eq!(source.batch_size, 512);
    }

    #[cfg(feature = "database")]
    #[test]
    fn test_postgres_source_builder() {
        let source = database::PostgresSource::new("localhost", "testdb", "user", "pass")
            .with_port(5432)
            .with_query("SELECT * FROM test");

        // Test connection string generation
        assert_eq!(source.connection_string(),
            "Driver={PostgreSQL Unicode};Server=localhost;Port=5432;Database=testdb;Uid=user;Pwd=pass;");
    }

    #[cfg(feature = "database")]
    #[test]
    fn test_mysql_source_builder() {
        let source = database::MySqlSource::new("localhost", "testdb", "user", "pass")
            .with_port(3306)
            .with_query("SELECT * FROM test");

        // Test connection string generation
        assert_eq!(source.connection_string(),
            "Driver={MySQL ODBC 8.0 Unicode Driver};Server=localhost;Port=3306;Database=testdb;Uid=user;Pwd=pass;");
    }

    #[cfg(feature = "rest-api")]
    #[test]
    fn test_rest_api_source_builder() {
        // Just test that the builder pattern works without errors
        let _source = rest::RestApiSource::new("https://api.example.com/data")
            .with_method(rest::HttpMethod::Get)
            .with_header("Authorization", "Bearer token")
            .with_query_param("limit", "100")
            .with_batch_size(512)
            .with_timeout_secs(60);

        // Builder pattern works - source created successfully
        assert!(true);
    }

    #[cfg(feature = "object-storage")]
    #[test]
    fn test_s3_source_builder() {
        use object_storage::{S3Source, StorageFileFormat};

        let source = S3Source::new("my-bucket", "data/sales.parquet")
            .with_region("us-west-2")
            .with_format(StorageFileFormat::Parquet)
            .with_batch_size(4096);

        // Builder pattern works - source created successfully
        assert!(true);
    }

    #[cfg(feature = "object-storage")]
    #[test]
    fn test_gcs_source_builder() {
        use object_storage::{GcsSource, StorageFileFormat};

        let source = GcsSource::new("my-bucket", "data/analytics.json")
            .with_format(StorageFileFormat::Json)
            .with_batch_size(8192);

        // Builder pattern works - source created successfully
        assert!(true);
    }

    #[cfg(feature = "object-storage")]
    #[test]
    fn test_azure_source_builder() {
        use object_storage::{AzureSource, StorageFileFormat};

        let source = AzureSource::new("myaccount", "mycontainer", "data/logs.csv")
            .with_format(StorageFileFormat::Csv)
            .with_batch_size(2048);

        // Builder pattern works - source created successfully
        assert!(true);
    }
}

// ==============================================================================
// Object Storage Sources (S3, GCS, Azure)
// ==============================================================================

#[cfg(feature = "object-storage")]
pub mod object_storage {
    use super::*;
    use bytes::Bytes;
    use object_store::{ObjectStore, path::Path as ObjectPath};
    use std::sync::Arc as StdArc;

    /// File format for object storage files
    #[derive(Debug, Clone, Copy, PartialEq, Eq)]
    pub enum StorageFileFormat {
        /// Parquet format
        Parquet,
        /// CSV format
        Csv,
        /// JSON format (newline-delimited JSON)
        Json,
    }

    /// Generic object storage source that works with any ObjectStore backend
    ///
    /// This can be used with S3, GCS, Azure, or local file system via object_store.
    ///
    /// # Example
    /// ```rust,ignore
    /// use object_store::aws::AmazonS3Builder;
    ///
    /// let store = AmazonS3Builder::new()
    ///     .with_bucket_name("my-bucket")
    ///     .with_region("us-west-2")
    ///     .build()?;
    ///
    /// let source = ObjectStorageSource::new(store, "data/sales.parquet")
    ///     .with_format(StorageFileFormat::Parquet);
    /// ```
    #[derive(Debug)]
    pub struct ObjectStorageSource {
        /// Object store instance
        store: StdArc<dyn ObjectStore>,

        /// Path to the file in the object store
        path: String,

        /// File format
        format: StorageFileFormat,

        /// Batch size for reading
        batch_size: usize,

        /// Optional schema for CSV/JSON
        schema: Option<Arc<ArrowSchema>>,

        /// CSV-specific: has header row
        csv_has_header: bool,

        /// CSV-specific: delimiter
        csv_delimiter: u8,
    }

    impl ObjectStorageSource {
        /// Create a new object storage source
        ///
        /// # Arguments
        /// * `store` - ObjectStore instance (S3, GCS, Azure, etc.)
        /// * `path` - Path to the file in the object store
        pub fn new(store: StdArc<dyn ObjectStore>, path: impl Into<String>) -> Self {
            Self {
                store,
                path: path.into(),
                format: StorageFileFormat::Parquet,
                batch_size: 8192,
                schema: None,
                csv_has_header: true,
                csv_delimiter: b',',
            }
        }

        /// Set the file format
        pub fn with_format(mut self, format: StorageFileFormat) -> Self {
            self.format = format;
            self
        }

        /// Set the batch size
        pub fn with_batch_size(mut self, batch_size: usize) -> Self {
            self.batch_size = batch_size;
            self
        }

        /// Set the schema (for CSV/JSON)
        pub fn with_schema(mut self, schema: Arc<ArrowSchema>) -> Self {
            self.schema = Some(schema);
            self
        }

        /// Set CSV header flag
        pub fn with_csv_header(mut self, has_header: bool) -> Self {
            self.csv_has_header = has_header;
            self
        }

        /// Set CSV delimiter
        pub fn with_csv_delimiter(mut self, delimiter: u8) -> Self {
            self.csv_delimiter = delimiter;
            self
        }

        /// Download the file from object storage
        async fn download_file(&self) -> Result<Bytes> {
            let path = ObjectPath::from(self.path.as_str());

            // Use get() to fetch the entire object
            let result = self.store.get(&path).await.map_err(|e| {
                Error::io(format!("Failed to download file '{}' from object storage: {}", self.path, e))
            })?;

            // Read all bytes
            let bytes = result.bytes().await.map_err(|e| {
                Error::io(format!("Failed to read bytes from object storage: {}", e))
            })?;

            Ok(bytes)
        }
    }

    impl DataSource for ObjectStorageSource {
        fn load(&self) -> Result<(Arc<ArrowSchema>, Vec<RecordBatch>)> {
            // Use tokio runtime to run async code
            let runtime = tokio::runtime::Runtime::new().map_err(|e| {
                Error::io(format!("Failed to create tokio runtime: {}", e))
            })?;

            runtime.block_on(async {
                // Download the file
                let bytes = self.download_file().await?;

                // Parse based on format
                match self.format {
                    StorageFileFormat::Parquet => {
                        use parquet::arrow::arrow_reader::ParquetRecordBatchReaderBuilder;

                        // ParquetRecordBatchReaderBuilder requires a type that implements ChunkReader
                        // Bytes implements ChunkReader directly, so we don't need Cursor
                        let builder = ParquetRecordBatchReaderBuilder::try_new(bytes.clone()).map_err(|e| {
                            Error::arrow(format!("Failed to create Parquet reader: {}", e))
                        })?;

                        let schema = builder.schema().clone();
                        let reader = builder.with_batch_size(self.batch_size).build().map_err(|e| {
                            Error::arrow(format!("Failed to build Parquet reader: {}", e))
                        })?;

                        let mut batches = Vec::new();
                        for batch_result in reader {
                            let batch = batch_result.map_err(|e| {
                                Error::arrow(format!("Failed to read Parquet batch: {}", e))
                            })?;
                            batches.push(batch);
                        }

                        if batches.is_empty() {
                            return Err(Error::data(format!("Parquet file '{}' is empty", self.path)));
                        }

                        Ok((schema, batches))
                    }

                    StorageFileFormat::Csv => {
                        use arrow_csv::ReaderBuilder;
                        use std::io::Cursor;

                        let format = arrow_csv::reader::Format::default()
                            .with_header(self.csv_has_header)
                            .with_delimiter(self.csv_delimiter);

                        let reader = if let Some(schema) = &self.schema {
                            let cursor = Cursor::new(bytes);
                            ReaderBuilder::new(schema.clone())
                                .with_format(format)
                                .with_batch_size(self.batch_size)
                                .build(cursor)
                                .map_err(|e| Error::arrow(format!("Failed to create CSV reader: {}", e)))?
                        } else {
                            // Infer schema
                            let cursor_for_infer = Cursor::new(bytes.clone());
                            let buf_reader = BufReader::new(cursor_for_infer);
                            let (inferred_schema, _) = format.infer_schema(buf_reader, Some(100))
                                .map_err(|e| Error::arrow(format!("Failed to infer CSV schema: {}", e)))?;

                            let cursor = Cursor::new(bytes);
                            ReaderBuilder::new(Arc::new(inferred_schema))
                                .with_format(format)
                                .with_batch_size(self.batch_size)
                                .build(cursor)
                                .map_err(|e| Error::arrow(format!("Failed to create CSV reader: {}", e)))?
                        };

                        let schema = reader.schema();
                        let mut batches = Vec::new();
                        for batch_result in reader {
                            let batch = batch_result.map_err(|e| {
                                Error::arrow(format!("Failed to read CSV batch: {}", e))
                            })?;
                            batches.push(batch);
                        }

                        if batches.is_empty() {
                            return Err(Error::data(format!("CSV file '{}' is empty", self.path)));
                        }

                        Ok((schema, batches))
                    }

                    StorageFileFormat::Json => {
                        use arrow_json::ReaderBuilder;
                        use std::io::Cursor;

                        let cursor = Cursor::new(bytes.clone());

                        let reader = if let Some(schema) = &self.schema {
                            ReaderBuilder::new(schema.clone())
                                .with_batch_size(self.batch_size)
                                .build(cursor)
                                .map_err(|e| Error::arrow(format!("Failed to create JSON reader: {}", e)))?
                        } else {
                            // Infer schema
                            let cursor_for_infer = Cursor::new(bytes.clone());
                            let buf_reader = BufReader::new(cursor_for_infer);
                            let inferred_result = arrow_json::reader::infer_json_schema(buf_reader, Some(100))
                                .map_err(|e| Error::arrow(format!("Failed to infer JSON schema: {}", e)))?;

                            let inferred_schema = inferred_result.0;
                            let cursor = Cursor::new(bytes);
                            ReaderBuilder::new(Arc::new(inferred_schema))
                                .with_batch_size(self.batch_size)
                                .build(cursor)
                                .map_err(|e| Error::arrow(format!("Failed to create JSON reader: {}", e)))?
                        };

                        let schema = reader.schema();
                        let mut batches = Vec::new();
                        for batch_result in reader {
                            let batch = batch_result.map_err(|e| {
                                Error::arrow(format!("Failed to read JSON batch: {}", e))
                            })?;
                            batches.push(batch);
                        }

                        if batches.is_empty() {
                            return Err(Error::data(format!("JSON file '{}' is empty", self.path)));
                        }

                        Ok((schema, batches))
                    }
                }
            })
        }
    }

    /// AWS S3 data source
    ///
    /// # Example
    /// ```rust,ignore
    /// let source = S3Source::new("my-bucket", "data/sales.parquet")
    ///     .with_region("us-west-2")
    ///     .with_format(StorageFileFormat::Parquet);
    /// ```
    #[derive(Debug, Clone)]
    pub struct S3Source {
        bucket: String,
        path: String,
        region: Option<String>,
        access_key_id: Option<String>,
        secret_access_key: Option<String>,
        endpoint: Option<String>,
        format: StorageFileFormat,
        batch_size: usize,
        schema: Option<Arc<ArrowSchema>>,
    }

    impl S3Source {
        /// Create a new S3 data source
        ///
        /// # Arguments
        /// * `bucket` - S3 bucket name
        /// * `path` - Path to the file in the bucket (e.g., "data/sales.parquet")
        ///
        /// # Authentication
        /// By default, uses AWS credentials from environment variables or ~/.aws/credentials.
        /// Use `with_access_key()` to provide explicit credentials.
        pub fn new(bucket: impl Into<String>, path: impl Into<String>) -> Self {
            Self {
                bucket: bucket.into(),
                path: path.into(),
                region: None,
                access_key_id: None,
                secret_access_key: None,
                endpoint: None,
                format: StorageFileFormat::Parquet,
                batch_size: 8192,
                schema: None,
            }
        }

        /// Set the AWS region (e.g., "us-west-2")
        pub fn with_region(mut self, region: impl Into<String>) -> Self {
            self.region = Some(region.into());
            self
        }

        /// Set explicit AWS credentials
        pub fn with_access_key(
            mut self,
            access_key_id: impl Into<String>,
            secret_access_key: impl Into<String>,
        ) -> Self {
            self.access_key_id = Some(access_key_id.into());
            self.secret_access_key = Some(secret_access_key.into());
            self
        }

        /// Set custom S3 endpoint (for S3-compatible services like MinIO)
        pub fn with_endpoint(mut self, endpoint: impl Into<String>) -> Self {
            self.endpoint = Some(endpoint.into());
            self
        }

        /// Set the file format
        pub fn with_format(mut self, format: StorageFileFormat) -> Self {
            self.format = format;
            self
        }

        /// Set the batch size
        pub fn with_batch_size(mut self, batch_size: usize) -> Self {
            self.batch_size = batch_size;
            self
        }

        /// Set the schema (for CSV/JSON)
        pub fn with_schema(mut self, schema: Arc<ArrowSchema>) -> Self {
            self.schema = Some(schema);
            self
        }

        /// Build the ObjectStore instance
        fn build_store(&self) -> Result<StdArc<dyn ObjectStore>> {
            use object_store::aws::AmazonS3Builder;

            let mut builder = AmazonS3Builder::new()
                .with_bucket_name(&self.bucket);

            if let Some(region) = &self.region {
                builder = builder.with_region(region);
            }

            if let Some(access_key_id) = &self.access_key_id {
                builder = builder.with_access_key_id(access_key_id);
            }

            if let Some(secret_access_key) = &self.secret_access_key {
                builder = builder.with_secret_access_key(secret_access_key);
            }

            if let Some(endpoint) = &self.endpoint {
                builder = builder.with_endpoint(endpoint);
            }

            let store = builder.build().map_err(|e| {
                Error::data(format!("Failed to build S3 store: {}", e))
            })?;

            Ok(StdArc::new(store))
        }
    }

    impl DataSource for S3Source {
        fn load(&self) -> Result<(Arc<ArrowSchema>, Vec<RecordBatch>)> {
            let store = self.build_store()?;

            let mut obj_source = ObjectStorageSource::new(store, &self.path)
                .with_format(self.format)
                .with_batch_size(self.batch_size);

            if let Some(schema) = &self.schema {
                obj_source = obj_source.with_schema(schema.clone());
            }

            obj_source.load()
        }
    }

    /// Google Cloud Storage (GCS) data source
    ///
    /// # Example
    /// ```rust,ignore
    /// let source = GcsSource::new("my-bucket", "data/sales.parquet")
    ///     .with_service_account_key("path/to/key.json")
    ///     .with_format(StorageFileFormat::Parquet);
    /// ```
    #[derive(Debug, Clone)]
    pub struct GcsSource {
        bucket: String,
        path: String,
        service_account_key: Option<String>,
        format: StorageFileFormat,
        batch_size: usize,
        schema: Option<Arc<ArrowSchema>>,
    }

    impl GcsSource {
        /// Create a new GCS data source
        ///
        /// # Arguments
        /// * `bucket` - GCS bucket name
        /// * `path` - Path to the file in the bucket
        ///
        /// # Authentication
        /// By default, uses Google Cloud credentials from GOOGLE_APPLICATION_CREDENTIALS env var.
        /// Use `with_service_account_key()` to provide explicit credentials.
        pub fn new(bucket: impl Into<String>, path: impl Into<String>) -> Self {
            Self {
                bucket: bucket.into(),
                path: path.into(),
                service_account_key: None,
                format: StorageFileFormat::Parquet,
                batch_size: 8192,
                schema: None,
            }
        }

        /// Set the service account key path or JSON content
        pub fn with_service_account_key(mut self, key: impl Into<String>) -> Self {
            self.service_account_key = Some(key.into());
            self
        }

        /// Set the file format
        pub fn with_format(mut self, format: StorageFileFormat) -> Self {
            self.format = format;
            self
        }

        /// Set the batch size
        pub fn with_batch_size(mut self, batch_size: usize) -> Self {
            self.batch_size = batch_size;
            self
        }

        /// Set the schema (for CSV/JSON)
        pub fn with_schema(mut self, schema: Arc<ArrowSchema>) -> Self {
            self.schema = Some(schema);
            self
        }

        /// Build the ObjectStore instance
        fn build_store(&self) -> Result<StdArc<dyn ObjectStore>> {
            use object_store::gcp::GoogleCloudStorageBuilder;

            let mut builder = GoogleCloudStorageBuilder::new()
                .with_bucket_name(&self.bucket);

            if let Some(key) = &self.service_account_key {
                builder = builder.with_service_account_key(key);
            }

            let store = builder.build().map_err(|e| {
                Error::data(format!("Failed to build GCS store: {}", e))
            })?;

            Ok(StdArc::new(store))
        }
    }

    impl DataSource for GcsSource {
        fn load(&self) -> Result<(Arc<ArrowSchema>, Vec<RecordBatch>)> {
            let store = self.build_store()?;

            let mut obj_source = ObjectStorageSource::new(store, &self.path)
                .with_format(self.format)
                .with_batch_size(self.batch_size);

            if let Some(schema) = &self.schema {
                obj_source = obj_source.with_schema(schema.clone());
            }

            obj_source.load()
        }
    }

    /// Azure Blob Storage data source
    ///
    /// # Example
    /// ```rust,ignore
    /// let source = AzureSource::new("myaccount", "mycontainer", "data/sales.parquet")
    ///     .with_access_key("access_key")
    ///     .with_format(StorageFileFormat::Parquet);
    /// ```
    #[derive(Debug, Clone)]
    pub struct AzureSource {
        account: String,
        container: String,
        path: String,
        access_key: Option<String>,
        sas_token: Option<String>,
        format: StorageFileFormat,
        batch_size: usize,
        schema: Option<Arc<ArrowSchema>>,
    }

    impl AzureSource {
        /// Create a new Azure Blob Storage data source
        ///
        /// # Arguments
        /// * `account` - Azure storage account name
        /// * `container` - Container name
        /// * `path` - Path to the file in the container
        ///
        /// # Authentication
        /// Use `with_access_key()` or `with_sas_token()` to provide credentials.
        pub fn new(
            account: impl Into<String>,
            container: impl Into<String>,
            path: impl Into<String>,
        ) -> Self {
            Self {
                account: account.into(),
                container: container.into(),
                path: path.into(),
                access_key: None,
                sas_token: None,
                format: StorageFileFormat::Parquet,
                batch_size: 8192,
                schema: None,
            }
        }

        /// Set the access key for authentication
        pub fn with_access_key(mut self, access_key: impl Into<String>) -> Self {
            self.access_key = Some(access_key.into());
            self
        }

        /// Set the SAS token for authentication
        pub fn with_sas_token(mut self, sas_token: impl Into<String>) -> Self {
            self.sas_token = Some(sas_token.into());
            self
        }

        /// Set the file format
        pub fn with_format(mut self, format: StorageFileFormat) -> Self {
            self.format = format;
            self
        }

        /// Set the batch size
        pub fn with_batch_size(mut self, batch_size: usize) -> Self {
            self.batch_size = batch_size;
            self
        }

        /// Set the schema (for CSV/JSON)
        pub fn with_schema(mut self, schema: Arc<ArrowSchema>) -> Self {
            self.schema = Some(schema);
            self
        }

        /// Build the ObjectStore instance
        fn build_store(&self) -> Result<StdArc<dyn ObjectStore>> {
            use object_store::azure::{MicrosoftAzureBuilder, AzureConfigKey};

            let mut builder = MicrosoftAzureBuilder::new()
                .with_account(&self.account)
                .with_container_name(&self.container);

            if let Some(access_key) = &self.access_key {
                builder = builder.with_access_key(access_key);
            }

            if let Some(sas_token) = &self.sas_token {
                // SAS token is set using with_config method
                builder = builder.with_config(AzureConfigKey::SasKey, sas_token);
            }

            let store = builder.build().map_err(|e| {
                Error::data(format!("Failed to build Azure store: {}", e))
            })?;

            Ok(StdArc::new(store))
        }
    }

    impl DataSource for AzureSource {
        fn load(&self) -> Result<(Arc<ArrowSchema>, Vec<RecordBatch>)> {
            let store = self.build_store()?;

            let mut obj_source = ObjectStorageSource::new(store, &self.path)
                .with_format(self.format)
                .with_batch_size(self.batch_size);

            if let Some(schema) = &self.schema {
                obj_source = obj_source.with_schema(schema.clone());
            }

            obj_source.load()
        }
    }
}