mirror of https://github.com/grpc/grpc.git
commit
47f519ece2
45 changed files with 573 additions and 15659 deletions
@ -0,0 +1,95 @@ |
|||||||
|
# Copyright 2015, Google Inc. |
||||||
|
# All rights reserved. |
||||||
|
# |
||||||
|
# Redistribution and use in source and binary forms, with or without |
||||||
|
# modification, are permitted provided that the following conditions are |
||||||
|
# met: |
||||||
|
# |
||||||
|
# * Redistributions of source code must retain the above copyright |
||||||
|
# notice, this list of conditions and the following disclaimer. |
||||||
|
# * Redistributions in binary form must reproduce the above |
||||||
|
# copyright notice, this list of conditions and the following disclaimer |
||||||
|
# in the documentation and/or other materials provided with the |
||||||
|
# distribution. |
||||||
|
# * Neither the name of Google Inc. nor the names of its |
||||||
|
# contributors may be used to endorse or promote products derived from |
||||||
|
# this software without specific prior written permission. |
||||||
|
# |
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
{ |
||||||
|
"variables" : { |
||||||
|
'config': '<!(echo $CONFIG)' |
||||||
|
}, |
||||||
|
"targets" : [ |
||||||
|
{ |
||||||
|
'include_dirs': [ |
||||||
|
"<!(node -e \"require('nan')\")" |
||||||
|
], |
||||||
|
'cflags': [ |
||||||
|
'-std=c++0x', |
||||||
|
'-Wall', |
||||||
|
'-pthread', |
||||||
|
'-g', |
||||||
|
'-zdefs', |
||||||
|
'-Werror', |
||||||
|
'-Wno-error=deprecated-declarations' |
||||||
|
], |
||||||
|
'ldflags': [ |
||||||
|
'-g' |
||||||
|
], |
||||||
|
"conditions": [ |
||||||
|
['OS != "win"', { |
||||||
|
'conditions': [ |
||||||
|
['config=="gcov"', { |
||||||
|
'cflags': [ |
||||||
|
'-ftest-coverage', |
||||||
|
'-fprofile-arcs', |
||||||
|
'-O0' |
||||||
|
], |
||||||
|
'ldflags': [ |
||||||
|
'-ftest-coverage', |
||||||
|
'-fprofile-arcs' |
||||||
|
] |
||||||
|
} |
||||||
|
] |
||||||
|
] |
||||||
|
}], |
||||||
|
['OS == "mac"', { |
||||||
|
'xcode_settings': { |
||||||
|
'MACOSX_DEPLOYMENT_TARGET': '10.9', |
||||||
|
'OTHER_CFLAGS': [ |
||||||
|
'-std=c++11', |
||||||
|
'-stdlib=libc++' |
||||||
|
] |
||||||
|
} |
||||||
|
}] |
||||||
|
], |
||||||
|
"target_name": "grpc_node", |
||||||
|
"sources": [ |
||||||
|
"src/node/ext/byte_buffer.cc", |
||||||
|
"src/node/ext/call.cc", |
||||||
|
"src/node/ext/call_credentials.cc", |
||||||
|
"src/node/ext/channel.cc", |
||||||
|
"src/node/ext/channel_credentials.cc", |
||||||
|
"src/node/ext/completion_queue_async_worker.cc", |
||||||
|
"src/node/ext/node_grpc.cc", |
||||||
|
"src/node/ext/server.cc", |
||||||
|
"src/node/ext/server_credentials.cc", |
||||||
|
"src/node/ext/timeval.cc" |
||||||
|
], |
||||||
|
"dependencies": [ |
||||||
|
"grpc.gyp:grpc" |
||||||
|
] |
||||||
|
} |
||||||
|
] |
||||||
|
} |
File diff suppressed because it is too large
Load Diff
@ -1,10 +0,0 @@ |
|||||||
{ |
|
||||||
"name": "grpc-demo", |
|
||||||
"version": "0.11.0", |
|
||||||
"dependencies": { |
|
||||||
"async": "^0.9.0", |
|
||||||
"grpc": "~0.11.0", |
|
||||||
"minimist": "^1.1.0", |
|
||||||
"underscore": "^1.8.2" |
|
||||||
} |
|
||||||
} |
|
@ -0,0 +1,55 @@ |
|||||||
|
gRPC in 3 minutes (Python) |
||||||
|
======================== |
||||||
|
|
||||||
|
Background |
||||||
|
------------- |
||||||
|
For this sample, we've already generated the server and client stubs from |
||||||
|
[helloworld.proto][] and we'll be using a specific reference platform. |
||||||
|
|
||||||
|
Prerequisites |
||||||
|
------------- |
||||||
|
|
||||||
|
- Debian 8.2 "Jessie" platform with `root` access |
||||||
|
- `git` |
||||||
|
- `python2.7` |
||||||
|
- `pip` |
||||||
|
- Python development headers |
||||||
|
|
||||||
|
Set-up |
||||||
|
------- |
||||||
|
```sh |
||||||
|
$ # install the gRPC Core: |
||||||
|
$ sudo apt-get install libgrpc-dev |
||||||
|
$ # install gRPC Python: |
||||||
|
$ sudo pip install -U grpcio==0.11.0b1 |
||||||
|
$ # Since this "hello, world" example uses protocol buffers: |
||||||
|
$ sudo pip install -U protobuf==3.0.0a3 |
||||||
|
$ # Clone the repository to get the example code: |
||||||
|
$ git clone https://github.com/grpc/grpc |
||||||
|
$ # Navigate to the "hello, world" Python example: |
||||||
|
$ cd grpc/examples/python/helloworld |
||||||
|
``` |
||||||
|
|
||||||
|
Try it! |
||||||
|
------- |
||||||
|
|
||||||
|
- Run the server |
||||||
|
|
||||||
|
```sh |
||||||
|
$ python2.7 greeter_server.py & |
||||||
|
``` |
||||||
|
|
||||||
|
- Run the client |
||||||
|
|
||||||
|
```sh |
||||||
|
$ python2.7 greeter_client.py |
||||||
|
``` |
||||||
|
|
||||||
|
Tutorial |
||||||
|
-------- |
||||||
|
|
||||||
|
You can find a more detailed tutorial in [gRPC Basics: Python][] |
||||||
|
|
||||||
|
[helloworld.proto]:../protos/helloworld.proto |
||||||
|
[Install gRPC Python]:../../src/python#installation |
||||||
|
[gRPC Basics: Python]:http://www.grpc.io/docs/tutorials/basic/python.html |
@ -0,0 +1,202 @@ |
|||||||
|
# Generated by the protocol buffer compiler. DO NOT EDIT! |
||||||
|
# source: helloworld.proto |
||||||
|
|
||||||
|
from google.protobuf import descriptor as _descriptor |
||||||
|
from google.protobuf import message as _message |
||||||
|
from google.protobuf import reflection as _reflection |
||||||
|
from google.protobuf import symbol_database as _symbol_database |
||||||
|
from google.protobuf import descriptor_pb2 |
||||||
|
# @@protoc_insertion_point(imports) |
||||||
|
|
||||||
|
_sym_db = _symbol_database.Default() |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
DESCRIPTOR = _descriptor.FileDescriptor( |
||||||
|
name='helloworld.proto', |
||||||
|
package='helloworld', |
||||||
|
syntax='proto3', |
||||||
|
serialized_pb=b'\n\x10helloworld.proto\x12\nhelloworld\"\x1c\n\x0cHelloRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\"\x1d\n\nHelloReply\x12\x0f\n\x07message\x18\x01 \x01(\t2I\n\x07Greeter\x12>\n\x08SayHello\x12\x18.helloworld.HelloRequest\x1a\x16.helloworld.HelloReply\"\x00\x42\x18\n\x10io.grpc.examples\xa2\x02\x03HLWb\x06proto3' |
||||||
|
) |
||||||
|
_sym_db.RegisterFileDescriptor(DESCRIPTOR) |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
_HELLOREQUEST = _descriptor.Descriptor( |
||||||
|
name='HelloRequest', |
||||||
|
full_name='helloworld.HelloRequest', |
||||||
|
filename=None, |
||||||
|
file=DESCRIPTOR, |
||||||
|
containing_type=None, |
||||||
|
fields=[ |
||||||
|
_descriptor.FieldDescriptor( |
||||||
|
name='name', full_name='helloworld.HelloRequest.name', index=0, |
||||||
|
number=1, type=9, cpp_type=9, label=1, |
||||||
|
has_default_value=False, default_value=b"".decode('utf-8'), |
||||||
|
message_type=None, enum_type=None, containing_type=None, |
||||||
|
is_extension=False, extension_scope=None, |
||||||
|
options=None), |
||||||
|
], |
||||||
|
extensions=[ |
||||||
|
], |
||||||
|
nested_types=[], |
||||||
|
enum_types=[ |
||||||
|
], |
||||||
|
options=None, |
||||||
|
is_extendable=False, |
||||||
|
syntax='proto3', |
||||||
|
extension_ranges=[], |
||||||
|
oneofs=[ |
||||||
|
], |
||||||
|
serialized_start=32, |
||||||
|
serialized_end=60, |
||||||
|
) |
||||||
|
|
||||||
|
|
||||||
|
_HELLOREPLY = _descriptor.Descriptor( |
||||||
|
name='HelloReply', |
||||||
|
full_name='helloworld.HelloReply', |
||||||
|
filename=None, |
||||||
|
file=DESCRIPTOR, |
||||||
|
containing_type=None, |
||||||
|
fields=[ |
||||||
|
_descriptor.FieldDescriptor( |
||||||
|
name='message', full_name='helloworld.HelloReply.message', index=0, |
||||||
|
number=1, type=9, cpp_type=9, label=1, |
||||||
|
has_default_value=False, default_value=b"".decode('utf-8'), |
||||||
|
message_type=None, enum_type=None, containing_type=None, |
||||||
|
is_extension=False, extension_scope=None, |
||||||
|
options=None), |
||||||
|
], |
||||||
|
extensions=[ |
||||||
|
], |
||||||
|
nested_types=[], |
||||||
|
enum_types=[ |
||||||
|
], |
||||||
|
options=None, |
||||||
|
is_extendable=False, |
||||||
|
syntax='proto3', |
||||||
|
extension_ranges=[], |
||||||
|
oneofs=[ |
||||||
|
], |
||||||
|
serialized_start=62, |
||||||
|
serialized_end=91, |
||||||
|
) |
||||||
|
|
||||||
|
DESCRIPTOR.message_types_by_name['HelloRequest'] = _HELLOREQUEST |
||||||
|
DESCRIPTOR.message_types_by_name['HelloReply'] = _HELLOREPLY |
||||||
|
|
||||||
|
HelloRequest = _reflection.GeneratedProtocolMessageType('HelloRequest', (_message.Message,), dict( |
||||||
|
DESCRIPTOR = _HELLOREQUEST, |
||||||
|
__module__ = 'helloworld_pb2' |
||||||
|
# @@protoc_insertion_point(class_scope:helloworld.HelloRequest) |
||||||
|
)) |
||||||
|
_sym_db.RegisterMessage(HelloRequest) |
||||||
|
|
||||||
|
HelloReply = _reflection.GeneratedProtocolMessageType('HelloReply', (_message.Message,), dict( |
||||||
|
DESCRIPTOR = _HELLOREPLY, |
||||||
|
__module__ = 'helloworld_pb2' |
||||||
|
# @@protoc_insertion_point(class_scope:helloworld.HelloReply) |
||||||
|
)) |
||||||
|
_sym_db.RegisterMessage(HelloReply) |
||||||
|
|
||||||
|
|
||||||
|
DESCRIPTOR.has_options = True |
||||||
|
DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), b'\n\020io.grpc.examples\242\002\003HLW') |
||||||
|
import abc |
||||||
|
from grpc.beta import implementations as beta_implementations |
||||||
|
from grpc.early_adopter import implementations as early_adopter_implementations |
||||||
|
from grpc.framework.alpha import utilities as alpha_utilities |
||||||
|
from grpc.framework.common import cardinality |
||||||
|
from grpc.framework.interfaces.face import utilities as face_utilities |
||||||
|
class EarlyAdopterGreeterServicer(object): |
||||||
|
"""<fill me in later!>""" |
||||||
|
__metaclass__ = abc.ABCMeta |
||||||
|
@abc.abstractmethod |
||||||
|
def SayHello(self, request, context): |
||||||
|
raise NotImplementedError() |
||||||
|
class EarlyAdopterGreeterServer(object): |
||||||
|
"""<fill me in later!>""" |
||||||
|
__metaclass__ = abc.ABCMeta |
||||||
|
@abc.abstractmethod |
||||||
|
def start(self): |
||||||
|
raise NotImplementedError() |
||||||
|
@abc.abstractmethod |
||||||
|
def stop(self): |
||||||
|
raise NotImplementedError() |
||||||
|
class EarlyAdopterGreeterStub(object): |
||||||
|
"""<fill me in later!>""" |
||||||
|
__metaclass__ = abc.ABCMeta |
||||||
|
@abc.abstractmethod |
||||||
|
def SayHello(self, request): |
||||||
|
raise NotImplementedError() |
||||||
|
SayHello.async = None |
||||||
|
def early_adopter_create_Greeter_server(servicer, port, private_key=None, certificate_chain=None): |
||||||
|
import helloworld_pb2 |
||||||
|
import helloworld_pb2 |
||||||
|
method_service_descriptions = { |
||||||
|
"SayHello": alpha_utilities.unary_unary_service_description( |
||||||
|
servicer.SayHello, |
||||||
|
helloworld_pb2.HelloRequest.FromString, |
||||||
|
helloworld_pb2.HelloReply.SerializeToString, |
||||||
|
), |
||||||
|
} |
||||||
|
return early_adopter_implementations.server("helloworld.Greeter", method_service_descriptions, port, private_key=private_key, certificate_chain=certificate_chain) |
||||||
|
def early_adopter_create_Greeter_stub(host, port, metadata_transformer=None, secure=False, root_certificates=None, private_key=None, certificate_chain=None, server_host_override=None): |
||||||
|
import helloworld_pb2 |
||||||
|
import helloworld_pb2 |
||||||
|
method_invocation_descriptions = { |
||||||
|
"SayHello": alpha_utilities.unary_unary_invocation_description( |
||||||
|
helloworld_pb2.HelloRequest.SerializeToString, |
||||||
|
helloworld_pb2.HelloReply.FromString, |
||||||
|
), |
||||||
|
} |
||||||
|
return early_adopter_implementations.stub("helloworld.Greeter", method_invocation_descriptions, host, port, metadata_transformer=metadata_transformer, secure=secure, root_certificates=root_certificates, private_key=private_key, certificate_chain=certificate_chain, server_host_override=server_host_override) |
||||||
|
|
||||||
|
class BetaGreeterServicer(object): |
||||||
|
"""<fill me in later!>""" |
||||||
|
__metaclass__ = abc.ABCMeta |
||||||
|
@abc.abstractmethod |
||||||
|
def SayHello(self, request, context): |
||||||
|
raise NotImplementedError() |
||||||
|
|
||||||
|
class BetaGreeterStub(object): |
||||||
|
"""The interface to which stubs will conform.""" |
||||||
|
__metaclass__ = abc.ABCMeta |
||||||
|
@abc.abstractmethod |
||||||
|
def SayHello(self, request, timeout): |
||||||
|
raise NotImplementedError() |
||||||
|
SayHello.future = None |
||||||
|
|
||||||
|
def beta_create_Greeter_server(servicer, pool=None, pool_size=None, default_timeout=None, maximum_timeout=None): |
||||||
|
import helloworld_pb2 |
||||||
|
import helloworld_pb2 |
||||||
|
request_deserializers = { |
||||||
|
('helloworld.Greeter', 'SayHello'): helloworld_pb2.HelloRequest.FromString, |
||||||
|
} |
||||||
|
response_serializers = { |
||||||
|
('helloworld.Greeter', 'SayHello'): helloworld_pb2.HelloReply.SerializeToString, |
||||||
|
} |
||||||
|
method_implementations = { |
||||||
|
('helloworld.Greeter', 'SayHello'): face_utilities.unary_unary_inline(servicer.SayHello), |
||||||
|
} |
||||||
|
server_options = beta_implementations.server_options(request_deserializers=request_deserializers, response_serializers=response_serializers, thread_pool=pool, thread_pool_size=pool_size, default_timeout=default_timeout, maximum_timeout=maximum_timeout) |
||||||
|
return beta_implementations.server(method_implementations, options=server_options) |
||||||
|
|
||||||
|
def beta_create_Greeter_stub(channel, host=None, metadata_transformer=None, pool=None, pool_size=None): |
||||||
|
import helloworld_pb2 |
||||||
|
import helloworld_pb2 |
||||||
|
request_serializers = { |
||||||
|
('helloworld.Greeter', 'SayHello'): helloworld_pb2.HelloRequest.SerializeToString, |
||||||
|
} |
||||||
|
response_deserializers = { |
||||||
|
('helloworld.Greeter', 'SayHello'): helloworld_pb2.HelloReply.FromString, |
||||||
|
} |
||||||
|
cardinalities = { |
||||||
|
'SayHello': cardinality.Cardinality.UNARY_UNARY, |
||||||
|
} |
||||||
|
stub_options = beta_implementations.stub_options(host=host, metadata_transformer=metadata_transformer, request_serializers=request_serializers, response_deserializers=response_deserializers, thread_pool=pool, thread_pool_size=pool_size) |
||||||
|
return beta_implementations.dynamic_stub(channel, 'helloworld.Greeter', cardinalities, options=stub_options) |
||||||
|
# @@protoc_insertion_point(module_scope) |
@ -1,28 +0,0 @@ |
|||||||
Copyright 2015, Google Inc. |
|
||||||
All rights reserved. |
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without |
|
||||||
modification, are permitted provided that the following conditions are |
|
||||||
met: |
|
||||||
|
|
||||||
* Redistributions of source code must retain the above copyright |
|
||||||
notice, this list of conditions and the following disclaimer. |
|
||||||
* Redistributions in binary form must reproduce the above |
|
||||||
copyright notice, this list of conditions and the following disclaimer |
|
||||||
in the documentation and/or other materials provided with the |
|
||||||
distribution. |
|
||||||
* Neither the name of Google Inc. nor the names of its |
|
||||||
contributors may be used to endorse or promote products derived from |
|
||||||
this software without specific prior written permission. |
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|
||||||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|
||||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|
||||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|
||||||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
||||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
||||||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|
||||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|
||||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
||||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|
||||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
@ -1,101 +0,0 @@ |
|||||||
{ |
|
||||||
"variables" : { |
|
||||||
'config': '<!(echo $CONFIG)' |
|
||||||
}, |
|
||||||
"targets" : [ |
|
||||||
{ |
|
||||||
'include_dirs': [ |
|
||||||
"<!(node -e \"require('nan')\")" |
|
||||||
], |
|
||||||
'cflags': [ |
|
||||||
'-std=c++0x', |
|
||||||
'-Wall', |
|
||||||
'-pthread', |
|
||||||
'-g', |
|
||||||
'-zdefs', |
|
||||||
'-Werror', |
|
||||||
'-Wno-error=deprecated-declarations' |
|
||||||
], |
|
||||||
'ldflags': [ |
|
||||||
'-g' |
|
||||||
], |
|
||||||
"conditions": [ |
|
||||||
['OS != "win"', { |
|
||||||
'variables': { |
|
||||||
'pkg_config_grpc': '<!(pkg-config --exists grpc >/dev/null 2>&1 && echo true || echo false)' |
|
||||||
}, |
|
||||||
'conditions': [ |
|
||||||
['config=="gcov"', { |
|
||||||
'cflags': [ |
|
||||||
'-ftest-coverage', |
|
||||||
'-fprofile-arcs', |
|
||||||
'-O0' |
|
||||||
], |
|
||||||
'ldflags': [ |
|
||||||
'-ftest-coverage', |
|
||||||
'-fprofile-arcs' |
|
||||||
] |
|
||||||
} |
|
||||||
], |
|
||||||
['pkg_config_grpc == "true"', { |
|
||||||
'link_settings': { |
|
||||||
'libraries': [ |
|
||||||
'<!@(pkg-config --libs-only-l --static grpc)' |
|
||||||
] |
|
||||||
}, |
|
||||||
'cflags': [ |
|
||||||
'<!@(pkg-config --cflags grpc)' |
|
||||||
], |
|
||||||
'libraries': [ |
|
||||||
'<!@(pkg-config --libs-only-L --static grpc)' |
|
||||||
], |
|
||||||
'ldflags': [ |
|
||||||
'<!@(pkg-config --libs-only-other --static grpc)' |
|
||||||
] |
|
||||||
}, { |
|
||||||
'link_settings': { |
|
||||||
'libraries': [ |
|
||||||
'-lpthread', |
|
||||||
'-lgrpc', |
|
||||||
'-lgpr' |
|
||||||
], |
|
||||||
}, |
|
||||||
'conditions':[ |
|
||||||
['OS != "mac"', { |
|
||||||
'link_settings': { |
|
||||||
'libraries': [ |
|
||||||
'-lrt' |
|
||||||
] |
|
||||||
} |
|
||||||
}] |
|
||||||
] |
|
||||||
} |
|
||||||
] |
|
||||||
] |
|
||||||
}], |
|
||||||
['OS == "mac"', { |
|
||||||
'xcode_settings': { |
|
||||||
'MACOSX_DEPLOYMENT_TARGET': '10.9', |
|
||||||
'OTHER_CFLAGS': [ |
|
||||||
'-std=c++11', |
|
||||||
'-stdlib=libc++' |
|
||||||
] |
|
||||||
} |
|
||||||
}] |
|
||||||
], |
|
||||||
"target_name": "grpc", |
|
||||||
"sources": [ |
|
||||||
"ext/byte_buffer.cc", |
|
||||||
"ext/call.cc", |
|
||||||
"ext/call_credentials.cc", |
|
||||||
"ext/channel.cc", |
|
||||||
"ext/channel_credentials.cc", |
|
||||||
"ext/completion_queue_async_worker.cc", |
|
||||||
"ext/node_grpc.cc", |
|
||||||
"ext/server.cc", |
|
||||||
"ext/server_credentials.cc", |
|
||||||
"ext/timeval.cc" |
|
||||||
] |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
@ -1,43 +0,0 @@ |
|||||||
|
|
||||||
// Copyright 2015, Google Inc. |
|
||||||
// All rights reserved. |
|
||||||
// |
|
||||||
// Redistribution and use in source and binary forms, with or without |
|
||||||
// modification, are permitted provided that the following conditions are |
|
||||||
// met: |
|
||||||
// |
|
||||||
// * Redistributions of source code must retain the above copyright |
|
||||||
// notice, this list of conditions and the following disclaimer. |
|
||||||
// * Redistributions in binary form must reproduce the above |
|
||||||
// copyright notice, this list of conditions and the following disclaimer |
|
||||||
// in the documentation and/or other materials provided with the |
|
||||||
// distribution. |
|
||||||
// * Neither the name of Google Inc. nor the names of its |
|
||||||
// contributors may be used to endorse or promote products derived from |
|
||||||
// this software without specific prior written permission. |
|
||||||
// |
|
||||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|
||||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|
||||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|
||||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|
||||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
||||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
||||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|
||||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|
||||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
||||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|
||||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
||||||
|
|
||||||
syntax = "proto3"; |
|
||||||
|
|
||||||
package grpc.testing; |
|
||||||
|
|
||||||
// An empty message that you can re-use to avoid defining duplicated empty |
|
||||||
// messages in your project. A typical example is to use it as argument or the |
|
||||||
// return value of a service API. For instance: |
|
||||||
// |
|
||||||
// service Foo { |
|
||||||
// rpc Bar (grpc.testing.Empty) returns (grpc.testing.Empty) { }; |
|
||||||
// }; |
|
||||||
// |
|
||||||
message Empty {} |
|
@ -1,132 +0,0 @@ |
|||||||
|
|
||||||
// Copyright 2015, Google Inc. |
|
||||||
// All rights reserved. |
|
||||||
// |
|
||||||
// Redistribution and use in source and binary forms, with or without |
|
||||||
// modification, are permitted provided that the following conditions are |
|
||||||
// met: |
|
||||||
// |
|
||||||
// * Redistributions of source code must retain the above copyright |
|
||||||
// notice, this list of conditions and the following disclaimer. |
|
||||||
// * Redistributions in binary form must reproduce the above |
|
||||||
// copyright notice, this list of conditions and the following disclaimer |
|
||||||
// in the documentation and/or other materials provided with the |
|
||||||
// distribution. |
|
||||||
// * Neither the name of Google Inc. nor the names of its |
|
||||||
// contributors may be used to endorse or promote products derived from |
|
||||||
// this software without specific prior written permission. |
|
||||||
// |
|
||||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|
||||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|
||||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|
||||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|
||||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
||||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
||||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|
||||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|
||||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
||||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|
||||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
||||||
|
|
||||||
// Message definitions to be used by integration test service definitions. |
|
||||||
|
|
||||||
syntax = "proto3"; |
|
||||||
|
|
||||||
package grpc.testing; |
|
||||||
|
|
||||||
// The type of payload that should be returned. |
|
||||||
enum PayloadType { |
|
||||||
// Compressable text format. |
|
||||||
COMPRESSABLE = 0; |
|
||||||
|
|
||||||
// Uncompressable binary format. |
|
||||||
UNCOMPRESSABLE = 1; |
|
||||||
|
|
||||||
// Randomly chosen from all other formats defined in this enum. |
|
||||||
RANDOM = 2; |
|
||||||
} |
|
||||||
|
|
||||||
// A block of data, to simply increase gRPC message size. |
|
||||||
message Payload { |
|
||||||
// The type of data in body. |
|
||||||
PayloadType type = 1; |
|
||||||
// Primary contents of payload. |
|
||||||
bytes body = 2; |
|
||||||
} |
|
||||||
|
|
||||||
// Unary request. |
|
||||||
message SimpleRequest { |
|
||||||
// Desired payload type in the response from the server. |
|
||||||
// If response_type is RANDOM, server randomly chooses one from other formats. |
|
||||||
PayloadType response_type = 1; |
|
||||||
|
|
||||||
// Desired payload size in the response from the server. |
|
||||||
// If response_type is COMPRESSABLE, this denotes the size before compression. |
|
||||||
int32 response_size = 2; |
|
||||||
|
|
||||||
// Optional input payload sent along with the request. |
|
||||||
Payload payload = 3; |
|
||||||
|
|
||||||
// Whether SimpleResponse should include username. |
|
||||||
bool fill_username = 4; |
|
||||||
|
|
||||||
// Whether SimpleResponse should include OAuth scope. |
|
||||||
bool fill_oauth_scope = 5; |
|
||||||
} |
|
||||||
|
|
||||||
// Unary response, as configured by the request. |
|
||||||
message SimpleResponse { |
|
||||||
// Payload to increase message size. |
|
||||||
Payload payload = 1; |
|
||||||
// The user the request came from, for verifying authentication was |
|
||||||
// successful when the client expected it. |
|
||||||
string username = 2; |
|
||||||
// OAuth scope. |
|
||||||
string oauth_scope = 3; |
|
||||||
} |
|
||||||
|
|
||||||
// Client-streaming request. |
|
||||||
message StreamingInputCallRequest { |
|
||||||
// Optional input payload sent along with the request. |
|
||||||
Payload payload = 1; |
|
||||||
|
|
||||||
// Not expecting any payload from the response. |
|
||||||
} |
|
||||||
|
|
||||||
// Client-streaming response. |
|
||||||
message StreamingInputCallResponse { |
|
||||||
// Aggregated size of payloads received from the client. |
|
||||||
int32 aggregated_payload_size = 1; |
|
||||||
} |
|
||||||
|
|
||||||
// Configuration for a particular response. |
|
||||||
message ResponseParameters { |
|
||||||
// Desired payload sizes in responses from the server. |
|
||||||
// If response_type is COMPRESSABLE, this denotes the size before compression. |
|
||||||
int32 size = 1; |
|
||||||
|
|
||||||
// Desired interval between consecutive responses in the response stream in |
|
||||||
// microseconds. |
|
||||||
int32 interval_us = 2; |
|
||||||
} |
|
||||||
|
|
||||||
// Server-streaming request. |
|
||||||
message StreamingOutputCallRequest { |
|
||||||
// Desired payload type in the response from the server. |
|
||||||
// If response_type is RANDOM, the payload from each response in the stream |
|
||||||
// might be of different types. This is to simulate a mixed type of payload |
|
||||||
// stream. |
|
||||||
PayloadType response_type = 1; |
|
||||||
|
|
||||||
// Configuration for each expected response message. |
|
||||||
repeated ResponseParameters response_parameters = 2; |
|
||||||
|
|
||||||
// Optional input payload sent along with the request. |
|
||||||
Payload payload = 3; |
|
||||||
} |
|
||||||
|
|
||||||
// Server-streaming response, as configured by the request and parameters. |
|
||||||
message StreamingOutputCallResponse { |
|
||||||
// Payload to increase response size. |
|
||||||
Payload payload = 1; |
|
||||||
} |
|
@ -1,72 +0,0 @@ |
|||||||
|
|
||||||
// Copyright 2015, Google Inc. |
|
||||||
// All rights reserved. |
|
||||||
// |
|
||||||
// Redistribution and use in source and binary forms, with or without |
|
||||||
// modification, are permitted provided that the following conditions are |
|
||||||
// met: |
|
||||||
// |
|
||||||
// * Redistributions of source code must retain the above copyright |
|
||||||
// notice, this list of conditions and the following disclaimer. |
|
||||||
// * Redistributions in binary form must reproduce the above |
|
||||||
// copyright notice, this list of conditions and the following disclaimer |
|
||||||
// in the documentation and/or other materials provided with the |
|
||||||
// distribution. |
|
||||||
// * Neither the name of Google Inc. nor the names of its |
|
||||||
// contributors may be used to endorse or promote products derived from |
|
||||||
// this software without specific prior written permission. |
|
||||||
// |
|
||||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|
||||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|
||||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|
||||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|
||||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
||||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
||||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|
||||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|
||||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
||||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|
||||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
||||||
|
|
||||||
// An integration test service that covers all the method signature permutations |
|
||||||
// of unary/streaming requests/responses. |
|
||||||
|
|
||||||
syntax = "proto3"; |
|
||||||
|
|
||||||
import "empty.proto"; |
|
||||||
import "messages.proto"; |
|
||||||
|
|
||||||
package grpc.testing; |
|
||||||
|
|
||||||
// A simple service to test the various types of RPCs and experiment with |
|
||||||
// performance with various types of payload. |
|
||||||
service TestService { |
|
||||||
// One empty request followed by one empty response. |
|
||||||
rpc EmptyCall(grpc.testing.Empty) returns (grpc.testing.Empty); |
|
||||||
|
|
||||||
// One request followed by one response. |
|
||||||
rpc UnaryCall(SimpleRequest) returns (SimpleResponse); |
|
||||||
|
|
||||||
// One request followed by a sequence of responses (streamed download). |
|
||||||
// The server returns the payload with client desired type and sizes. |
|
||||||
rpc StreamingOutputCall(StreamingOutputCallRequest) |
|
||||||
returns (stream StreamingOutputCallResponse); |
|
||||||
|
|
||||||
// A sequence of requests followed by one response (streamed upload). |
|
||||||
// The server returns the aggregated size of client payload as the result. |
|
||||||
rpc StreamingInputCall(stream StreamingInputCallRequest) |
|
||||||
returns (StreamingInputCallResponse); |
|
||||||
|
|
||||||
// A sequence of requests with each request served by the server immediately. |
|
||||||
// As one request could lead to multiple responses, this interface |
|
||||||
// demonstrates the idea of full duplexing. |
|
||||||
rpc FullDuplexCall(stream StreamingOutputCallRequest) |
|
||||||
returns (stream StreamingOutputCallResponse); |
|
||||||
|
|
||||||
// A sequence of requests followed by a sequence of responses. |
|
||||||
// The server buffers all the client requests and then serves them in order. A |
|
||||||
// stream of responses are returned to the client when the server starts with |
|
||||||
// first request. |
|
||||||
rpc HalfDuplexCall(stream StreamingOutputCallRequest) |
|
||||||
returns (stream StreamingOutputCallResponse); |
|
||||||
} |
|
Loading…
Reference in new issue