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
//! Profiling infrastructure.
//!
//! Linux equivalent: `kernel/trace/ring_buffer.c`
//!
//! Provides trait-based profiling following the `Logger` pattern:
//! - Kernel defines the `Profiler` trait (mechanism)
//! - Drivers implement it with tracing ecosystem (policy)
//!
//! # Architecture
//!
//! ```text
//! ┌─────────────────────────────────────────────────────────────┐
//! │ Runner/Modules (use profile_scope! macro) │
//! └─────────────────────────┬───────────────────────────────────┘
//! │
//! v
//! ┌─────────────────────────────────────────────────────────────┐
//! │ Kernel (profiler.rs) Profiler trait, ProfileScope RAII │
//! └─────────────────────────┬───────────────────────────────────┘
//! │
//! v
//! ┌─────────────────────────────────────────────────────────────┐
//! │ Drivers (trace/) TracingProfiler -> tracing crate │
//! └─────────────────────────────────────────────────────────────┘
//! ```
//!
//! # Zero-Overhead Default
//!
//! When no profiler is set, `NopProfiler` is used. The `enabled()` check
//! allows early exit before any allocation or timing occurs.
//!
//! # Example
//!
//! ```ignore
//! use reovim_kernel::{profile_scope, profile_counter};
//!
//! fn process_key(key: KeyEvent) {
//! profile_scope!("process_key", "runner::input");
//!
//! // ... process the key ...
//! profile_counter!("keys_processed");
//! }
//! ```
use ;
use metrics;
// =============================================================================
// Span Identifier
// =============================================================================
/// Unique identifier for a profiling span.
///
/// Used to track hierarchical spans for flame graph generation.
/// Drivers use this to correlate `enter()` and `exit()` calls.
;
// =============================================================================
// Span Data
// =============================================================================
/// Metadata for a profiling span.
///
/// Contains all information needed for the driver to create a tracing span.
/// Uses `&'static str` for zero-allocation in hot paths.
/// Get current timestamp in nanoseconds (monotonic, process-relative).
// Nanosecond truncation acceptable for profiling
pub
// =============================================================================
// Profiler Trait
// =============================================================================
/// Profiler trait - kernel defines mechanism, drivers implement policy.
///
/// Following the `Logger` pattern: the kernel provides the trait interface,
/// and drivers (e.g., `shared/trace/`) implement it with the tracing
/// ecosystem.
///
/// # Thread Safety
///
/// Implementations must be `Send + Sync` as the profiler is accessed from
/// multiple threads concurrently. Implementations should minimize locking
/// to avoid blocking hot paths.
///
/// # Example
///
/// ```
/// use reovim_kernel::api::v1::*;
///
/// struct MyProfiler;
///
/// impl Profiler for MyProfiler {
/// fn enabled(&self, _target: &str) -> bool {
/// true // Always enabled
/// }
///
/// fn enter(&self, data: &SpanData) -> SpanId {
/// println!("Entering span: {}", data.name);
/// data.id
/// }
///
/// fn exit(&self, _id: SpanId, elapsed_ns: u64) {
/// println!("Exiting span, elapsed: {}ns", elapsed_ns);
/// }
///
/// fn counter(&self, name: &'static str, value: u64) {
/// println!("Counter {}: {}", name, value);
/// }
///
/// fn histogram(&self, name: &'static str, value_us: u64) {
/// println!("Histogram {}: {}us", name, value_us);
/// }
/// }
/// ```
// =============================================================================
// No-Op Profiler (Default)
// =============================================================================
/// No-op profiler used when no profiler is set.
///
/// All operations are no-ops. `enabled()` returns `false`, causing
/// `ProfileScope` to skip all work. This provides zero overhead when
/// profiling is disabled.
;
// =============================================================================
// Global Profiler
// =============================================================================
/// Error returned when attempting to set the profiler more than once.
;
/// Global profiler storage.
static PROFILER: = new;
/// Static no-op profiler instance.
static NOP_PROFILER: NopProfiler = NopProfiler;
/// Set the global profiler.
///
/// This function can only be called once. Subsequent calls will
/// return `Err(SetProfilerError)`.
///
/// # Errors
///
/// Returns `Err(SetProfilerError)` if a profiler has already been set.
///
/// # Example
///
/// ```
/// use reovim_kernel::api::v1::*;
///
/// static MY_PROFILER: NopProfiler = NopProfiler;
///
/// // First call succeeds (in practice, only call once during init)
/// // set_profiler(&MY_PROFILER).expect("profiler not yet set");
/// ```
/// Get the global profiler.
///
/// Returns the registered profiler, or `NopProfiler` if none was set.
// =============================================================================
// Profile Scope (RAII Guard)
// =============================================================================
/// RAII guard for profiling a scope.
///
/// Creates a span on construction and records timing on drop.
/// When profiling is disabled (`enabled()` returns false), this is a no-op.
///
/// # Example
///
/// ```ignore
/// use reovim_kernel::debug::ProfileScope;
///
/// fn expensive_operation() {
/// let _scope = ProfileScope::new("expensive_operation", "mymodule");
/// // ... do work ...
/// } // timing recorded when _scope drops
/// ```
// =============================================================================
// Legacy Profile Guard (Backward Compatibility)
// =============================================================================
/// RAII guard for timing a scope (legacy API).
///
/// Records the elapsed time to a histogram when dropped.
/// This is the original profiling mechanism that records directly to
/// the `MetricsRegistry`. For new code, prefer `ProfileScope` with
/// the `Profiler` trait.
///
/// # Example
///
/// ```ignore
/// use reovim_kernel::debug::ProfileGuard;
///
/// fn expensive_operation() {
/// let _guard = ProfileGuard::new("expensive_operation");
/// // ... do work ...
/// } // time recorded to histogram when guard drops
/// ```
// =============================================================================
// Profiling Macros
// =============================================================================
/// Profile a scope with the `Profiler` trait.
///
/// Zero overhead when profiling is disabled (checked at runtime).
///
/// # Example
///
/// ```ignore
/// use reovim_kernel::profile_scope;
///
/// fn process_buffer() {
/// profile_scope!("process_buffer", "mm");
/// // ... work ...
/// }
/// ```
/// Profile a function (uses module path as target).
///
/// # Example
///
/// ```ignore
/// use reovim_kernel::profile_fn;
///
/// fn my_function() {
/// profile_fn!("my_function");
/// // ... work ...
/// }
/// ```
/// Increment a counter metric via the global profiler.
///
/// # Example
///
/// ```ignore
/// use reovim_kernel::profile_counter;
///
/// fn handle_key() {
/// profile_counter!("keys_processed");
/// // or with explicit value:
/// profile_counter!("bytes_read", 1024);
/// }
/// ```
/// Record a histogram sample via the global profiler.
///
/// # Example
///
/// ```ignore
/// use reovim_kernel::profile_histogram;
///
/// fn measure_latency() {
/// let latency_us = 42;
/// profile_histogram!("request_latency", latency_us);
/// }
/// ```
/// Profile a scope and record to histogram (legacy macro).
///
/// Uses `ProfileGuard` which records directly to `MetricsRegistry`.
///
/// # Example
///
/// ```ignore
/// use reovim_kernel::profile;
///
/// fn process_buffer() {
/// profile!("buffer_processing");
/// // ... processing code ...
/// }
/// ```
// =============================================================================
// Tests
// =============================================================================