PoshCode Archive  Artifact [6c42b72cef]

Artifact 6c42b72cef999c299b8c387516fc2e9c5d38d931fe9fbafde32bb4308db4a647:

  • File Memory-helper-functions.ps1 — part of check-in [624ee4543d] at 2018-06-10 14:27:40 on branch trunk — Memory management helpers. Set-SessionVariableList creates a baseline of variable names. Remove-NewVariable clears out any variables not in the SessionVariableList and calls the garbage collector to free up memory. (user: Steven Murawski size: 1906)

# encoding: ascii
# api: powershell
# title: Memory helper functions
# description: Memory management helpers.  Set-SessionVariableList creates a baseline of variable names.  Remove-NewVariable clears out any variables not in the SessionVariableList and calls the garbage collector to free up memory.
# version: 0.1
# type: function
# author: Steven Murawski
# license: CC0
# function: Add-SessionVariable
# x-poshcode-id: 973
# x-archived: 2012-11-05T14:04:40
# x-published: 2009-03-25T18:00:00
#
#
Function Add-SessionVariable()
{
	param ([string[]]$VariableName=$null)
	
	[string[]]$VariableNames = [AppDomain]::CurrentDomain.GetData('Variable')
	$VariableNames += $VariableName
	
	if ($input)
	{
		$VariableNames += $input
	}
	
	#To Not Waste Space, Remove Duplicates
	$VariableNames = $VariableNames | Select-Object -Unique
	
	[AppDomain]::CurrentDomain.SetData('Variable',$VariableNames)
}

Function Set-SessionVariableList()
{
	$VariableNames = Get-Variable -scope global| ForEach-Object {$_.Name}
	Add-SessionVariable $VariableNames
	
	Write-Verbose 'Loaded Variable Names into AppDomain'
	$counter = 1
	Foreach ($Variable in $VariableNames)
	{
		Write-Verbose "`t $($counter): $Variable" 
		$counter++
	}
}

Function Get-SessionVariableList()
{
	[AppDomain]::CurrentDomain.GetData('Variable')
}

Function Remove-NewVariable()
{
	$StartingMemory = (Get-Process -ID $PID).WS / 1MB
	Write-Verbose "Current Memory Usage: $StartingMemory MB"

	$VariableNames = Get-SessionVariableList
	$VariableNames += 'StartingMemory'
	Get-Variable -scope global | Where-Object {$VariableNames -notcontains $_.name} | Remove-Variable -scope global
	
	[GC]::Collect()
	
	$EndingMemory = (Get-Process -ID $PID).WS / 1MB
	Write-Verbose "Ending Memory: $EndingMemory MB"
	
	$Diff = $StartingMemory - $EndingMemory
	Write-Verbose "Freed up: $Diff MB"
}