*/\r
public void parseProperty(byte data[], int offset) {\r
int count = LittleEndian.getUShort(data, offset);\r
- offset += LittleEndianConsts.SHORT_SIZE;\r
+ int off = offset + LittleEndianConsts.SHORT_SIZE;\r
for (int i=0; i<count; i++) {\r
- int position = LittleEndian.getShort(data, offset);\r
- offset += LittleEndianConsts.SHORT_SIZE;\r
- int recVal = LittleEndian.getShort(data, offset);\r
+ int position = LittleEndian.getShort(data, off);\r
+ off += LittleEndianConsts.SHORT_SIZE;\r
+ int recVal = LittleEndian.getShort(data, off);\r
TabStopType type = TabStopType.fromRecordVal(recVal);\r
- offset += LittleEndianConsts.SHORT_SIZE;\r
+ off += LittleEndianConsts.SHORT_SIZE;\r
tabStops.add(new TabStop(position, type));\r
\r
}\r
public int getSize() {\r
return LittleEndianConsts.SHORT_SIZE + tabStops.size()*LittleEndianConsts.INT_SIZE;\r
}\r
+ \r
+ @Override\r
+ public TabStopPropCollection clone() {\r
+ TabStopPropCollection other = (TabStopPropCollection)super.clone();\r
+ other.tabStops = new ArrayList<TabStop>();\r
+ for (TabStop ts : tabStops) {\r
+ TabStop tso = new TabStop(ts.getPosition(), ts.getType());\r
+ other.tabStops.add(tso);\r
+ }\r
+ return other;\r
+ }\r
}\r
}
}
+ @Override
public int hashCode() {
final int prime = 31;
int result = 1;
return result;
}
+ @Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (sizeOfDataBlock != other.sizeOfDataBlock) return false;
return true;
}
+
+ @Override
+ public String toString() {
+ int len;
+ switch (sizeOfDataBlock) {
+ case 1: len = 4; break;
+ case 2: len = 6; break;
+ default: len = 10; break;
+ }
+ return String.format("%s = %d (%0#"+len+"X mask / %d bytes)", propName, dataValue, maskInHeader, sizeOfDataBlock);
+ }
}
\ No newline at end of file
// Bingo, data contains this property
TextProp prop = tp.clone();
int val = 0;
- if (prop instanceof TabStopPropCollection) {
- ((TabStopPropCollection)prop).parseProperty(data, dataOffset+bytesPassed);
- } else if (prop.getSize() == 2) {
+ if (prop.getSize() == 2) {
val = LittleEndian.getShort(data,dataOffset+bytesPassed);
} else if(prop.getSize() == 4) {
val = LittleEndian.getInt(data,dataOffset+bytesPassed);
- } else if (prop.getSize() == 0) {
+ } else if (prop.getSize() == 0 && !(prop instanceof TabStopPropCollection)) {
//remember "special" bits.
maskSpecial |= tp.getMask();
continue;
if (prop instanceof BitMaskTextProp) {
((BitMaskTextProp)prop).setValueWithMask(val, containsField);
+ } else if (prop instanceof TabStopPropCollection) {
+ ((TabStopPropCollection)prop).parseProperty(data, dataOffset+bytesPassed);
} else {
prop.setValue(val);
}
charStyles = new ArrayList<TextPropCollection>(levels);
for(short i = 0; i < levels; i++) {
- TextPropCollection prprops = new TextPropCollection(0, TextPropType.paragraph); // getParagraphProps(type, j)
+ TextPropCollection prprops = new TextPropCollection(0, TextPropType.paragraph);
if (type >= TextHeaderAtom.CENTRE_BODY_TYPE) {
// Fetch the 2 byte value, that is safe to ignore for some types of text
short indentLevel = LittleEndian.getShort(_data, pos);
head = LittleEndian.getInt(_data, pos);
pos += LittleEndian.INT_SIZE;
- TextPropCollection chprops = new TextPropCollection(0, TextPropType.character); // getCharacterProps(type, j)
+ TextPropCollection chprops = new TextPropCollection(0, TextPropType.character);
pos += chprops.buildTextPropList( head, _data, pos);
charStyles.add(chprops);
}
import org.apache.poi.ddf.EscherProperties;
import org.apache.poi.hslf.HSLFTestDataSamples;
import org.apache.poi.hslf.exceptions.OldPowerPointFormatException;
+import org.apache.poi.hslf.extractor.PowerPointExtractor;
import org.apache.poi.hslf.model.HeadersFooters;
import org.apache.poi.hslf.record.Document;
import org.apache.poi.hslf.record.Record;
assertEquals("foobaa", tr.getRawText());
ppt2.close();
}
+
+ @Test
+ public void bug58718() throws IOException {
+ String files[] = { "bug58718_008524.ppt","bug58718_008558.ppt","bug58718_349008.ppt","bug58718_008495.ppt", };
+ for (String f : files) {
+ File sample = HSLFTestDataSamples.getSampleFile(f);
+ PowerPointExtractor ex = new PowerPointExtractor(sample.getAbsolutePath());
+ assertNotNull(ex.getText());
+ ex.close();
+ }
+ }
private static HSLFSlideShow open(String fileName) throws IOException {
File sample = HSLFTestDataSamples.getSampleFile(fileName);