Only save the component map if we changed it.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1229 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: ComponentBundlerTask.java,v 1.7 2002/04/07 23:15:29 mdb Exp $
|
// $Id: ComponentBundlerTask.java,v 1.8 2002/04/11 01:33:51 mdb Exp $
|
||||||
|
|
||||||
package com.threerings.cast.bundle.tools;
|
package com.threerings.cast.bundle.tools;
|
||||||
|
|
||||||
@@ -255,11 +255,18 @@ public class ComponentBundlerTask extends Task
|
|||||||
protected void saveBroker (File mapfile, ComponentIDBroker broker)
|
protected void saveBroker (File mapfile, ComponentIDBroker broker)
|
||||||
throws BuildException
|
throws BuildException
|
||||||
{
|
{
|
||||||
|
HashMapIDBroker hbroker = (HashMapIDBroker)broker;
|
||||||
|
|
||||||
|
// bail if the broker wasn't modified
|
||||||
|
if (!hbroker.isModified()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
FileOutputStream fout = new FileOutputStream(mapfile);
|
FileOutputStream fout = new FileOutputStream(mapfile);
|
||||||
DataOutputStream dout =
|
DataOutputStream dout =
|
||||||
new DataOutputStream(new BufferedOutputStream(fout));
|
new DataOutputStream(new BufferedOutputStream(fout));
|
||||||
((HashMapIDBroker)broker).writeTo(dout);
|
hbroker.writeTo(dout);
|
||||||
dout.close();
|
dout.close();
|
||||||
} catch (IOException ioe) {
|
} catch (IOException ioe) {
|
||||||
throw new BuildException("Unable to store component ID map " +
|
throw new BuildException("Unable to store component ID map " +
|
||||||
@@ -288,6 +295,11 @@ public class ComponentBundlerTask extends Task
|
|||||||
// nothing doing
|
// nothing doing
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean isModified ()
|
||||||
|
{
|
||||||
|
return _nextCID != _startCID;
|
||||||
|
}
|
||||||
|
|
||||||
public void writeTo (DataOutputStream dout)
|
public void writeTo (DataOutputStream dout)
|
||||||
throws IOException
|
throws IOException
|
||||||
{
|
{
|
||||||
@@ -320,9 +332,13 @@ public class ComponentBundlerTask extends Task
|
|||||||
}
|
}
|
||||||
// read in our most recently assigned component id
|
// read in our most recently assigned component id
|
||||||
_nextCID = din.readInt();
|
_nextCID = din.readInt();
|
||||||
|
// keep track of this so that we can tell if we were modified
|
||||||
|
_startCID = _nextCID;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected int _nextCID = 0;
|
protected int _nextCID = 0;
|
||||||
|
|
||||||
|
protected int _startCID = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** The path to our component bundle file. */
|
/** The path to our component bundle file. */
|
||||||
|
|||||||
Reference in New Issue
Block a user