PoshCode Archive  Artifact [67917f5610]

Artifact 67917f56108543b1e7959b529c94d9ecf21693488be635107737275def45a655:

  • File HexDump-psm1.ps1 — part of check-in [e8f287e367] at 2018-06-10 13:44:50 on branch trunk — Basic streaming binary hex dump viewer in powershell. (user: Public Domain size: 2049)

# encoding: ascii
# api: powershell
# title: HexDump.psm1
# description: Basic streaming binary hex dump viewer in powershell.
# version: 0.1
# type: script
# author: Public Domain
# license: CC0
# function: Format-HexDump
# x-poshcode-id: 4700
# x-archived: 2013-12-16T12:35:57
# x-published: 2013-12-13T23:23:00
#
#
Set-StrictMode -Version latest

$script:hex = '0123456789ABCDEF'

function script:CopyStart($int, $buf) {
	$i = 7
	do {
		$buf[$i--] = $script:hex[$int -band 0xF]
	} while ($int = $int -shr 4)
}

function Format-HexDump {
#.Synopsis
#  Rudimentry hex dumper.
#.Example
#  . { 0..0xFF ; 'asdf' ; 0..0x10 } | Format-HexDump
	[CmdletBinding()]
	param(
		[Parameter(Position = 0)]
		[uint32]$Base = 0
,
		[Parameter(ValueFromPipeline)]
		$InputObject
,
		[switch]$Skip
	)
	begin {
		''
		' Address:   0  1  2  3  4  5  6  7- 8  9  A  B  C  D  E  F  ASCII'
		'--------:---------------------------------------------------================'
		$buf = New-Object char[] 76
		foreach ($i in 9..75) {
			$buf[$i] = [char]' '
		}
		$i = if ($Skip) { $Base % 16 } else { 0 }
		$offset = -$i
		CopyStart ($Base+$offset) $buf
		$buf[8] = [char]':'
		$buf[34] = [char]'-'
	}
	process {
		$bytes = if ($InputObject -isnot [string]) { $InputObject -as [byte[]] } else { $null }
		if ($null -eq $bytes) {
			$bytes = [Text.Encoding]::UTF8.GetBytes([string]$InputObject)
		}
		foreach ($b in $bytes) {
			$buf[$i*3 + 11] = $script:hex[$b -shr 4]
			$buf[$i*3 + 12] = $script:hex[$b -band 0xF]
			$buf[$i + 60] = if ((31 -lt $b) -and (127 -gt $b)) { [char]$b } else { [char]'.' }

			if (16 -eq ++$i) {
				New-Object string (,$buf)
				$offset += 16
				$i = 0
				CopyStart ($Base+$offset) $buf
			}
		}
	}
	end {
		if (0 -ne $i -or (($Base+$offset) -eq ($Base+$i))) {
			foreach ($b in $i..15) {
				$buf[$b*3 + 11] = [char]' '
				$buf[$b*3 + 12] = [char]' '
			}
			if (8 -ge $i) {
				$buf[34] = [char]' '
			}
			New-Object string $buf,0,(60+$i)
		}
		''
	}
}