rune-modules 0.14.1

Native modules for Rune, an embeddable dynamic programming language 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
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
//! The native `time` module for the [Rune Language].
//!
//! [Rune Language]: https://rune-rs.github.io
//!
//! ## Usage
//!
//! Add the following to your `Cargo.toml`:
//!
//! ```toml
//! rune-modules = { version = "0.14.1", features = ["time"] }
//! ```
//!
//! Install it into your context:
//!
//! ```rust
//! let mut context = rune::Context::with_default_modules()?;
//! context.install(rune_modules::time::module(true)?)?;
//! # Ok::<_, rune::support::Error>(())
//! ```
//!
//! Use it in Rune:
//!
//! ```rust,ignore
//! use time;
//!
//! fn main() {
//!     time::sleep(time::Duration::from_secs(10)).await;
//!     println("Message after 10 seconds!");
//! }
//! ```

use core::cmp::Ordering;
use core::hash::Hash;

use rune::alloc::fmt::TryWrite;
use rune::runtime::{Formatter, Hasher, Mut, VmResult};
use rune::{docstring, item, vm_panic, Any, ContextError, Module, ToConstValue};

const NANOS_PER_SEC: u32 = 1_000_000_000;

/// Construct the `time` module.
pub fn module(_stdio: bool) -> Result<Module, ContextError> {
    let mut m = Module::with_crate("time")?;

    m.function_meta(sleep)?;
    m.function_meta(interval)?;
    m.function_meta(interval_at)?;

    m.ty::<Duration>()?;

    m.function_meta(Duration::new__meta)?;
    m.function_meta(Duration::from_secs__meta)?;
    m.function_meta(Duration::from_millis__meta)?;
    m.function_meta(Duration::from_micros__meta)?;
    m.function_meta(Duration::from_nanos__meta)?;
    m.function_meta(Duration::is_zero__meta)?;
    m.function_meta(Duration::as_secs__meta)?;
    m.function_meta(Duration::subsec_millis__meta)?;
    m.function_meta(Duration::subsec_micros__meta)?;
    m.function_meta(Duration::subsec_nanos__meta)?;
    m.function_meta(Duration::as_millis__meta)?;
    m.function_meta(Duration::as_micros__meta)?;
    m.function_meta(Duration::as_nanos__meta)?;
    m.function_meta(Duration::as_secs_f64__meta)?;
    m.function_meta(Duration::from_secs_f64__meta)?;
    m.function_meta(Duration::add__meta)?;
    m.function_meta(Duration::add_assign__meta)?;
    m.function_meta(Duration::partial_eq__meta)?;
    m.implement_trait::<Duration>(item!(::std::cmp::PartialEq))?;
    m.function_meta(Duration::eq__meta)?;
    m.implement_trait::<Duration>(item!(::std::cmp::Eq))?;
    m.function_meta(Duration::partial_cmp__meta)?;
    m.implement_trait::<Duration>(item!(::std::cmp::PartialOrd))?;
    m.function_meta(Duration::cmp__meta)?;
    m.implement_trait::<Duration>(item!(::std::cmp::Ord))?;
    m.function_meta(Duration::hash__meta)?;
    m.function_meta(Duration::debug_fmt__meta)?;
    m.function_meta(Duration::clone__meta)?;
    m.implement_trait::<Duration>(item!(::std::clone::Clone))?;

    m.constant(
        "SECOND",
        Duration {
            inner: tokio::time::Duration::from_secs(1),
        },
    )
    .build_associated::<Duration>()?
    .docs(docstring! {
        /// The duration of one second.
        ///
        /// # Examples
        ///
        /// ```rune
        /// use time::Duration;
        ///
        /// let duration = Duration::SECOND;
        /// ```
    })?;

    m.constant(
        "MILLISECOND",
        Duration {
            inner: tokio::time::Duration::from_millis(1),
        },
    )
    .build_associated::<Duration>()?
    .docs(docstring! {
        /// The duration of one millisecond.
        ///
        /// # Examples
        ///
        /// ```rune
        /// use time::Duration;
        ///
        /// let duration = Duration::MILLISECOND;
        /// ```
    })?;

    m.constant(
        "MICROSECOND",
        Duration {
            inner: tokio::time::Duration::from_micros(1),
        },
    )
    .build_associated::<Duration>()?
    .docs(docstring! {
        /// The duration of one microsecond.
        ///
        /// # Examples
        ///
        /// ```rune
        /// use time::Duration;
        ///
        /// let duration = Duration::MICROSECOND;
        /// ```
    })?;

    m.constant(
        "NANOSECOND",
        Duration {
            inner: tokio::time::Duration::from_nanos(1),
        },
    )
    .build_associated::<Duration>()?
    .docs(docstring! {
        /// The duration of one nanosecond.
        ///
        /// # Examples
        ///
        /// ```rune
        /// use time::Duration;
        ///
        /// let duration = Duration::NANOSECOND;
        /// ```
    })?;

    m.constant(
        "ZERO",
        Duration {
            inner: tokio::time::Duration::ZERO,
        },
    )
    .build_associated::<Duration>()?
    .docs(docstring! {
        /// A duration of zero time.
        ///
        /// # Examples
        ///
        /// ```rune
        /// use time::Duration;
        ///
        /// let duration = Duration::ZERO;
        /// ```
    })?;

    m.constant(
        "MAX",
        Duration {
            inner: tokio::time::Duration::MAX,
        },
    )
    .build_associated::<Duration>()?
    .docs(docstring! {
        /// The maximum duration.
        ///
        /// # Examples
        ///
        /// ```rune
        /// use time::Duration;
        ///
        /// let duration = Duration::MAX;
        /// assert!(Duration::ZERO < Duration::MAX);
        /// ```
    })?;

    m.ty::<Instant>()?;
    m.function_meta(Instant::now__meta)?;
    m.function_meta(Instant::duration_since__meta)?;
    m.function_meta(Instant::elapsed__meta)?;
    m.function_meta(Instant::add__meta)?;
    m.function_meta(Instant::add_assign__meta)?;
    m.function_meta(Instant::partial_eq__meta)?;
    m.implement_trait::<Instant>(item!(::std::cmp::PartialEq))?;
    m.function_meta(Instant::eq__meta)?;
    m.implement_trait::<Instant>(item!(::std::cmp::Eq))?;
    m.function_meta(Instant::partial_cmp__meta)?;
    m.implement_trait::<Instant>(item!(::std::cmp::PartialOrd))?;
    m.function_meta(Instant::cmp__meta)?;
    m.implement_trait::<Instant>(item!(::std::cmp::Ord))?;
    m.function_meta(Instant::hash__meta)?;
    m.function_meta(Instant::debug_fmt__meta)?;
    m.function_meta(Instant::clone__meta)?;
    m.implement_trait::<Instant>(item!(::std::clone::Clone))?;

    m.ty::<Interval>()?;
    m.function("tick", Interval::tick)
        .build_associated::<Interval>()?;
    m.function_meta(Interval::reset__meta)?;
    m.function_meta(Interval::reset_immediately__meta)?;
    m.function_meta(Interval::reset_after__meta)?;
    m.function_meta(Interval::reset_at__meta)?;

    Ok(m)
}

