-
Notifications
You must be signed in to change notification settings - Fork 13
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
Introduce new property 'subzero.referenceresolver.class' where we could specify Kryo's ReferenceResolver implementation #25
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
...java/info/jerrinot/subzero/internal/strategy/KryoStrategyCustomReferenceResolverTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package info.jerrinot.subzero.internal.strategy; | ||
|
||
import com.esotericsoftware.kryo.Kryo; | ||
import com.esotericsoftware.kryo.ReferenceResolver; | ||
import info.jerrinot.subzero.UserSerializer; | ||
import org.junit.Test; | ||
|
||
import java.lang.reflect.Field; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
|
||
public class KryoStrategyCustomReferenceResolverTest { | ||
|
||
@SuppressWarnings("unchecked") | ||
@Test | ||
public void should_use_strategy_with_specified_reference_resolver() throws Exception { | ||
// given | ||
System.setProperty("subzero.referenceresolver.class", "info.jerrinot.subzero.internal.strategy.NullReferenceResolver"); | ||
GlobalKryoStrategy kryoStrategy = new GlobalKryoStrategy(NULL_USER_SERIALIZER); | ||
|
||
// when | ||
Field field = KryoStrategy.class.getDeclaredField("KRYOS"); | ||
field.setAccessible(true); | ||
Class<? extends ReferenceResolver> actualClassResolver = ((ThreadLocal<KryoContext>) field.get(kryoStrategy)) | ||
.get().getKryo().getReferenceResolver().getClass(); | ||
|
||
// then | ||
assertEquals(NullReferenceResolver.class, actualClassResolver); | ||
} | ||
|
||
private static final UserSerializer NULL_USER_SERIALIZER = new UserSerializer() { | ||
@Override | ||
public void registerSingleSerializer(Kryo kryo, Class clazz) { | ||
// do nothing | ||
} | ||
@Override | ||
public void registerAllSerializers(Kryo kryo) { | ||
// do nothing | ||
} | ||
}; | ||
} |
46 changes: 46 additions & 0 deletions
46
...ero-core/src/test/java/info/jerrinot/subzero/internal/strategy/NullReferenceResolver.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
package info.jerrinot.subzero.internal.strategy; | ||
|
||
import com.esotericsoftware.kryo.Kryo; | ||
import com.esotericsoftware.kryo.ReferenceResolver; | ||
|
||
public class NullReferenceResolver implements ReferenceResolver { | ||
@Override | ||
public void setKryo(Kryo kryo) { | ||
// do nothing | ||
} | ||
|
||
@Override | ||
public int getWrittenId(Object object) { | ||
return 0; | ||
} | ||
|
||
@Override | ||
public int addWrittenObject(Object object) { | ||
return 0; | ||
} | ||
|
||
@Override | ||
public int nextReadId(Class type) { | ||
return 0; | ||
} | ||
|
||
@Override | ||
public void setReadObject(int id, Object object) { | ||
// do nothing | ||
} | ||
|
||
@Override | ||
public Object getReadObject(Class type, int id) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public void reset() { | ||
// do nothing | ||
} | ||
|
||
@Override | ||
public boolean useReferences(Class type) { | ||
return false; | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shouldnt you respect the properties even when the
IGNORE_HAZELCAST_CLASSLOADER
is set totrue
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a good question. We could assume that the property
com.esotericsoftware.kryo.util.MapReferenceResolver
should ignore whether the Hazelcast class loader is ignored or not as we care only about theReferenceResolver
.So in line 42 we should have sth like this:
Do you agree?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes. ☝️ looks good.
thanks for the PR!