mirror of https://github.com/apache/poi.git
Bug 55732 - PPT can't open, fails with "Couldn't instantiate .... StyleTextProp9Atom : java.lang.ArrayIndexOutOfBoundsException: 56"
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1569984 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4eb5150fc3
commit
146eadef69
|
@ -27,11 +27,9 @@ import org.apache.poi.util.LittleEndian;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The atom record that specifies additional text formatting.
|
* The atom record that specifies additional text formatting.
|
||||||
*
|
|
||||||
* @author Alex Nikiforov [mailto:anikif@gmail.com]
|
|
||||||
*/
|
*/
|
||||||
public final class StyleTextProp9Atom extends RecordAtom {
|
public final class StyleTextProp9Atom extends RecordAtom {
|
||||||
private final TextPFException9[] autoNumberSchemes;
|
private final TextPFException9[] autoNumberSchemes;
|
||||||
/** Record header. */
|
/** Record header. */
|
||||||
private byte[] header;
|
private byte[] header;
|
||||||
/** Record data. */
|
/** Record data. */
|
||||||
|
@ -50,7 +48,7 @@ public final class StyleTextProp9Atom extends RecordAtom {
|
||||||
*/
|
*/
|
||||||
protected StyleTextProp9Atom(byte[] source, int start, int len) {
|
protected StyleTextProp9Atom(byte[] source, int start, int len) {
|
||||||
// Get the header.
|
// Get the header.
|
||||||
final List<TextPFException9> schemes = new LinkedList<TextPFException9>();
|
final List<TextPFException9> schemes = new LinkedList<TextPFException9>();
|
||||||
header = new byte[8];
|
header = new byte[8];
|
||||||
System.arraycopy(source,start, header,0,8);
|
System.arraycopy(source,start, header,0,8);
|
||||||
this.version = LittleEndian.getShort(header, 0);
|
this.version = LittleEndian.getShort(header, 0);
|
||||||
|
@ -61,42 +59,51 @@ public final class StyleTextProp9Atom extends RecordAtom {
|
||||||
data = new byte[len-8];
|
data = new byte[len-8];
|
||||||
System.arraycopy(source, start+8, data, 0, len-8);
|
System.arraycopy(source, start+8, data, 0, len-8);
|
||||||
for (int i = 0; i < data.length; ) {
|
for (int i = 0; i < data.length; ) {
|
||||||
final TextPFException9 item = new TextPFException9(data, i);
|
final TextPFException9 item = new TextPFException9(data, i);
|
||||||
schemes.add(item);
|
schemes.add(item);
|
||||||
i += item.getRecordLength();
|
i += item.getRecordLength();
|
||||||
//int textCfException9 = LittleEndian.getInt(data, i );
|
|
||||||
//TODO analyze textCfException when have some test data
|
if (i >= data.length) {
|
||||||
i += 4;
|
break;
|
||||||
int textSiException = LittleEndian.getInt(data, i );
|
}
|
||||||
i += + 4;//TextCFException9 + SIException
|
int textCfException9 = LittleEndian.getInt(data, i );
|
||||||
if (0 != (textSiException & 0x40)) {
|
i += 4;
|
||||||
i += 2; //skip fBidi
|
//TODO analyze textCfException when have some test data
|
||||||
}
|
|
||||||
if (i >= data.length) {
|
if (i >= data.length) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
int textSiException = LittleEndian.getInt(data, i );
|
||||||
|
i += 4;//TextCFException9 + SIException
|
||||||
|
|
||||||
|
if (0 != (textSiException & 0x40)) {
|
||||||
|
i += 2; //skip fBidi
|
||||||
|
}
|
||||||
|
if (i >= data.length) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
this.autoNumberSchemes = (TextPFException9[]) schemes.toArray(new TextPFException9[schemes.size()]);
|
this.autoNumberSchemes = (TextPFException9[]) schemes.toArray(new TextPFException9[schemes.size()]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the record type.
|
* Gets the record type.
|
||||||
* @return the record type.
|
* @return the record type.
|
||||||
*/
|
*/
|
||||||
public long getRecordType() { return this.recordId; }
|
public long getRecordType() { return this.recordId; }
|
||||||
|
|
||||||
public short getVersion() {
|
public short getVersion() {
|
||||||
return version;
|
return version;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getLength() {
|
public int getLength() {
|
||||||
return length;
|
return length;
|
||||||
}
|
}
|
||||||
public TextPFException9[] getAutoNumberTypes() {
|
public TextPFException9[] getAutoNumberTypes() {
|
||||||
return this.autoNumberSchemes;
|
return this.autoNumberSchemes;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Write the contents of the record back, so it can be written
|
* Write the contents of the record back, so it can be written
|
||||||
* to disk
|
* to disk
|
||||||
*
|
*
|
||||||
|
|
|
@ -21,6 +21,7 @@ import static org.junit.Assert.assertEquals;
|
||||||
import static org.junit.Assert.assertNotNull;
|
import static org.junit.Assert.assertNotNull;
|
||||||
import static org.junit.Assert.assertTrue;
|
import static org.junit.Assert.assertTrue;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
@ -38,6 +39,7 @@ import org.apache.poi.hslf.HSLFTestDataSamples;
|
||||||
import org.apache.poi.hslf.exceptions.OldPowerPointFormatException;
|
import org.apache.poi.hslf.exceptions.OldPowerPointFormatException;
|
||||||
import org.apache.poi.hslf.model.Background;
|
import org.apache.poi.hslf.model.Background;
|
||||||
import org.apache.poi.hslf.model.Fill;
|
import org.apache.poi.hslf.model.Fill;
|
||||||
|
import org.apache.poi.hslf.model.HeadersFooters;
|
||||||
import org.apache.poi.hslf.model.MasterSheet;
|
import org.apache.poi.hslf.model.MasterSheet;
|
||||||
import org.apache.poi.hslf.model.Notes;
|
import org.apache.poi.hslf.model.Notes;
|
||||||
import org.apache.poi.hslf.model.Picture;
|
import org.apache.poi.hslf.model.Picture;
|
||||||
|
@ -484,4 +486,20 @@ public final class TestBugs {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void bug55732() throws Exception {
|
||||||
|
File file = _slTests.getFile("bug55732.ppt");
|
||||||
|
|
||||||
|
HSLFSlideShow ss = new HSLFSlideShow(file.getAbsolutePath());
|
||||||
|
SlideShow _show = new SlideShow(ss);
|
||||||
|
Slide[] _slides = _show.getSlides();
|
||||||
|
|
||||||
|
/* Iterate over slides and extract text */
|
||||||
|
for( Slide slide : _slides ) {
|
||||||
|
HeadersFooters hf = slide.getHeadersFooters();
|
||||||
|
boolean visible = hf.isHeaderVisible(); // exception happens here
|
||||||
|
}
|
||||||
|
assertTrue("No Exceptions while reading headers", true);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue