From 93b992712a4618918de2e6f247ddeb54a6b2a2f1 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Sat, 14 Sep 2019 14:40:47 +0000 Subject: [PATCH] revert hemf changes due to broken test git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1866948 13f79535-47bb-0310-9956-ffa450edef68 --- .../poi/hemf/record/emf/HemfComment.java | 37 ++++++++++--------- .../apache/poi/hemf/record/emf/HemfMisc.java | 3 +- .../hemf/record/emf/HemfRecordIterator.java | 2 +- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/src/scratchpad/src/org/apache/poi/hemf/record/emf/HemfComment.java b/src/scratchpad/src/org/apache/poi/hemf/record/emf/HemfComment.java index 4b572daaca..70df41135a 100644 --- a/src/scratchpad/src/org/apache/poi/hemf/record/emf/HemfComment.java +++ b/src/scratchpad/src/org/apache/poi/hemf/record/emf/HemfComment.java @@ -104,7 +104,7 @@ public class HemfComment { @Override public long init(LittleEndianInputStream leis, long recordSize, long recordId) throws IOException { int startIdx = leis.getReadIndex(); - data = new EmfCommentDataIterator(leis, Math.toIntExact(recordSize), true).next(); + data = new EmfCommentDataIterator(leis, (int)recordSize, true).next(); return leis.getReadIndex()-startIdx; } @@ -198,9 +198,9 @@ public class HemfComment { // Valid comment identifier values are listed in the following table. // // If this field contains any other value, the comment record MUST be an EMR_COMMENT record - final long commentIdentifier = leis.readUInt(); + final int commentIdentifier = (int)leis.readUInt(); // A 32-bit unsigned integer that identifies the type of public comment record. - final long publicCommentIdentifier = leis.readUInt(); + final int publicCommentIdentifier = (int)leis.readUInt(); final boolean isEmfPublic = (commentIdentifier == HemfCommentRecordType.emfPublic.id); leis.reset(); @@ -211,7 +211,7 @@ public class HemfComment { final EmfCommentData record = commentType.constructor.get(); long readBytes = record.init(leis, dataSize); - final int skipBytes = Math.toIntExact(recordSize-4-readBytes); + final int skipBytes = (int)(recordSize-4-readBytes); assert (skipBytes >= 0); leis.skipFully(skipBytes); @@ -286,7 +286,7 @@ public class HemfComment { long startIdx = leis.getReadIndex(); int commentIdentifier = leis.readInt(); assert (commentIdentifier == HemfCommentRecordType.emfPlus.id); - new HemfPlusRecordIterator(leis, Math.toIntExact(dataSize-LittleEndianConsts.INT_SIZE)).forEachRemaining(records::add); + new HemfPlusRecordIterator(leis, (int)dataSize-LittleEndianConsts.INT_SIZE).forEachRemaining(records::add); return leis.getReadIndex()-startIdx; } @@ -322,14 +322,14 @@ public class HemfComment { public long init(final LittleEndianInputStream leis, final long dataSize) throws IOException { final int startIdx = leis.getReadIndex(); - final long commentIdentifier = leis.readUInt(); + final int commentIdentifier = (int)leis.readUInt(); assert(commentIdentifier == HemfCommentRecordType.emfPublic.id); - final long publicCommentIdentifier = leis.readUInt(); + final int publicCommentIdentifier = (int)leis.readUInt(); assert(publicCommentIdentifier == HemfCommentRecordType.emfBeginGroup.id); HemfDraw.readRectL(leis, bounds); // The number of Unicode characters in the optional description string that follows. - long nDescription = leis.readUInt(); + int nDescription = (int)leis.readUInt(); byte[] buf = IOUtils.safelyAllocate(nDescription * 2L, MAX_RECORD_LENGTH); leis.readFully(buf); @@ -365,9 +365,9 @@ public class HemfComment { public long init(final LittleEndianInputStream leis, final long dataSize) throws IOException { final int startIdx = leis.getReadIndex(); - final long commentIdentifier = leis.readUInt(); + final int commentIdentifier = (int)leis.readUInt(); assert(commentIdentifier == HemfCommentRecordType.emfPublic.id); - final long publicCommentIdentifier = leis.readUInt(); + final int publicCommentIdentifier = (int)leis.readUInt(); assert(publicCommentIdentifier == HemfCommentRecordType.emfEndGroup.id); return leis.getReadIndex()-startIdx; } @@ -391,15 +391,15 @@ public class HemfComment { public long init(final LittleEndianInputStream leis, final long dataSize) throws IOException { final int startIdx = leis.getReadIndex(); - final long commentIdentifier = leis.readUInt(); + final int commentIdentifier = (int)leis.readUInt(); assert(commentIdentifier == HemfCommentRecordType.emfPublic.id); - final long publicCommentIdentifier = leis.readUInt(); + final int publicCommentIdentifier = (int)leis.readUInt(); assert(publicCommentIdentifier == HemfCommentRecordType.emfMultiFormats.id); HemfDraw.readRectL(leis, bounds); // A 32-bit unsigned integer that specifies the number of graphics formats contained in this record. - long countFormats = leis.readUInt(); - for (long pos = 0; pos < countFormats; pos++) { + int countFormats = (int)leis.readUInt(); + for (int i=0; i { long remBytes = recordSize-HEADER_SIZE; long readBytes = record.init(stream, remBytes, recordId); assert (readBytes <= remBytes); - stream.skipFully(Math.toIntExact(remBytes-readBytes)); + stream.skipFully((int)(remBytes-readBytes)); } catch (IOException|RuntimeException e) { throw new RecordFormatException(e); } -- 2.39.5