Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been trying to generate protocol buffer messages from a json string using gson. Does anyone know how if it is possible to do it?

I have already tried:

Gson gson = new Gson();
Type type = new TypeToken<List<PROTOBUFFMESSAGE.Builder>>() {}.getType();
List<PROTOBUFFMESSAGE.Builder> list = (List<PROTOBUFFMESSAGE.Builder>) gson.fromJson(aJsonString, type);

and

Gson gson = new Gson();
Type type = new TypeToken<List<PROTOBUFFMESSAGE>>() {}.getType();
List<PROTOBUFFMESSAGE> list = (List<PROTOBUFFMESSAGE>) gson.fromJson(aJsonString, type);

The message inside the json uses the same names as in the protocol buffer i.e:

message PROTOBUFFMESSAGE {
   optional string this_is_a_message = 1;
   repeated string this_is_a_list = 2;
}

will lead to a json:

[
    {
        "this_is_a_message": "abc",
        "this_is_a_list": [
            "123",
            "qwe"
        ]
    },
    {
        "this_is_a_message": "aaaa",
        "this_is_a_list": [
            "foo",
            "bar"
        ]
    }
]

Although a list with the correct number of PROTOBUFFMESSAGE gets generated, they contain all their fields to null, so I'm not sure if this is a problem with the mapping, the reflection system not detecting protobuffs fields or something else. If anyone know how to do this it would be great. Btw I'm talking about java here.

EDIT:

changing the names in the json to:

        {
            "thisIsAMessage_": "abc",
            "thisIsAList_": [
                "123",
                "qwe"
            ]
        }

Makes the de serialization happen. And it does work except for the list that throws:

java.lang.IllegalArgumentException: Can not set com.google.protobuf.LazyStringList field Helper$...etc big path here...$PROTOBUFFMESSAGE$Builder.thisIsAList_ to java.util.ArrayList
share|improve this question
1  
if open code for generated message with protobuf then optional string this_is_a_message = 1; would be become private String this_is_a_message_; note last underscore and setters/getters. – Nikolay Kuznetsov Jan 16 at 11:48
@NikolayKuznetsov That does work but with the Syntax thisIsAMessage_. The problem now is that the list thisIsAList_ is generated with an UnmodifiableLazyStringList that throws an exception when deserializing :\ – fmsf Jan 16 at 12:02
what exception? deserialization means at receiver side? – Nikolay Kuznetsov Jan 16 at 12:08
java.lang.IllegalArgumentException: Can not set com.google.protobuf.LazyStringList field Helper$...etc...PROTOBUFFMESSAGE$Builder.thisIsAList_ to java.util.ArrayList I'm looking at the stacktrace to see if I can identify the problem, still tks for the help so far – fmsf Jan 16 at 12:14
The exception comes from GSON or Protobuf? – Nikolay Kuznetsov Jan 16 at 12:38
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.