ggsql 0.4.0

A declarative visualization language that extends SQL with powerful data visualization capabilities.
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
//! DateTime transform implementation
//!
//! Transforms DateTime data (microseconds since epoch) to appropriate break positions.
//! The transform itself is identity (no numerical transformation), but the
//! break calculation produces nice temporal intervals.

use chrono::Datelike;

use super::{TransformKind, TransformTrait};
use crate::plot::scale::breaks::minor_breaks_linear;
use crate::plot::ArrayElement;

/// DateTime transform - for datetime data (microseconds since epoch)
///
/// This transform works on the numeric representation of datetimes (microseconds since Unix epoch).
/// The transform/inverse functions are identity (pass-through), but break calculation
/// produces sensible temporal intervals.
#[derive(Debug, Clone, Copy)]
pub struct DateTime;

// Microseconds per time unit
const MICROS_PER_SECOND: f64 = 1_000_000.0;
const MICROS_PER_MINUTE: f64 = 60.0 * MICROS_PER_SECOND;
const MICROS_PER_HOUR: f64 = 60.0 * MICROS_PER_MINUTE;
const MICROS_PER_DAY: f64 = 24.0 * MICROS_PER_HOUR;

// DateTime interval types for break calculation
#[derive(Debug, Clone, Copy, PartialEq)]
enum DateTimeInterval {
    Year,
    Month,
    Day,
    Hour,
    Minute,
    Second,
}

impl DateTimeInterval {
    /// Approximate microseconds in each interval
    fn micros(&self) -> f64 {
        match self {
            DateTimeInterval::Year => 365.25 * MICROS_PER_DAY,
            DateTimeInterval::Month => 30.4375 * MICROS_PER_DAY,
            DateTimeInterval::Day => MICROS_PER_DAY,
            DateTimeInterval::Hour => MICROS_PER_HOUR,
            DateTimeInterval::Minute => MICROS_PER_MINUTE,
            DateTimeInterval::Second => MICROS_PER_SECOND,
        }
    }

    /// Calculate expected number of breaks for this interval over the given span
    fn expected_breaks(&self, span_micros: f64) -> f64 {
        span_micros / self.micros()
    }

    /// Select appropriate interval and step based on span and desired break count.
    /// Uses tolerance-based search: tries each interval from largest to smallest,
    /// stops when within ~20% of requested n, then calculates a nice step multiplier.
    fn select(span_micros: f64, n: usize) -> (Self, usize) {
        let n_f64 = n as f64;
        let tolerance = 0.2; // 20% tolerance
        let min_breaks = n_f64 * (1.0 - tolerance);
        let max_breaks = n_f64 * (1.0 + tolerance);

        // Intervals from largest to smallest
        let intervals = [
            DateTimeInterval::Year,
            DateTimeInterval::Month,
            DateTimeInterval::Day,
            DateTimeInterval::Hour,
            DateTimeInterval::Minute,
            DateTimeInterval::Second,
        ];

        for &interval in &intervals {
            let expected = interval.expected_breaks(span_micros);

            // Skip if this interval produces too few breaks
            if expected < 1.0 {
                continue;
            }

            // If within tolerance, use step=1
            if expected >= min_breaks && expected <= max_breaks {
                return (interval, 1);
            }

            // If too many breaks, calculate a nice step
            if expected > max_breaks {
                let raw_step = expected / n_f64;
                let nice = match interval {
                    DateTimeInterval::Year => nice_step(raw_step) as usize,
                    DateTimeInterval::Month => nice_month_step(raw_step),
                    DateTimeInterval::Day => nice_step(raw_step) as usize,
                    DateTimeInterval::Hour => nice_hour_step(raw_step) as usize,
                    DateTimeInterval::Minute => nice_minute_step(raw_step) as usize,
                    DateTimeInterval::Second => nice_step(raw_step) as usize,
                };
                let step = nice.max(1);

                // Verify the stepped interval is reasonable
                let stepped_breaks = expected / step as f64;
                if stepped_breaks >= 1.0 {
                    return (interval, step);
                }
            }
        }

        // Fallback: use Second with step calculation
        let expected = DateTimeInterval::Second.expected_breaks(span_micros);
        let step = (nice_step(expected / n_f64) as usize).max(1);
        (DateTimeInterval::Second, step)
    }
}

