-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHostsCompletion.ps1
87 lines (71 loc) · 3.28 KB
/
HostsCompletion.ps1
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
# complete host names
function TabExpansion2 {
[CmdletBinding(DefaultParameterSetName = 'ScriptInputSet')]
Param(
[Parameter(ParameterSetName = 'ScriptInputSet', Mandatory = $true, Position = 0)]
[string] $inputScript,
[Parameter(ParameterSetName = 'ScriptInputSet', Mandatory = $true, Position = 1)]
[int] $cursorColumn,
[Parameter(ParameterSetName = 'AstInputSet', Mandatory = $true, Position = 0)]
[System.Management.Automation.Language.Ast] $ast,
[Parameter(ParameterSetName = 'AstInputSet', Mandatory = $true, Position = 1)]
[System.Management.Automation.Language.Token[]] $tokens,
[Parameter(ParameterSetName = 'AstInputSet', Mandatory = $true, Position = 2)]
[System.Management.Automation.Language.IScriptPosition] $positionOfCursor,
[Parameter(ParameterSetName = 'ScriptInputSet', Position = 2)]
[Parameter(ParameterSetName = 'AstInputSet', Position = 3)]
[HashTable] $options = $null
)
End
{
$result = $null
if ($psCmdlet.ParameterSetName -eq 'ScriptInputSet') {
$result = [Management.Automation.CommandCompletion]::CompleteInput(
<#inputScript#> $inputScript,
<#cursorColumn#> $cursorColumn,
<#options#> $options
)
} else {
$result = [Management.Automation.CommandCompletion]::CompleteInput(
<#ast#> $ast,
<#tokens#> $tokens,
<#positionOfCursor#> $positionOfCursor,
<#options#> $options
)
}
if ($psCmdlet.ParameterSetName -eq 'ScriptInputSet') {
$ast = [System.Management.Automation.Language.Parser]::ParseInput(
$inputScript, [ref] $tokens, [ref] $null
)
}
$text = $ast.Extent.Text;
$inputWords = $text.Split(' ');
$inputFirstWord = $inputWords[0];
$inputLastWord = $inputWords[$inputWords.Length - 1];
$hostsFile = [System.io.File]::Open('C:\Windows\System32\drivers\etc\hosts', 'Open', 'Read');
$hostsFileReader = New-Object System.IO.StreamReader($hostsFile);
while (($line = $hostsFileReader.ReadLine()) -ne $null) {
if ($line.StartsWith('#')) {
# do nothing
} else {
$items = $line.Split(' ');
$hostName = $items[1].Trim();
$completionItem = New-Object Management.Automation.CompletionResult $hostName, $hostName, "Text", $hostName;
if ($hostName.StartsWith($inputLastWord)) {
if ($inputFirstWord.StartsWith('ping') -or
$inputFirstWord.StartsWith('route') -or
$inputFirstWord.StartsWith('ssh') -or
$inputFirstWord.StartsWith('scp') -or
$inputFirstWord.StartsWith('ftp')) {
$result.CompletionMatches.Insert(0, $completionItem);
} else {
# $result.CompletionMatches.Add($completionItem);
}
}
}
}
$hostsFileReader.Close();
$hostsFile.Close();
return $result
}
}