0

我想重复 XProc 子管道给定的次数。(在我的用例中,子管道由一个执行步骤组成,它在先前创建的 .tex 文件上运行 LaTeX)

我的代码的简化版本如下所示,到目前为止没有结果:

<p:declare-step  version="1.0"
xmlns:p="http://www.w3.org/ns/xproc"
xmlns:c="http://www.w3.org/ns/xproc-step">

<p:option name="latex-exec" select="'uri/latex'"/>
<p:option name="latex-repeat" select="3"/>
<p:option name="tmp-path" select="'uri/tmp/'"/>
<p:option name="tmp-file" select="'tmp'"/>

<!-- pre-processing -->

<p:for-each>
    <p:iteration-source select="(1 to $latex-repeat)"/>

    <p:exec result-is-xml="false">
        <p:with-option name="command" select="$latex-exec"/>
        <p:with-option name="args"    select="string-join(('-interaction=nonstopmode','-halt-on-error','-output-format=pdf',concat('-output-directory=',$tmp-path),concat($tmp-path,$tmp-file,'.tex')),' ')"/>
        <p:input port="source">
            <p:empty/>
        </p:input>
    </p:exec>
</p:for-each>

我不知道 p:iteration-source 元素中的 XPath-2.0 表达式是否存在问题。但是,以下工作并给出正确的结果“消息:3”:

<cx:message>
    <p:with-option name="message" select="count((1 to $latex-repeat))"/>
    <p:input port="source">
        <p:empty/>
    </p:input>
</cx:message>

我的 exec-step 在 for-each 循环之外进行了测试并且可以工作。我在 Oxygen 16.0 下使用 Calabash。

4

2 回答 2

0

正如 Vojtěch Toman 所提到的,p:for-each 循环不能迭代原子值 [ XD0016 ]。由于此限制不适用于等效的 XSLT 2.0 循环,因此我们可以定义自己的 p:xslt 步骤,以根据所需的迭代次数创建 XML 节点序列。然后这个序列可以用作 ap:for-each 的输入。

迭代器步骤如下所示:

<p:declare-step version="1.0"
    xmlns:p="http://www.w3.org/ns/xproc"
    xmlns:c="http://www.w3.org/ns/xproc-step"
    xmlns:my="http://example.org/iterate"
    type="my:iterator">

    <p:option name="iterate" required="true"/>

    <p:input port="source"/>
    <p:output port="result" sequence="true"/>

    <p:xslt name="iterator" template-name="iterator">
        <p:with-param name="iterator" select="$iterate"/>
        <p:input port="stylesheet">
            <p:inline>
                <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" version="2.0">
                    <xsl:param name="iterator"/>
                    <xsl:template name="iterator">
                        <xsl:for-each select="(1 to xs:integer($iterator))">
                            <xsl:result-document href="{position()}">
                                <iterate/>
                            </xsl:result-document>
                        </xsl:for-each>
                    </xsl:template>
                </xsl:stylesheet>
            </p:inline>
        </p:input>
        <p:input port="source">
            <p:empty/>
        </p:input>
    </p:xslt>

    <p:sink/>

    <p:identity>
        <p:input port="source">
            <p:pipe port="secondary" step="iterator"/>
        </p:input>
    </p:identity>

</p:declare-step>

使用新迭代器步骤的示例如下所示:

<p:declare-step version="1.0"
    xmlns:p="http://www.w3.org/ns/xproc"
    xmlns:c="http://www.w3.org/ns/xproc-step"
    xmlns:my="http://example.org/iterate">

    <p:import href="iterate.xpl"/>

    <!-- pre-processing -->    

    <my:iterator>
        <p:with-option name="iterate" select="3"/>
    </my:iterator>
    <p:for-each>

        <!-- sub-pipeline -->

    </p:for-each>

</p:declare-step>
于 2015-08-28T09:13:26.483 回答
0

您的方法的问题是您只能在 XProc 1.0 中迭代 XML 文档。由于select您的表达式p:iteration-source生成的是数字序列,而不是文档,因此管道将失败并出现动态错误(很可能err:XD0001: It is a dynamic error if a non-XML resource is produced on a step output or arrives on a step input.

(这个例子有效的原因cx:message是该p:with-option构造将一个值绑定到一个选项,select然后 XPath 表达式的结果被视为xs:untypedAtomic。)

要循环n次,您将不得不使用递归,如下例所示(未经测试,但您应该明白):

<p:declare-step version="1.0"
                xmlns:p="http://www.w3.org/ns/xproc"
                xmlns:c="http://www.w3.org/ns/xproc-step"
                xmlns:my="http://example.org/latex-process"
                type="my:latex-process">

  <p:option name="latex-exec" select="'uri/latex'"/>
  <p:option name="latex-repeat" select="3"/>
  <p:option name="tmp-path" select="'uri/tmp/'"/>
  <p:option name="tmp-file" select="'tmp'"/>

  <p:choose>
    <p:when test="$latex-repeat = 0">
      <p:sink>
        <p:input port="source">
          <p:empty/>
        </p:input>
      </p:sink>
    </p:when>
    <p:otherwise>
      <p:exec result-is-xml="false">
        <p:with-option name="command" select="$latex-exec"/>
        <p:with-option name="args"    select="string-join(('-interaction=nonstopmode','-halt-on-error','-output-format=pdf',concat('-output-directory=',$tmp-path),concat($tmp-path,$tmp-file,'.tex')),' ')"/>
        <p:input port="source">
          <p:empty/>
        </p:input>
      </p:exec>
      <my:latex-exec>
        <p:with-option name="latex-exec" select="$latex-exec"/>
        <p:with-option name="latex-repeat" select="$latex-repeat - 1"/>
        <p:with-option name="tmp-path" select="$tmp-path"/>
        <p:with-option name="tmp-file" select="$tmp-file"/>
      </my:latex-exec>
    </p:otherwise>
  </p:choose>
</p:declare-step>
于 2015-08-25T11:26:03.913 回答