aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/compiler
Commit message (Collapse)AuthorAge
* Add `auto-gen`d comment to `_pb2_grpc.py` filesGravatar Masood Malekghassemi2016-12-28
|
* Merge pull request #9100 from bblancha/protobuf_compiler_tweakGravatar Masood Malekghassemi2016-12-16
|\ | | | | don't print multiple imports to protobuf modules
| * don't print multiple imports to protobuf modulesGravatar Bryan Blanchard2016-12-15
| |
* | Generate param comments in C# proto pluginGravatar Jan Tattermusch2016-12-13
| |
* | remove leading space in C# commentsGravatar Jan Tattermusch2016-12-13
|/
* Switch to command-arg for Python split-codegenGravatar Masood Malekghassemi2016-12-02
| | | | Almost fixes #8753 (which still needs a test).
* fix formattingGravatar Jan Tattermusch2016-11-24
|
* Merge remote-tracking branch 'upstream/v1.0.x' into HEADGravatar Jan Tattermusch2016-11-22
|\
| * generate server base class as partial tooGravatar Alexander Polcyn2016-11-03
| |
| * generate partial c# client stubs as partial classesGravatar Alexander Polcyn2016-11-03
| |
* | clang-formatGravatar Vijay Pai2016-11-01
| |
* | Use C++11 final and overrideGravatar Vijay Pai2016-11-01
| |
* | Clang-format python_generator.ccGravatar Masood Malekghassemi2016-10-28
| |
* | Clean-up types in Python generatorGravatar Masood Malekghassemi2016-10-28
| |
* | Enable split code generationGravatar Masood Malekghassemi2016-10-28
| | | | | | | | | | | | | | | | | | | | | | | | To support magical internal build processes, the pb2 files need to be split into pure-proto and gRPC parts. This performs that split and further fixes bad module names in the test harness that interfered with the intended test implementation. An unfortunate side effect, due to limitations of protoc and holdover behavior we must support in major version 1.x, is that trash files are generated in split generation. This shouldn't be a problem in normal protoc plugin use.
* | Fix incorrect ruby_generator.cc mergeGravatar murgatroid992016-10-28
| |
* | Merge remote-tracking branch 'upstream/v1.0.x' into v1.0.1_upmergeGravatar murgatroid992016-10-28
|\|
| * fix type comparison in ruby pluginGravatar Alexander Polcyn2016-10-27
| |
| * convert uint to int in generatorGravatar Alexander Polcyn2016-10-26
| |
* | Merge remote-tracking branch 'upstream/master' into fc_1dstreamGravatar Vijay Pai2016-10-18
|\ \
* | | clang-formatGravatar Vijay Pai2016-10-13
| | |
* | | Making split streaming testableGravatar Vijay Pai2016-10-13
| | |
| * | Merge pull request #8297 from jtattermusch/add_newinstance_commentGravatar Jan Tattermusch2016-10-13
| |\ \ | | | | | | | | Add comment to NewInstance override in the generated code
* | | | Merge branch 'master' into fc_1dstreamGravatar Vijay Pai2016-10-13
|\| | |
| | | * Merge pull request #8265 from apolcyn/fix_proto_plugin_snake_caseGravatar apolcyn2016-10-12
| | | |\ | | | | | | | | | | convert snake case protos package names to camel case in ruby modules
| * | | \ Merge pull request #8354 from grpc/v1.0.xGravatar Jan Tattermusch2016-10-12
| |\ \ \ \ | | | |/ / | | |/| | Upmerge doc changes from v1.0.x
| | * | | Create README.mdGravatar Jan Tattermusch2016-10-12
| | | | |
| | | * | add comment for NewInstance overrideGravatar Jan Tattermusch2016-10-12
| | |/ / | |/| |
| | | * remove unused function and switch std::string to grpc::stringGravatar Alexander Polcyn2016-10-03
| | | |
| | | * change ruby proto plugin to copy package name conversion from protocGravatar Alexander Polcyn2016-10-03
| | | |
| | | * convert snake case protos package names to camel case in ruby modulesGravatar Alexander Polcyn2016-10-03
| | | |
* | | | Add all plumbing and typedef's for controlled server-side streamingGravatar Vijay Pai2016-10-03
| | | |
| * | | PHP Proto3: gRPC PHP Plugin code generatorGravatar Stanley Cheung2016-09-29
| | | |
| * | | Format.Gravatar Nicolas "Pixel" Noble2016-09-29
| | | |
| * | | Merge remote-tracking branch 'google/v1.0.x' into master-upmerge-from-deep-underGravatar Nicolas "Pixel" Noble2016-09-29
|/| | | | |/ /
* | | Merge pull request #7930 from yang-g/header2Gravatar Nicolas Noble2016-09-26
|\ \ \ | | | | | | | | Add a header to override grpc::string when needed
| | * | Add docstrings to generated beta elementsGravatar siddharthshukla2016-09-22
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | Add docstrings mentioning that the Beta API is deprecated post 0.14.x in - PrintBetaServicer - PrintBetaStub - PrintBetaServerFactory - PrintBetaStubFactory
* | | Put a space after '<' to avoid chance of digraphGravatar Vijay Pai2016-08-30
| | |
| * | Add a header to override grpc::string when neededGravatar yang-g2016-08-30
| | |
* | | Merge branch 'master' into fc_unaryGravatar Vijay Pai2016-08-30
|\| | | | | | | | | | | | | | Resolve conflicts in ServerReaderWriterInterface Remove file server_streamed_unary.h and merge with sync_stream.h
* | | clang-formatGravatar Vijay Pai2016-08-29
| | |
* | | Change names to StreamedUnary, ServerUnaryStreamer, etc. Use a templated ↵Gravatar Vijay Pai2016-08-29
| | | | | | | | | | | | | | | | | | method handler since most code shared between the new StreamedUnary and the existing BidiStreaming. Eliminate the separate enum case for streamed unary. Return a status failure if a StreamedUnary method handler doesn't actually do a write (since that is violating the appearance of unary-ness)
* | | Remove FC_UNARY enum and treat it more like a special case of BIDI_STREAMINGGravatar Vijay Pai2016-08-25
| | | | | | | | | | | | in all cases
* | | Merge branch 'master' into fc_unaryGravatar Vijay Pai2016-08-25
|\| |
| | * Clang format codeGravatar murgatroid992016-08-12
| | |
| | * Make Node code generator work properly with nested typesGravatar murgatroid992016-08-12
| | |
| * | Clang format codeGravatar murgatroid992016-08-12
| | |
* | | clang-formatGravatar Vijay Pai2016-08-04
| | |
* | | Be able to specify FCUnaryService just like AsyncService so that allGravatar Vijay Pai2016-08-04
| | | | | | | | | | | | relevant methods get treated this way.
* | | Make FCUnary and ServerReaderWriter derived classes of a newGravatar Vijay Pai2016-08-04
| | | | | | | | | | | | | | | ServerReaderWriterInterface so that some functions can be made to accept either.