Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
fd4ec021
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看板
提交
fd4ec021
编写于
3月 17, 2008
作者:
W
wetmore
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
29d6f888
ccf3731f
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
77 addition
and
22 deletion
+77
-22
src/share/classes/java/nio/StringCharBuffer.java
src/share/classes/java/nio/StringCharBuffer.java
+7
-13
src/share/classes/java/util/prefs/Preferences.java
src/share/classes/java/util/prefs/Preferences.java
+8
-7
src/solaris/native/sun/nio/ch/FileChannelImpl.c
src/solaris/native/sun/nio/ch/FileChannelImpl.c
+11
-2
test/java/nio/Buffer/StringCharBufferSliceTest.java
test/java/nio/Buffer/StringCharBufferSliceTest.java
+51
-0
未找到文件。
src/share/classes/java/nio/StringCharBuffer.java
浏览文件 @
fd4ec021
...
...
@@ -60,16 +60,9 @@ class StringCharBuffer // package-private
str
=
s
;
}
private
StringCharBuffer
(
CharSequence
s
,
int
mark
,
int
pos
,
int
limit
,
int
cap
)
{
super
(
mark
,
pos
,
limit
,
cap
);
str
=
s
;
}
public
CharBuffer
duplicate
()
{
return
new
StringCharBuffer
(
str
,
markValue
(),
position
(),
limit
(),
capacity
());
position
(),
limit
(),
capacity
()
,
offset
);
}
public
CharBuffer
asReadOnlyBuffer
()
{
...
...
@@ -77,11 +70,11 @@ class StringCharBuffer // package-private
}
public
final
char
get
()
{
return
str
.
charAt
(
nextGetIndex
());
return
str
.
charAt
(
nextGetIndex
()
+
offset
);
}
public
final
char
get
(
int
index
)
{
return
str
.
charAt
(
checkIndex
(
index
));
return
str
.
charAt
(
checkIndex
(
index
)
+
offset
);
}
// ## Override bulk get methods for better performance
...
...
@@ -103,15 +96,16 @@ class StringCharBuffer // package-private
}
final
String
toString
(
int
start
,
int
end
)
{
return
str
.
toString
().
substring
(
start
,
end
);
return
str
.
toString
().
substring
(
start
+
offset
,
end
+
offset
);
}
public
final
CharSequence
subSequence
(
int
start
,
int
end
)
{
try
{
int
pos
=
position
();
return
new
StringCharBuffer
(
str
,
return
new
StringCharBuffer
(
str
,
-
1
,
pos
+
checkIndex
(
start
,
pos
),
pos
+
checkIndex
(
end
,
pos
));
pos
+
checkIndex
(
end
,
pos
),
remaining
(),
offset
);
}
catch
(
IllegalArgumentException
x
)
{
throw
new
IndexOutOfBoundsException
();
}
...
...
src/share/classes/java/util/prefs/Preferences.java
浏览文件 @
fd4ec021
...
...
@@ -32,9 +32,8 @@ import java.security.AccessController;
import
java.security.Permission
;
import
java.security.PrivilegedAction
;
import
java.util.Iterator
;
import
sun.misc.Service
;
import
sun.misc.ServiceConfigurationError
;
import
java.util.ServiceLoader
;
import
java.util.ServiceConfigurationError
;
// These imports needed only as a workaround for a JavaDoc bug
import
java.lang.RuntimePermission
;
...
...
@@ -274,12 +273,14 @@ public abstract class Preferences {
private
static
PreferencesFactory
factory1
()
{
// 2. Try service provider interface
Iterator
i
=
Service
.
providers
(
PreferencesFactory
.
class
,
ClassLoader
.
getSystemClassLoader
());
Iterator
<
PreferencesFactory
>
itr
=
ServiceLoader
.
load
(
PreferencesFactory
.
class
,
ClassLoader
.
getSystemClassLoader
())
.
iterator
();
// choose first provider instance
while
(
i
.
hasNext
())
{
while
(
i
tr
.
hasNext
())
{
try
{
return
(
PreferencesFactory
)
i
.
next
();
return
itr
.
next
();
}
catch
(
ServiceConfigurationError
sce
)
{
if
(
sce
.
getCause
()
instanceof
SecurityException
)
{
// Ignore the security exception, try the next provider
...
...
src/solaris/native/sun/nio/ch/FileChannelImpl.c
浏览文件 @
fd4ec021
...
...
@@ -31,6 +31,7 @@
#include <sys/stat.h>
#include "sun_nio_ch_FileChannelImpl.h"
#include "java_lang_Integer.h"
#include "java_lang_Long.h"
#include "nio.h"
#include "nio_util.h"
#include <dlfcn.h>
...
...
@@ -291,7 +292,11 @@ Java_sun_nio_ch_FileChannelImpl_lock0(JNIEnv *env, jobject this, jobject fdo,
struct
flock64
fl
;
fl
.
l_whence
=
SEEK_SET
;
if
(
size
==
(
jlong
)
java_lang_Long_MAX_VALUE
)
{
fl
.
l_len
=
(
off64_t
)
0
;
}
else
{
fl
.
l_len
=
(
off64_t
)
size
;
}
fl
.
l_start
=
(
off64_t
)
pos
;
if
(
shared
==
JNI_TRUE
)
{
fl
.
l_type
=
F_RDLCK
;
...
...
@@ -325,7 +330,11 @@ Java_sun_nio_ch_FileChannelImpl_release0(JNIEnv *env, jobject this,
int
cmd
=
F_SETLK64
;
fl
.
l_whence
=
SEEK_SET
;
if
(
size
==
(
jlong
)
java_lang_Long_MAX_VALUE
)
{
fl
.
l_len
=
(
off64_t
)
0
;
}
else
{
fl
.
l_len
=
(
off64_t
)
size
;
}
fl
.
l_start
=
(
off64_t
)
pos
;
fl
.
l_type
=
F_UNLCK
;
lockResult
=
fcntl
(
fd
,
cmd
,
&
fl
);
...
...
test/java/nio/Buffer/StringCharBufferSliceTest.java
浏览文件 @
fd4ec021
...
...
@@ -53,6 +53,57 @@ public class StringCharBufferSliceTest {
buff
=
CharBuffer
.
wrap
(
in
,
3
,
in
.
length
());
test
(
buff
,
buff
.
slice
());
System
.
out
.
println
(
">>> StringCharBufferSliceTest-main: testing slice result with get()"
);
buff
.
position
(
4
);
buff
.
limit
(
7
);
CharBuffer
slice
=
buff
.
slice
();
for
(
int
i
=
0
;
i
<
3
;
i
++)
{
if
(
slice
.
get
()
!=
buff
.
get
())
{
throw
new
RuntimeException
(
"Wrong characters in slice result."
);
}
}
System
.
out
.
println
(
">>> StringCharBufferSliceTest-main: testing slice result with get(int)"
);
buff
.
position
(
4
);
buff
.
limit
(
7
);
slice
=
buff
.
slice
();
for
(
int
i
=
0
;
i
<
3
;
i
++)
{
if
(
slice
.
get
(
i
)
!=
buff
.
get
(
4
+
i
))
{
throw
new
RuntimeException
(
"Wrong characters in slice result."
);
}
}
System
.
out
.
println
(
">>> StringCharBufferSliceTest-main: testing toString."
);
buff
.
position
(
4
);
buff
.
limit
(
7
);
slice
=
buff
.
slice
();
if
(!
slice
.
toString
().
equals
(
"tes"
))
{
throw
new
RuntimeException
(
"bad toString() after slice(): "
+
slice
.
toString
());
}
System
.
out
.
println
(
">>> StringCharBufferSliceTest-main: testing subSequence."
);
buff
.
position
(
4
);
buff
.
limit
(
8
);
slice
=
buff
.
slice
();
CharSequence
subSeq
=
slice
.
subSequence
(
1
,
3
);
if
(
subSeq
.
charAt
(
0
)
!=
'e'
||
subSeq
.
charAt
(
1
)
!=
's'
)
{
throw
new
RuntimeException
(
"bad subSequence() after slice(): '"
+
subSeq
+
"'"
);
}
System
.
out
.
println
(
">>> StringCharBufferSliceTest-main: testing duplicate."
);
buff
.
position
(
4
);
buff
.
limit
(
8
);
slice
=
buff
.
slice
();
CharBuffer
dupe
=
slice
.
duplicate
();
if
(
dupe
.
charAt
(
0
)
!=
't'
||
dupe
.
charAt
(
1
)
!=
'e'
||
dupe
.
charAt
(
2
)
!=
's'
||
dupe
.
charAt
(
3
)
!=
't'
)
{
throw
new
RuntimeException
(
"bad duplicate() after slice(): '"
+
dupe
+
"'"
);
}
System
.
out
.
println
(
">>> StringCharBufferSliceTest-main: done!"
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录