-
Notifications
You must be signed in to change notification settings - Fork 593
HDDS-14561. SCMRatisRequest/ResponseProto should use the shaded protobuf from Ratis #9733
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
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
e87984a
HDDS-14561. SCMRatisRequest/ResponseProto should use the shaded proto…
Russole c0b3145
Fix checkstyle error
Russole 4aa8930
Apply review feedback on protobuf handling
Russole eaa58a0
Merge branch 'master' into HDDS-14561
Russole 8eeaa6e
Fix shaded protobuf mismatch in TestSCMRatisProtocolCompatibility test
Russole 298f5de
Fix unit test error
Russole ac43a62
Refactor implementation and update CodecFactory
Russole 2351cd1
Fix checkstyle error
Russole df9720b
Add ByteString handling support, adopt UnsafeByteOperations, and clea…
Russole b1955b1
Use UnsafeByteOperations to reduce unnecessary ByteString allocations
Russole d2702dd
Merge remote-tracking branch 'origin/master' into HDDS-14561
adoroszlai 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
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
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
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
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 |
|---|---|---|
|
|
@@ -17,34 +17,36 @@ | |
|
|
||
| package org.apache.hadoop.hdds.scm.ha.io; | ||
|
|
||
| import com.google.protobuf.ByteString; | ||
| import com.google.protobuf.InvalidProtocolBufferException; | ||
| import com.google.protobuf.Message; | ||
| import java.lang.reflect.InvocationTargetException; | ||
| import org.apache.hadoop.hdds.scm.ha.ReflectionUtil; | ||
| import org.apache.ratis.thirdparty.com.google.protobuf.ByteString; | ||
| import org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException; | ||
| import org.apache.ratis.thirdparty.com.google.protobuf.UnsafeByteOperations; | ||
|
|
||
| /** | ||
| * {@link Codec} for {@link Message} objects. | ||
| * {@link Codec} implementation for non-shaded | ||
| * {@link com.google.protobuf.Message} objects. | ||
| */ | ||
| public class GeneratedMessageCodec implements Codec { | ||
|
|
||
| @Override | ||
| public ByteString serialize(Object object) { | ||
| return ((Message)object).toByteString(); | ||
|
Contributor
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. Do we need to support both com.google.protobuf.Message and org.apache.ratis.thirdparty.com.google.protobuf.Message? If yes, use two GeneratedMessageCodec classes instead of using one class. Also, we need to put them to CodecFactory. //CodecFactory
codecs.put(com.google.protobuf.Message.class, new GeneratedMessageCodec());
codecs.put(Message.class, new ScmGeneratedMessageCodec()); |
||
| public ByteString serialize(Object object) | ||
| throws InvalidProtocolBufferException { | ||
| return UnsafeByteOperations.unsafeWrap( | ||
| ((Message) object).toByteString().asReadOnlyByteBuffer()); | ||
| } | ||
|
|
||
| @Override | ||
| public Message deserialize(Class<?> type, ByteString value) | ||
| public Object deserialize(Class<?> type, ByteString value) | ||
| throws InvalidProtocolBufferException { | ||
| try { | ||
| return (Message) ReflectionUtil.getMethod(type, | ||
| "parseFrom", byte[].class) | ||
| return ReflectionUtil.getMethod(type, "parseFrom", byte[].class) | ||
| .invoke(null, (Object) value.toByteArray()); | ||
| } catch (NoSuchMethodException | IllegalAccessException | ||
| | InvocationTargetException ex) { | ||
| | InvocationTargetException ex) { | ||
| ex.printStackTrace(); | ||
| throw new InvalidProtocolBufferException( | ||
| "Message cannot be decoded: " + ex.getMessage()); | ||
| throw new InvalidProtocolBufferException("Message cannot be decoded: " + ex.getMessage()); | ||
| } | ||
| } | ||
| } | ||
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
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
Oops, something went wrong.
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.
FYI, filed HDDS-14623 for removing ProtoUtils.