Skip to content

Latest commit

 

History

History
70 lines (58 loc) · 1.58 KB

File metadata and controls

70 lines (58 loc) · 1.58 KB
pid 1095
author David Mohundro
title Out-ColorMatchInfo
date 2009-05-12 05:45:12 -0700
format posh
parent 0

Out-ColorMatchInfo

Formats and highlights matches in a MatchInfo object which is the result of a Select-String call.

<#
.Synopsis
	Highlights MatchInfo objects similar to the output from grep.
.Description
	Highlights MatchInfo objects similar to the output from grep.
#>
#requires -version 2
param ( 
	[Parameter(Mandatory=$true, ValueFromPipeline=$true)] 
	[Microsoft.PowerShell.Commands.MatchInfo] $match
)

begin {}
process { 
	function Get-RelativePath([string] $path) {
		$path = $path.Replace($pwd.Path, '')
		if ($path.StartsWith('\') -and (-not $path.StartsWith('\\'))) { 
			$path = $path.Substring(1) 
		}
		$path
	}

	function Write-PathAndLine($match) {
		Write-Host (Get-RelativePath $match.Path) -foregroundColor DarkMagenta -nonewline
		Write-Host ':' -foregroundColor Cyan -nonewline
		Write-Host $match.LineNumber -foregroundColor DarkYellow
	}

	function Write-HighlightedMatch($match) {
		$index = 0
		foreach ($m in $match.Matches) {
			Write-Host $match.Line.SubString($index, $m.Index - $index) -nonewline
			Write-Host $m.Value -ForegroundColor Red -nonewline
			$index = $m.Index + $m.Length
		}
		if ($index -lt $match.Line.Length) {
			Write-Host $match.Line.SubString($index) -nonewline
		}
		''
	}
	
	Write-PathAndLine $match

	$match.Context.DisplayPreContext

	Write-HighlightedMatch $match

	$match.Context.DisplayPostContext
	''
}
end {}