I'm trying to test a recursive Protocol Buffers definition (using Java but probably doesn't matter). I'm trying to fill in my message with 2 levels deep of RootType messages of "otherGreetings" (a recursive structure). I can't get the syntax correct and can't find any samples. I either end up with a stack overflow or my messages all get jammed into the same "otherGreetings" list. Any thoughts? Here's my message.
option java_outer_classname = "RootTypeProto";
message RootType{
required string attribute1 = 1;
optional string attribute2 = 2;
optional string attribute3 = 3;
required string attribute4 = 4;
required string element1 = 5;
optional string element2 = 6;
repeated string element3 = 7;
repeated string element4 = 8;
required WorldType world = 9;
optional WorldType alternateWorld = 10;
repeated RootType otherGreetings = 11;
repeated Bar foo = 12;
}
message WorldType{
required string attribute1 = 1;
repeated string element1 = 2;
}
message Bar{
required string element2 = 1;
}
Update: wrote a simple example that solved my problem
The problem is in a separate nested object that appears not to be walking the tree correctly to build the structure. Here's the simple example showing it work correctly now:
@Test
public void testWritingReadingProto() throws Exception {
// Build complex obj WorldType
proto.gen.RootTypeProto.WorldType.Builder worldBuilder = proto.gen.RootTypeProto.WorldType
.newBuilder();
worldBuilder.setAttribute1("world-attr1");
worldBuilder.addElement1("world-elem1a");
worldBuilder.addElement1("world-elem1b");
// Build complex obj RootType (level 2)
proto.gen.RootTypeProto.RootType.Builder rootLevel2 = proto.gen.RootTypeProto.RootType
.newBuilder();
rootLevel2.setAttribute1("level2-attr1");
rootLevel2.setAttribute2("level2-attr2");
rootLevel2.setAttribute3("level2-attr3");
rootLevel2.setAttribute4("level2-attr4");
rootLevel2.setElement1("level2-elem1");
rootLevel2.setElement2("level2-elem2");
rootLevel2.setWorld(worldBuilder);
// Build complex obj RootType (level 1)
proto.gen.RootTypeProto.RootType.Builder rootLevel1 = proto.gen.RootTypeProto.RootType
.newBuilder();
rootLevel1.setAttribute1("level1-attr1");
rootLevel1.setAttribute2("level1-attr2");
rootLevel1.setAttribute3("level1-attr3");
rootLevel1.setAttribute4("level1-attr4");
rootLevel1.setElement1("level1-elem1");
rootLevel1.setElement2("level1-elem2");
rootLevel1.setWorld(worldBuilder);
rootLevel1.addOtherGreetings(rootLevel2);
// Build complex msg WorldType
proto.gen.RootTypeProto.RootType.Builder rootBuilder = proto.gen.RootTypeProto.RootType
.newBuilder();
rootBuilder.setAttribute1("attr1");
rootBuilder.setAttribute2("attr2");
rootBuilder.setAttribute3("attr3");
rootBuilder.setAttribute4("attr4");
rootBuilder.setElement1("elem1");
rootBuilder.setElement2("elem2");
// Add complex
rootBuilder.setWorld(worldBuilder);
rootBuilder.addOtherGreetings(rootLevel1);
// Build structure for output
proto.gen.RootTypeProto.RootType root = rootBuilder.build();
// Confirm structure
Assert.assertEquals("attr1", root.getAttribute1());
Assert.assertEquals("attr2", root.getAttribute2());
Assert.assertEquals("attr3", root.getAttribute3());
Assert.assertEquals("attr4", root.getAttribute4());
Assert.assertEquals("world-attr1", root.getWorld().getAttribute1());
Assert.assertEquals(2, root.getWorld().getElement1Count());
Assert.assertEquals("world-elem1a", root.getWorld().getElement1List()
.get(0));
Assert.assertEquals("world-elem1b", root.getWorld().getElement1List()
.get(1));
Assert.assertEquals(1, root.getOtherGreetingsCount());
Assert.assertEquals("level1-attr1", root.getOtherGreetingsList().get(0)
.getAttribute1());
Assert.assertEquals(1, root.getOtherGreetingsList().get(0)
.getOtherGreetingsCount());
Assert.assertEquals("level2-attr1", root.getOtherGreetingsList().get(0)
.getOtherGreetingsList().get(0).getAttribute1());
}