/// Waits until duration has elapsed.
///
/// # Examples
///
/// ```rune,no_run
/// use time::Duration;
///
/// let duration = Duration::from_secs(10);
/// time::sleep(duration).await;
/// println!("Surprise!");
/// ```
#[rune::function]
async fn sleep(duration: Duration) {
    tokio::time::sleep(duration.inner).await;
}

/// Creates new [`Interval`] that yields with interval of `period`. The first
/// tick completes immediately.
///
/// An interval will tick indefinitely. At any time, the [`Interval`] value can
/// be dropped. This cancels the interval.
///
/// # Examples
///
/// ```rune,no_run
/// use time::Duration;
///
/// let duration = Duration::from_millis(10);
/// let interval = time::interval(duration);
///
/// interval.tick().await; // ticks immediately
/// interval.tick().await; // ticks after 10ms
/// interval.tick().await; // ticks after 10ms
///
/// println!("approximately 20ms have elapsed...");
/// ```
#[rune::function]
async fn interval(period: Duration) -> Interval {
    Interval {
        inner: tokio::time::interval(period.inner),
    }
}

/// Creates new [`Interval`] that yields with interval of `period` with the
/// first tick completing at `start`.
///
/// An interval will tick indefinitely. At any time, the [`Interval`] value can
/// be dropped. This cancels the interval.
///
/// # Vm Panics
///
/// This function panics if `period` is zero.
///
/// # Examples
///
/// ```rune,no_run
/// use time::{Duration, Instant};
///
/// let start = Instant::now() + Duration::from_millis(50);
/// let interval = time::interval_at(start, Duration::from_millis(10));
///
/// interval.tick().await; // ticks after 50ms
/// interval.tick().await; // ticks after 10ms
/// interval.tick().await; // ticks after 10ms
///
/// println!("approximately 70ms have elapsed...");
/// ```
#[rune::function]
async fn interval_at(start: Instant, period: Duration) -> Interval {
    Interval {
        inner: tokio::time::interval_at(start.inner, period.inner),
    }
}

