powerliners 0.2.12

1:1 Rust port of powerline/powerline. The ultimate statusline/prompt utility
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
// vim:fileencoding=utf-8:noet
//! Port of `powerline/segments/common/sys.py`.
//!
//! System-stat segments: 1/5/15-min load average + CPU percent +
//! uptime. Load average uses `libc::getloadavg`; CPU percent stub
//! requires a Rust analog of psutil.

// from __future__ import (unicode_literals, division, absolute_import, print_function)  // py:2
// import os                                        // py:4
// from multiprocessing import cpu_count as _cpu_count                                     // py:6
// from powerline.lib.threaded import ThreadedSegment                                      // py:8
// from powerline.lib import add_divider_highlight_group                                   // py:9
// from powerline.segments import with_docstring                                           // py:10

use serde_json::{json, Value};
use std::sync::atomic::{AtomicUsize, Ordering};

/// Port of module-level binding `cpu_count` from
/// `powerline/segments/common/sys.py:13`.
///
/// Python: `cpu_count = None` — module-level cache populated on first
/// `system_load` call. Rust port uses an atomic to model the lazy fill
/// without a Mutex.
#[allow(non_upper_case_globals)]
pub static cpu_count: AtomicUsize = AtomicUsize::new(0);

/// Returns the CPU count, caching the result on first call.
fn _cpu_count() -> Option<usize> {
    std::thread::available_parallelism().ok().map(|n| n.get())
}

/// Returns the (1-min, 5-min, 15-min) load averages.
///
/// Uses `libc::getloadavg` on Unix; returns `None` on non-Unix or when
/// the syscall fails (e.g. sandboxed environments).
fn _getloadavg() -> Option<[f64; 3]> {
    #[cfg(unix)]
    {
        let mut buf = [0.0_f64; 3];
        // SAFETY: libc::getloadavg writes up to 3 doubles into buf.
        let n = unsafe { libc::getloadavg(buf.as_mut_ptr(), 3) };
        if n == 3 {
            Some(buf)
        } else {
            None
        }
    }
    #[cfg(not(unix))]
    {
        None
    }
}

/// Port of `system_load()` from `powerline/segments/common/sys.py:16`.
///
/// Return system load average. Highlights using `system_load_good`,
/// `system_load_bad` and `system_load_ugly` highlight groups, depending
/// on the thresholds passed.
///
/// :param format: format string, receives `avg` argument.
/// :param threshold_good: threshold for gradient level 0.
/// :param threshold_bad: threshold for gradient level 100.
/// :param track_cpu_count: continuously poll the system to detect
///     changes in CPU count.
/// :param short: if true only the 1-min average is returned.
pub fn system_load(
    _pl: &(),
    format: &str,
    threshold_good: f64,
    threshold_bad: f64,
    track_cpu_count: bool,
    short: bool,
) -> Option<Vec<Value>> {
    // py:16  def system_load(pl, format='{avg:.1f}', threshold_good=1, threshold_bad=2,
    // py:17  track_cpu_count=False, short=False):
    // py:18-45  docstring
    // py:46  global cpu_count
    // py:47  try:
    // py:48  cpu_num = cpu_count = _cpu_count() if cpu_count is None or track_cpu_count else cpu_count
    // py:49  except NotImplementedError:
    // py:50  pl.warn('Unable to get CPU count: method is not implemented')
    // py:51  return None
    let mut cpu_num = cpu_count.load(Ordering::Relaxed);
    if cpu_num == 0 || track_cpu_count {
        cpu_num = _cpu_count()?;
        cpu_count.store(cpu_num, Ordering::Relaxed);
    }
    let cpu_num = cpu_num as f64;

    // py:52  ret = []
    let mut ret: Vec<Value> = Vec::new();

    // py:53  for avg in os.getloadavg():
    let loads = _getloadavg()?;
    for avg in loads {
        // py:54  normalized = avg / cpu_num
        let normalized = avg / cpu_num;
        // py:55  if normalized < threshold_good:
        // py:56  gradient_level = 0
        // py:57  elif normalized < threshold_bad:
        // py:58  gradient_level = (normalized - threshold_good) * 100.0 / (threshold_bad - threshold_good)
        // py:59  else:
        // py:60  gradient_level = 100
        let gradient_level = if normalized < threshold_good {
            0.0
        } else if normalized < threshold_bad {
            (normalized - threshold_good) * 100.0 / (threshold_bad - threshold_good)
        } else {
            100.0
        };
        // py:61  ret.append({
        // py:62  'contents': format.format(avg=avg),
        // py:63  'highlight_groups': ['system_load_gradient', 'system_load'],
        // py:64  'divider_highlight_group': 'background:divider',
        // py:65  'gradient_level': gradient_level,
        // py:66  })
        let contents = render_load_format(format, avg);
        ret.push(json!({
            "contents": contents,
            "highlight_groups": ["system_load_gradient", "system_load"],
            "divider_highlight_group": "background:divider",
            "gradient_level": gradient_level,
        }));
        // py:68  if short:
        // py:69  return ret
        if short {
            return Some(ret);
        }
    }

    // py:71  ret[0]['contents'] += ' '
    // py:72  ret[1]['contents'] += ' '
    for r in ret.iter_mut().take(2) {
        if let Some(v) = r
            .get_mut("contents")
            .and_then(|v| v.as_str().map(String::from))
        {
            r.as_object_mut()
                .unwrap()
                .insert("contents".to_string(), Value::String(format!("{} ", v)));
        }
    }
    // py:73  return ret
    Some(ret)
}

