]> source.dussan.org Git - poi.git/commitdiff
fix 51678 -- Extracting text from Bug51524.zip is slow
authorSergey Vladimirov <sergey@apache.org>
Thu, 18 Aug 2011 14:29:59 +0000 (14:29 +0000)
committerSergey Vladimirov <sergey@apache.org>
Thu, 18 Aug 2011 14:29:59 +0000 (14:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1159244 13f79535-47bb-0310-9956-ffa450edef68

src/documentation/content/xdocs/status.xml
src/scratchpad/src/org/apache/poi/hwpf/usermodel/Range.java
src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestHWPFOldDocument.java

index 99ab3a10e55109d6572fa79b451189daebd50241..5be88f7e85252e9c51415d045312c7d2f2851ae2 100644 (file)
@@ -34,6 +34,7 @@
 
     <changes>
         <release version="3.8-beta4" date="2011-??-??">
+           <action dev="poi-developers" type="fix">51678 - Extracting text from Bug51524.zip is slow</action>
            <action dev="poi-developers" type="fix">51671 - HWPFDocument.write based on NPOIFSFileSystem throws a NullPointerException</action>
            <action dev="poi-developers" type="add">support for tables and hyperlinks in XSLF</action>
            <action dev="poi-developers" type="fix">51535 - correct signed vs unsigned short reading in NDocumentInputStream</action>
index f368be1979a48804102e773683522eb314aba1ba..b8fe62c5c354ccda9551c2a8d0aaabef9c08f038 100644 (file)
@@ -21,6 +21,8 @@ import java.lang.ref.WeakReference;
 import java.util.List;
 import java.util.NoSuchElementException;
 
+import org.apache.poi.hwpf.model.BytePropertyNode;
+
 import org.apache.poi.hwpf.HWPFDocument;
 import org.apache.poi.hwpf.HWPFDocumentCore;
 import org.apache.poi.hwpf.model.CHPX;
@@ -770,16 +772,28 @@ public class Range { // TODO -instantiable superclass
             return null;
         }
 
-        int[] point = findRange( _paragraphs, _parStart,
-                Math.max( chpx.getStart(), _start ), chpx.getEnd() );
-
-        if ( point[0] >= _paragraphs.size() )
+        short istd;
+        if ( this instanceof Paragraph )
         {
-            return null;
+            istd = ((Paragraph) this)._istd;
         }
+        else
+        {
+            int[] point = findRange( _paragraphs,
+                    Math.max( chpx.getStart(), _start ),
+                    Math.min( chpx.getEnd(), _end ) );
+
+            initParagraphs();
+            int parStart = Math.max( point[0], _parStart );
+
+            if ( parStart >= _paragraphs.size() )
+            {
+                return null;
+            }
 
-        PAPX papx = _paragraphs.get( point[0] );
-        short istd = papx.getIstd();
+            PAPX papx = _paragraphs.get( point[0] );
+            istd = papx.getIstd();
+        }
 
         CharacterRun chp = new CharacterRun( chpx, _doc.getStyleSheet(), istd,
                 this );
@@ -924,7 +938,7 @@ public class Range { // TODO -instantiable superclass
         */
        private void initParagraphs() {
                if (!_parRangeFound) {
-                       int[] point = findRange(_paragraphs, _parStart, _start, _end);
+                       int[] point = findRange(_paragraphs, _start, _end);
                        _parStart = point[0];
                        _parEnd = point[1];
                        _parRangeFound = true;
@@ -936,7 +950,7 @@ public class Range { // TODO -instantiable superclass
         */
        private void initCharacterRuns() {
                if (!_charRangeFound) {
-                       int[] point = findRange(_characters, _charStart, _start, _end);
+                       int[] point = findRange(_characters, _start, _end);
                        _charStart = point[0];
                        _charEnd = point[1];
                        _charRangeFound = true;
@@ -955,6 +969,105 @@ public class Range { // TODO -instantiable superclass
                }
        }
 
+    private static int binarySearchStart( List<? extends PropertyNode<?>> rpl,
+            int start )
+    {
+        if ( rpl.get( 0 ).getStart() >= start )
+            return 0;
+
+        int low = 0;
+        int high = rpl.size() - 1;
+
+        while ( low <= high )
+        {
+            int mid = ( low + high ) >>> 1;
+            PropertyNode<?> node = rpl.get( mid );
+
+            if ( node.getStart() < start )
+            {
+                low = mid + 1;
+            }
+            else if ( node.getStart() > start )
+            {
+                high = mid - 1;
+            }
+            else
+            {
+                assert node.getStart() == start;
+                return mid;
+            }
+        }
+        assert low != 0;
+        return low - 1;
+    }
+
+    private static int binarySearchEnd( List<? extends PropertyNode<?>> rpl,
+            int foundStart, int end )
+    {
+        if ( rpl.get( rpl.size() - 1 ).getEnd() <= end )
+            return rpl.size() - 1;
+
+        int low = foundStart;
+        int high = rpl.size() - 1;
+
+        while ( low <= high )
+        {
+            int mid = ( low + high ) >>> 1;
+            PropertyNode<?> node = rpl.get( mid );
+
+            if ( node.getEnd() < end )
+            {
+                low = mid + 1;
+            }
+            else if ( node.getEnd() > end )
+            {
+                high = mid - 1;
+            }
+            else
+            {
+                assert node.getEnd() == end;
+                return mid;
+            }
+        }
+        assert 0 <= low && low < rpl.size();
+
+        return low;
+    }
+
+    /**
+     * Used to find the list indexes of a particular property.
+     * 
+     * @param rpl
+     *            A list of property nodes.
+     * @param min
+     *            A hint on where to start looking.
+     * @param start
+     *            The starting character offset.
+     * @param end
+     *            The ending character offset.
+     * @return An int array of length 2. The first int is the start index and
+     *         the second int is the end index.
+     */
+    private int[] findRange( List<? extends PropertyNode<?>> rpl, int start,
+            int end )
+    {
+        int startIndex = binarySearchStart( rpl, start );
+        while ( startIndex > 0 && rpl.get( startIndex - 1 ).getStart() >= start )
+            startIndex--;
+
+        int endIndex = binarySearchEnd( rpl, startIndex, end );
+        while ( endIndex < rpl.size() - 1
+                && rpl.get( endIndex + 1 ).getEnd() <= end )
+            endIndex--;
+
+        if ( startIndex < 0 || startIndex >= rpl.size()
+                || startIndex > endIndex || endIndex < 0
+                || endIndex >= rpl.size() )
+            throw new AssertionError();
+
+        return new int[] { startIndex, endIndex + 1 };
+    }
+
        /**
         * Used to find the list indexes of a particular property.
         *
@@ -971,7 +1084,7 @@ public class Range { // TODO -instantiable superclass
         */
        private int[] findRange(List<? extends PropertyNode<?>> rpl, int min, int start, int end) {
                int x = min;
-
+               
         if ( rpl.size() == min )
             return new int[] { min, min };
 
index 8eca387f0cabd84192ed1363f4aa29f21d2072b9..46bd00dedd65cc673259281fed3454d0a5b43296 100644 (file)
@@ -42,7 +42,7 @@ public final class TestHWPFOldDocument extends HWPFTestCase {
       // Check
       assertEquals(1, doc.getRange().numSections());
       assertEquals(1, doc.getRange().numParagraphs());
-      assertEquals(1, doc.getRange().numCharacterRuns());
+      assertEquals(2, doc.getRange().numCharacterRuns());
       
       assertEquals(
             "The quick brown fox jumps over the lazy dog\r",
@@ -96,7 +96,7 @@ public final class TestHWPFOldDocument extends HWPFTestCase {
       assertEquals(5, doc.getRange().getParagraph(4).numCharacterRuns());
       assertEquals(1, doc.getRange().getParagraph(5).numCharacterRuns());
       // Normal, superscript for 4th, normal
-      assertEquals(3, doc.getRange().getParagraph(6).numCharacterRuns());
+      assertEquals(4, doc.getRange().getParagraph(6).numCharacterRuns());
    }
    
    /**