diff options
author | Nathaniel Manista <nathaniel@google.com> | 2016-02-22 18:15:22 -0800 |
---|---|---|
committer | Nathaniel Manista <nathaniel@google.com> | 2016-02-22 18:15:22 -0800 |
commit | 30e9de8099ead2ca6e6d2dcd14df6d3c808bed18 (patch) | |
tree | 3a188e57c0c600cd5d3d09895609bb76c6d1aca8 | |
parent | acbcdb6d9416ce2985e044338d8887c29aba7e85 (diff) | |
parent | 5fc09525ed01c8f889247e61efe9a4d9fb8ef2b5 (diff) |
Merge pull request #5358 from hsaliak/soc-ideas
Add ideas to the Google Summer of Code ideas list.
-rw-r--r-- | summerofcode/ideas.md | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/summerofcode/ideas.md b/summerofcode/ideas.md index 073262339b..b14d3f7b6a 100644 --- a/summerofcode/ideas.md +++ b/summerofcode/ideas.md @@ -1,4 +1,22 @@ -Google Summer of Code 2016 gRPC Ideas -===================================== +# gRPC Summer of Code Project Ideas -(Skeleton for now.) +C Core: + +1. Port gRPC to one of (Free, Net, Open) BSD platforms and create packages for them. Add kqueue support in the process. +2. Fix gRPC C-core's URI parser. The current parser does not qualify as a standard parser according to [RFC3986]( https://tools.ietf.org/html/rfc3986). Write test suites to verify this and make changes necessary to make the URI parser compliant. +3. HPACK compression efficiency evaluation - Figure out how to benchmark gRPC's compression efficiency (both in terms of bytes on the wire and cpu cycles). Implement benchmarks. Potentially extend this to other standalone implementations -- Java and Go. + + +gRPC Python: + + 1. Evaluate the port of gRPC's Python implementation to PyPy. Investigate the state of [Cython support](http://docs.cython.org/src/userguide/pypy.html) to do this or potentially explore cffi + 2. Develop and test Python 3.5 Support for gRPC. Make necessary changes to port gRPC and package it for supported platforms. + +gRPC Ruby/Java: + +1. jRuby support for gRPC. Develop a jRuby wrapper for gRPC based on grpc-java and ensure that it is API compatible with the existing Ruby implementation and passes all tests. + + +Other: + +1. Develop a Wireshark plugin for the gRPC protocol. Provide documentation and tutorials for this plugin. Bonus: consider set-up and use with the mobile clients. |