/// Port of `CPULoadPercentSegment.render()` from
/// Port of `CPULoadPercentSegment.update()` from
/// `powerline/segments/common/sys.py:82-83` (psutil branch).
///
/// Python returns `psutil.cpu_percent(interval=None)` — the
/// instantaneous CPU percent since the previous call. Rust port
/// can't reach psutil; takes the already-measured value and
/// returns it (parity surface for the ThreadedSegment update
/// dispatch).
pub fn update(measured_cpu_percent: f64) -> f64 {
    // py:82  def update(self, old_cpu):
    // py:83  return psutil.cpu_percent(interval=None)
    measured_cpu_percent
}

/// Port of `CPULoadPercentSegment.run()` from
/// `powerline/segments/common/sys.py:85-90` (psutil branch).
///
/// Python loops `psutil.cpu_percent(interval=self.interval)`
/// updating self.update_value until shutdown_event fires. Rust
/// port takes the measurement closure + shutdown probe so callers
/// route through their own sampler.
pub fn run<M, S>(mut measure: M, is_shutdown: S)
where
    M: FnMut() -> Result<f64, String>,
    S: Fn() -> bool,
{
    // py:85  def run(self):
    // py:86  while not self.shutdown_event.is_set():
    while !is_shutdown() {
        // py:87  try: self.update_value = psutil.cpu_percent(interval=self.interval)
        // py:88-90  except Exception as e: self.exception('...')
        let _ = measure();
    }
}

/// Port of `CPULoadPercentSegment.startup()` from
/// `powerline/segments/common/sys.py:103-104` (no-psutil branch).
///
/// Python `@staticmethod def startup(**kwargs): pass` —
/// documented no-op. Rust port keeps the same shape.
pub fn startup() {
    // py:103  @staticmethod
    // py:104  def startup(**kwargs): pass
}

/// Port of `CPULoadPercentSegment.start()` from
/// `powerline/segments/common/sys.py:107-108` (no-psutil branch).
pub fn start() {
    // py:107  @staticmethod
    // py:108  def start(): pass
}

/// Port of `CPULoadPercentSegment.shutdown()` from
/// `powerline/segments/common/sys.py:111-112` (no-psutil branch).
pub fn shutdown() {
    // py:111  @staticmethod
    // py:112  def shutdown(): pass
}