/// Nice step values for months (1, 2, 3, 6, 12)
fn nice_month_step(step: f64) -> usize {
    if step <= 1.0 {
        1
    } else if step <= 2.0 {
        2
    } else if step <= 4.0 {
        3
    } else if step <= 8.0 {
        6
    } else {
        12
    }
}

impl TransformTrait for DateTime {
    fn transform_kind(&self) -> TransformKind {
        TransformKind::DateTime
    }

    fn name(&self) -> &'static str {
        "datetime"
    }

    fn allowed_domain(&self) -> (f64, f64) {
        // Roughly year 1 to year 9999 in microseconds since epoch
        // i64::MIN/MAX is about +/- 292,000 years, so we can be generous
        (f64::NEG_INFINITY, f64::INFINITY)
    }

    fn transform(&self, value: f64) -> f64 {
        // Identity transform - datetimes stay in microseconds-since-epoch space
        value
    }

    fn inverse(&self, value: f64) -> f64 {
        // Identity inverse
        value
    }

    fn calculate_breaks(&self, min: f64, max: f64, n: usize, pretty: bool) -> Vec<f64> {
        if n == 0 || min >= max {
            return vec![];
        }

        let span = max - min;
        let (interval, step) = DateTimeInterval::select(span, n);

        if pretty {
            calculate_pretty_datetime_breaks(min, max, interval, step)
        } else {
            calculate_linear_datetime_breaks(min, max, n)
        }
    }

    fn calculate_minor_breaks(
        &self,
        major_breaks: &[f64],
        n: usize,
        range: Option<(f64, f64)>,
    ) -> Vec<f64> {
        // Use linear minor breaks in microsecond-space
        minor_breaks_linear(major_breaks, n, range)
    }

    fn default_minor_break_count(&self) -> usize {
        3
    }

    fn wrap_numeric(&self, value: f64) -> ArrayElement {
        ArrayElement::DateTime(value as i64)
    }

    fn parse_value(&self, elem: &ArrayElement) -> ArrayElement {
        match elem {
            ArrayElement::String(s) => {
                ArrayElement::from_datetime_string(s).unwrap_or_else(|| elem.clone())
            }
            ArrayElement::Number(n) => self.wrap_numeric(*n),
            // DateTime values pass through unchanged
            ArrayElement::DateTime(_) => elem.clone(),
            other => other.clone(),
        }
    }
}

