Skip to content

Commit

Permalink
* Changing the way most commands and DLLs load
Browse files Browse the repository at this point in the history
* Fixing the way optional commands check to see if they can run
* Minor perf improvements to internal functions (Join-DbaPath, Test-Bound, Select-DefaultView)
* Changes to the way options are handled (allowing -ArgumentList @{})
* Moving custom type serialization depth to types file
* Adding formatter for Connect-DbaInstance ( so it feels faster)
* Switching to MAML help ( so it loads faster)
  • Loading branch information
StartAutomating committed May 16, 2019
1 parent 1f17695 commit ab8adcd
Show file tree
Hide file tree
Showing 16 changed files with 201,527 additions and 43,188 deletions.
42,994 changes: 826 additions & 42,168 deletions allcommands.ps1

Large diffs are not rendered by default.

46 changes: 22 additions & 24 deletions bin/library.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -34,32 +34,22 @@ Mostly for developers working on the library.
#>

#region Test whether the module had already been imported
if (([System.Management.Automation.PSTypeName]'Sqlcollaborative.Dbatools.Configuration.Config').Type) {
# No need to load the library again, if the module was once already imported.
Write-Verbose -Message "Library already loaded, will not load again"
$ImportLibrary = $false
} else {
Write-Verbose -Message "Library not present already, will import"
$ImportLibrary = $true
}
#endregion Test whether the module had already been imported

$libraryBase = (Resolve-Path -Path ($ExecutionContext.SessionState.Module.ModuleBase + "\bin"))
$dll =
if ($PSVersionTable.PSVersion.Major -ge 6) {
Join-Path $psModuleRoot "bin\netcoreapp2.1\dbatools.dll"
} else {
Join-Path $psModuleRoot "bin\net452\dbatools.dll"
}

if ($PSVersionTable.PSVersion.Major -ge 6) {
$dll = (Resolve-Path -Path "$libraryBase\netcoreapp2.1\dbatools.dll" -ErrorAction Ignore).ProviderPath
} else {
$dll = (Resolve-Path -Path "$libraryBase\net452\dbatools.dll" -ErrorAction Ignore).ProviderPath
}
$ImportLibrary = $true # Always import the library, because it contains some internal cmdlets.

if ($ImportLibrary) {
#region Add Code
try {
# In strict security mode, only load from the already pre-compiled binary within the module
if ($script:strictSecurityMode) {
if (Test-Path -Path $dll) {
Add-Type -Path $dll -ErrorAction Stop
$dbaToolsAssembly = Import-Module "$dll"
} else {
throw "Library not found, terminating"
}
Expand All @@ -83,14 +73,14 @@ if ($ImportLibrary) {

if ((-not $script:alwaysBuildLibrary) -and $hasCompiledDll -and ([System.Diagnostics.FileVersionInfo]::GetVersionInfo($dll).FileVersion -eq $currentLibraryVersion)) {
$start = Get-Date

try {
Write-Verbose -Message "Found library, trying to copy & import"
Add-Type -Path (Resolve-Path -Path "$dll") -ErrorAction Stop
$dbaToolsAssembly = Import-Module -Name "$dll"
} catch {
Write-Verbose -Message "Failed to copy and import, attempting to import straight from the module directory"
$script:DllRoot = Resolve-Path -Path $script:DllRoot
Add-Type -Path "$(Join-Path -Path $script:DllRoot -ChildPath dbatools.dll)" -ErrorAction Stop
Import-Module -Name "$(Join-Path -Path $script:DllRoot -ChildPath dbatools.dll)" -ErrorAction Stop
}
Write-Verbose -Message "Total duration: $((Get-Date) - $start)"
} elseif ($hasProject) {
Expand All @@ -101,8 +91,8 @@ if ($ImportLibrary) {
}

#region PowerShell TypeData
Update-TypeData -TypeName "Sqlcollaborative.Dbatools.dbaSystem.DbatoolsException" -SerializationDepth 2 -ErrorAction Ignore
Update-TypeData -TypeName "Sqlcollaborative.Dbatools.dbaSystem.DbatoolsExceptionRecord" -SerializationDepth 2 -ErrorAction Ignore
#Update-TypeData -TypeName "Sqlcollaborative.Dbatools.dbaSystem.DbatoolsException" -SerializationDepth 2 -ErrorAction Ignore
#Update-TypeData -TypeName "Sqlcollaborative.Dbatools.dbaSystem.DbatoolsExceptionRecord" -SerializationDepth 2 -ErrorAction Ignore
#endregion PowerShell TypeData
} catch {
#region Warning
Expand Down Expand Up @@ -140,7 +130,15 @@ aka "The guy who made most of The Library that Failed to import"
}

#region Version Warning
if ($currentLibraryVersion -ne ([version](([AppDomain]::CurrentDomain.GetAssemblies() | Where-Object ManifestModule -like "dbatools.dll").CustomAttributes | Where-Object AttributeType -like "System.Reflection.AssemblyFileVersionAttribute").ConstructorArguments.Value)) {

$dbaToolsVersion =
@(foreach ($_ in $dbaToolsAssembly.CustomAttributes) {
if ($_ -is [Reflection.AssemblyFileVersionAttribute]) {
$_.ConstructorArguments.Value
break
}
}) -ne $null -as [Version]
if ($currentLibraryVersion -ne $dbaToolsVersion) {
Write-Verbose @"
A version missmatch between the dbatools library loaded and the one expected by
this module. This usually happens when you update the dbatools module and use
Expand Down
Loading

0 comments on commit ab8adcd

Please sign in to comment.