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
// Copyright 2025 LunaOS Contributors
// SPDX-License-Identifier: Apache-2.0
//! # Unified Time Provider
//!
//! Provides consistent timestamp APIs across LCPFS modules.
//!
//! ## Overview
//!
//! This module centralizes time operations to avoid duplicate implementations
//! scattered across the codebase. It provides:
//!
//! - Unix timestamps for metadata (created, modified times)
//! - Monotonic counters for ordering and performance measurement
//! - Hardware timestamp access via architecture-specific code
//!
//! ## Usage
//!
//! ```rust,ignore
//! use lcpfs::time;
//!
//! // Get current Unix timestamp (seconds since epoch)
//! let now = time::now();
//!
//! // Get monotonic counter (for ordering, not wall-clock time)
//! let tick = time::monotonic();
//!
//! // Get high-resolution timestamp (CPU cycles or similar)
//! let tsc = time::high_resolution();
//! ```
//!
//! ## Kernel vs Userspace
//!
//! When running in kernel mode (LunaOS), timestamps come from the kernel's
//! time subsystem. In userspace testing, we use placeholder implementations
//! or system calls.
use ;
// ═══════════════════════════════════════════════════════════════════════════════
// GLOBAL STATE
// ═══════════════════════════════════════════════════════════════════════════════
/// Epoch offset for converting monotonic to Unix time.
///
/// Set once at initialization from kernel or system time.
static EPOCH_OFFSET: AtomicU64 = new;
/// Monotonic counter for unique ordering.
///
/// Guarantees strictly increasing values even if called in tight loops.
static MONOTONIC_COUNTER: AtomicU64 = new;
/// Last returned timestamp for deduplication.
static LAST_TIMESTAMP: AtomicU64 = new;
// ═══════════════════════════════════════════════════════════════════════════════
// PUBLIC API
// ═══════════════════════════════════════════════════════════════════════════════
/// Get current Unix timestamp in seconds since epoch (1970-01-01 00:00:00 UTC).
///
/// This is the primary timestamp for file metadata (created, modified times).
///
/// # Returns
///
/// Seconds since Unix epoch. In kernel mode, this is accurate wall-clock time.
/// In testing/userspace without a clock, returns monotonic counter.
///
/// # Example
///
/// ```rust,ignore
/// let created_at = time::now();
/// file.set_created(created_at);
/// ```
/// Get current Unix timestamp in nanoseconds since epoch.
///
/// Higher precision version of [`now()`] for sub-second accuracy.
///
/// # Returns
///
/// Nanoseconds since Unix epoch.
/// Get monotonic counter value.
///
/// Returns a strictly increasing value suitable for:
/// - Transaction ordering
/// - Event sequencing
/// - Performance measurement
///
/// **Note**: This is NOT wall-clock time. Values may not correlate with
/// real time and should only be used for ordering/comparison.
///
/// # Guarantees
///
/// - Strictly increasing (never returns same value twice)
/// - Thread-safe
/// - Survives system time changes
///
/// # Example
///
/// ```rust,ignore
/// let start = time::monotonic();
/// // ... do work ...
/// let end = time::monotonic();
/// assert!(end > start);
/// ```
/// Get raw monotonic counter without incrementing.
///
/// Useful when you need the current position without consuming a value.
/// Get high-resolution timestamp from hardware.
///
/// Returns CPU timestamp counter (TSC on x86_64) or similar hardware counter.
/// This is the highest resolution timing available, typically sub-nanosecond.
///
/// **Warning**: This value is:
/// - Not synchronized across CPUs (may vary per-core)
/// - Not calibrated to wall-clock time
/// - Platform-dependent resolution
///
/// Use only for fine-grained timing and entropy mixing.
///
/// # Example
///
/// ```rust,ignore
/// let t0 = time::high_resolution();
/// // ... fast operation ...
/// let t1 = time::high_resolution();
/// let cycles = t1 - t0;
/// ```
/// Initialize time subsystem with calibration.
///
/// Should be called once at filesystem mount with the current Unix time.
/// This calibrates the monotonic counter to wall-clock time.
///
/// # Arguments
///
/// * `unix_time` - Current Unix timestamp in seconds
///
/// # Example
///
/// ```rust,ignore
/// // At mount time, get time from kernel
/// let kernel_time = kernel::get_time_seconds();
/// time::init(kernel_time);
/// ```
/// Check if time subsystem is initialized.
///
/// Returns true if [`init()`] has been called with a valid timestamp.
/// Get unique timestamp (never duplicates).
///
/// Similar to [`now()`] but guarantees uniqueness even when called
/// multiple times per second. Uses the monotonic counter as tiebreaker.
///
/// Useful for generating unique IDs with embedded timestamps.
///
/// # Returns
///
/// Tuple of (seconds, counter) that together form a unique value.
/// Ensure timestamps are monotonically increasing.
///
/// Returns the given timestamp if it's greater than the last returned value,
/// otherwise returns last + 1 to maintain ordering.
///
/// Useful for imported data that may have out-of-order timestamps.
// ═══════════════════════════════════════════════════════════════════════════════
// DURATION HELPERS
// ═══════════════════════════════════════════════════════════════════════════════
/// Seconds per minute.
pub const SECS_PER_MIN: u64 = 60;
/// Seconds per hour.
pub const SECS_PER_HOUR: u64 = 60 * SECS_PER_MIN;
/// Seconds per day.
pub const SECS_PER_DAY: u64 = 24 * SECS_PER_HOUR;
/// Seconds per week.
pub const SECS_PER_WEEK: u64 = 7 * SECS_PER_DAY;
/// Convert days to seconds.
pub const
/// Convert hours to seconds.
pub const
/// Convert minutes to seconds.
pub const