/// A `Duration` type to represent a span of time, typically used for system
/// timeouts.
///
/// Each `Duration` is composed of a whole number of seconds and a fractional part
/// represented in nanoseconds. If the underlying system does not support
/// nanosecond-level precision, APIs binding a system timeout will typically round up
/// the number of nanoseconds.
///
/// # Examples
///
/// ```rune
/// use time::Duration;
///
/// let five_seconds = Duration::new(5, 0);
/// let five_seconds_and_five_nanos = five_seconds + Duration::new(0, 5);
///
/// assert_eq!(five_seconds_and_five_nanos.as_secs(), 5);
/// assert_eq!(five_seconds_and_five_nanos.subsec_nanos(), 5);
///
/// let ten_millis = Duration::from_millis(10);
/// ```
#[derive(Debug, Clone, Copy, Any, ToConstValue)]
#[rune(item = ::time)]
pub struct Duration {
    #[const_value(with = self::const_duration)]
    inner: tokio::time::Duration,
}

impl Duration {
    /// Converts [`Duration`] into a [`std::time::Duration`].
    pub fn into_std(self) -> std::time::Duration {
        std::time::Duration::new(self.inner.as_secs(), self.inner.subsec_nanos())
    }

    /// Creates a [`Duration`] from a [`std::time::Duration`].
    pub fn from_std(duration: std::time::Duration) -> Self {
        Self {
            inner: tokio::time::Duration::new(duration.as_secs(), duration.subsec_nanos()),
        }
    }

    /// Converts [`Duration`] into a [`tokio::time::Duration`].
    ///
    /// # Example
    ///
    /// ```
    /// use rune_modules::time::Duration;
    ///
    /// let duration = Duration::from_secs(5);
    /// let tokio_duration = duration.into_tokio();
    /// ```
    pub fn into_tokio(self) -> tokio::time::Duration {
        self.inner
    }

    /// Creates a [`Duration`] from a [`tokio::time::Duration`].
    ///
    /// # Example
    ///
    /// ```
    /// use rune_modules::time::Duration;
    ///
    /// let tokio_duration = tokio::time::Duration::from_secs(5);
    /// let duration = Duration::from_tokio(tokio_duration);
    /// ```
    pub fn from_tokio(duration: tokio::time::Duration) -> Self {
        Self { inner: duration }
    }

    /// Creates a new `Duration` from the specified number of whole seconds and
    /// additional nanoseconds.
    ///
    /// If the number of nanoseconds is greater than 1 billion (the number of
    /// nanoseconds in a second), then it will carry over into the seconds provided.
    ///
    /// # Vm Panics
    ///
    /// This constructor will panic if the carry from the nanoseconds overflows
    /// the seconds counter.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Duration;
    ///
    /// let five_seconds = Duration::new(5, 0);
    /// ```
    #[rune::function(keep, path = Self::new)]
    pub fn new(secs: u64, nanos: u32) -> VmResult<Self> {
        if nanos >= NANOS_PER_SEC && secs.checked_add((nanos / NANOS_PER_SEC) as u64).is_none() {
            vm_panic!("overflow in Duration::new");
        }

        VmResult::Ok(Self {
            inner: tokio::time::Duration::new(secs, nanos),
        })
    }

    /// Creates a new `Duration` from the specified number of whole seconds.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Duration;
    ///
    /// let duration = Duration::from_secs(5);
    /// ```
    #[rune::function(keep, path = Self::from_secs)]
    pub const fn from_secs(secs: u64) -> Self {
        Self {
            inner: tokio::time::Duration::from_secs(secs),
        }
    }

    /// Creates a new `Duration` from the specified number of milliseconds.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Duration;
    ///
    /// let duration = Duration::from_millis(2569);
    /// ```
    #[rune::function(keep, path = Self::from_millis)]
    pub const fn from_millis(millis: u64) -> Self {
        Self {
            inner: tokio::time::Duration::from_millis(millis),
        }
    }

    /// Creates a new `Duration` from the specified number of microseconds.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Duration;
    ///
    /// let duration = Duration::from_micros(1_000_002);
    /// ```
    #[rune::function(keep, path = Self::from_micros)]
    #[inline]
    pub const fn from_micros(micros: u64) -> Self {
        Self {
            inner: tokio::time::Duration::from_micros(micros),
        }
    }

    /// Creates a new `Duration` from the specified number of nanoseconds.
    ///
    /// Note: Using this on the return value of `as_nanos()` might cause unexpected behavior:
    /// `as_nanos()` returns a u128, and can return values that do not fit in u64, e.g. 585 years.
    /// Instead, consider using the pattern `Duration::new(d.as_secs(), d.subsec_nanos())`
    /// if you cannot copy/clone the Duration directly.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Duration;
    ///
    /// let duration = Duration::from_nanos(1_000_000_123);
    /// ```
    #[rune::function(keep, path = Self::from_nanos)]
    #[inline]
    pub const fn from_nanos(nanos: u64) -> Self {
        Self {
            inner: tokio::time::Duration::from_nanos(nanos),
        }
    }

