| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 | This directory contains example code that uses Protocol Buffers to manage anaddress book.  Two programs are provided, each with three differentimplementations, one written in each of C++, Java, and Python.  The add_personexample adds a new person to an address book, prompting the user to inputthe person's information.  The list_people example lists people already in theaddress book.  The examples use the exact same format in all three languages,so you can, for example, use add_person_java to create an address book and thenuse list_people_python to read it.You must install the protobuf package before you can build these.To build all the examples (on a unix-like system), simply run "make".  Thiscreates the following executable files in the current directory:  add_person_cpp     list_people_cpp  add_person_java    list_people_java  add_person_python  list_people_pythonIf you only want to compile examples in one language, use "make cpp"*,"make java", or "make python".All of these programs simply take an address book file as their parameter.The add_person programs will create the file if it doesn't already exist.These examples are part of the Protocol Buffers tutorial, located at:  https://developers.google.com/protocol-buffers/docs/tutorials* Note that on some platforms you may have to edit the Makefile and remove"-lpthread" from the linker commands (perhaps replacing it with something else).We didn't do this automatically because we wanted to keep the example simple.## Go ##The Go example requires a plugin to the protocol buffer compiler, so it is notbuild with all the other examples.  See:  https://github.com/golang/protobuffor more information about Go protocol buffer support.First, install the Protocol Buffers compiler (protoc).Then, install the Go Protocol Buffers plugin($GOPATH/bin must be in your $PATH for protoc to find it):  go get github.com/golang/protobuf/protoc-gen-goBuild the Go samples in this directory with "make go".  This creates thefollowing executable files in the current directory:  add_person_go      list_people_goTo run the example:  ./add_person_go addressbook.datato add a person to the protocol buffer encoded file addressbook.data.  The fileis created if it does not exist.  To view the data, run:  ./list_people_go addressbook.dataObserve that the C++, Python, and Java examples in this directory run in asimilar way and can view/modify files created by the Go example and viceversa.
 |