]> source.dussan.org Git - poi.git/commitdiff
Support optionally dumping the properties stream
authorNick Burch <nick@apache.org>
Mon, 29 Jun 2015 06:05:42 +0000 (06:05 +0000)
committerNick Burch <nick@apache.org>
Mon, 29 Jun 2015 06:05:42 +0000 (06:05 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1688091 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/poifs/dev/POIFSDump.java

index 3af3690fd6185516854af0284c2f7719352e307e..4ae01437a4981d16b726c7107a7c22dfd9219943 100644 (file)
 ==================================================================== */
 package org.apache.poi.poifs.dev;
 
-import org.apache.poi.poifs.filesystem.*;
-
-import java.io.FileInputStream;
 import java.io.File;
-import java.io.IOException;
+import java.io.FileInputStream;
 import java.io.FileOutputStream;
+import java.io.IOException;
 import java.io.OutputStream;
+import java.lang.reflect.Field;
+import java.nio.ByteBuffer;
 import java.util.Iterator;
 
+import org.apache.poi.poifs.filesystem.DirectoryEntry;
+import org.apache.poi.poifs.filesystem.DocumentInputStream;
+import org.apache.poi.poifs.filesystem.DocumentNode;
+import org.apache.poi.poifs.filesystem.Entry;
+import org.apache.poi.poifs.filesystem.NPOIFSFileSystem;
+import org.apache.poi.poifs.filesystem.NPOIFSStream;
+import org.apache.poi.poifs.storage.HeaderBlock;
+
 /**
  * Dump internal structure of a OLE2 file into file system
  */
 public class POIFSDump {
 
     public static void main(String[] args) throws Exception {
+        if (args.length == 0) {
+            System.err.println("Must specify at least one file to dump");
+            System.exit(1);
+        }
+        
+        boolean withProps = false;
         for (int i = 0; i < args.length; i++) {
+            if (args[i].equalsIgnoreCase("-dumprops") ||
+                args[i].equalsIgnoreCase("-dump-props") ||
+                args[i].equalsIgnoreCase("-dump-properties")) {
+                withProps = true;
+                continue;
+            }
+            
             System.out.println("Dumping " + args[i]);
             FileInputStream is = new FileInputStream(args[i]);
             NPOIFSFileSystem fs = new NPOIFSFileSystem(is);
@@ -42,6 +63,13 @@ public class POIFSDump {
             file.mkdir();
 
             dump(root, file);
+            
+            if (withProps) {
+                Field headerF = NPOIFSFileSystem.class.getDeclaredField("_header");
+                headerF.setAccessible(true);
+                HeaderBlock header = (HeaderBlock)headerF.get(fs);
+                dump(fs, header.getPropertyStart(), file);
+            }
         }
    }
 
@@ -72,4 +100,17 @@ public class POIFSDump {
             }
         }
     }
+    public static void dump(NPOIFSFileSystem fs, int startBlock, File parent) throws IOException {
+        File file = new File(parent, "properties");
+        FileOutputStream out = new FileOutputStream(file);
+        NPOIFSStream stream = new NPOIFSStream(fs, startBlock);
+        
+        byte[] b = new byte[fs.getBigBlockSize()];
+        for (ByteBuffer bb : stream) {
+            int len = bb.remaining();
+            bb.get(b);
+            out.write(b, 0, len);
+        }
+        out.close();
+    }
 }