Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
944d7953
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
944d7953
编写于
1月 24, 2014
作者:
P
prr
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8032370: No "Truncated file" warning from IIOReadWarningListener on JPEGImageReader
Reviewed-by: bae, vadim
上级
24d72c43
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
73 addition
and
3 deletion
+73
-3
src/share/native/sun/awt/image/jpeg/imageioJPEG.c
src/share/native/sun/awt/image/jpeg/imageioJPEG.c
+4
-2
src/share/native/sun/awt/image/jpeg/jpegdecoder.c
src/share/native/sun/awt/image/jpeg/jpegdecoder.c
+1
-1
test/javax/imageio/plugins/jpeg/TruncatedImageWarningTest.java
...javax/imageio/plugins/jpeg/TruncatedImageWarningTest.java
+68
-0
test/javax/imageio/plugins/jpeg/truncated.jpg
test/javax/imageio/plugins/jpeg/truncated.jpg
+0
-0
未找到文件。
src/share/native/sun/awt/image/jpeg/imageioJPEG.c
浏览文件 @
944d7953
...
...
@@ -939,7 +939,9 @@ imageio_fill_input_buffer(j_decompress_ptr cinfo)
JPEGImageReader_readInputDataID
,
sb
->
hstreamBuffer
,
0
,
sb
->
bufferLength
);
if
(
ret
>
sb
->
bufferLength
)
ret
=
sb
->
bufferLength
;
if
((
ret
>
0
)
&&
((
unsigned
int
)
ret
>
sb
->
bufferLength
))
{
ret
=
sb
->
bufferLength
;
}
if
((
*
env
)
->
ExceptionOccurred
(
env
)
||
!
GET_ARRAYS
(
env
,
data
,
&
(
src
->
next_input_byte
)))
{
cinfo
->
err
->
error_exit
((
j_common_ptr
)
cinfo
);
...
...
@@ -1036,7 +1038,7 @@ imageio_fill_suspended_buffer(j_decompress_ptr cinfo)
JPEGImageReader_readInputDataID
,
sb
->
hstreamBuffer
,
offset
,
buflen
);
if
(
ret
>
buflen
)
ret
=
buflen
;
if
(
(
ret
>
0
)
&&
((
unsigned
int
)
ret
>
buflen
)
)
ret
=
buflen
;
if
((
*
env
)
->
ExceptionOccurred
(
env
)
||
!
GET_ARRAYS
(
env
,
data
,
&
(
src
->
next_input_byte
)))
{
cinfo
->
err
->
error_exit
((
j_common_ptr
)
cinfo
);
...
...
src/share/native/sun/awt/image/jpeg/jpegdecoder.c
浏览文件 @
944d7953
...
...
@@ -350,7 +350,7 @@ sun_jpeg_fill_suspended_buffer(j_decompress_ptr cinfo)
}
ret
=
(
*
env
)
->
CallIntMethod
(
env
,
src
->
hInputStream
,
InputStream_readID
,
src
->
hInputBuffer
,
offset
,
buflen
);
if
(
ret
>
buflen
)
ret
=
buflen
;
if
(
(
ret
>
0
)
&&
((
unsigned
int
)
ret
>
buflen
)
)
ret
=
buflen
;
if
((
*
env
)
->
ExceptionOccurred
(
env
)
||
!
GET_ARRAYS
(
env
,
src
))
{
cinfo
->
err
->
error_exit
((
struct
jpeg_common_struct
*
)
cinfo
);
}
...
...
test/javax/imageio/plugins/jpeg/TruncatedImageWarningTest.java
0 → 100644
浏览文件 @
944d7953
/*
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* @test
* @bug 8032370
*
* @summary Test verifies that Image I/O jpeg reader correctly handles
* and warns of a truncated image stream.
*
* @run main TruncatedImageWarningTest
*/
import
java.io.File
;
import
java.io.IOException
;
import
javax.imageio.ImageIO
;
import
javax.imageio.ImageReader
;
import
javax.imageio.event.IIOReadWarningListener
;
import
javax.imageio.stream.ImageInputStream
;
public
class
TruncatedImageWarningTest
implements
IIOReadWarningListener
{
private
static
String
fileName
=
"truncated.jpg"
;
boolean
receivedWarning
=
false
;
public
static
void
main
(
String
[]
args
)
throws
IOException
{
String
sep
=
System
.
getProperty
(
"file.separator"
);
String
dir
=
System
.
getProperty
(
"test.src"
,
"."
);
String
filePath
=
dir
+
sep
+
fileName
;
System
.
out
.
println
(
"Test file: "
+
filePath
);
File
f
=
new
File
(
filePath
);
ImageInputStream
in
=
ImageIO
.
createImageInputStream
(
f
);
ImageReader
reader
=
ImageIO
.
getImageReaders
(
in
).
next
();
TruncatedImageWarningTest
twt
=
new
TruncatedImageWarningTest
();
reader
.
addIIOReadWarningListener
(
twt
);
reader
.
setInput
(
in
);
reader
.
read
(
0
);
if
(!
twt
.
receivedWarning
)
{
throw
new
RuntimeException
(
"No expected warning"
);
}
}
public
void
warningOccurred
(
ImageReader
source
,
String
warning
)
{
System
.
out
.
println
(
"Expected warning: "
+
warning
);
receivedWarning
=
true
;
}
}
test/javax/imageio/plugins/jpeg/truncated.jpg
0 → 100644
浏览文件 @
944d7953
1.9 KB
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录