    /// Returns true if this `Duration` spans no time.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Duration;
    ///
    /// assert!(Duration::ZERO.is_zero());
    /// assert!(Duration::new(0, 0).is_zero());
    /// assert!(Duration::from_nanos(0).is_zero());
    /// assert!(Duration::from_secs(0).is_zero());
    ///
    /// assert!(!Duration::new(1, 1).is_zero());
    /// assert!(!Duration::from_nanos(1).is_zero());
    /// assert!(!Duration::from_secs(1).is_zero());
    /// ```
    #[rune::function(keep)]
    #[inline]
    pub const fn is_zero(&self) -> bool {
        self.inner.is_zero()
    }

    /// Returns the number of _whole_ seconds contained by this `Duration`.
    ///
    /// The returned value does not include the fractional (nanosecond) part of
    /// the duration, which can be obtained using [`subsec_nanos`].
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Duration;
    ///
    /// let duration = Duration::new(5, 730023852);
    /// assert_eq!(duration.as_secs(), 5);
    /// ```
    ///
    /// To determine the total number of seconds represented by the `Duration`
    /// including the fractional part, use [`as_secs_f64`] or [`as_secs_f32`]
    ///
    /// [`as_secs_f64`]: Duration::as_secs_f64
    /// [`as_secs_f32`]: Duration::as_secs_f32
    /// [`subsec_nanos`]: Duration::subsec_nanos
    #[rune::function(keep)]
    #[inline]
    pub const fn as_secs(&self) -> u64 {
        self.inner.as_secs()
    }

    /// Returns the fractional part of this `Duration`, in whole milliseconds.
    ///
    /// This method does **not** return the length of the duration when
    /// represented by milliseconds. The returned number always represents a
    /// fractional portion of a second (i.e., it is less than one thousand).
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Duration;
    ///
    /// let duration = Duration::from_millis(5432);
    /// assert_eq!(duration.as_secs(), 5);
    /// assert_eq!(duration.subsec_millis(), 432);
    /// ```
    #[rune::function(keep)]
    #[inline]
    pub const fn subsec_millis(&self) -> u32 {
        self.inner.subsec_millis()
    }

    /// Returns the fractional part of this `Duration`, in whole microseconds.
    ///
    /// This method does **not** return the length of the duration when
    /// represented by microseconds. The returned number always represents a
    /// fractional portion of a second (i.e., it is less than one million).
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Duration;
    ///
    /// let duration = Duration::from_micros(1_234_567);
    /// assert_eq!(duration.as_secs(), 1);
    /// assert_eq!(duration.subsec_micros(), 234_567);
    /// ```
    #[rune::function(keep)]
    #[inline]
    pub const fn subsec_micros(&self) -> u32 {
        self.inner.subsec_micros()
    }

    /// Returns the fractional part of this `Duration`, in nanoseconds.
    ///
    /// This method does **not** return the length of the duration when
    /// represented by nanoseconds. The returned number always represents a
    /// fractional portion of a second (i.e., it is less than one billion).
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Duration;
    ///
    /// let duration = Duration::from_millis(5010);
    /// assert_eq!(duration.as_secs(), 5);
    /// assert_eq!(duration.subsec_nanos(), 10_000_000);
    /// ```
    #[rune::function(keep)]
    #[inline]
    pub const fn subsec_nanos(&self) -> u32 {
        self.inner.subsec_nanos()
    }

    /// Returns the total number of whole milliseconds contained by this
    /// `Duration`.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Duration;
    ///
    /// let duration = Duration::new(5, 730023852);
    /// assert_eq!(duration.as_millis(), 5730);
    /// ```
    #[rune::function(keep)]
    #[inline]
    pub const fn as_millis(&self) -> u128 {
        self.inner.as_millis()
    }

    /// Returns the total number of whole microseconds contained by this
    /// `Duration`.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Duration;
    ///
    /// let duration = Duration::new(5, 730023852);
    /// assert_eq!(duration.as_micros(), 5730023);
    /// ```
    #[rune::function(keep)]
    #[inline]
    pub const fn as_micros(&self) -> u128 {
        self.inner.as_micros()
    }

    /// Returns the total number of nanoseconds contained by this `Duration`.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Duration;
    ///
    /// let duration = Duration::new(5, 730023852);
    /// assert_eq!(duration.as_nanos(), 5730023852);
    /// ```
    #[rune::function(keep)]
    #[inline]
    pub const fn as_nanos(&self) -> u128 {
        self.inner.as_nanos()
    }

