Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell11
提交
73c3eaec
D
dragonwell11
项目概览
openanolis
/
dragonwell11
通知
7
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell11
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
73c3eaec
编写于
9月 29, 2010
作者:
J
jjg
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6502392: Invalid relative names for Filer.createResource and Filer.getResource
Reviewed-by: darcy
上级
b38377c9
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
121 addition
and
4 deletion
+121
-4
langtools/src/share/classes/com/sun/tools/javac/file/JavacFileManager.java
...re/classes/com/sun/tools/javac/file/JavacFileManager.java
+6
-4
langtools/test/tools/javac/processing/filer/TestInvalidRelativeNames.java
...ools/javac/processing/filer/TestInvalidRelativeNames.java
+115
-0
未找到文件。
langtools/src/share/classes/com/sun/tools/javac/file/JavacFileManager.java
浏览文件 @
73c3eaec
/*
* Copyright (c) 2005, 20
09
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 20
10
, 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
...
...
@@ -605,7 +605,7 @@ public class JavacFileManager extends BaseFileManager implements StandardJavaFil
nullCheck
(
className
);
nullCheck
(
kind
);
if
(!
sourceOrClass
.
contains
(
kind
))
throw
new
IllegalArgumentException
(
"Invalid kind "
+
kind
);
throw
new
IllegalArgumentException
(
"Invalid kind
:
"
+
kind
);
return
getFileForInput
(
location
,
RelativeFile
.
forClass
(
className
,
kind
));
}
...
...
@@ -658,7 +658,7 @@ public class JavacFileManager extends BaseFileManager implements StandardJavaFil
nullCheck
(
className
);
nullCheck
(
kind
);
if
(!
sourceOrClass
.
contains
(
kind
))
throw
new
IllegalArgumentException
(
"Invalid kind "
+
kind
);
throw
new
IllegalArgumentException
(
"Invalid kind
:
"
+
kind
);
return
getFileForOutput
(
location
,
RelativeFile
.
forClass
(
className
,
kind
),
sibling
);
}
...
...
@@ -672,7 +672,7 @@ public class JavacFileManager extends BaseFileManager implements StandardJavaFil
// validatePackageName(packageName);
nullCheck
(
packageName
);
if
(!
isRelativeUri
(
relativeName
))
throw
new
IllegalArgumentException
(
"
relativeName is invalid"
);
throw
new
IllegalArgumentException
(
"
Invalid relative name: "
+
relativeName
);
RelativeFile
name
=
packageName
.
length
()
==
0
?
new
RelativeFile
(
relativeName
)
:
new
RelativeFile
(
RelativeDirectory
.
forPackage
(
packageName
),
relativeName
);
...
...
@@ -806,6 +806,8 @@ public class JavacFileManager extends BaseFileManager implements StandardJavaFil
String
path
=
uri
.
normalize
().
getPath
();
if
(
path
.
length
()
==
0
/* isEmpty() is mustang API */
)
return
false
;
if
(!
path
.
equals
(
uri
.
getPath
()))
// implicitly checks for embedded . and ..
return
false
;
char
first
=
path
.
charAt
(
0
);
return
first
!=
'.'
&&
first
!=
'/'
;
}
...
...
langtools/test/tools/javac/processing/filer/TestInvalidRelativeNames.java
0 → 100644
浏览文件 @
73c3eaec
/*
* Copyright (c) 2010, 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 6502392
* @summary Invalid relative names for Filer.createResource and Filer.getResource
* @compile TestInvalidRelativeNames.java
* @compile/process -processor TestInvalidRelativeNames java.lang.Object
*/
import
java.io.*
;
import
java.util.*
;
import
javax.annotation.processing.*
;
import
javax.lang.model.*
;
import
javax.lang.model.element.*
;
import
javax.tools.Diagnostic
;
import
javax.tools.StandardLocation
;
@SupportedAnnotationTypes
(
"*"
)
public
class
TestInvalidRelativeNames
extends
AbstractProcessor
{
enum
Kind
{
CREATE_WRITER
,
GET_READER
,
CREATE_OUTPUT_STREAM
,
GET_INPUT_STREAM
};
static
final
String
[]
invalidRelativeNames
=
{
"/boo"
,
"goo/../hoo"
,
"./ioo"
,
""
};
@Override
public
SourceVersion
getSupportedSourceVersion
()
{
return
SourceVersion
.
latest
();
}
Filer
filer
;
Messager
messager
;
@Override
public
void
init
(
ProcessingEnvironment
pEnv
)
{
super
.
init
(
pEnv
);
filer
=
processingEnv
.
getFiler
();
messager
=
processingEnv
.
getMessager
();
}
public
boolean
process
(
Set
<?
extends
TypeElement
>
annotations
,
RoundEnvironment
roundEnv
)
{
if
(
roundEnv
.
processingOver
())
{
for
(
String
relative:
invalidRelativeNames
)
{
for
(
Kind
kind:
Kind
.
values
())
{
test
(
relative
,
kind
);
}
}
}
return
true
;
}
void
test
(
String
relative
,
Kind
kind
)
{
System
.
out
.
println
(
"test relative path: "
+
relative
+
", kind: "
+
kind
);
try
{
switch
(
kind
)
{
case
CREATE_WRITER:
Writer
writer
=
filer
.
createResource
(
StandardLocation
.
SOURCE_OUTPUT
,
""
,
relative
).
openWriter
();
writer
.
close
();
break
;
case
GET_READER:
Reader
reader
=
filer
.
getResource
(
StandardLocation
.
SOURCE_OUTPUT
,
""
,
relative
).
openReader
(
true
);
reader
.
close
();
break
;
case
CREATE_OUTPUT_STREAM:
OutputStream
out
=
filer
.
createResource
(
StandardLocation
.
SOURCE_OUTPUT
,
""
,
relative
).
openOutputStream
();
out
.
close
();
break
;
case
GET_INPUT_STREAM:
InputStream
in
=
filer
.
createResource
(
StandardLocation
.
SOURCE_OUTPUT
,
""
,
relative
).
openInputStream
();
in
.
close
();
break
;
}
}
catch
(
IllegalArgumentException
expected
)
{
System
.
out
.
println
(
"expected exception thrown: "
+
expected
);
return
;
}
catch
(
Exception
e
)
{
messager
.
printMessage
(
Diagnostic
.
Kind
.
ERROR
,
"relative path: "
+
relative
+
", kind: "
+
kind
+
", unexpected exception: "
+
e
);
return
;
}
messager
.
printMessage
(
Diagnostic
.
Kind
.
ERROR
,
"relative path: "
+
relative
+
", kind: "
+
kind
+
", no exception thrown"
);
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录