/// Calculate pretty datetime breaks aligned to interval boundaries
fn calculate_pretty_datetime_breaks(
    min: f64,
    max: f64,
    interval: DateTimeInterval,
    step: usize,
) -> Vec<f64> {
    let mut breaks = Vec::new();

    match interval {
        DateTimeInterval::Year => {
            let min_dt = micros_to_datetime(min as i64);
            let max_dt = micros_to_datetime(max as i64);

            let start_year = min_dt.year();
            let end_year = max_dt.year();

            let step = step as i32;
            let aligned_start = (start_year / step) * step;

            let mut year = aligned_start;
            while year <= end_year + step {
                if let Some(dt) = chrono::NaiveDate::from_ymd_opt(year, 1, 1) {
                    let micros = datetime_to_micros(dt.and_hms_opt(0, 0, 0).unwrap());
                    if micros >= min && micros <= max {
                        breaks.push(micros);
                    }
                }
                year += step;
            }
        }
        DateTimeInterval::Month => {
            let min_dt = micros_to_datetime(min as i64);
            let max_dt = micros_to_datetime(max as i64);

            let start_year = min_dt.year();
            let start_month = min_dt.month();
            let end_year = max_dt.year();
            let end_month = max_dt.month();

            let mut year = start_year;
            let mut month = ((start_month - 1) / step as u32) * step as u32 + 1;

            while year < end_year || (year == end_year && month <= end_month) {
                if let Some(date) = chrono::NaiveDate::from_ymd_opt(year, month, 1) {
                    let micros = datetime_to_micros(date.and_hms_opt(0, 0, 0).unwrap());
                    if micros >= min && micros <= max {
                        breaks.push(micros);
                    }
                }
                month += step as u32;
                if month > 12 {
                    month -= 12;
                    year += 1;
                }
            }
        }
        DateTimeInterval::Day => {
            let step_micros = (step as i64) * MICROS_PER_DAY as i64;

            let start_micros = (min / MICROS_PER_DAY).floor() as i64 * MICROS_PER_DAY as i64;

            let mut micros = start_micros;
            while (micros as f64) <= max {
                let m = micros as f64;
                if m >= min && m <= max {
                    breaks.push(m);
                }
                micros += step_micros;
            }
        }
        DateTimeInterval::Hour => {
            let step_micros = (step as i64) * MICROS_PER_HOUR as i64;

            let start_micros = (min / MICROS_PER_HOUR).floor() as i64 * MICROS_PER_HOUR as i64;

            let mut micros = start_micros;
            while (micros as f64) <= max {
                let m = micros as f64;
                if m >= min && m <= max {
                    breaks.push(m);
                }
                micros += step_micros;
            }
        }
        DateTimeInterval::Minute => {
            let step_micros = (step as i64) * MICROS_PER_MINUTE as i64;

            let start_micros = (min / MICROS_PER_MINUTE).floor() as i64 * MICROS_PER_MINUTE as i64;

            let mut micros = start_micros;
            while (micros as f64) <= max {
                let m = micros as f64;
                if m >= min && m <= max {
                    breaks.push(m);
                }
                micros += step_micros;
            }
        }
        DateTimeInterval::Second => {
            let step_micros = (step as i64) * MICROS_PER_SECOND as i64;

            let start_micros = (min / MICROS_PER_SECOND).floor() as i64 * MICROS_PER_SECOND as i64;

            let mut micros = start_micros;
            while (micros as f64) <= max {
                let m = micros as f64;
                if m >= min && m <= max {
                    breaks.push(m);
                }
                micros += step_micros;
            }
        }
    }

    if breaks.is_empty() {
        breaks.push(min);
        if max > min {
            breaks.push(max);
        }
    }

    breaks
}

/// Calculate linear breaks in microsecond-space
fn calculate_linear_datetime_breaks(min: f64, max: f64, n: usize) -> Vec<f64> {
    if n <= 1 {
        return vec![min];
    }

    let step = (max - min) / (n - 1) as f64;
    (0..n).map(|i| min + i as f64 * step).collect()
}

/// Convert microseconds since epoch to NaiveDateTime
fn micros_to_datetime(micros: i64) -> chrono::NaiveDateTime {
    let secs = micros / 1_000_000;
    let nsecs = ((micros % 1_000_000).abs() * 1000) as u32;
    chrono::DateTime::from_timestamp(secs, nsecs)
        .map(|dt| dt.naive_utc())
        .unwrap_or_default()
}

/// Convert NaiveDateTime to microseconds since epoch
fn datetime_to_micros(dt: chrono::NaiveDateTime) -> f64 {
    dt.and_utc().timestamp_micros() as f64
}

/// Round to a "nice" step value
fn nice_step(step: f64) -> f64 {
    if step <= 0.0 {
        return 1.0;
    }

    let magnitude = 10_f64.powf(step.log10().floor());
    let residual = step / magnitude;

    let nice = if residual <= 1.5 {
        1.0
    } else if residual <= 3.0 {
        2.0
    } else if residual <= 7.0 {
        5.0
    } else {
        10.0
    };

    nice * magnitude
}

/// Nice step values for hours (1, 2, 3, 4, 6, 12, 24)
fn nice_hour_step(step: f64) -> f64 {
    if step <= 1.0 {
        1.0
    } else if step <= 2.0 {
        2.0
    } else if step <= 3.0 {
        3.0
    } else if step <= 4.0 {
        4.0
    } else if step <= 6.0 {
        6.0
    } else if step <= 12.0 {
        12.0
    } else {
        24.0
    }
}

/// Nice step values for minutes (1, 2, 5, 10, 15, 30, 60)
fn nice_minute_step(step: f64) -> f64 {
    if step <= 1.0 {
        1.0
    } else if step <= 2.0 {
        2.0
    } else if step <= 5.0 {
        5.0
    } else if step <= 10.0 {
        10.0
    } else if step <= 15.0 {
        15.0
    } else if step <= 30.0 {
        30.0
    } else {
        60.0
    }
}