    /// Returns the number of seconds contained by this `Duration` as `f64`.
    ///
    /// The returned value does include the fractional (nanosecond) part of the
    /// duration.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Duration;
    ///
    /// let duration = Duration::from_secs(60).as_secs_f64();
    /// ```
    #[rune::function(keep)]
    #[inline]
    pub fn as_secs_f64(&self) -> f64 {
        self.inner.as_secs_f64()
    }

    /// Creates a new `Duration` from the specified number of seconds represented
    /// as `f64`.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Duration;
    ///
    /// let duration = Duration::from_secs_f64(0.0);
    /// ```
    #[rune::function(keep, path = Self::from_secs_f64)]
    pub fn from_secs_f64(secs: f64) -> VmResult<Self> {
        match tokio::time::Duration::try_from_secs_f64(secs) {
            Ok(duration) => VmResult::Ok(Self { inner: duration }),
            Err(e) => vm_panic!(e),
        }
    }

    /// Add a duration to this instant and return a new instant.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Duration;
    ///
    /// let first = Duration::SECOND;
    /// let second = first + Duration::SECOND;
    ///
    /// assert!(first < second);
    /// ```
    #[rune::function(keep, instance, protocol = ADD)]
    #[inline]
    fn add(&self, rhs: &Duration) -> VmResult<Self> {
        let Some(inner) = self.inner.checked_add(rhs.inner) else {
            vm_panic!("overflow when adding durations")
        };

        VmResult::Ok(Self { inner })
    }

    /// Add a duration to this instant and return a new instant.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Duration;
    ///
    /// let first = Duration::SECOND;
    /// let second = first.clone();
    /// second += Duration::SECOND;
    ///
    /// assert!(first < second);
    /// ```
    #[rune::function(keep, instance, protocol = ADD_ASSIGN)]
    #[inline]
    fn add_assign(&mut self, rhs: &Duration) -> VmResult<()> {
        let Some(inner) = self.inner.checked_add(rhs.inner) else {
            vm_panic!("overflow when adding duration to instant")
        };

        self.inner = inner;
        VmResult::Ok(())
    }

    /// Test two durations for partial equality.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use std::ops::partial_eq;
    ///
    /// use time::Duration;
    ///
    /// let millis = Duration::MILLISECOND;
    /// let second = Duration::SECOND;
    ///
    /// assert_eq!(partial_eq(millis, millis), true);
    /// assert_eq!(partial_eq(millis, second), false);
    /// assert_eq!(partial_eq(second, millis), false);
    /// ```
    #[rune::function(keep, instance, protocol = PARTIAL_EQ)]
    #[inline]
    fn partial_eq(&self, rhs: &Self) -> bool {
        PartialEq::eq(&self.inner, &rhs.inner)
    }

    /// Test two durations for total equality.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use std::ops::eq;
    ///
    /// use time::Duration;
    ///
    /// let millis = Duration::MILLISECOND;
    /// let second = Duration::SECOND;
    ///
    /// assert_eq!(eq(millis, millis), true);
    /// assert_eq!(eq(millis, second), false);
    /// assert_eq!(eq(second, millis), false);
    /// ```
    #[rune::function(keep, instance, protocol = EQ)]
    #[inline]
    fn eq(&self, rhs: &Self) -> bool {
        PartialEq::eq(&self.inner, &rhs.inner)
    }

    /// Perform a partial ordered comparison between two durations.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Duration;
    ///
    /// let millis = Duration::MILLISECOND;
    /// let second = Duration::SECOND;
    ///
    /// assert!(millis < second);
    /// assert!(second > millis);
    /// assert!(millis == millis);
    /// ```
    ///
    /// Using explicit functions:
    ///
    /// ```rune
    /// use std::cmp::Ordering;
    /// use std::ops::partial_cmp;
    ///
    /// use time::Duration;
    ///
    /// let millis = Duration::MILLISECOND;
    /// let second = Duration::SECOND;
    ///
    /// assert_eq!(partial_cmp(millis, second), Some(Ordering::Less));
    /// assert_eq!(partial_cmp(second, millis), Some(Ordering::Greater));
    /// assert_eq!(partial_cmp(millis, millis), Some(Ordering::Equal));
    /// ```
    #[rune::function(keep, instance, protocol = PARTIAL_CMP)]
    #[inline]
    fn partial_cmp(&self, rhs: &Self) -> Option<Ordering> {
        PartialOrd::partial_cmp(&self.inner, &rhs.inner)
    }

    /// Perform a totally ordered comparison between two durations.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use std::cmp::Ordering;
    /// use std::ops::cmp;
    ///
    /// use time::Duration;
    ///
    /// let millis = Duration::MILLISECOND;
    /// let second = Duration::SECOND;
    ///
    /// assert_eq!(cmp(millis, second), Ordering::Less);
    /// assert_eq!(cmp(second, millis), Ordering::Greater);
    /// assert_eq!(cmp(millis, millis), Ordering::Equal);
    /// ```
    #[rune::function(keep, instance, protocol = CMP)]
    #[inline]
    fn cmp(&self, rhs: &Self) -> Ordering {
        Ord::cmp(&self.inner, &rhs.inner)
    }

