Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Internalize structs and methods meant for being exposed through codegen | Vijay Pai | 2017-07-10 |
| | | | | or that interface with core and are only for internal use | ||
* | Merge pull request #11524 from michaelbausor/php-protoc-plugin | Stanley Cheung | 2017-06-26 |
|\ | | | | | Update PHP protoc plugin generation | ||
| * | Run formatter | Michael Bausor | 2017-06-22 |
| | | |||
* | | Merge pull request #11341 from muxi/fix-objc-plugin-output | Muxi Yan | 2017-06-19 |
|\ \ | | | | | | | Fixes gRPC ObjC plugin's upper camel conversion | ||
| | * | Update PHP protoc plugin generation | Michael Bausor | 2017-06-16 |
| |/ |/| | | | | | | | | | | | - Use docblocks instead of single line comments - Escape '*/' - Indent 4 spaces to match protobuf - Use single line namespace to match protobuf | ||
* | | Merge pull request #11400 from kpayson64/python_generator_fix | kpayson64 | 2017-06-09 |
|\ \ | | | | | | | Fix python compiler for filenames with dashes | ||
| | * | Revert the changes to maintain backward compatibility | Muxi Yan | 2017-06-08 |
| | | | |||
* | | | fix remaining license notices | Jan Tattermusch | 2017-06-08 |
| | | | |||
* | | | auto-fix most of licenses | Jan Tattermusch | 2017-06-08 |
| | | | |||
| | * | Add comment | Muxi Yan | 2017-06-06 |
| | | | |||
| | * | clang-format | Muxi Yan | 2017-06-05 |
| | | | |||
| | * | Polish | Muxi Yan | 2017-06-05 |
| | | | |||
| | * | Backward compatibility | Muxi Yan | 2017-06-05 |
| | | | |||
| * | | Fix python compiler for filenames with dashes | Ken Payson | 2017-06-02 |
|/ / | |||
| * | clang-format | Muxi Yan | 2017-05-31 |
| | | |||
| * | Use protobuf's native upper camel conversion | Muxi Yan | 2017-05-30 |
|/ | |||
* | PHP: Fixed bug in protoc plugin escaping comments | Stanley Cheung | 2017-05-22 |
| | |||
* | Fix clang-format issue | Per Grön | 2017-05-14 |
| | |||
* | Emit additional headers in generated .h file instead of .cc | Per Grön | 2017-05-11 |
| | | | | | | | | | | | | | | | | | For Flatbuffers compatibility. From what I can tell, File::additional_headers is not used by gRPC itself or its default protobuf implementation; it was added for Flatbuffers support (it just returns "" for protobuf). In the Flatbuffer case, the generated header contains references to Flatbuffer gRPC glue code which is in a header in additional_headers. Prior to this patch, this meant that the generated .h file could not be included unless this glue file was included first. Because the protobuf implementation of additional_headers returns an empty string, I think this change should be safe to do and not have unintentional consequences. | ||
* | Don't hard code protobuf specific file extensions in cpp_generator.cc | Per Grön | 2017-05-11 |
| | | | | | This file is shared with the Flatbuffers project as well, which does not use "pb" file extensions. | ||
* | Merge pull request #10950 from jeady/service_name_metadata | Yang Gao | 2017-05-04 |
|\ | | | | | Add static method to generated code to return fully qualified protobuf service name | ||
| * | Proper clang formatting. | James Eady | 2017-05-04 |
| | | |||
| * | Add static method to generated code to return fully qualified protobuf ↵ | James Eady | 2017-05-02 |
| | | | | | | | | service name. | ||
* | | Fix python imports in gRPC generated python code | Manuel Kroiss | 2017-04-27 |
|/ | | | | | | | | | | | | | | | This changes the import style for proto dependencies from a) to b). a) "import a.b.c as x" b) "from a.b import c as x" Using statement a) causes problems when using __init__ files. If module "a.b" has an __init__.py file which is importing the python generated grpc code "a.b.d", then we cannot import a module named "a.b.c" because the module "a.b" does not exist yet. In this case python will throw: AttributeError: 'module' object has no attribute 'b' This PR adapts the code to use the same logic as in: /google/protobuf/compiler/python/python_generator.cc | ||
* | Merge pull request #10644 from MakMukhi/master | MakMukhi | 2017-04-24 |
|\ | | | | | Added unit testing support. | ||
* \ | Merge pull request #10505 from muxi/move-parsing-queue | Muxi Yan | 2017-04-21 |
|\ \ | | | | | | | Move response message processing to a user-specified queue | ||
| * | | Revert API to change default queue for a stub | Muxi Yan | 2017-04-19 |
| | | | |||
| | * | Post-review update | Mahak Mukhi | 2017-04-18 |
| | | | |||
* | | | Merge github.com:grpc/grpc into cpparena | Craig Tiller | 2017-04-18 |
|\ \ \ | |||
| * | | | Always generate body for python code elements | Mehrdad Afshari | 2017-04-18 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since #... class Service: class NextService: #... without a body or `pass` under `Service` is invalid Python, we ensure a `pass` statement is always emitted to make the generated code valid. | ||
| | | * | formatting | Mahak Mukhi | 2017-04-13 |
| | | | | |||
| | | * | update according to new changes in cpp code | Mahak Mukhi | 2017-04-13 |
| | | | | |||
| | | * | fix conflicts | Mahak Mukhi | 2017-04-12 |
| | | |\ | |||
| | | * | | Initial commit: Auto-generate GMOCK code for client stub. | Mahak Mukhi | 2017-04-12 |
| | |/ / | |/| | | |||
| | * | | clang-format | Muxi Yan | 2017-04-09 |
| | | | | |||
| | | * | Initial commit: Auto-generate GMOCK code for client stub. | Mahak Mukhi | 2017-04-08 |
| | | | | |||
| | * | | Support in ProtoRPC | Muxi Yan | 2017-04-06 |
| |/ / | |||
* | | | Convert all async client stream types to not allocate | Craig Tiller | 2017-04-05 |
| | | | |||
* | | | Merge github.com:grpc/grpc into cpparena | Craig Tiller | 2017-04-04 |
|\| | | |||
| * | | Merge pull request #8063 from royalharsh/buffers | kpayson64 | 2017-04-04 |
| |\ \ | | | | | | | | | Refactor python code generator to support other serializers | ||
* | | | | Merge github.com:grpc/grpc into cpparena | Craig Tiller | 2017-03-31 |
|\| | | | |||
| | * | | Update | Harsh Vardhan | 2017-03-28 |
| | | | | |||
| | * | | Fix merge conflicts | Harsh Vardhan | 2017-03-28 |
| | | | | |||
| | * | | remove lang specific streaming methods | Harsh Vardhan | 2017-03-28 |
| | | | | |||
| | * | | revert to python specific code | Harsh Vardhan | 2017-03-28 |
| | | | | |||
| | * | | remove python specific code | Harsh Vardhan | 2017-03-28 |
| | | | | |||
| | * | | Update sources & headers | Harsh Vardhan | 2017-03-28 |
| | | | | |||
| | * | | clang-format | Harsh Vardhan | 2017-03-28 |
| | | | | |||
| | * | | Update python_generator.cc | Harsh Vardhan | 2017-03-28 |
| | | | | |||
| | * | | Fix errors | Harsh Vardhan | 2017-03-28 |
| | | | |