/// `powerline/segments/common/sys.py:92`.
///
/// Public alias `render` rather than `cpu_load_percent_render` to match
/// the Python method name (the only call-site is `class
/// CPULoadPercentSegment.render` per py:92).
pub fn render(cpu_percent: f64, format: &str) -> Vec<Value> {
    // py:79  class CPULoadPercentSegment(ThreadedSegment):
    // py:80  interval = 1
    // py:82  def update(self, old_cpu):
    // py:83  return psutil.cpu_percent(interval=None)
    // py:85  def run(self):
    // py:86  while not self.shutdown_event.is_set():
    // py:87  try:
    // py:88  self.update_value = psutil.cpu_percent(interval=self.interval)
    // py:89  except Exception as e:
    // py:90  self.exception('Exception while calculating cpu_percent: {0}', str(e))
    // py:92  def render(self, cpu_percent, format='{0:.0f}%', **kwargs):
    // py:93  return [{
    // py:94  'contents': format.format(cpu_percent),
    // py:95  'gradient_level': cpu_percent,
    // py:96  'highlight_groups': ['cpu_load_percent_gradient', 'cpu_load_percent'],
    // py:97  }]
    // Inline `{0[:[width].[prec]f]}` substitution to mirror
    // `format.format(cpu_percent)`. Supports the upstream defaults
    // (`{0:.0f}%`) and the user-config variants (`{0:2.0f}%`).
    let mut contents = String::new();
    let mut chars = format.chars().peekable();
    while let Some(c) = chars.next() {
        if c == '{' && chars.peek() == Some(&'0') {
            chars.next(); // consume '0'
            let mut width: Option<usize> = None;
            let mut prec: Option<usize> = None;
            let mut is_float = false;
            if chars.peek() == Some(&':') {
                chars.next();
                // parse [width][.precision][f]
                let mut width_buf = String::new();
                while let Some(&p) = chars.peek() {
                    if p.is_ascii_digit() {
                        width_buf.push(p);
                        chars.next();
                    } else {
                        break;
                    }
                }
                if !width_buf.is_empty() {
                    width = width_buf.parse().ok();
                }
                if chars.peek() == Some(&'.') {
                    chars.next();
                    let mut prec_buf = String::new();
                    while let Some(&p) = chars.peek() {
                        if p.is_ascii_digit() {
                            prec_buf.push(p);
                            chars.next();
                        } else {
                            break;
                        }
                    }
                    prec = prec_buf.parse().ok();
                }
                if chars.peek() == Some(&'f') {
                    chars.next();
                    is_float = true;
                }
            }
            // consume closing '}'
            if chars.peek() == Some(&'}') {
                chars.next();
            }
            let rendered = match (width, prec, is_float) {
                (Some(w), Some(p), true) => format!("{:>1$.2$}", cpu_percent, w, p),
                (None, Some(p), true) => format!("{:.1$}", cpu_percent, p),
                (Some(w), None, _) => format!("{:>1$}", cpu_percent, w),
                (None, None, false) => format!("{}", cpu_percent),
                (None, None, true) => format!("{}", cpu_percent),
                (Some(w), Some(p), false) => format!("{:>1$.2$}", cpu_percent, w, p),
                _ => format!("{}", cpu_percent),
            };
            contents.push_str(&rendered);
        } else {
            contents.push(c);
        }
    }
    vec![json!({
        "contents": contents,
        "gradient_level": cpu_percent,
        "highlight_groups": ["cpu_load_percent_gradient", "cpu_load_percent"],
    })]
}

/// Port of `_get_uptime()` from `powerline/segments/common/sys.py:133-147`.
pub fn _get_uptime() -> Option<u64> {
    // py:132  if os.path.exists('/proc/uptime'):
    // py:133  def _get_uptime():
    // py:134  with open('/proc/uptime', 'r') as f:
    // py:135  return int(float(f.readline().split()[0]))
    // py:136  elif 'psutil' in globals():
    // py:137  from time import time
    // py:139  if hasattr(psutil, 'boot_time'):
    // py:140  def _get_uptime():
    // py:141  return int(time() - psutil.boot_time())
    // py:142  else:
    // py:143  def _get_uptime():
    // py:144  return int(time() - psutil.BOOT_TIME)
    // py:145  else:
    // py:146  def _get_uptime():
    // py:147  raise NotImplementedError
    // py:132-135  Linux /proc/uptime path
    if let Ok(content) = std::fs::read_to_string("/proc/uptime") {
        if let Some(first) = content.split_whitespace().next() {
            if let Ok(uptime) = first.parse::<f64>() {
                return Some(uptime as u64);
            }
        }
    }
    // py:136-144  psutil.boot_time() equivalent — sysctl kern.boottime
    // on darwin/BSD. The Rust port reads it via libc::sysctlbyname when
    // /proc/uptime is unavailable (mirrors the psutil fallback chain).
    #[cfg(any(
        target_os = "macos",
        target_os = "freebsd",
        target_os = "netbsd",
        target_os = "openbsd"
    ))]
    {
        if let Ok(name) = std::ffi::CString::new("kern.boottime") {
            let mut tv: [libc::time_t; 2] = [0, 0];
            let mut size = std::mem::size_of::<[libc::time_t; 2]>();
            // SAFETY: sysctlbyname writes into &mut tv with size bound;
            // struct timeval layout = (time_t sec, suseconds_t usec); on
            // 64-bit darwin both fields are 8 bytes so the [time_t; 2]
            // array overlays correctly for the sec field.
            let rc = unsafe {
                libc::sysctlbyname(
                    name.as_ptr(),
                    tv.as_mut_ptr() as *mut libc::c_void,
                    &mut size,
                    std::ptr::null_mut(),
                    0,
                )
            };
            if rc == 0 && tv[0] > 0 {
                // SAFETY: time(NULL) is async-signal-safe.
                let now = unsafe { libc::time(std::ptr::null_mut()) };
                if now > tv[0] {
                    return Some((now - tv[0]) as u64);
                }
            }
        }
    }
    None
}