    /// Hash the duration.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use std::ops::hash;
    ///
    /// use time::Duration;
    ///
    /// let second = Duration::SECOND;
    ///
    /// assert_eq!(hash(second), hash(second));
    /// ```
    #[rune::function(keep, instance, protocol = HASH)]
    fn hash(&self, hasher: &mut Hasher) {
        self.inner.hash(hasher);
    }

    /// Write a debug representation of the duration.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Duration;
    ///
    /// let second = Duration::SECOND;
    ///
    /// println!("{second:?}");
    /// ```
    #[rune::function(keep, instance, protocol = DEBUG_FMT)]
    fn debug_fmt(&self, f: &mut Formatter) -> VmResult<()> {
        rune::vm_write!(f, "{:?}", self.inner)
    }

    /// Clone the current duration.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Duration;
    ///
    /// let first = Duration::SECOND;
    /// let second = Duration::SECOND;
    /// second += Duration::SECOND;
    ///
    /// assert!(first < second);
    /// ```
    #[rune::function(keep, instance, protocol = CLONE)]
    fn clone(&self) -> Self {
        Self { inner: self.inner }
    }
}

mod const_duration {
    use rune::runtime::{ConstValue, RuntimeError, Value};
    use tokio::time::Duration;

    #[inline]
    pub(super) fn to_const_value(duration: Duration) -> Result<ConstValue, RuntimeError> {
        let secs = duration.as_secs();
        let nanos = duration.subsec_nanos();
        rune::to_const_value((secs, nanos))
    }

    #[inline]
    pub(super) fn from_const_value(value: &ConstValue) -> Result<Duration, RuntimeError> {
        let (secs, nanos) = rune::from_const_value::<(u64, u32)>(value)?;
        Ok(Duration::new(secs, nanos))
    }

    #[inline]
    pub(super) fn from_value(value: Value) -> Result<Duration, RuntimeError> {
        let (secs, nanos) = rune::from_value::<(u64, u32)>(value)?;
        Ok(Duration::new(secs, nanos))
    }
}

/// Interval returned by [`interval`] and [`interval_at`].
///
/// This type allows you to wait on a sequence of instants with a certain
/// duration between each instant. Unlike calling [`sleep`] in a loop, this lets
/// you count the time spent between the calls to [`sleep`] as well.
#[derive(Debug, Any)]
#[rune(item = ::time)]
pub struct Interval {
    inner: tokio::time::Interval,
}

impl Interval {
    /// Completes when the next instant in the interval has been reached.
    ///
    /// # Cancel safety
    ///
    /// This method is cancellation safe. If `tick` is used as the branch in a `select` and
    /// another branch completes first, then no tick has been consumed.
    ///
    /// # Examples
    ///
    /// ```rune,no_run
    /// use time::Duration;
    ///
    /// let  interval = time::interval(Duration::from_millis(10));
    ///
    /// interval.tick().await;
    /// println!("approximately 0ms have elapsed. The first tick completes immediately.");
    /// interval.tick().await;
    /// interval.tick().await;
    ///
    /// println!("approximately 20ms have elapsed...");
    /// ```
    pub async fn tick(mut internal: Mut<Interval>) {
        internal.inner.tick().await;
    }

    /// Resets the interval to complete one period after the current time.
    ///
    /// This is equivalent to calling `reset_at(Instant::now() + period)`.
    ///
    /// # Examples
    ///
    /// ```rune,no_run
    /// use time::Duration;
    ///
    /// let interval = time::interval(Duration::from_millis(100));
    /// interval.tick().await;
    ///
    /// time::sleep(Duration::from_millis(50)).await;
    /// interval.reset();
    ///
    /// interval.tick().await;
    /// interval.tick().await;
    ///
    /// println!("approximately 250ms have elapsed...");
    /// ```
    #[rune::function(instance, keep)]
    fn reset(&mut self) {
        self.inner.reset();
    }

    /// Resets the interval immediately.
    ///
    /// This is equivalent to calling `reset_at(Instant::now())`.
    ///
    /// # Examples
    ///
    /// ```rune,no_run
    /// use time::Duration;
    ///
    /// let interval = time::interval(Duration::from_millis(100));
    /// interval.tick().await;
    ///
    /// time::sleep(Duration::from_millis(50)).await;
    /// interval.reset_immediately();
    ///
    /// interval.tick().await;
    /// interval.tick().await;
    ///
    /// println!("approximately 150ms have elapsed...");
    /// ```
    #[rune::function(instance, keep)]
    fn reset_immediately(&mut self) {
        self.inner.reset_immediately();
    }

