From: Andreas Beeker Date: Mon, 16 May 2016 10:02:13 +0000 (+0000) Subject: Reduce calls to utf-related methods - the integration test took ages because of poc... X-Git-Tag: REL_3_15_BETA2~251 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=29c7d7f1db1688491d4dd0e19a9248a3b7b4a9a5;p=poi.git Reduce calls to utf-related methods - the integration test took ages because of poc-shared-strings.xlsx git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1744005 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/examples/src/org/apache/poi/xssf/eventusermodel/examples/FromHowTo.java b/src/examples/src/org/apache/poi/xssf/eventusermodel/examples/FromHowTo.java index 87c6c2ca5e..644cb04efc 100644 --- a/src/examples/src/org/apache/poi/xssf/eventusermodel/examples/FromHowTo.java +++ b/src/examples/src/org/apache/poi/xssf/eventusermodel/examples/FromHowTo.java @@ -18,6 +18,8 @@ package org.apache.poi.xssf.eventusermodel.examples; import java.io.InputStream; import java.util.Iterator; +import java.util.LinkedHashMap; +import java.util.Map; import org.apache.poi.openxml4j.opc.PackageAccess; import org.apache.poi.xssf.eventusermodel.XLSX2CSV; @@ -92,11 +94,26 @@ public class FromHowTo { * See org.xml.sax.helpers.DefaultHandler javadocs */ private static class SheetHandler extends DefaultHandler { - private SharedStringsTable sst; + private final SharedStringsTable sst; private String lastContents; private boolean nextIsString; private boolean inlineStr; + private final LruCache lruCache = new LruCache(50); + private static class LruCache extends LinkedHashMap { + private final int maxEntries; + + public LruCache(final int maxEntries) { + super(maxEntries + 1, 1.0f, true); + this.maxEntries = maxEntries; + } + + @Override + protected boolean removeEldestEntry(final Map.Entry eldest) { + return super.size() > maxEntries; + } + } + private SheetHandler(SharedStringsTable sst) { this.sst = sst; } @@ -121,8 +138,12 @@ public class FromHowTo { // Process the last contents as required. // Do now, as characters() may be called more than once if(nextIsString) { - int idx = Integer.parseInt(lastContents); - lastContents = new XSSFRichTextString(sst.getEntryAt(idx)).toString(); + Integer idx = Integer.valueOf(lastContents); + lastContents = lruCache.get(idx); + if (lastContents == null && !lruCache.containsKey(idx)) { + lastContents = new XSSFRichTextString(sst.getEntryAt(idx)).toString(); + lruCache.put(idx, lastContents); + } nextIsString = false; }