vote up 1 vote down star

Let me preface by saying that I'm new to ant, and I'm using version 1.6.5 if it matters.

I have a file with a list of files that I want to concatenate. The relevant part of my first attempt was this:

<target name="for-each">
    <xmlproperty file="scripts.xml" collapseAttributes="true" />
    <echo message="testing for-each"/>
    <concat destfile="${out}" fixlastline="yes" eol="lf">
        <foreach list="${scripts.src}" target="loop" param="var" delimiter=","/>
    </concat>
</target>

<target name="loop">
    <echo message="File :: ${var}"/>
    <fileset file="${SRC_DIR}${var}" />
</target>

However, concat doesn't support the foreach element.

I don't simply want to cut and paste a fileset into the concat element because it's reused and may be changed in the original file often, so I want to programmaticly iterate over the script elements listed in my file instead.

What would the right syntax be or how would I accomplish this?

flag

1 Answer

vote up 3 vote down check

I think your requirements are:

  • load the filelist from another xml file
  • concat this filelist together

If that's the case, there's no reason you should be making your own procedural loop. You can do something like:

scripts.xml

<scripts>
   <src>file1</src>
   <src>file2</src>
</scripts>

build.xml

<xmlproperty file="scripts.xml" collapseAttributes="true" />
<concat destfile="${out}" fixlastline="yes" eol="lf">
    <filelist files="${scripts.src}"/>
</concat>

is this the case?

link|flag
Hmm ... I hope it will be something simple like that, but according to ant.apache.org/manual/CoreTypes/…, files is a list of file names separated by whitespace, or by commas. So my scripts.xml file will have to have that list in a single attribute value somewhere or as a single comma separate child, right? I guess that I'm asking if I have more flexibility with fileset than it looks like a do or will I have to have an XML file that conforms to what filelist expects? – Keith Bentrup Sep 3 at 14:48
A fileset is defined by exclusions mostly, and a filelist is defined by inclusions. If you have a short list of files, I would stick with the filelist. Otherwise, if you files follow a pattern or are likely to be numerous, make a careful fileset that selects the proper ones. – Jweede Sep 3 at 15:03
I'm pretty sure if <XMLProperty> runs into: <List> <Item/> <Item/> </List> It will concatinate the values into one property ${List.Item}. This might be what you're looking for. – Jweede Sep 3 at 15:07
+1, I'll try it and see what I can do, but you're definitely getting me closer to a solution. Thx. – Keith Bentrup Sep 3 at 15:47
No prob. ANT can only do so much. For some of my larger ANT processes, I write modules in python to do the harder stuff, and launch it from ANT. – Jweede Sep 3 at 15:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.