forked from psake/psake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
psake.psm1
647 lines (555 loc) · 22.9 KB
/
psake.psm1
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
# psake
# Copyright (c) 2010 James Kovacs
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#Requires -Version 2.0
#Ensure that only one instance of the psake module is loaded
remove-module psake -erroraction silentlycontinue
#-- Public Module Functions --#
# .ExternalHelp psake.psm1-help.xml
function Invoke-Task
{
[CmdletBinding()]
param(
[Parameter(Position=0,Mandatory=1)] [string]$taskName
)
Assert $taskName ($msgs.error_invalid_task_name)
$taskKey = $taskName.ToLower()
$currentContext = $psake.context.Peek()
$tasks = $currentContext.tasks
$executedTasks = $currentContext.executedTasks
$callStack = $currentContext.callStack
Assert ($tasks.Contains($taskKey)) ($msgs.error_task_name_does_not_exist -f $taskName)
if ($executedTasks.Contains($taskKey)) { return }
Assert (!$callStack.Contains($taskKey)) ($msgs.error_circular_reference -f $taskName)
$callStack.Push($taskKey)
$task = $tasks.$taskKey
$precondition_is_valid = & $task.Precondition
if (!$precondition_is_valid) {
$msgs.precondition_was_false -f $taskName
} else {
if ($taskKey -ne 'default') {
$stopwatch = [System.Diagnostics.Stopwatch]::StartNew()
if ($task.PreAction -or $task.PostAction) {
Assert ($task.Action -ne $null) $msgs.error_missing_action_parameter
}
if ($task.Action) {
try {
foreach($childTask in $task.DependsOn) {
Invoke-Task $childTask
}
$currentContext.currentTaskName = $taskName
& $currentContext.taskSetupScriptBlock
if ($task.PreAction) {
& $task.PreAction
}
if ($currentContext.formatTaskName -is [ScriptBlock]) {
& $currentContext.formatTaskName $taskName
} else {
$currentContext.formatTaskName -f $taskName
}
& $task.Action
if ($task.PostAction) {
& $task.PostAction
}
& $currentContext.taskTearDownScriptBlock
} catch {
if ($task.ContinueOnError) {
"-"*70
$msgs.continue_on_error -f $taskName,$_
"-"*70
} else {
throw $_
}
}
} else {
#no Action was specified but we still execute all the dependencies
foreach($childTask in $task.DependsOn) {
Invoke-Task $childTask
}
}
$stopwatch.stop()
$task.Duration = $stopwatch.Elapsed
} else {
foreach($childTask in $task.DependsOn) {
Invoke-Task $childTask
}
}
Assert (& $task.Postcondition) ($msgs.postcondition_failed -f $taskName)
}
$poppedTaskKey = $callStack.Pop()
Assert ($poppedTaskKey -eq $taskKey) ($msgs.error_corrupt_callstack -f $taskKey,$poppedTaskKey)
$executedTasks.Push($taskKey)
}
# .ExternalHelp psake.psm1-help.xml
function Exec
{
[CmdletBinding()]
param(
[Parameter(Position=0,Mandatory=1)][scriptblock]$cmd,
[Parameter(Position=1,Mandatory=0)][string]$errorMessage = ($msgs.error_bad_command -f $cmd)
)
& $cmd
if ($lastexitcode -ne 0) {
throw ("Exec: " + $errorMessage)
}
}
# .ExternalHelp psake.psm1-help.xml
function Assert
{
[CmdletBinding()]
param(
[Parameter(Position=0,Mandatory=1)]$conditionToCheck,
[Parameter(Position=1,Mandatory=1)]$failureMessage
)
if (!$conditionToCheck) {
throw ("Assert: " + $failureMessage)
}
}
# .ExternalHelp psake.psm1-help.xml
function Task
{
[CmdletBinding()]
param(
[Parameter(Position=0,Mandatory=1)] [string]$name = $null,
[Parameter(Position=1,Mandatory=0)] [scriptblock]$action = $null,
[Parameter(Position=2,Mandatory=0)] [scriptblock]$preaction = $null,
[Parameter(Position=3,Mandatory=0)] [scriptblock]$postaction = $null,
[Parameter(Position=4,Mandatory=0)] [scriptblock]$precondition = {$true},
[Parameter(Position=5,Mandatory=0)] [scriptblock]$postcondition = {$true},
[Parameter(Position=6,Mandatory=0)] [switch]$continueOnError = $false,
[Parameter(Position=7,Mandatory=0)] [string[]]$depends = @(),
[Parameter(Position=8,Mandatory=0)] [string]$description = $null
)
if ($name -eq 'default') {
Assert (!$action) ($msgs.error_default_task_cannot_have_action)
}
$newTask = @{
Name = $name
DependsOn = $depends
PreAction = $preaction
Action = $action
PostAction = $postaction
Precondition = $precondition
Postcondition = $postcondition
ContinueOnError = $continueOnError
Description = $description
Duration = 0
}
$taskKey = $name.ToLower()
$currentContext = $psake.context.Peek()
Assert (!$currentContext.tasks.ContainsKey($taskKey)) ($msgs.error_duplicate_task_name -f $name)
$currentContext.tasks.$taskKey = $newTask
}
# .ExternalHelp psake.psm1-help.xml
function Properties {
[CmdletBinding()]
param(
[Parameter(Position=0,Mandatory=1)][scriptblock]$properties
)
$psake.context.Peek().properties += $properties
}
# .ExternalHelp psake.psm1-help.xml
function Include {
[CmdletBinding()]
param(
[Parameter(Position=0,Mandatory=1)][string]$fileNamePathToInclude
)
Assert (test-path $fileNamePathToInclude) ($msgs.error_invalid_include_path -f $fileNamePathToInclude)
$psake.context.Peek().includes.Enqueue((Resolve-Path $fileNamePathToInclude));
}
# .ExternalHelp psake.psm1-help.xml
function FormatTaskName {
[CmdletBinding()]
param(
[Parameter(Position=0,Mandatory=1)]$format
)
$psake.context.Peek().formatTaskName = $format
}
# .ExternalHelp psake.psm1-help.xml
function TaskSetup {
[CmdletBinding()]
param(
[Parameter(Position=0,Mandatory=1)][scriptblock]$setup
)
$psake.context.Peek().taskSetupScriptBlock = $setup
}
# .ExternalHelp psake.psm1-help.xml
function TaskTearDown {
[CmdletBinding()]
param(
[Parameter(Position=0,Mandatory=1)][scriptblock]$teardown
)
$psake.context.Peek().taskTearDownScriptBlock = $teardown
}
# .ExternalHelp psake.psm1-help.xml
function Invoke-psake {
[CmdletBinding()]
param(
[Parameter(Position = 0, Mandatory = 0)][string] $buildFile = $psake.config.defaultBuildFileName,
[Parameter(Position = 1, Mandatory = 0)][string[]] $taskList = @(),
[Parameter(Position = 2, Mandatory = 0)][string] $framework = '3.5',
[Parameter(Position = 3, Mandatory = 0)][switch] $docs = $false,
[Parameter(Position = 4, Mandatory = 0)][hashtable] $parameters = @{},
[Parameter(Position = 5, Mandatory = 0)][hashtable] $properties = @{}
)
try {
"psake version {0}`nCopyright (c) 2010 James Kovacs`n" -f $psake.version
$psake.build_success = $false
$psake.framework_version = $framework
$psake.context.push(@{
"formatTaskName" = $psake.config.taskNameFormat;
"taskSetupScriptBlock" = {};
"taskTearDownScriptBlock" = {};
"executedTasks" = new-object System.Collections.Stack;
"callStack" = new-object System.Collections.Stack;
"originalEnvPath" = $env:path;
"originalDirectory" = get-location;
"originalErrorActionPreference" = $global:ErrorActionPreference;
"tasks" = @{};
"properties" = @();
"includes" = new-object System.Collections.Queue;
})
$currentContext = $psake.context.Peek()
<#
If the default.ps1 file exists and the given "buildfile" isn 't found assume that the given
$buildFile is actually the target Tasks to execute in the default.ps1 script.
#>
if ((test-path $psake.config.defaultBuildFileName ) -and !(test-path $buildFile)) {
$taskList = $buildFile.Split(', ')
$buildFile = $psake.config.defaultBuildFileName
}
# Execute the build file to set up the tasks and defaults
Assert (test-path $buildFile) ($msgs.error_build_file_not_found -f $buildFile)
$psake.build_script_file = get-item $buildFile
$psake.build_script_dir = $psake.build_script_file.DirectoryName
Load-Configuration $psake.build_script_dir
Load-Modules
$stopwatch = [System.Diagnostics.Stopwatch]::StartNew()
set-location $psake.build_script_dir
. $psake.build_script_file.FullName
if ($docs) {
Write-Documentation
Cleanup-Environment
return
}
Configure-BuildEnvironment
# N.B. The initial dot (.) indicates that variables initialized/modified
# in the propertyBlock are available in the parent scope.
while ($currentContext.includes.Count -gt 0) {
$includeBlock = $currentContext.includes.Dequeue()
. $includeBlock
}
foreach ($key in $parameters.keys) {
if (test-path "variable:\$key") {
set-item -path "variable:\$key" -value $parameters.$key | out-null
} else {
new-item -path "variable:\$key" -value $parameters.$key | out-null
}
}
foreach ($propertyBlock in $currentContext.properties) {
. $propertyBlock
}
foreach ($key in $properties.keys) {
if (test-path "variable:\$key") {
set-item -path "variable:\$key" -value $properties.$key | out-null
}
}
# Execute the list of tasks or the default task
if ($taskList) {
foreach ($task in $taskList) {
invoke-task $task
}
} elseif ($currentContext.tasks.default) {
invoke-task default
} else {
throw $msgs.error_no_default_task
}
$stopwatch.Stop()
"`n" + $msgs.build_success + "`n"
Write-TaskTimeSummary
$psake.build_success = $true
} catch {
if ($psake.config.verboseError) {
$error_message = "{0}: An Error Occurred. See Error Details Below: `n" -f (Get-Date)
$error_message += ("-" * 70) + "`n"
$error_message += Resolve-Error $_
$error_message += ("-" * 70) + "`n"
$error_message += "Script Variables" + "`n"
$error_message += ("-" * 70) + "`n"
$error_message += get-variable -scope script | format-table | out-string
} else {
$error_message = "{0}: An Error Occurred: `n{1}" -f (Get-Date), $_
}
$psake.build_success = $false
if (!$psake.run_by_psake_build_tester) {
#if we are running in a nested scope (i.e. running a psake script from a psake script) then we need to re-throw the exception
#so that the parent script will fail otherwise the parent script will report a successful build
$inNestedScope = ($psake.context.count -gt 1)
if ( $inNestedScope ) {
throw $_
} else {
write-host $error_message -foregroundcolor red
}
# Need to return a non-zero DOS exit code so that CI server's (Hudson, TeamCity, etc...) can detect a failed job
if ((IsChildOfService)) {
$host.SetShouldExit($psake.config.exitCode)
exit($psake.config.exitCode)
}
}
} finally {
Cleanup-Environment
}
} #Invoke-psake
#-- Private Module Functions --#
function Load-Modules {
$modules = $null
if ($psake.config.modules.autoload) {
if ($psake.config.modules.directory) {
Assert (test-path $psake.config.modules.directory) ($msgs.error_invalid_module_dir -f $psake.config.modules.directory)
$modules = get-item(join-path $psake.config.modules.directory "*.psm1")
}
elseif (test-path (join-path $PSScriptRoot "modules")) {
$modules = get-item (join-path (join-path $PSScriptRoot "modules") "*.psm1")
}
} else {
if ($psake.config.modules.module) {
$modules = $psake.config.modules.module | % {
Assert (test-path $_.path) ($msgs.error_invalid_module_path -f $_.path);
get-item $_.path
}
}
}
if ($modules) {
$modules | % {
"loading module: $_";
$module = import-module $_ -passthru;
if (!$module) {
throw ($msgs.error_loading_module -f $_.Name)
}
}
""
}
}
function Load-Configuration {
param(
[string] $configdir = $PSScriptRoot
)
$psakeConfigFilePath = (join-path $configdir "psake-config.ps1")
if (test-path $psakeConfigFilePath) {
try {
. $psakeConfigFilePath
} catch {
throw "Error Loading Configuration from psake-config.ps1: " + $_
}
} else {
if (!$psake.config) {
$psake.config = new-object psobject -property @{
defaultBuildFileName = "default.ps1";
taskNameFormat = "Executing {0}";
exitCode = "1";
verboseError = $false;
modules = (new-object PSObject -property @{
autoload = $false
})
}
}
}
}
function IsChildOfService {
param(
[int] $currentProcessID = $PID
)
$currentProcess = gwmi -Query "select * from win32_process where processid = '$currentProcessID'"
#System Idle Process
if ($currentProcess.ProcessID -eq 0) {
return $false
}
$service = Get-WmiObject -Class Win32_Service -Filter "ProcessId = '$currentProcessID'"
#We are invoked by a windows service
if ($service) {
return $true
} else {
$parentProcess = gwmi -Query "select * from win32_process where processid = '$($currentProcess.ParentProcessID)'"
return IsChildOfService $parentProcess.ProcessID
}
}
function Configure-BuildEnvironment {
if ($framework.Length -ne 3 -and $framework.Length -ne 6) {
throw ($msgs.error_invalid_framework -f $framework)
}
$versionPart = $framework.Substring(0, 3)
$bitnessPart = $framework.Substring(3)
$versions = $null
switch ($versionPart) {
'1.0' {
$versions = @('v1.0.3705')
}
'1.1' {
$versions = @('v1.1.4322')
}
'2.0' {
$versions = @('v2.0.50727')
}
'3.0' {
$versions = @('v2.0.50727')
}
'3.5' {
$versions = @('v3.5', 'v2.0.50727')
}
'4.0' {
$versions = @('v4.0.30319')
}
default {
throw ($msgs.error_unknown_framework -f $versionPart, $framework)
}
}
$bitness = 'Framework'
if ($versionPart -ne '1.0' -and $versionPart -ne '1.1') {
switch ($bitnessPart) {
'x86' {
$bitness = 'Framework'
}
'x64' {
$bitness = 'Framework64'
}
$null {
$ptrSize = [System.IntPtr]::Size
switch ($ptrSize) {
4 {
$bitness = 'Framework'
}
8 {
$bitness = 'Framework64'
}
default {
throw ($msgs.error_unknown_pointersize -f $ptrSize)
}
}
}
default {
throw ($msgs.error_unknown_bitnesspart -f $bitnessPart, $framework)
}
}
}
$frameworkDirs = $versions | foreach { "$env:windir\Microsoft.NET\$bitness\$_\" }
$frameworkDirs | foreach { Assert (test-path $_) ($msgs.error_no_framework_install_dir_found -f $_)}
$env:path = ($frameworkDirs -join ";") + ";$env:path"
#if any error occurs in a PS function then "stop" processing immediately
#this does not effect any external programs that return a non-zero exit code
$global:ErrorActionPreference = "Stop"
}
function Cleanup-Environment {
if ($psake.context.Count -gt 0) {
$currentContext = $psake.context.Peek()
$env:path = $currentContext.originalEnvPath
Set-Location $currentContext.originalDirectory
$global:ErrorActionPreference = $currentContext.originalErrorActionPreference
[void] $psake.context.Pop()
}
}
#borrowed from Jeffrey Snover http://blogs.msdn.com/powershell/archive/2006/12/07/resolve-error.aspx
function Resolve-Error($ErrorRecord = $Error[0]) {
$error_message = "`nErrorRecord:{0}ErrorRecord.InvocationInfo:{1}Exception:{2}"
$formatted_errorRecord = $ErrorRecord | format-list * -force | out-string
$formatted_invocationInfo = $ErrorRecord.InvocationInfo | format-list * -force | out-string
$formatted_exception = ""
$Exception = $ErrorRecord.Exception
for ($i = 0; $Exception; $i++, ($Exception = $Exception.InnerException)) {
$formatted_exception += ("$i" * 70) + "`n"
$formatted_exception += $Exception | format-list * -force | out-string
$formatted_exception += "`n"
}
return $error_message -f $formatted_errorRecord, $formatted_invocationInfo, $formatted_exception
}
function Write-Documentation {
$currentContext = $psake.context.Peek()
$currentContext.tasks.Keys | foreach-object {
if ($_ -eq "default") {
return
}
$task = $currentContext.tasks.$_
new-object PSObject -property @{
Name = $task.Name;
Description = $task.Description;
"Depends On" = $task.DependsOn -join ", "
}
} | sort 'Name' | format-table -Auto
}
function Write-TaskTimeSummary {
"-" * 70
"Build Time Report"
"-" * 70
$list = @()
$currentContext = $psake.context.Peek()
while ($currentContext.executedTasks.Count -gt 0) {
$taskKey = $currentContext.executedTasks.Pop()
$task = $currentContext.tasks.$taskKey
if ($taskKey -eq "default") {
continue
}
$list += new-object PSObject -property @{
Name = $task.Name;
Duration = $task.Duration
}
}
[Array]::Reverse($list)
$list += new-object PSObject -property @{
Name = "Total:";
Duration = $stopwatch.Elapsed
}
$list | format-table -auto | out-string -stream | ? { $_ } #using "Out-String -Stream" to filter out the blank line that Format-Table prepends
}
DATA msgs {
convertfrom-stringdata @'
error_invalid_task_name = Task name should not be null or empty string
error_task_name_does_not_exist = task [{0}] does not exist
error_circular_reference = Circular reference found for task, {0}
error_missing_action_parameter = Action parameter must be specified when using PreAction or PostAction parameters
error_corrupt_callstack = CallStack was corrupt. Expected {0}, but got {1}.
error_invalid_framework = Invalid .NET Framework version, {0}, specified
error_unknown_framework = Unknown .NET Framework version, {0}, specified in {1}
error_unknown_pointersize = Unknown pointer size ({0}) returned from System.IntPtr.
error_unknown_bitnesspart = Unknown .NET Framework bitness, {0}, specified in {1}
error_no_framework_install_dir_found = No .NET Framework installation directory found at {0}
error_bad_command = Error executing command: {0}
error_default_task_cannot_have_action = 'default' task cannot specify an action
error_duplicate_task_name = Task {0} has already been defined.
error_invalid_include_path = Unable to include {0}. File not found.
error_build_file_not_found = Could not find the build file, {0}.
error_no_default_task = default task required
error_invalid_module_dir = Unable to load modules from directory: {0}
error_invalid_module_path = Unable to load module at path: {0}
error_loading_module = Error loading module: {0}
postcondition_failed = Postcondition failed for {0}
precondition_was_false = Precondition was false not executing {0}
continue_on_error = Error in Task [{0}] {1}
build_success = Build Succeeded!
'@
}
import-localizeddata -bindingvariable msgs -erroraction silentlycontinue
$script:psake = @{}
$psake.build_success = $false # indicates that the current build was successful
$psake.version = "4.00" # contains the current version of psake
$psake.build_script_file = $null # contains a System.IO.FileInfo for the current build file
$psake.build_script_dir = "" # contains a string with fully-qualified path to current build script
$psake.framework_version = "" # contains the framework version # for the current build
$psake.run_by_psake_build_tester = $false # indicates that build is being run by psake-BuildTester
$psake.context = new-object system.collections.stack # holds onto the current state of all variables
Load-Configuration
export-modulemember -function invoke-psake, invoke-task, task, properties, include, formattaskname, tasksetup, taskteardown, assert, exec -variable psake