if (rval)
{
_entries.remove(entry);
- _byname.remove(entry.getName());
-
- if(_ofilesystem != null) {
- _ofilesystem.remove(entry);
- } else {
- _nfilesystem.remove(entry);
- }
+ _byname.remove(entry.getName());
+
+ if(_ofilesystem != null) {
+ _ofilesystem.remove(entry);
+ } else {
+ try {
+ _nfilesystem.remove(entry);
+ } catch (IOException e) {
+ // TODO Work out how to report this, given we can't change the method signature...
+ }
+ }
}
return rval;
}
_property.setStartBlock(_stream.getStartBlock());
}
+ /**
+ * Frees the underlying stream and property
+ */
+ void free() throws IOException {
+ _stream.free();
+ _property.setStartBlock(POIFSConstants.END_OF_CHAIN);
+ }
+
int getDocumentBlockSize() {
return _block_size;
}
import org.apache.poi.poifs.nio.DataSource;
import org.apache.poi.poifs.nio.FileBackedDataSource;
import org.apache.poi.poifs.property.DirectoryProperty;
+import org.apache.poi.poifs.property.DocumentProperty;
import org.apache.poi.poifs.property.NPropertyTable;
import org.apache.poi.poifs.storage.BATBlock;
import org.apache.poi.poifs.storage.BATBlock.BATBlockAndIndex;
// The header block doesn't count, so add one
long blockWanted = offset + 1;
long startAt = blockWanted * bigBlockSize.getBigBlockSize();
- return _data.read(bigBlockSize.getBigBlockSize(), startAt);
+ try {
+ return _data.read(bigBlockSize.getBigBlockSize(), startAt);
+ } catch (IndexOutOfBoundsException e) {
+ throw new IndexOutOfBoundsException("Block " + offset + " not found - " + e);
+ }
}
/**
*
* @param entry to be removed
*/
-
- void remove(EntryNode entry)
+ void remove(EntryNode entry) throws IOException
{
+ // If it's a document, free the blocks
+ if (entry instanceof DocumentEntry) {
+ NPOIFSDocument doc = new NPOIFSDocument((DocumentProperty)entry.getProperty(), this);
+ doc.free();
+ }
+
+ // Now zap it from the properties list
_property_table.removeProperty(entry.getProperty());
}