]> granicus.if.org Git - libjpeg-turbo/commit
TJBench: Recover from non-fatal errors if possible
authorDRC <information@libjpeg-turbo.org>
Thu, 29 Jun 2017 21:49:09 +0000 (16:49 -0500)
committerDRC <information@libjpeg-turbo.org>
Thu, 29 Jun 2017 22:09:53 +0000 (17:09 -0500)
commitc94531212fe4f460ce00e22a12fd522bb71c3d7a
treeaaa572c147b3f46cddea30070de6db013ab3fcff
parent9baef107e151c0d5a79abec6c09b545eaef02a27
TJBench: Recover from non-fatal errors if possible

Previously, -stoponwarning only had an effect on the underlying
TurboJPEG C functions, but TJBench still aborted if a non-fatal error
occurred.  This commit modifies the C version of TJBench such that it
always recovers from a non-fatal error unless -stoponwarning is
specified.  Furthermore, the benchmark stores the details of the last
non-fatal error and does not print any subsequent non-fatal error
messages unless they differ from the last one.

Due to limitations in the Java API (specifically, the fact that it
cannot communicate errors, fatal or otherwise, to the calling program
without throwing a TJException), it was only possible to make
decompression operations fully recoverable within TJBench.  With other
operations, -stoponwarning still has an effect on the underlying C
library but has no effect at the Java level.

The Java API documentation has been amended to reflect that only certain
methods are truly recoverable, regardless of the state of
TJ.FLAG_STOPONWARNING.
java/TJBench.java
java/doc/org/libjpegturbo/turbojpeg/TJ.html
java/doc/org/libjpegturbo/turbojpeg/TJDecompressor.html
java/org/libjpegturbo/turbojpeg/TJ.java
java/org/libjpegturbo/turbojpeg/TJDecompressor.java
tjbench.c