PoshCode Archive  Artifact [d21d3756f7]

Artifact d21d3756f7e31c535f57567f64535a42cab24a2ad3930bafe8d16e6b71595dee:

  • File Show-CPU.ps1 — part of check-in [6b4049168e] at 2018-06-10 14:07:11 on branch trunk — I tweaked Greg Zakharov’s script to remove the flicker (don’t redraw the background between bars), and then optimized it to only draw what’s necessary… (user: greg zakharov size: 2857)

# encoding: ascii
# api: powershell
# title: Show-CPU
# description: I tweaked Greg Zakharov’s script to remove the flicker (don’t redraw the background between bars), and then optimized it to only draw what’s necessary…
# version: 0.1
# type: function
# author: greg zakharov
# license: CC0
# function: Show-CPU
# x-poshcode-id: 6059
# x-archived: 2016-09-09T00:47:06
# x-published: 2016-10-21T15:43:00
#
# But I also removed some options and renamed it, because that’s how I roll.
#
function Show-CPU {
  <#
    .EXAMPLE
        Show-CPU

        Monitors CPU and shows a green graph until you press a key.

    .EXAMPLE
        Show-CPU -Color Red

        Sets red color for graph
  #>
  param(
    # Set the color for the graph
    [Parameter(Position=1)]
    [ConsoleColor]$Color = 'Green',

    [ValidateRange(100,30000)]
    [int]$SampleFrequencyMs = 500
  )
  
  begin {
    $Label = "CPU Usage"
    $pc = New-Object Diagnostics.PerformanceCounter("Processor", "% Processor Time", "_Total")

    $raw = $host.UI.RawUI
    $old = $raw.WindowPosition
    $con = $raw.WindowSize
    $rec = New-Object Management.Automation.Host.Rectangle $old.X, $old.Y, `
                                        $raw.BufferSize.Width, ($old.Y + 25)
    $buf = $raw.GetBufferContents($rec)
    
    function hbar([int]$left, [int]$top, [int]$right, [ConsoleColor]$color) {
      $pos = $old
      $pos.X += $left
      $pos.Y += $top
      $row = $raw.NewBufferCellArray(@(' ' * ($right-$left)), $color, $color)
      $raw.SetBufferContents($pos, $row)
    }
    
    function msg([int]$left, [int]$top, [String]$text, [ConsoleColor]$foreground, [ConsoleColor]$background) {
      $pos = $old
      $pos.X += $left
      $pos.Y += $top
      $row = $raw.NewBufferCellArray(@($text), $foreground, $background)
      $raw.SetBufferContents($pos, $row)
    }

    # clear the key buffer
    sleep -m 250
    while ($Host.UI.RawUI.KeyAvailable) {
      $null = $Host.UI.RawUI.ReadKey()
    }

  }
  end {
    # clear a bar
    hbar 0 1 ($con.Width + 1) $Host.UI.RawUI.BackgroundColor
    # draw a label
    msg 0 1 $Label 'Gray' 'DarkYellow'
    # initialize
    $Width = ($con.Width + 1) - $Label.Length
    $Next = [Math]::Round($pc.NextValue() * 100 / $Width) + $Label.Length

    while (!$Host.UI.RawUI.KeyAvailable) {      
      $Prev = $Next
      $Next = [Math]::Round($pc.NextValue() * 100 / $Width) + $Label.Length
      if($Next -gt $Prev) {
        # bigger value, add to the bar
        hbar $Prev 1 $Next $Color
      } elseif($Prev -gt $Next) {
        # smaller value, clear the bar
        hbar $Next 1 $Prev "Black" # $Host.UI.RawUI.BackgroundColor
      }
      sleep -m $SampleFrequencyMs
    }

    $raw.SetBufferContents($old, $buf)
  }



}