/// Port of `uptime()` from `powerline/segments/common/sys.py:151`.
pub fn uptime(
    _pl: &(),
    days_format: &str,
    hours_format: &str,
    minutes_format: &str,
    seconds_format: &str,
    shorten_len: usize,
) -> Option<String> {
    // py:150  @add_divider_highlight_group('background:divider')
    // py:151  def uptime(pl, days_format='{days:d}d', hours_format=' {hours:d}h', minutes_format=' {minutes:02d}m',
    // py:152  seconds_format=' {seconds:02d}s', shorten_len=3):
    // py:153-167  docstring
    // py:168  try:
    // py:169  seconds = _get_uptime()
    // py:170  except NotImplementedError:
    // py:171  pl.warn('Unable to get uptime. You should install psutil module')
    // py:172  return None
    let total_seconds = _get_uptime()?;
    // py:173  minutes, seconds = divmod(seconds, 60)
    let minutes = total_seconds / 60;
    let seconds = total_seconds % 60;
    // py:174  hours, minutes = divmod(minutes, 60)
    let hours = minutes / 60;
    let minutes = minutes % 60;
    // py:175  days, hours = divmod(hours, 24)
    let days = hours / 24;
    let hours = hours % 24;
    // py:176  time_formatted = list(filter(None, [
    // py:177  days_format.format(days=days) if days_format else None,
    // py:178  hours_format.format(hours=hours) if hours_format else None,
    // py:179  minutes_format.format(minutes=minutes) if minutes_format else None,
    // py:180  seconds_format.format(seconds=seconds) if seconds_format else None,
    // py:181  ]))
    let parts: Vec<(u64, &str)> = vec![
        (days, days_format),
        (hours, hours_format),
        (minutes, minutes_format),
        (seconds, seconds_format),
    ];
    // py:182  first_non_zero = next((i for i, x in enumerate([days, hours, minutes, seconds]) if x != 0))
    let first_non_zero = parts.iter().position(|(v, _)| *v != 0)?;
    // py:183  time_formatted = time_formatted[first_non_zero:first_non_zero + shorten_len]
    let end = (first_non_zero + shorten_len).min(parts.len());
    // py:184  return ''.join(time_formatted).strip()
    let formatted: String = parts[first_non_zero..end]
        .iter()
        .map(|(v, fmt)| {
            // Inline Python format substitution: handles {name},
            // {name:d}, {name:0Nd} for any name. Mirrors
            // `fmt.format(days=days)` etc. at py:177-180.
            let mut out = String::with_capacity(fmt.len());
            let mut chars = fmt.chars().peekable();
            while let Some(c) = chars.next() {
                if c != '{' {
                    out.push(c);
                    continue;
                }
                let mut name = String::new();
                while let Some(&p) = chars.peek() {
                    if p == '}' || p == ':' {
                        break;
                    }
                    name.push(p);
                    chars.next();
                }
                let mut spec = String::new();
                if chars.peek() == Some(&':') {
                    chars.next();
                    while let Some(&p) = chars.peek() {
                        if p == '}' {
                            break;
                        }
                        spec.push(p);
                        chars.next();
                    }
                }
                if chars.peek() == Some(&'}') {
                    chars.next();
                }
                // Always substitute with the current `v` regardless of
                // name — every fmt only references one of d/h/m/s.
                let render = if spec == "d" || spec.is_empty() {
                    v.to_string()
                } else if let Some(zero_pad) =
                    spec.strip_prefix('0').and_then(|s| s.strip_suffix('d'))
                {
                    let width: usize = zero_pad.parse().unwrap_or(0);
                    format!("{:0width$}", v, width = width)
                } else {
                    v.to_string()
                };
                let _ = name;
                out.push_str(&render);
            }
            out
        })
        .collect();
    Some(formatted.trim().to_string())
}

