如果你想返回一个 xml 对象而不是将输出写入文件,那么你可以做更多的内联活动。这会奏效。此外,我将处理器的创建拆分为一个单独的函数,以便您可以创建一次并重复使用,这对内存更友好。
function Invoke-TransformXML($path,$styleSheetPath,$output,$parameters, $compiledtransform)
{
if( ! (test-path $path )) { Throw"XML input file not found: $path"}
$path = resolve-path $path
if ( ! (Test-Path $compiledtransform))
{
if( ! ($compiledtransform.GetType() -eq [System.Xml.Xsl.XslCompiledTransform] ))
{
$ctType = $compiledtransform.GetType() ;
Throw "Compiled transform is wrong type: $ctType"
}
else
{
$xslt = $compiledtransform
}
}
if (($compiledtransform -eq $null) )
{
if( ! (test-path $styleSheetPath ) ) { Throw"XSL template file not found: $styleSheetPath"}
$styleSheetPath = Resolve-Path $styleSheetPath
$xslt = Get-CompiledTransform $styleSheetPath
}
$transformed = New-Object System.IO.MemoryStream
try
{
$xslt.Transform([string]$path, [System.Xml.Xsl.XsltArgumentList]$arglist, [System.IO.Stream]$transformed)
$transformed.Position = 0
#$reader = New-Object System.Xml.XmlTextReader($ms)
$outdoc = New-Object System.Xml.XmlDocument
$outdoc.Load($transformed)
# close stream, we are done with it
$transformed.Close()
return $outdoc
} Finally {
$transformed.Close()
}
}
function Get-CompiledTransform($styleSheetPath)
{
if( ! (test-path $styleSheetPath ) ) { Throw"XSL template file not found: $styleSheetPath"}
$styleSheetPath = Resolve-Path $styleSheetPath
if( [System.Diagnostics.Debugger]::IsAttached )
{
$xslt = New-Object System.Xml.Xsl.XslCompiledTransform( $true )
}
else
{
$xslt = New-Object System.Xml.Xsl.XslCompiledTransform( $false )
}
$arglist = new-object System.Xml.Xsl.XsltArgumentList
foreach( $param in $parms )
{
if ($parms.Name)
{
$paramName = $parms.Name
$paramNamespaceUri = $parms.NamespaceUri
$paramValue = $parms.Value
$arglist.AddParam($paramName, $paramNamespaceUri, $paramValue)
}
}
$xsltSettings = New-Object System.Xml.Xsl.XsltSettings($false,$true)
$xslt.Load($styleSheetPath, $xsltSettings, (New-Object System.Xml.XmlUrlResolver))
return $xslt
}