Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8281295: Prototype serialization/deserialization using Unsafe. #761

Closed
wants to merge 12 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/java.base/share/classes/java/io/ObjectInputStream.java
Original file line number Diff line number Diff line change
@@ -2283,7 +2283,6 @@ private Object readOrdinaryObject(boolean unshared)
if (!unshared)
handles.setObject(passHandle, obj);
} else if (desc.isExternalizable()) {
assert obj != null;
if (desc.isValue()) {
throw new NotSerializableException("Externalizable not valid for value class "
+ cl.getName());
@@ -2293,14 +2292,13 @@ private Object readOrdinaryObject(boolean unshared)
readExternalData((Externalizable) obj, desc);
} else if (desc.isValue()) {
// For value objects, read the fields and finish the buffer before publishing the ref
assert obj != null;
assert obj != null : "obj == null: " + desc;
readSerialData(obj, desc);
obj = desc.finishValue(obj);
if (!unshared)
handles.setObject(passHandle, obj);
} else {
// For all other objects, publish the ref and then read the data
assert obj != null;
if (!unshared)
handles.setObject(passHandle, obj);
readSerialData(obj, desc);
4 changes: 1 addition & 3 deletions src/java.base/share/classes/java/io/ObjectStreamClass.java
Original file line number Diff line number Diff line change
@@ -450,9 +450,7 @@ public Void run() {
if (deserializeEx == null) {
if (isEnum) {
deserializeEx = new ExceptionInfo(name, "enum type");
} else if (cl.isValue() && writeReplaceMethod == null) {
deserializeEx = new ExceptionInfo(name, "value class");
} else if (cons == null && !isRecord) {
} else if (cons == null && !(isRecord | isValue)) {
deserializeEx = new ExceptionInfo(name, "no valid constructor");
}
}
Original file line number Diff line number Diff line change
@@ -24,7 +24,6 @@
/*
* @test
* @summary ValueSerialization support of value classes
* @compile -XDenablePrimitiveClasses Point.java Line.java NonFlattenValue.java Serialization.java
* @run testng/othervm ValueSerialization
*/