/// Helper: render the Python format string `{avg:.Nf}` against a load
/// value.
///
/// Supports only the `{avg:.Nf}` shape upstream uses by default
/// (`{avg:.1f}` etc.); other format spec types fall through to a
/// simple `{}` rendering.
fn render_load_format(format: &str, avg: f64) -> String {
    if let Some(rest) = format.strip_prefix("{avg:.") {
        if let Some(idx) = rest.find("f}") {
            if let Ok(n) = rest[..idx].parse::<usize>() {
                return format!("{:.*}", n, avg);
            }
        }
    }
    format.replace("{avg}", &format!("{}", avg))
}

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

    #[test]
    fn render_load_format_one_decimal() {
        assert_eq!(render_load_format("{avg:.1f}", 1.234), "1.2");
    }

    #[test]
    fn render_load_format_two_decimal() {
        assert_eq!(render_load_format("{avg:.2f}", 1.2345), "1.23");
    }

    #[test]
    fn render_load_format_zero_decimal() {
        assert_eq!(render_load_format("{avg:.0f}", 3.7), "4");
    }

    #[test]
    fn render_load_format_plain_avg() {
        assert!(render_load_format("{avg}", 1.5).starts_with("1.5"));
    }

    #[test]
    fn cpu_count_helper_returns_at_least_one() {
        let n = _cpu_count().unwrap();
        assert!(n >= 1);
    }

    /// On Unix, getloadavg should return three non-negative numbers.
    #[cfg(unix)]
    #[test]
    fn getloadavg_returns_three_values_on_unix() {
        let loads = _getloadavg().unwrap();
        for v in loads {
            assert!(v >= 0.0);
        }
    }

    /// system_load returns a Vec of length 3 (or 1 in short mode) on
    /// any platform with getloadavg.
    #[test]
    fn system_load_short_returns_one_entry() {
        if let Some(result) = system_load(&(), "{avg:.1f}", 1.0, 2.0, false, true) {
            assert_eq!(result.len(), 1);
        }
    }

    #[test]
    fn system_load_full_returns_three_entries_or_none() {
        // None when not on Unix or when getloadavg fails.
        if let Some(result) = system_load(&(), "{avg:.1f}", 1.0, 2.0, false, false) {
            assert_eq!(result.len(), 3);
            // First two should end with trailing space (py:71-72)
            assert!(result[0]["contents"].as_str().unwrap().ends_with(' '));
            assert!(result[1]["contents"].as_str().unwrap().ends_with(' '));
        }
    }

    #[test]
    fn system_load_gradient_level_thresholds() {
        // With thresholds (-1.0, 0.0): any non-negative load lands above
        // both bounds → gradient_level should be 100.
        if let Some(result) = system_load(&(), "{avg:.1f}", -1.0, 0.0, false, true) {
            assert_eq!(result[0]["gradient_level"], 100.0);
        }
        // With thresholds (1e9, 2e9): any sane load is below threshold_good →
        // gradient_level should be 0.
        if let Some(result) = system_load(&(), "{avg:.1f}", 1e9, 2e9, false, true) {
            assert_eq!(result[0]["gradient_level"], 0.0);
        }
    }

    #[test]
    fn update_returns_supplied_cpu_percent() {
        // py:82-83  psutil branch — returns measured value
        assert_eq!(update(42.5), 42.5);
        assert_eq!(update(0.0), 0.0);
        assert_eq!(update(100.0), 100.0);
    }

    #[test]
    fn run_terminates_when_shutdown_returns_true() {
        // py:85-90  loop exits when shutdown_event.is_set()
        let count = std::sync::Arc::new(std::sync::Mutex::new(0u32));
        let count_c = count.clone();
        let shutdown_after_n = std::sync::Arc::new(std::sync::Mutex::new(3u32));
        let shutdown_clone = shutdown_after_n.clone();
        run(
            move || {
                *count_c.lock().unwrap() += 1;
                Ok(50.0)
            },
            move || {
                let mut n = shutdown_clone.lock().unwrap();
                if *n == 0 {
                    true
                } else {
                    *n -= 1;
                    false
                }
            },
        );
        assert_eq!(*count.lock().unwrap(), 3);
    }

    #[test]
    fn startup_start_shutdown_are_documented_no_ops() {
        // py:103-112  no-psutil branch — all no-ops
        startup();
        start();
        shutdown();
    }
}