-
Notifications
You must be signed in to change notification settings - Fork 14
/
Get-FunctionFromScript.ps1
109 lines (106 loc) · 4.35 KB
/
Get-FunctionFromScript.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
function Get-FunctionFromScript {
<#
.Synopsis
Gets the functions declared within a script block or a file
.Description
Gets the functions exactly as they are written within a script or file
.Example
Get-FunctionFromScript {
function foo() {
"foo"
}
function bar() {
"bar"
}
}
.Link
http://powershellpipeworks.com/
#>
[CmdletBinding(DefaultParameterSetName='File')]
[OutputType([ScriptBlock], [PSObject])]
param(
# The script block containing functions
[Parameter(Mandatory=$true,
Position=0,
ParameterSetName="ScriptBlock",
ValueFromPipelineByPropertyName=$true)]
[ScriptBlock]
$ScriptBlock,
# A file containing functions
[Parameter(Mandatory=$true,
ParameterSetName="File",
ValueFromPipelineByPropertyName=$true)]
[Alias('FullName')]
[String]
$File,
# If set, outputs the command metadatas
[switch]
$OutputMetaData
)
process {
if ($psCmdlet.ParameterSetName -eq "File") {
#region Resolve the file, create a script block, and pass the data down
$realFile = Get-Item $File
if (-not $realFile) {
$realFile = Get-Item -LiteralPath $File -ErrorAction SilentlyContinue
if (-not $realFile) {
return
}
}
$text = [IO.File]::ReadAllText($realFile.Fullname)
$scriptBlock = [ScriptBlock]::Create($text)
if ($scriptBlock) {
$functionsInScript =
Get-FunctionFromScript -ScriptBlock $scriptBlock -OutputMetaData:$OutputMetaData
if ($OutputMetaData)
{
$functionsInScript |
Add-Member NoteProperty File $realFile.FullName -PassThru
}
}
#endregion Resolve the file, create a script block, and pass the data down
} elseif ($psCmdlet.ParameterSetName -eq "ScriptBlock") {
#region Extract out core functions from a Script Block
$text = $scriptBlock.ToString()
$tokens = [Management.Automation.PSParser]::Tokenize($scriptBlock, [ref]$null)
for ($i = 0; $i -lt $tokens.Count; $i++) {
if ($tokens[$i].Content -eq "function" -and
$tokens[$i].Type -eq "Keyword") {
$groupDepth = 0
$functionName = $tokens[$i + 1].Content
$ii = $i
$done = $false
while (-not $done) {
while ($tokens[$ii] -and $tokens[$ii].Type -ne 'GroupStart') { $ii++ }
$groupDepth++
while ($groupDepth -and $tokens[$ii]) {
$ii++
if ($tokens[$ii].Type -eq 'GroupStart') { $groupDepth++ }
if ($tokens[$ii].Type -eq 'GroupEnd') { $groupDepth-- }
}
if (-not $tokens[$ii]) { break }
if ($tokens[$ii].Content -eq "}") {
$done = $true
}
}
if (-not $tokens[$ii] -or
($tokens[$ii].Start + $tokens[$ii].Length) -ge $Text.Length) {
$chunk = $text.Substring($tokens[$i].Start)
} else {
$chunk = $text.Substring($tokens[$i].Start,
$tokens[$ii].Start + $tokens[$ii].Length - $tokens[$i].Start)
}
if ($OutputMetaData) {
New-Object PSObject -Property @{
Name = $functionName
Definition = [ScriptBlock]::Create($chunk)
}
} else {
[ScriptBlock]::Create($chunk)
}
}
}
#endregion Extract out core functions from a Script Block
}
}
}