-
Notifications
You must be signed in to change notification settings - Fork 100
Add Message.from_json #411
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
Open
aslakhellesoy
wants to merge
7
commits into
ruby-protobuf:3-10-stable
Choose a base branch
from
cucumber-attic:message-from-json
base: 3-10-stable
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
7ead826
Add Message.from_json
aslakhellesoy af04e05
Serialise enum fields to JSON as name instead of integer value
aslakhellesoy ccad264
merge with 3-10-stable
aslakhellesoy a26a89a
Force binary encoding to avoid Base64 decoding
aslakhellesoy f6f2b33
Force binary encoding to avoid Base64 decoding
aslakhellesoy 0ad6527
Fix rubocop warnings
aslakhellesoy 02fb929
Add optional options field to enum_field.rb. See #415.
aslakhellesoy 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,22 @@ def self.to_json | |
name | ||
end | ||
|
||
def self.from_json(json) | ||
fields = normalize_json(JSON.parse(json)) | ||
new(fields) | ||
end | ||
|
||
def self.normalize_json(ob) | ||
case ob | ||
when Array | ||
ob.map { |value| normalize_json(value) } | ||
when Hash | ||
Hash[*ob.flat_map { |key, value| [key.underscore, normalize_json(value)] }] | ||
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. The underscore thing seems like we'd want to make that optional? |
||
else | ||
ob | ||
end | ||
end | ||
|
||
## | ||
# Constructor | ||
# | ||
|
@@ -150,7 +166,7 @@ def to_json_hash(options = {}) | |
|
||
# NB: to_json_hash_value should come before json_encode so as to handle | ||
# repeated fields without extra logic. | ||
hashed_value = if value.respond_to?(:to_json_hash_value) | ||
hashed_value = if value.respond_to?(:to_json_hash_value) && !field.is_a?(::Protobuf::Field::EnumField) | ||
value.to_json_hash_value(options) | ||
elsif field.respond_to?(:json_encode) | ||
field.json_encode(value) | ||
|
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
Binary file not shown.
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
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.
Would it make sense to make this configurable at the
from_json
method? You can specify if your uses Base64 encoded binary blobs? Maybe true by default but allow the caller to turn it off? That way we don't have to guess.