impl std::fmt::Display for DateTime {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", self.name())
    }
}

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

    #[test]
    fn test_datetime_transform_kind() {
        let t = DateTime;
        assert_eq!(t.transform_kind(), TransformKind::DateTime);
    }

    #[test]
    fn test_datetime_name() {
        let t = DateTime;
        assert_eq!(t.name(), "datetime");
    }

    #[test]
    fn test_datetime_domain() {
        let t = DateTime;
        let (min, max) = t.allowed_domain();
        // DateTime has infinite domain
        assert!(min.is_infinite() && min.is_sign_negative());
        assert!(max.is_infinite() && max.is_sign_positive());
    }

    #[test]
    fn test_datetime_transform_is_identity() {
        let t = DateTime;
        assert_eq!(t.transform(100.0), 100.0);
        assert_eq!(t.transform(-50.0), -50.0);
        assert_eq!(t.inverse(100.0), 100.0);
    }

    #[test]
    fn test_datetime_breaks_year_span() {
        let t = DateTime;
        // ~5 years span (in microseconds)
        let min = 0.0;
        let max = 5.0 * 365.25 * MICROS_PER_DAY;
        let breaks = t.calculate_breaks(min, max, 5, true);
        assert!(!breaks.is_empty());
        for &b in &breaks {
            assert!(b >= min && b <= max);
        }
    }

    #[test]
    fn test_datetime_breaks_hour_span() {
        let t = DateTime;
        // ~24 hours span
        let min = 0.0;
        let max = 24.0 * MICROS_PER_HOUR;
        let breaks = t.calculate_breaks(min, max, 8, true);
        assert!(!breaks.is_empty());
    }

    #[test]
    fn test_datetime_breaks_minute_span() {
        let t = DateTime;
        // ~60 minutes span
        let min = 0.0;
        let max = 60.0 * MICROS_PER_MINUTE;
        let breaks = t.calculate_breaks(min, max, 6, true);
        assert!(!breaks.is_empty());
    }

    #[test]
    fn test_datetime_breaks_linear() {
        let t = DateTime;
        let breaks = t.calculate_breaks(0.0, 1_000_000.0, 5, false);
        assert_eq!(breaks.len(), 5);
        assert_eq!(breaks[0], 0.0);
        assert_eq!(breaks[4], 1_000_000.0);
    }

    #[test]
    fn test_datetime_interval_selection() {
        // Large span (5 years, n=5) -> year with step
        let (interval, step) = DateTimeInterval::select(365.0 * MICROS_PER_DAY * 5.0, 5);
        assert_eq!(interval, DateTimeInterval::Year);
        assert!(step >= 1);

        // Day span (30 days, n=5) -> day with step
        let (interval, step) = DateTimeInterval::select(30.0 * MICROS_PER_DAY, 5);
        assert_eq!(interval, DateTimeInterval::Day);
        assert!(step >= 1);

        // Hour span (24 hours, n=8) -> hour with step
        let (interval, step) = DateTimeInterval::select(24.0 * MICROS_PER_HOUR, 8);
        assert_eq!(interval, DateTimeInterval::Hour);
        assert!(step >= 1);

        // Minute span (60 minutes, n=6) -> minute with step
        let (interval, step) = DateTimeInterval::select(60.0 * MICROS_PER_MINUTE, 6);
        assert_eq!(interval, DateTimeInterval::Minute);
        assert!(step >= 1);
    }

    #[test]
    fn test_nice_hour_step() {
        assert_eq!(nice_hour_step(1.0), 1.0);
        assert_eq!(nice_hour_step(1.5), 2.0);
        assert_eq!(nice_hour_step(2.5), 3.0);
        assert_eq!(nice_hour_step(5.0), 6.0);
        assert_eq!(nice_hour_step(10.0), 12.0);
        assert_eq!(nice_hour_step(20.0), 24.0);
    }

    #[test]
    fn test_nice_minute_step() {
        assert_eq!(nice_minute_step(1.0), 1.0);
        assert_eq!(nice_minute_step(3.0), 5.0);
        assert_eq!(nice_minute_step(7.0), 10.0);
        assert_eq!(nice_minute_step(12.0), 15.0);
        assert_eq!(nice_minute_step(20.0), 30.0);
        assert_eq!(nice_minute_step(45.0), 60.0);
    }
}