Skip to content

Commit

Permalink
[Ruby] allow encode json options to be an object that responds to to_…
Browse files Browse the repository at this point in the history
…hash (#9513)

* allow encode json options to be an object that responds to to_hash

fixes #9500

* try to convert options arg to hash if it is not a hash
  • Loading branch information
lukad committed Mar 8, 2022
1 parent 92cdf87 commit 24a0659
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
6 changes: 5 additions & 1 deletion ruby/ext/google/protobuf_c/message.c
Expand Up @@ -1141,7 +1141,11 @@ static VALUE Message_encode_json(int argc, VALUE* argv, VALUE klass) {
if (argc == 2) {
VALUE hash_args = argv[1];
if (TYPE(hash_args) != T_HASH) {
rb_raise(rb_eArgError, "Expected hash arguments.");
if (RTEST(rb_funcall(hash_args, rb_intern("respond_to?"), 1, rb_str_new2("to_h")))) {
hash_args = rb_funcall(hash_args, rb_intern("to_h"), 0);
} else {
rb_raise(rb_eArgError, "Expected hash arguments.");
}
}

if (RTEST(rb_hash_lookup2(hash_args,
Expand Down
10 changes: 9 additions & 1 deletion ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java
Expand Up @@ -555,7 +555,15 @@ public static IRubyObject encodeJson(ThreadContext context, IRubyObject recv, IR
String result;

if (args.length > 1) {
RubyHash options = (RubyHash) args[1];
RubyHash options;
if (args[1] instanceof RubyHash) {
options = (RubyHash) args[1];
} else if (args[1].respondsTo("to_h")) {
options = (RubyHash) args[1].callMethod(context, "to_h");
} else {
throw runtime.newArgumentError("Expected hash arguments.");
}

IRubyObject emitDefaults = options.fastARef(runtime.newSymbol("emit_defaults"));
IRubyObject preserveNames = options.fastARef(runtime.newSymbol("preserve_proto_fieldnames"));

Expand Down
3 changes: 3 additions & 0 deletions ruby/tests/common_tests.rb
Expand Up @@ -870,6 +870,9 @@ def test_protobuf_encode_decode_json_helpers

decoded_msg = Google::Protobuf.decode_json(proto_module::TestMessage, encoded_msg)
assert_equal proto_module::TestMessage.decode_json(m.to_json), decoded_msg

assert_equal [m].to_json, Google::Protobuf.encode_json([m])
assert_equal proto_module::TestMessage.decode_json([m.to_json].first), decoded_msg
end

def test_def_errors
Expand Down

0 comments on commit 24a0659

Please sign in to comment.