-
Notifications
You must be signed in to change notification settings - Fork 325
Remove synchronized methods in favour of ConcurrentHashMap using #76
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
Closed
Closed
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
8909b2f
remove synchronized methods in favour of ConcurrentHashMap using
240df62
Revert "remove synchronized methods in favour of ConcurrentHashMap us…
8cda7d1
Remove synchronized only from lookup method
2db2f0d
Remove synchronized only from lookup method
99d9a3f
Remove synchronized only from lookup method
5db19c1
Change wait notify to countdown latch
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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -32,6 +32,7 @@ | |
| import java.math.BigDecimal; | ||
| import java.math.BigInteger; | ||
| import java.nio.ByteBuffer; | ||
| import java.util.concurrent.ConcurrentHashMap; | ||
|
|
||
| import org.msgpack.MessagePackable; | ||
| import org.msgpack.MessageTypeException; | ||
|
|
@@ -76,8 +77,8 @@ public class TemplateRegistry { | |
| private TemplateRegistry() { | ||
| parent = null; | ||
| chain = createTemplateBuilderChain(); | ||
| genericCache = new HashMap<Type, GenericTemplate>(); | ||
| cache = new HashMap<Type, Template<Type>>(); | ||
| genericCache = new ConcurrentHashMap<Type, GenericTemplate>(); | ||
| cache = new ConcurrentHashMap<Type, Template<Type>>(); | ||
| registerTemplates(); | ||
| cache = Collections.unmodifiableMap(cache); | ||
| } | ||
|
|
@@ -196,7 +197,7 @@ public synchronized void unregister() { | |
| cache.clear(); | ||
| } | ||
|
|
||
| public synchronized Template lookup(Type targetType) { | ||
| public Template lookup(Type targetType) { | ||
| Template tmpl; | ||
|
|
||
| if (targetType instanceof ParameterizedType) { | ||
|
|
@@ -550,12 +551,11 @@ private synchronized Template buildAndRegister(TemplateBuilder builder, | |
| final FieldList flist) { | ||
| Template newTmpl = null; | ||
| Template oldTmpl = null; | ||
| TemplateReference ref = null; | ||
| try { | ||
| if (cache.containsKey(targetClass)) { | ||
| oldTmpl = cache.get(targetClass); | ||
| } | ||
| newTmpl = new TemplateReference(this, targetClass); | ||
| cache.put(targetClass, newTmpl); | ||
| oldTmpl = cache.get(targetClass); | ||
| ref = new TemplateReference(this, targetClass); | ||
| cache.put(targetClass, ref); | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Move put to the end of template build cause without synchronization other threads can see not initialized version |
||
| if (builder == null) { | ||
| builder = chain.select(targetClass, hasAnnotation); | ||
| } | ||
|
|
@@ -578,6 +578,9 @@ private synchronized Template buildAndRegister(TemplateBuilder builder, | |
| if (newTmpl != null) { | ||
| cache.put(targetClass, newTmpl); | ||
| } | ||
| if(ref != null) { | ||
| ref.setReady(); | ||
| } | ||
| } | ||
| } | ||
|
|
||
|
|
||
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.
Without synchronized keyword, a thread can call register() or unregister() while another thread is executing this method. Did you consider those cases already?
As you know, this method calls register() and cache.get() at some points. So we need to take account of such as the case that thread#A calls unregister() while thread#B is executing in the middle of lookupInterfaceTypes().
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.
I also changed HashMap to ConcurrentHashMap which is fully thread safe. So you can remove all synchronized methods over the maps if you need :) You can look into the ConcurrentHashMap source code where you will find locked write and optimistic read with locked fallback :)