    /// Resets the interval to complete one period after the current time.
    ///
    /// This is equivalent to calling `reset_at(Instant::now() + period)`.
    ///
    /// # Examples
    ///
    /// ```rune,no_run
    /// use time::Duration;
    ///
    /// let interval = time::interval(Duration::from_millis(100));
    /// interval.tick().await;
    ///
    /// time::sleep(Duration::from_millis(50)).await;
    /// interval.reset();
    ///
    /// interval.tick().await;
    /// interval.tick().await;
    ///
    /// println!("approximately 250ms have elapsed...");
    /// ```
    #[rune::function(instance, keep)]
    fn reset_after(&mut self, after: Duration) {
        self.inner.reset_after(after.inner);
    }

    /// Resets the interval to complete one period after the current time.
    ///
    /// This is equivalent to calling `reset_at(Instant::now() + period)`.
    ///
    /// # Examples
    ///
    /// ```rune,no_run
    /// use time::Duration;
    ///
    /// let interval = time::interval(Duration::from_millis(100));
    /// interval.tick().await;
    ///
    /// time::sleep(Duration::from_millis(50)).await;
    /// interval.reset();
    ///
    /// interval.tick().await;
    /// interval.tick().await;
    ///
    /// println!("approximately 250ms have elapsed...");
    /// ```
    #[rune::function(instance, keep)]
    fn reset_at(&mut self, deadline: Instant) {
        self.inner.reset_at(deadline.inner);
    }
}

/// A measurement of a monotonically nondecreasing clock.
/// Opaque and useful only with `Duration`.
///
/// Instants are always guaranteed to be no less than any previously measured
/// instant when created, and are often useful for tasks such as measuring
/// benchmarks or timing how long an operation takes.
///
/// Note, however, that instants are not guaranteed to be **steady**. In other
/// words, each tick of the underlying clock may not be the same length (e.g.
/// some seconds may be longer than others). An instant may jump forwards or
/// experience time dilation (slow down or speed up), but it will never go
/// backwards.
///
/// Instants are opaque types that can only be compared to one another. There is
/// no method to get "the number of seconds" from an instant. Instead, it only
/// allows measuring the duration between two instants (or comparing two
/// instants).
///
/// The size of an `Instant` struct may vary depending on the target operating
/// system.
#[derive(Debug, Any)]
#[rune(item = ::time)]
pub struct Instant {
    inner: tokio::time::Instant,
}

impl Instant {
    /// Returns an instant corresponding to `now`.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::{Duration, Instant};
    ///
    /// let instant = Instant::now();
    /// ```
    #[rune::function(keep, path = Self::now)]
    pub fn now() -> Instant {
        Instant {
            inner: tokio::time::Instant::now(),
        }
    }

    /// Returns the amount of time elapsed from another instant to this one, or
    /// zero duration if that instant is later than this one.
    ///
    /// # Examples
    ///
    /// ```rune,no_run
    /// use time::{Duration, Instant};
    ///
    /// let instant = Instant::now();
    ///
    /// let three_secs = Duration::from_secs(3);
    /// time::sleep(three_secs).await;
    ///
    /// let now = Instant::now();
    /// let duration_since = now.duration_since(instant);
    /// ```
    #[rune::function(instance, keep)]
    pub fn duration_since(&self, earlier: Instant) -> Duration {
        Duration {
            inner: tokio::time::Instant::duration_since(&self.inner, earlier.inner),
        }
    }

    /// Returns the amount of time elapsed since this instant was created, or
    /// zero duration if that this instant is in the future.
    ///
    /// # Examples
    ///
    /// ```rune,no_run
    /// use time::{Duration, Instant};
    ///
    /// let instant = Instant::now();
    ///
    /// let three_secs = Duration::from_secs(3);
    /// time::sleep(three_secs).await;
    ///
    /// let elapsed = instant.elapsed();
    /// ```
    #[rune::function(instance, keep)]
    pub fn elapsed(&self) -> Duration {
        Duration {
            inner: tokio::time::Instant::elapsed(&self.inner),
        }
    }

    /// Add a duration to this instant and return a new instant.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::{Duration, Instant};
    ///
    /// let first = Instant::now();
    /// let second = first + Duration::SECOND;
    ///
    /// assert!(first < second);
    /// ```
    #[rune::function(keep, instance, protocol = ADD)]
    #[inline]
    fn add(&self, rhs: &Duration) -> VmResult<Self> {
        let Some(inner) = self.inner.checked_add(rhs.inner) else {
            vm_panic!("overflow when adding duration to instant")
        };

        VmResult::Ok(Self { inner })
    }

