9

Antでmacrodefをデバッグしようとしています。要素として送信されたパラメータの内容を表示する方法が見つからないようです。

<project name='debug.macrodef'>
  <macrodef name='def.to.debug'>
    <attribute name='attr' />
    <element name='elem' />
    <sequential>
      <echo>Sure, the attribute is easy to debug: @{attr}</echo>
      <echo>The element works only in restricted cases: <elem /> </echo>
      <!-- This works only if <elem /> doesn't contain anything but a
           textnode, if there were any elements in there echo would
           complain it doesn't understand them. -->
    </sequential>
  </macrodef>

  <target name='works'>
    <def.to.debug attr='contents of attribute'>
      <elem>contents of elem</elem>
    </def.to.debug>
  </target>

  <target name='does.not.work'>
    <def.to.debug attr='contents of attribute'>
      <elem><sub.elem>contents of sub.elem</sub.elem></elem>
    </def.to.debug>
  </target>
</project>

実行例:

$ ant works
...
works:
 [echo] Sure, the attribute is easy to debug: contents of attribute
 [echo] The element works only in restricted cases:  contents of elem
...

$ ant does.not.work
...
does.not.work:
 [echo] Sure, the attribute is easy to debug: contents of attribute

BUILD FAILED
.../build.xml:21: The following error occurred while executing this line:
.../build.xml:7: echo doesn't support the nested "sub.elem" element.
...

したがって、の内容を<elem />何らかの方法でプロパティに取り込む方法(拡張されたmacrodef実装にある可能性があります)、または<element-echo><elem /></element-echo>内部に配置したXMLツリーを出力できるような方法が必要だと思います。誰かがこれらのいずれかの実装を知っていますか?もちろん、データを取り出すための3番目の予期しない方法も歓迎します。

4

1 に答える 1

10

echoxmlタスクはどうですか?

あなたの例のビルドファイルでは、行を置き換えます

<echo>The element works only in restricted cases: <elem /> </echo>

<echoxml><elem /></echoxml>

結果は

$ ant does.not.work
...
does.not.work:
     [echo] Sure, the attribute is easy to debug: contents of attribute
<?xml version="1.0" encoding="UTF-8"?>
<sub.elem>contents of sub.elem</sub.elem>

ただし、おそらく XML 宣言は必要ありません。echoxmlfile属性を使用して出力を一時ファイルに保存し、そのファイルを読み取って宣言を削除するか、必要に応じて情報を再フォーマットすることができます。

編集

熟考すると、おそらくあなたが説明したものに近づくことができます。たとえば、マクロ定義のこの連続した本体

<sequential>
  <echo>Sure, the attribute is easy to debug: @{attr}</echo>
  <echoxml file="macro_elem.xml"><elem /></echoxml>
  <loadfile property="elem" srcFile="macro_elem.xml">
    <filterchain>
      <LineContainsRegexp negate="yes">
      <regexp pattern=".xml version=.1.0. encoding=.UTF-8..." />
      </LineContainsRegexp>
    </filterchain>
  </loadfile>
  <echo message="${elem}" />
</sequential>

与える

$ ant does.not.work
...
does.not.work:
     [echo] Sure, the attribute is easy to debug: contents of attribute
     [echo] <sub.elem>contents of sub.elem</sub.elem>
于 2010-07-23T23:19:43.417 に答える