gpt4 book ai didi

powershell - 如何抓取xsl :message output using Saxon XSLT transformer in PowerShell

转载 作者:行者123 更新时间:2023-12-04 01:29:34 25 4
gpt4 key购买 nike

我找不到捕获 <xsl:message/> 的方法通过 PowerShell 运行时 .NET Saxon XSLT 转换器的输出。

我尝试了各种捕获输出的 PowerShell 方法以及各种告诉 Saxon 输出数据的方法,但均未成功。我需要使用 Saxon XSLT 库,因为我们公司 promise 使用它。

尝试过

  1. Transformer.MessageListener .问题:PowerShell 不支持创建接口(interface)来捕获 MessageListener.Message事件

  2. Transformer.TraceFunctionDestination .问题:无法实例化 StandardLogger带有构造函数。

    $outLogger = New-Object Saxon.Api.StandardLogger -ArgumentList $outLogger
    $outLogger.UnderylingTextWriter = $outLogFile
    $saxTransform.TraceFunctionDestination = $outLogger
  3. 各种 PowerShell 输出重定向方法。我认为撒克逊人不太擅长这一点。

    $out = $saxTransform.Run($outSerializer) *> "c:\eric\log.txt"
    Write-Output "nada-> $out"

XSLT:

<xsl:template match="/">
<xsl:message>I want to see this in a file</xsl:message>
</xsl:template>

PowerShell:

# Instantiate an Xslt transformer
$saxonPath = GetSaxonDllPath

Add-Type -Path $saxonPath
$saxProcessor = New-Object Saxon.Api.Processor
$saxCompiler = $saxProcessor.NewXsltCompiler()

$baseXsltPath = [System.IO.Path]::GetDirectoryName($inXsltPath)
$uri = [System.Uri]$baseXsltPath
$saxCompiler.BaseUri = $uri

Write-Output "Compiling..."
$uri = [System.Uri]$inXsltPath
$saxExecutable = $saxCompiler.Compile($uri)
$saxTransform = $saxExecutable.Load()

#Prepare the input XML file
$basePath = [System.IO.Path]::GetDirectoryName($inXmlFilePath)
$uri = [System.Uri]$basePath
$inFileStream = [System.IO.File]::OpenRead($inXmlFilePath)
$saxTransform.SetInputStream($inFileStream, $uri);

##Set XSLT processing parameters
if ($arguments) {
foreach($argument in $arguments.GetEnumerator()) {
$paramName = New-Object Saxon.Api.QName($argument.Name)
$paramValue = New-Object Saxon.Api.XdmAtomicValue($argument.Value)
$saxTransform.SetParameter($paramName, $paramValue)
}
}

#Prepare the output file
$outFileStream = [System.IO.File]::OpenWrite($outFileName)
$outSerializer = New-Object Saxon.Api.Serializer
$outSerializer.SetOutputStream($outFileStream);

$outLogFile = [System.IO.File]::OpenWrite("c:\eric\log.txt")
$outLogger = New-Object Saxon.Api.StandardLogger($outLogFile)

#Transform
Write-Output "Transforming..."
$saxTransform.Run($outSerializer)

Write-Output "Transformation done."
$outLogFile.Close()
$outLogFile.Dispose()

#Cleanup
$inFileStream.Close()
$inFileStream.Dispose()

$outFileStream.Close()
$outFileStream.Dispose()

最佳答案

我们对您的要求有些同情。但是使用 XslTransformer.MessageListener 是拦截发送 xsl:message 输出的唯一原因。设置 TraceFunctionDestination 将不会捕获 xsl:message 输出。

我不是 Powershell 方面的专家,但作为一种解决方法,我认为您可以在 C# 类中编写 IMessageListener 的实现,并将其构建为程序集以在 Powershell 中使用。

关于powershell - 如何抓取xsl :message output using Saxon XSLT transformer in PowerShell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28884974/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com