    /// Add a duration to this instant and return a new instant.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use std::ops::partial_eq;
    /// use time::{Duration, Instant};
    ///
    /// let first = Instant::now();
    /// let second = first.clone();
    /// second += Duration::SECOND;
    ///
    /// assert!(first < second);
    /// ```
    #[rune::function(keep, instance, protocol = ADD_ASSIGN)]
    #[inline]
    fn add_assign(&mut self, rhs: &Duration) -> VmResult<()> {
        let Some(inner) = self.inner.checked_add(rhs.inner) else {
            vm_panic!("overflow when adding duration to instant")
        };

        self.inner = inner;
        VmResult::Ok(())
    }

    /// Test two instants for partial equality.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use std::ops::partial_eq;
    /// use time::{Duration, Instant};
    ///
    /// let first = Instant::now();
    /// let second = first + Duration::SECOND;
    ///
    /// assert_eq!(partial_eq(first, first), true);
    /// assert_eq!(partial_eq(first, second), false);
    /// assert_eq!(partial_eq(second, first), false);
    /// ```
    #[rune::function(keep, instance, protocol = PARTIAL_EQ)]
    #[inline]
    fn partial_eq(&self, rhs: &Self) -> bool {
        PartialEq::eq(&self.inner, &rhs.inner)
    }

    /// Test two instants for total equality.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use std::ops::eq;
    /// use time::{Duration, Instant};
    ///
    /// let first = Instant::now();
    /// let second = first + Duration::SECOND;
    ///
    /// assert_eq!(eq(first, first), true);
    /// assert_eq!(eq(first, second), false);
    /// assert_eq!(eq(second, first), false);
    /// ```
    #[rune::function(keep, instance, protocol = EQ)]
    #[inline]
    fn eq(&self, rhs: &Self) -> bool {
        PartialEq::eq(&self.inner, &rhs.inner)
    }

    /// Perform a partial ordered comparison between two instants.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::{Duration, Instant};
    ///
    /// let first = Instant::now();
    /// let second = first + Duration::SECOND;
    ///
    /// assert!(first < second);
    /// assert!(second > first);
    /// assert!(first == first);
    /// ```
    ///
    /// Using explicit functions:
    ///
    /// ```rune
    /// use std::cmp::Ordering;
    /// use std::ops::partial_cmp;
    ///
    /// use time::{Duration, Instant};
    ///
    /// let first = Instant::now();
    /// let second = first + Duration::SECOND;
    ///
    /// assert_eq!(partial_cmp(first, second), Some(Ordering::Less));
    /// assert_eq!(partial_cmp(second, first), Some(Ordering::Greater));
    /// assert_eq!(partial_cmp(first, first), Some(Ordering::Equal));
    /// ```
    #[rune::function(keep, instance, protocol = PARTIAL_CMP)]
    #[inline]
    fn partial_cmp(&self, rhs: &Self) -> Option<Ordering> {
        PartialOrd::partial_cmp(&self.inner, &rhs.inner)
    }

    /// Perform a totally ordered comparison between two instants.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use std::cmp::Ordering;
    /// use std::ops::cmp;
    /// use time::{Duration, Instant};
    ///
    /// let first = Instant::now();
    /// let second = first + Duration::SECOND;
    ///
    /// assert_eq!(cmp(first, second), Ordering::Less);
    /// assert_eq!(cmp(second, first), Ordering::Greater);
    /// assert_eq!(cmp(first, first), Ordering::Equal);
    /// ```
    #[rune::function(keep, instance, protocol = CMP)]
    #[inline]
    fn cmp(&self, rhs: &Self) -> Ordering {
        Ord::cmp(&self.inner, &rhs.inner)
    }

    /// Hash the instant.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use std::ops::hash;
    /// use time::{Duration, Instant};
    ///
    /// let now = Instant::now();
    ///
    /// assert_eq!(hash(now), hash(now));
    /// ```
    #[rune::function(keep, instance, protocol = HASH)]
    fn hash(&self, hasher: &mut Hasher) {
        self.inner.hash(hasher);
    }

    /// Write a debug representation of the instant.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::Instant;
    ///
    /// let now = Instant::now();
    ///
    /// println!("{now:?}");
    /// ```
    #[rune::function(keep, instance, protocol = DEBUG_FMT)]
    fn debug_fmt(&self, f: &mut Formatter) -> VmResult<()> {
        rune::vm_write!(f, "{:?}", self.inner)
    }

    /// Clone the current instant.
    ///
    /// # Examples
    ///
    /// ```rune
    /// use time::{Duration, Instant};
    ///
    /// let first = Instant::now();
    /// let second = first.clone();
    /// second += Duration::SECOND;
    ///
    /// assert!(first < second);
    /// ```
    #[rune::function(keep, instance, protocol = CLONE)]
    fn clone(&self) -> Self {
        Self { inner: self.inner }
    }
}