mirror of https://github.com/grpc/grpc.git
commit
554c79c730
98 changed files with 2810 additions and 1049 deletions
@ -0,0 +1,480 @@ |
||||
/*
|
||||
* |
||||
* 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. |
||||
* |
||||
*/ |
||||
|
||||
#include <cctype> |
||||
#include <map> |
||||
#include <vector> |
||||
|
||||
#include "src/compiler/config.h" |
||||
#include "src/compiler/csharp_generator_helpers.h" |
||||
#include "src/compiler/csharp_generator.h" |
||||
|
||||
using grpc::protobuf::FileDescriptor; |
||||
using grpc::protobuf::Descriptor; |
||||
using grpc::protobuf::ServiceDescriptor; |
||||
using grpc::protobuf::MethodDescriptor; |
||||
using grpc::protobuf::io::Printer; |
||||
using grpc::protobuf::io::StringOutputStream; |
||||
using grpc_generator::MethodType; |
||||
using grpc_generator::GetMethodType; |
||||
using grpc_generator::METHODTYPE_NO_STREAMING; |
||||
using grpc_generator::METHODTYPE_CLIENT_STREAMING; |
||||
using grpc_generator::METHODTYPE_SERVER_STREAMING; |
||||
using grpc_generator::METHODTYPE_BIDI_STREAMING; |
||||
using std::map; |
||||
using std::vector; |
||||
|
||||
namespace grpc_csharp_generator { |
||||
namespace { |
||||
|
||||
std::string GetCSharpNamespace(const FileDescriptor* file) { |
||||
// TODO(jtattermusch): this should be based on csharp_namespace option
|
||||
return file->package(); |
||||
} |
||||
|
||||
std::string GetMessageType(const Descriptor* message) { |
||||
// TODO(jtattermusch): this has to match with C# protobuf generator
|
||||
return message->name(); |
||||
} |
||||
|
||||
std::string GetServiceClassName(const ServiceDescriptor* service) { |
||||
return service->name(); |
||||
} |
||||
|
||||
std::string GetClientInterfaceName(const ServiceDescriptor* service) { |
||||
return "I" + service->name() + "Client"; |
||||
} |
||||
|
||||
std::string GetClientClassName(const ServiceDescriptor* service) { |
||||
return service->name() + "Client"; |
||||
} |
||||
|
||||
std::string GetServerInterfaceName(const ServiceDescriptor* service) { |
||||
return "I" + service->name(); |
||||
} |
||||
|
||||
std::string GetCSharpMethodType(MethodType method_type) { |
||||
switch (method_type) { |
||||
case METHODTYPE_NO_STREAMING: |
||||
return "MethodType.Unary"; |
||||
case METHODTYPE_CLIENT_STREAMING: |
||||
return "MethodType.ClientStreaming"; |
||||
case METHODTYPE_SERVER_STREAMING: |
||||
return "MethodType.ServerStreaming"; |
||||
case METHODTYPE_BIDI_STREAMING: |
||||
return "MethodType.DuplexStreaming"; |
||||
} |
||||
GOOGLE_LOG(FATAL)<< "Can't get here."; |
||||
return ""; |
||||
} |
||||
|
||||
std::string GetServiceNameFieldName() { |
||||
return "__ServiceName"; |
||||
} |
||||
|
||||
std::string GetMarshallerFieldName(const Descriptor *message) { |
||||
return "__Marshaller_" + message->name(); |
||||
} |
||||
|
||||
std::string GetMethodFieldName(const MethodDescriptor *method) { |
||||
return "__Method_" + method->name(); |
||||
} |
||||
|
||||
std::string GetMethodRequestParamMaybe(const MethodDescriptor *method) { |
||||
if (method->client_streaming()) { |
||||
return ""; |
||||
} |
||||
return GetMessageType(method->input_type()) + " request, "; |
||||
} |
||||
|
||||
std::string GetMethodReturnTypeClient(const MethodDescriptor *method) { |
||||
switch (GetMethodType(method)) { |
||||
case METHODTYPE_NO_STREAMING: |
||||
return "Task<" + GetMessageType(method->output_type()) + ">"; |
||||
case METHODTYPE_CLIENT_STREAMING: |
||||
return "AsyncClientStreamingCall<" + GetMessageType(method->input_type()) |
||||
+ ", " + GetMessageType(method->output_type()) + ">"; |
||||
case METHODTYPE_SERVER_STREAMING: |
||||
return "AsyncServerStreamingCall<" + GetMessageType(method->output_type()) |
||||
+ ">"; |
||||
case METHODTYPE_BIDI_STREAMING: |
||||
return "AsyncDuplexStreamingCall<" + GetMessageType(method->input_type()) |
||||
+ ", " + GetMessageType(method->output_type()) + ">"; |
||||
} |
||||
GOOGLE_LOG(FATAL)<< "Can't get here."; |
||||
return ""; |
||||
} |
||||
|
||||
std::string GetMethodRequestParamServer(const MethodDescriptor *method) { |
||||
switch (GetMethodType(method)) { |
||||
case METHODTYPE_NO_STREAMING: |
||||
case METHODTYPE_SERVER_STREAMING: |
||||
return GetMessageType(method->input_type()) + " request"; |
||||
case METHODTYPE_CLIENT_STREAMING: |
||||
case METHODTYPE_BIDI_STREAMING: |
||||
return "IAsyncStreamReader<" + GetMessageType(method->input_type()) |
||||
+ "> requestStream"; |
||||
} |
||||
GOOGLE_LOG(FATAL)<< "Can't get here."; |
||||
return ""; |
||||
} |
||||
|
||||
std::string GetMethodReturnTypeServer(const MethodDescriptor *method) { |
||||
switch (GetMethodType(method)) { |
||||
case METHODTYPE_NO_STREAMING: |
||||
case METHODTYPE_CLIENT_STREAMING: |
||||
return "Task<" + GetMessageType(method->output_type()) + ">"; |
||||
case METHODTYPE_SERVER_STREAMING: |
||||
case METHODTYPE_BIDI_STREAMING: |
||||
return "Task"; |
||||
} |
||||
GOOGLE_LOG(FATAL)<< "Can't get here."; |
||||
return ""; |
||||
} |
||||
|
||||
std::string GetMethodResponseStreamMaybe(const MethodDescriptor *method) { |
||||
switch (GetMethodType(method)) { |
||||
case METHODTYPE_NO_STREAMING: |
||||
case METHODTYPE_CLIENT_STREAMING: |
||||
return ""; |
||||
case METHODTYPE_SERVER_STREAMING: |
||||
case METHODTYPE_BIDI_STREAMING: |
||||
return ", IServerStreamWriter<" + GetMessageType(method->output_type()) |
||||
+ "> responseStream"; |
||||
} |
||||
GOOGLE_LOG(FATAL)<< "Can't get here."; |
||||
return ""; |
||||
} |
||||
|
||||
// Gets vector of all messages used as input or output types.
|
||||
std::vector<const Descriptor*> GetUsedMessages( |
||||
const ServiceDescriptor *service) { |
||||
std::set<const Descriptor*> descriptor_set; |
||||
std::vector<const Descriptor*> result; // vector is to maintain stable ordering
|
||||
for (int i = 0; i < service->method_count(); i++) { |
||||
const MethodDescriptor *method = service->method(i); |
||||
if (descriptor_set.find(method->input_type()) == descriptor_set.end()) { |
||||
descriptor_set.insert(method->input_type()); |
||||
result.push_back(method->input_type()); |
||||
} |
||||
if (descriptor_set.find(method->output_type()) == descriptor_set.end()) { |
||||
descriptor_set.insert(method->output_type()); |
||||
result.push_back(method->output_type()); |
||||
} |
||||
} |
||||
return result; |
||||
} |
||||
|
||||
void GenerateMarshallerFields(Printer* out, const ServiceDescriptor *service) { |
||||
std::vector<const Descriptor*> used_messages = GetUsedMessages(service); |
||||
for (size_t i = 0; i < used_messages.size(); i++) { |
||||
const Descriptor *message = used_messages[i]; |
||||
out->Print( |
||||
"static readonly Marshaller<$type$> $fieldname$ = Marshallers.Create((arg) => arg.ToByteArray(), $type$.ParseFrom);\n", |
||||
"fieldname", GetMarshallerFieldName(message), "type", |
||||
GetMessageType(message)); |
||||
} |
||||
out->Print("\n"); |
||||
} |
||||
|
||||
void GenerateStaticMethodField(Printer* out, const MethodDescriptor *method) { |
||||
out->Print( |
||||
"static readonly Method<$request$, $response$> $fieldname$ = new Method<$request$, $response$>(\n", |
||||
"fieldname", GetMethodFieldName(method), "request", |
||||
GetMessageType(method->input_type()), "response", |
||||
GetMessageType(method->output_type())); |
||||
out->Indent(); |
||||
out->Indent(); |
||||
out->Print("$methodtype$,\n", "methodtype", |
||||
GetCSharpMethodType(GetMethodType(method))); |
||||
out->Print("\"$methodname$\",\n", "methodname", method->name()); |
||||
out->Print("$requestmarshaller$,\n", "requestmarshaller", |
||||
GetMarshallerFieldName(method->input_type())); |
||||
out->Print("$responsemarshaller$);\n", "responsemarshaller", |
||||
GetMarshallerFieldName(method->output_type())); |
||||
out->Print("\n"); |
||||
out->Outdent(); |
||||
out->Outdent(); |
||||
} |
||||
|
||||
void GenerateClientInterface(Printer* out, const ServiceDescriptor *service) { |
||||
out->Print("// client-side stub interface\n"); |
||||
out->Print("public interface $name$\n", "name", |
||||
GetClientInterfaceName(service)); |
||||
out->Print("{\n"); |
||||
out->Indent(); |
||||
for (int i = 0; i < service->method_count(); i++) { |
||||
const MethodDescriptor *method = service->method(i); |
||||
MethodType method_type = GetMethodType(method); |
||||
|
||||
if (method_type == METHODTYPE_NO_STREAMING) { |
||||
// unary calls have an extra synchronous stub method
|
||||
out->Print( |
||||
"$response$ $methodname$($request$ request, CancellationToken token = default(CancellationToken));\n", |
||||
"methodname", method->name(), "request", |
||||
GetMessageType(method->input_type()), "response", |
||||
GetMessageType(method->output_type())); |
||||
} |
||||
|
||||
std::string method_name = method->name(); |
||||
if (method_type == METHODTYPE_NO_STREAMING) { |
||||
method_name += "Async"; // prevent name clash with synchronous method.
|
||||
} |
||||
out->Print( |
||||
"$returntype$ $methodname$($request_maybe$CancellationToken token = default(CancellationToken));\n", |
||||
"methodname", method_name, "request_maybe", |
||||
GetMethodRequestParamMaybe(method), "returntype", |
||||
GetMethodReturnTypeClient(method)); |
||||
} |
||||
out->Outdent(); |
||||
out->Print("}\n"); |
||||
out->Print("\n"); |
||||
} |
||||
|
||||
void GenerateServerInterface(Printer* out, const ServiceDescriptor *service) { |
||||
out->Print("// server-side interface\n"); |
||||
out->Print("public interface $name$\n", "name", |
||||
GetServerInterfaceName(service)); |
||||
out->Print("{\n"); |
||||
out->Indent(); |
||||
for (int i = 0; i < service->method_count(); i++) { |
||||
const MethodDescriptor *method = service->method(i); |
||||
out->Print("$returntype$ $methodname$(ServerCallContext context, $request$$response_stream_maybe$);\n", |
||||
"methodname", method->name(), "returntype", |
||||
GetMethodReturnTypeServer(method), "request", |
||||
GetMethodRequestParamServer(method), "response_stream_maybe", |
||||
GetMethodResponseStreamMaybe(method)); |
||||
} |
||||
out->Outdent(); |
||||
out->Print("}\n"); |
||||
out->Print("\n"); |
||||
} |
||||
|
||||
void GenerateClientStub(Printer* out, const ServiceDescriptor *service) { |
||||
out->Print("// client stub\n"); |
||||
out->Print( |
||||
"public class $name$ : AbstractStub<$name$, StubConfiguration>, $interface$\n", |
||||
"name", GetClientClassName(service), "interface", |
||||
GetClientInterfaceName(service)); |
||||
out->Print("{\n"); |
||||
out->Indent(); |
||||
|
||||
// constructors
|
||||
out->Print( |
||||
"public $name$(Channel channel) : this(channel, StubConfiguration.Default)\n", |
||||
"name", GetClientClassName(service)); |
||||
out->Print("{\n"); |
||||
out->Print("}\n"); |
||||
out->Print( |
||||
"public $name$(Channel channel, StubConfiguration config) : base(channel, config)\n", |
||||
"name", GetClientClassName(service)); |
||||
out->Print("{\n"); |
||||
out->Print("}\n"); |
||||
|
||||
for (int i = 0; i < service->method_count(); i++) { |
||||
const MethodDescriptor *method = service->method(i); |
||||
MethodType method_type = GetMethodType(method); |
||||
|
||||
if (method_type == METHODTYPE_NO_STREAMING) { |
||||
// unary calls have an extra synchronous stub method
|
||||
out->Print( |
||||
"public $response$ $methodname$($request$ request, CancellationToken token = default(CancellationToken))\n", |
||||
"methodname", method->name(), "request", |
||||
GetMessageType(method->input_type()), "response", |
||||
GetMessageType(method->output_type())); |
||||
out->Print("{\n"); |
||||
out->Indent(); |
||||
out->Print("var call = CreateCall($servicenamefield$, $methodfield$);\n", |
||||
"servicenamefield", GetServiceNameFieldName(), "methodfield", |
||||
GetMethodFieldName(method)); |
||||
out->Print("return Calls.BlockingUnaryCall(call, request, token);\n"); |
||||
out->Outdent(); |
||||
out->Print("}\n"); |
||||
} |
||||
|
||||
std::string method_name = method->name(); |
||||
if (method_type == METHODTYPE_NO_STREAMING) { |
||||
method_name += "Async"; // prevent name clash with synchronous method.
|
||||
} |
||||
out->Print( |
||||
"public $returntype$ $methodname$($request_maybe$CancellationToken token = default(CancellationToken))\n", |
||||
"methodname", method_name, "request_maybe", |
||||
GetMethodRequestParamMaybe(method), "returntype", |
||||
GetMethodReturnTypeClient(method)); |
||||
out->Print("{\n"); |
||||
out->Indent(); |
||||
out->Print("var call = CreateCall($servicenamefield$, $methodfield$);\n", |
||||
"servicenamefield", GetServiceNameFieldName(), "methodfield", |
||||
GetMethodFieldName(method)); |
||||
switch (GetMethodType(method)) { |
||||
case METHODTYPE_NO_STREAMING: |
||||
out->Print("return Calls.AsyncUnaryCall(call, request, token);\n"); |
||||
break; |
||||
case METHODTYPE_CLIENT_STREAMING: |
||||
out->Print("return Calls.AsyncClientStreamingCall(call, token);\n"); |
||||
break; |
||||
case METHODTYPE_SERVER_STREAMING: |
||||
out->Print( |
||||
"return Calls.AsyncServerStreamingCall(call, request, token);\n"); |
||||
break; |
||||
case METHODTYPE_BIDI_STREAMING: |
||||
out->Print("return Calls.AsyncDuplexStreamingCall(call, token);\n"); |
||||
break; |
||||
default: |
||||
GOOGLE_LOG(FATAL)<< "Can't get here."; |
||||
} |
||||
out->Outdent(); |
||||
out->Print("}\n"); |
||||
} |
||||
out->Outdent(); |
||||
out->Print("}\n"); |
||||
out->Print("\n"); |
||||
} |
||||
|
||||
void GenerateBindServiceMethod(Printer* out, const ServiceDescriptor *service) { |
||||
out->Print( |
||||
"// creates service definition that can be registered with a server\n"); |
||||
out->Print( |
||||
"public static ServerServiceDefinition BindService($interface$ serviceImpl)\n", |
||||
"interface", GetServerInterfaceName(service)); |
||||
out->Print("{\n"); |
||||
out->Indent(); |
||||
|
||||
out->Print( |
||||
"return ServerServiceDefinition.CreateBuilder($servicenamefield$)\n", |
||||
"servicenamefield", GetServiceNameFieldName()); |
||||
out->Indent(); |
||||
out->Indent(); |
||||
for (int i = 0; i < service->method_count(); i++) { |
||||
const MethodDescriptor *method = service->method(i); |
||||
out->Print(".AddMethod($methodfield$, serviceImpl.$methodname$)", |
||||
"methodfield", GetMethodFieldName(method), "methodname", |
||||
method->name()); |
||||
if (i == service->method_count() - 1) { |
||||
out->Print(".Build();"); |
||||
} |
||||
out->Print("\n"); |
||||
} |
||||
out->Outdent(); |
||||
out->Outdent(); |
||||
|
||||
out->Outdent(); |
||||
out->Print("}\n"); |
||||
out->Print("\n"); |
||||
} |
||||
|
||||
void GenerateNewStubMethods(Printer* out, const ServiceDescriptor *service) { |
||||
out->Print("// creates a new client stub\n"); |
||||
out->Print("public static $interface$ NewStub(Channel channel)\n", |
||||
"interface", GetClientInterfaceName(service)); |
||||
out->Print("{\n"); |
||||
out->Indent(); |
||||
out->Print("return new $classname$(channel);\n", "classname", |
||||
GetClientClassName(service)); |
||||
out->Outdent(); |
||||
out->Print("}\n"); |
||||
out->Print("\n"); |
||||
|
||||
out->Print("// creates a new client stub\n"); |
||||
out->Print( |
||||
"public static $interface$ NewStub(Channel channel, StubConfiguration config)\n", |
||||
"interface", GetClientInterfaceName(service)); |
||||
out->Print("{\n"); |
||||
out->Indent(); |
||||
out->Print("return new $classname$(channel, config);\n", "classname", |
||||
GetClientClassName(service)); |
||||
out->Outdent(); |
||||
out->Print("}\n"); |
||||
} |
||||
|
||||
void GenerateService(Printer* out, const ServiceDescriptor *service) { |
||||
out->Print("public static class $classname$\n", "classname", |
||||
GetServiceClassName(service)); |
||||
out->Print("{\n"); |
||||
out->Indent(); |
||||
out->Print("static readonly string $servicenamefield$ = \"$servicename$\";\n", |
||||
"servicenamefield", GetServiceNameFieldName(), "servicename", |
||||
service->full_name()); |
||||
out->Print("\n"); |
||||
|
||||
GenerateMarshallerFields(out, service); |
||||
for (int i = 0; i < service->method_count(); i++) { |
||||
GenerateStaticMethodField(out, service->method(i)); |
||||
} |
||||
GenerateClientInterface(out, service); |
||||
GenerateServerInterface(out, service); |
||||
GenerateClientStub(out, service); |
||||
GenerateBindServiceMethod(out, service); |
||||
GenerateNewStubMethods(out, service); |
||||
|
||||
out->Outdent(); |
||||
out->Print("}\n"); |
||||
} |
||||
|
||||
} // anonymous namespace
|
||||
|
||||
grpc::string GetServices(const FileDescriptor *file) { |
||||
grpc::string output; |
||||
StringOutputStream output_stream(&output); |
||||
Printer out(&output_stream, '$'); |
||||
|
||||
// Don't write out any output if there no services, to avoid empty service
|
||||
// files being generated for proto files that don't declare any.
|
||||
if (file->service_count() == 0) { |
||||
return output; |
||||
} |
||||
|
||||
// Write out a file header.
|
||||
out.Print("// Generated by the protocol buffer compiler. DO NOT EDIT!\n"); |
||||
out.Print("// source: $filename$\n", "filename", file->name()); |
||||
out.Print("#region Designer generated code\n"); |
||||
out.Print("\n"); |
||||
out.Print("using System;\n"); |
||||
out.Print("using System.Threading;\n"); |
||||
out.Print("using System.Threading.Tasks;\n"); |
||||
out.Print("using Grpc.Core;\n"); |
||||
// TODO(jtattermusch): add using for protobuf message classes
|
||||
out.Print("\n"); |
||||
|
||||
out.Print("namespace $namespace$ {\n", "namespace", GetCSharpNamespace(file)); |
||||
out.Indent(); |
||||
for (int i = 0; i < file->service_count(); i++) { |
||||
GenerateService(&out, file->service(i)); |
||||
} |
||||
out.Outdent(); |
||||
out.Print("}\n"); |
||||
out.Print("#endregion\n"); |
||||
return output; |
||||
} |
||||
|
||||
} // namespace grpc_csharp_generator
|
@ -0,0 +1,45 @@ |
||||
/*
|
||||
* |
||||
* 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. |
||||
* |
||||
*/ |
||||
|
||||
#ifndef GRPC_INTERNAL_COMPILER_CSHARP_GENERATOR_H |
||||
#define GRPC_INTERNAL_COMPILER_CSHARP_GENERATOR_H |
||||
|
||||
#include "src/compiler/config.h" |
||||
|
||||
namespace grpc_csharp_generator { |
||||
|
||||
grpc::string GetServices(const grpc::protobuf::FileDescriptor *file); |
||||
|
||||
} // namespace grpc_csharp_generator
|
||||
|
||||
#endif // GRPC_INTERNAL_COMPILER_CSHARP_GENERATOR_H
|
@ -0,0 +1,50 @@ |
||||
/*
|
||||
* |
||||
* 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. |
||||
* |
||||
*/ |
||||
|
||||
#ifndef GRPC_INTERNAL_COMPILER_CSHARP_GENERATOR_HELPERS_H |
||||
#define GRPC_INTERNAL_COMPILER_CSHARP_GENERATOR_HELPERS_H |
||||
|
||||
#include "src/compiler/config.h" |
||||
#include "src/compiler/generator_helpers.h" |
||||
|
||||
namespace grpc_csharp_generator { |
||||
|
||||
inline bool ServicesFilename(const grpc::protobuf::FileDescriptor *file, |
||||
grpc::string *file_name_or_error) { |
||||
*file_name_or_error = grpc_generator::FileNameInUpperCamel(file) + "Grpc.cs"; |
||||
return true; |
||||
} |
||||
|
||||
} // namespace grpc_csharp_generator
|
||||
|
||||
#endif // GRPC_INTERNAL_COMPILER_CSHARP_GENERATOR_HELPERS_H
|
@ -0,0 +1,72 @@ |
||||
/*
|
||||
* |
||||
* 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. |
||||
* |
||||
*/ |
||||
|
||||
// Generates C# gRPC service interface out of Protobuf IDL.
|
||||
|
||||
#include <memory> |
||||
|
||||
#include "src/compiler/config.h" |
||||
#include "src/compiler/csharp_generator.h" |
||||
#include "src/compiler/csharp_generator_helpers.h" |
||||
|
||||
class CSharpGrpcGenerator : public grpc::protobuf::compiler::CodeGenerator { |
||||
public: |
||||
CSharpGrpcGenerator() {} |
||||
~CSharpGrpcGenerator() {} |
||||
|
||||
bool Generate(const grpc::protobuf::FileDescriptor *file, |
||||
const grpc::string ¶meter, |
||||
grpc::protobuf::compiler::GeneratorContext *context, |
||||
grpc::string *error) const { |
||||
grpc::string code = grpc_csharp_generator::GetServices(file); |
||||
if (code.size() == 0) { |
||||
return true; // don't generate a file if there are no services
|
||||
} |
||||
|
||||
// Get output file name.
|
||||
grpc::string file_name; |
||||
if (!grpc_csharp_generator::ServicesFilename(file, &file_name)) { |
||||
return false; |
||||
} |
||||
std::unique_ptr<grpc::protobuf::io::ZeroCopyOutputStream> output( |
||||
context->Open(file_name)); |
||||
grpc::protobuf::io::CodedOutputStream coded_out(output.get()); |
||||
coded_out.WriteRaw(code.data(), code.size()); |
||||
return true; |
||||
} |
||||
}; |
||||
|
||||
int main(int argc, char *argv[]) { |
||||
CSharpGrpcGenerator generator; |
||||
return grpc::protobuf::compiler::PluginMain(argc, argv, &generator); |
||||
} |
@ -0,0 +1,56 @@ |
||||
#region Copyright notice and license |
||||
|
||||
// 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. |
||||
|
||||
#endregion |
||||
|
||||
using System; |
||||
using System.Runtime.CompilerServices; |
||||
using System.Threading.Tasks; |
||||
|
||||
namespace Grpc.Core |
||||
{ |
||||
/// <summary> |
||||
/// Context for a server-side call. |
||||
/// </summary> |
||||
public sealed class ServerCallContext |
||||
{ |
||||
|
||||
// TODO(jtattermusch): add cancellationToken |
||||
|
||||
// TODO(jtattermusch): add deadline info |
||||
|
||||
// TODO(jtattermusch): expose initial metadata sent by client for reading |
||||
|
||||
// TODO(jtattermusch): expose method to send initial metadata back to client |
||||
|
||||
// TODO(jtattermusch): allow setting status and trailing metadata to send after handler completes. |
||||
} |
||||
} |
@ -1,164 +1,122 @@ |
||||
#region Copyright notice and license |
||||
|
||||
// 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. |
||||
|
||||
#endregion |
||||
// Generated by the protocol buffer compiler. DO NOT EDIT! |
||||
// source: math.proto |
||||
#region Designer generated code |
||||
|
||||
using System; |
||||
using System.Collections.Generic; |
||||
using System.Reactive.Linq; |
||||
using System.Threading; |
||||
using System.Threading.Tasks; |
||||
using Grpc.Core; |
||||
|
||||
namespace math |
||||
{ |
||||
/// <summary> |
||||
/// Math service definitions (this is handwritten version of code that will normally be generated). |
||||
/// </summary> |
||||
public class MathGrpc |
||||
namespace math { |
||||
public static class Math |
||||
{ |
||||
static readonly string __ServiceName = "math.Math"; |
||||
|
||||
static readonly Marshaller<DivArgs> __Marshaller_DivArgs = Marshallers.Create((arg) => arg.ToByteArray(), DivArgs.ParseFrom); |
||||
static readonly Marshaller<DivReply> __Marshaller_DivReply = Marshallers.Create((arg) => arg.ToByteArray(), DivReply.ParseFrom); |
||||
static readonly Marshaller<FibArgs> __Marshaller_FibArgs = Marshallers.Create((arg) => arg.ToByteArray(), FibArgs.ParseFrom); |
||||
static readonly Marshaller<Num> __Marshaller_Num = Marshallers.Create((arg) => arg.ToByteArray(), Num.ParseFrom); |
||||
|
||||
static readonly Method<DivArgs, DivReply> __Method_Div = new Method<DivArgs, DivReply>( |
||||
MethodType.Unary, |
||||
"Div", |
||||
__Marshaller_DivArgs, |
||||
__Marshaller_DivReply); |
||||
|
||||
static readonly Method<DivArgs, DivReply> __Method_DivMany = new Method<DivArgs, DivReply>( |
||||
MethodType.DuplexStreaming, |
||||
"DivMany", |
||||
__Marshaller_DivArgs, |
||||
__Marshaller_DivReply); |
||||
|
||||
static readonly Method<FibArgs, Num> __Method_Fib = new Method<FibArgs, Num>( |
||||
MethodType.ServerStreaming, |
||||
"Fib", |
||||
__Marshaller_FibArgs, |
||||
__Marshaller_Num); |
||||
|
||||
static readonly Method<Num, Num> __Method_Sum = new Method<Num, Num>( |
||||
MethodType.ClientStreaming, |
||||
"Sum", |
||||
__Marshaller_Num, |
||||
__Marshaller_Num); |
||||
|
||||
// client-side stub interface |
||||
public interface IMathClient |
||||
{ |
||||
static readonly string ServiceName = "/math.Math"; |
||||
|
||||
static readonly Marshaller<DivArgs> DivArgsMarshaller = Marshallers.Create((arg) => arg.ToByteArray(), DivArgs.ParseFrom); |
||||
static readonly Marshaller<DivReply> DivReplyMarshaller = Marshallers.Create((arg) => arg.ToByteArray(), DivReply.ParseFrom); |
||||
static readonly Marshaller<Num> NumMarshaller = Marshallers.Create((arg) => arg.ToByteArray(), Num.ParseFrom); |
||||
static readonly Marshaller<FibArgs> FibArgsMarshaller = Marshallers.Create((arg) => arg.ToByteArray(), FibArgs.ParseFrom); |
||||
|
||||
static readonly Method<DivArgs, DivReply> DivMethod = new Method<DivArgs, DivReply>( |
||||
MethodType.Unary, |
||||
"Div", |
||||
DivArgsMarshaller, |
||||
DivReplyMarshaller); |
||||
|
||||
static readonly Method<FibArgs, Num> FibMethod = new Method<FibArgs, Num>( |
||||
MethodType.ServerStreaming, |
||||
"Fib", |
||||
FibArgsMarshaller, |
||||
NumMarshaller); |
||||
|
||||
static readonly Method<Num, Num> SumMethod = new Method<Num, Num>( |
||||
MethodType.ClientStreaming, |
||||
"Sum", |
||||
NumMarshaller, |
||||
NumMarshaller); |
||||
|
||||
static readonly Method<DivArgs, DivReply> DivManyMethod = new Method<DivArgs, DivReply>( |
||||
MethodType.DuplexStreaming, |
||||
"DivMany", |
||||
DivArgsMarshaller, |
||||
DivReplyMarshaller); |
||||
|
||||
public interface IMathServiceClient |
||||
{ |
||||
DivReply Div(DivArgs request, CancellationToken token = default(CancellationToken)); |
||||
|
||||
Task<DivReply> DivAsync(DivArgs request, CancellationToken token = default(CancellationToken)); |
||||
|
||||
AsyncServerStreamingCall<Num> Fib(FibArgs request, CancellationToken token = default(CancellationToken)); |
||||
|
||||
AsyncClientStreamingCall<Num, Num> Sum(CancellationToken token = default(CancellationToken)); |
||||
|
||||
AsyncDuplexStreamingCall<DivArgs, DivReply> DivMany(CancellationToken token = default(CancellationToken)); |
||||
} |
||||
|
||||
public class MathServiceClientStub : AbstractStub<MathServiceClientStub, StubConfiguration>, IMathServiceClient |
||||
{ |
||||
public MathServiceClientStub(Channel channel) : this(channel, StubConfiguration.Default) |
||||
{ |
||||
} |
||||
|
||||
public MathServiceClientStub(Channel channel, StubConfiguration config) : base(channel, config) |
||||
{ |
||||
} |
||||
|
||||
public DivReply Div(DivArgs request, CancellationToken token = default(CancellationToken)) |
||||
{ |
||||
var call = CreateCall(ServiceName, DivMethod); |
||||
return Calls.BlockingUnaryCall(call, request, token); |
||||
} |
||||
|
||||
public Task<DivReply> DivAsync(DivArgs request, CancellationToken token = default(CancellationToken)) |
||||
{ |
||||
var call = CreateCall(ServiceName, DivMethod); |
||||
return Calls.AsyncUnaryCall(call, request, token); |
||||
} |
||||
|
||||
public AsyncServerStreamingCall<Num> Fib(FibArgs request, CancellationToken token = default(CancellationToken)) |
||||
{ |
||||
var call = CreateCall(ServiceName, FibMethod); |
||||
return Calls.AsyncServerStreamingCall(call, request, token); |
||||
} |
||||
|
||||
public AsyncClientStreamingCall<Num, Num> Sum(CancellationToken token = default(CancellationToken)) |
||||
{ |
||||
var call = CreateCall(ServiceName, SumMethod); |
||||
return Calls.AsyncClientStreamingCall(call, token); |
||||
} |
||||
|
||||
public AsyncDuplexStreamingCall<DivArgs, DivReply> DivMany(CancellationToken token = default(CancellationToken)) |
||||
{ |
||||
var call = CreateCall(ServiceName, DivManyMethod); |
||||
return Calls.AsyncDuplexStreamingCall(call, token); |
||||
} |
||||
} |
||||
|
||||
// server-side interface |
||||
public interface IMathService |
||||
{ |
||||
Task<DivReply> Div(DivArgs request); |
||||
|
||||
Task Fib(FibArgs request, IServerStreamWriter<Num> responseStream); |
||||
DivReply Div(DivArgs request, CancellationToken token = default(CancellationToken)); |
||||
Task<DivReply> DivAsync(DivArgs request, CancellationToken token = default(CancellationToken)); |
||||
AsyncDuplexStreamingCall<DivArgs, DivReply> DivMany(CancellationToken token = default(CancellationToken)); |
||||
AsyncServerStreamingCall<Num> Fib(FibArgs request, CancellationToken token = default(CancellationToken)); |
||||
AsyncClientStreamingCall<Num, Num> Sum(CancellationToken token = default(CancellationToken)); |
||||
} |
||||
|
||||
Task<Num> Sum(IAsyncStreamReader<Num> requestStream); |
||||
// server-side interface |
||||
public interface IMath |
||||
{ |
||||
Task<DivReply> Div(ServerCallContext context, DivArgs request); |
||||
Task DivMany(ServerCallContext context, IAsyncStreamReader<DivArgs> requestStream, IServerStreamWriter<DivReply> responseStream); |
||||
Task Fib(ServerCallContext context, FibArgs request, IServerStreamWriter<Num> responseStream); |
||||
Task<Num> Sum(ServerCallContext context, IAsyncStreamReader<Num> requestStream); |
||||
} |
||||
|
||||
Task DivMany(IAsyncStreamReader<DivArgs> requestStream, IServerStreamWriter<DivReply> responseStream); |
||||
} |
||||
// client stub |
||||
public class MathClient : AbstractStub<MathClient, StubConfiguration>, IMathClient |
||||
{ |
||||
public MathClient(Channel channel) : this(channel, StubConfiguration.Default) |
||||
{ |
||||
} |
||||
public MathClient(Channel channel, StubConfiguration config) : base(channel, config) |
||||
{ |
||||
} |
||||
public DivReply Div(DivArgs request, CancellationToken token = default(CancellationToken)) |
||||
{ |
||||
var call = CreateCall(__ServiceName, __Method_Div); |
||||
return Calls.BlockingUnaryCall(call, request, token); |
||||
} |
||||
public Task<DivReply> DivAsync(DivArgs request, CancellationToken token = default(CancellationToken)) |
||||
{ |
||||
var call = CreateCall(__ServiceName, __Method_Div); |
||||
return Calls.AsyncUnaryCall(call, request, token); |
||||
} |
||||
public AsyncDuplexStreamingCall<DivArgs, DivReply> DivMany(CancellationToken token = default(CancellationToken)) |
||||
{ |
||||
var call = CreateCall(__ServiceName, __Method_DivMany); |
||||
return Calls.AsyncDuplexStreamingCall(call, token); |
||||
} |
||||
public AsyncServerStreamingCall<Num> Fib(FibArgs request, CancellationToken token = default(CancellationToken)) |
||||
{ |
||||
var call = CreateCall(__ServiceName, __Method_Fib); |
||||
return Calls.AsyncServerStreamingCall(call, request, token); |
||||
} |
||||
public AsyncClientStreamingCall<Num, Num> Sum(CancellationToken token = default(CancellationToken)) |
||||
{ |
||||
var call = CreateCall(__ServiceName, __Method_Sum); |
||||
return Calls.AsyncClientStreamingCall(call, token); |
||||
} |
||||
} |
||||
|
||||
public static ServerServiceDefinition BindService(IMathService serviceImpl) |
||||
{ |
||||
return ServerServiceDefinition.CreateBuilder(ServiceName) |
||||
.AddMethod(DivMethod, serviceImpl.Div) |
||||
.AddMethod(FibMethod, serviceImpl.Fib) |
||||
.AddMethod(SumMethod, serviceImpl.Sum) |
||||
.AddMethod(DivManyMethod, serviceImpl.DivMany).Build(); |
||||
} |
||||
// creates service definition that can be registered with a server |
||||
public static ServerServiceDefinition BindService(IMath serviceImpl) |
||||
{ |
||||
return ServerServiceDefinition.CreateBuilder(__ServiceName) |
||||
.AddMethod(__Method_Div, serviceImpl.Div) |
||||
.AddMethod(__Method_DivMany, serviceImpl.DivMany) |
||||
.AddMethod(__Method_Fib, serviceImpl.Fib) |
||||
.AddMethod(__Method_Sum, serviceImpl.Sum).Build(); |
||||
} |
||||
|
||||
public static IMathServiceClient NewStub(Channel channel) |
||||
{ |
||||
return new MathServiceClientStub(channel); |
||||
} |
||||
// creates a new client stub |
||||
public static IMathClient NewStub(Channel channel) |
||||
{ |
||||
return new MathClient(channel); |
||||
} |
||||
|
||||
public static IMathServiceClient NewStub(Channel channel, StubConfiguration config) |
||||
{ |
||||
return new MathServiceClientStub(channel, config); |
||||
} |
||||
// creates a new client stub |
||||
public static IMathClient NewStub(Channel channel, StubConfiguration config) |
||||
{ |
||||
return new MathClient(channel, config); |
||||
} |
||||
} |
||||
} |
||||
#endregion |
||||
|
@ -0,0 +1,159 @@ |
||||
// Generated by the protocol buffer compiler. DO NOT EDIT! |
||||
// source: test.proto |
||||
#region Designer generated code |
||||
|
||||
using System; |
||||
using System.Threading; |
||||
using System.Threading.Tasks; |
||||
using Grpc.Core; |
||||
|
||||
namespace grpc.testing { |
||||
public static class TestService |
||||
{ |
||||
static readonly string __ServiceName = "grpc.testing.TestService"; |
||||
|
||||
static readonly Marshaller<Empty> __Marshaller_Empty = Marshallers.Create((arg) => arg.ToByteArray(), Empty.ParseFrom); |
||||
static readonly Marshaller<SimpleRequest> __Marshaller_SimpleRequest = Marshallers.Create((arg) => arg.ToByteArray(), SimpleRequest.ParseFrom); |
||||
static readonly Marshaller<SimpleResponse> __Marshaller_SimpleResponse = Marshallers.Create((arg) => arg.ToByteArray(), SimpleResponse.ParseFrom); |
||||
static readonly Marshaller<StreamingOutputCallRequest> __Marshaller_StreamingOutputCallRequest = Marshallers.Create((arg) => arg.ToByteArray(), StreamingOutputCallRequest.ParseFrom); |
||||
static readonly Marshaller<StreamingOutputCallResponse> __Marshaller_StreamingOutputCallResponse = Marshallers.Create((arg) => arg.ToByteArray(), StreamingOutputCallResponse.ParseFrom); |
||||
static readonly Marshaller<StreamingInputCallRequest> __Marshaller_StreamingInputCallRequest = Marshallers.Create((arg) => arg.ToByteArray(), StreamingInputCallRequest.ParseFrom); |
||||
static readonly Marshaller<StreamingInputCallResponse> __Marshaller_StreamingInputCallResponse = Marshallers.Create((arg) => arg.ToByteArray(), StreamingInputCallResponse.ParseFrom); |
||||
|
||||
static readonly Method<Empty, Empty> __Method_EmptyCall = new Method<Empty, Empty>( |
||||
MethodType.Unary, |
||||
"EmptyCall", |
||||
__Marshaller_Empty, |
||||
__Marshaller_Empty); |
||||
|
||||
static readonly Method<SimpleRequest, SimpleResponse> __Method_UnaryCall = new Method<SimpleRequest, SimpleResponse>( |
||||
MethodType.Unary, |
||||
"UnaryCall", |
||||
__Marshaller_SimpleRequest, |
||||
__Marshaller_SimpleResponse); |
||||
|
||||
static readonly Method<StreamingOutputCallRequest, StreamingOutputCallResponse> __Method_StreamingOutputCall = new Method<StreamingOutputCallRequest, StreamingOutputCallResponse>( |
||||
MethodType.ServerStreaming, |
||||
"StreamingOutputCall", |
||||
__Marshaller_StreamingOutputCallRequest, |
||||
__Marshaller_StreamingOutputCallResponse); |
||||
|
||||
static readonly Method<StreamingInputCallRequest, StreamingInputCallResponse> __Method_StreamingInputCall = new Method<StreamingInputCallRequest, StreamingInputCallResponse>( |
||||
MethodType.ClientStreaming, |
||||
"StreamingInputCall", |
||||
__Marshaller_StreamingInputCallRequest, |
||||
__Marshaller_StreamingInputCallResponse); |
||||
|
||||
static readonly Method<StreamingOutputCallRequest, StreamingOutputCallResponse> __Method_FullDuplexCall = new Method<StreamingOutputCallRequest, StreamingOutputCallResponse>( |
||||
MethodType.DuplexStreaming, |
||||
"FullDuplexCall", |
||||
__Marshaller_StreamingOutputCallRequest, |
||||
__Marshaller_StreamingOutputCallResponse); |
||||
|
||||
static readonly Method<StreamingOutputCallRequest, StreamingOutputCallResponse> __Method_HalfDuplexCall = new Method<StreamingOutputCallRequest, StreamingOutputCallResponse>( |
||||
MethodType.DuplexStreaming, |
||||
"HalfDuplexCall", |
||||
__Marshaller_StreamingOutputCallRequest, |
||||
__Marshaller_StreamingOutputCallResponse); |
||||
|
||||
// client-side stub interface |
||||
public interface ITestServiceClient |
||||
{ |
||||
Empty EmptyCall(Empty request, CancellationToken token = default(CancellationToken)); |
||||
Task<Empty> EmptyCallAsync(Empty request, CancellationToken token = default(CancellationToken)); |
||||
SimpleResponse UnaryCall(SimpleRequest request, CancellationToken token = default(CancellationToken)); |
||||
Task<SimpleResponse> UnaryCallAsync(SimpleRequest request, CancellationToken token = default(CancellationToken)); |
||||
AsyncServerStreamingCall<StreamingOutputCallResponse> StreamingOutputCall(StreamingOutputCallRequest request, CancellationToken token = default(CancellationToken)); |
||||
AsyncClientStreamingCall<StreamingInputCallRequest, StreamingInputCallResponse> StreamingInputCall(CancellationToken token = default(CancellationToken)); |
||||
AsyncDuplexStreamingCall<StreamingOutputCallRequest, StreamingOutputCallResponse> FullDuplexCall(CancellationToken token = default(CancellationToken)); |
||||
AsyncDuplexStreamingCall<StreamingOutputCallRequest, StreamingOutputCallResponse> HalfDuplexCall(CancellationToken token = default(CancellationToken)); |
||||
} |
||||
|
||||
// server-side interface |
||||
public interface ITestService |
||||
{ |
||||
Task<Empty> EmptyCall(ServerCallContext context, Empty request); |
||||
Task<SimpleResponse> UnaryCall(ServerCallContext context, SimpleRequest request); |
||||
Task StreamingOutputCall(ServerCallContext context, StreamingOutputCallRequest request, IServerStreamWriter<StreamingOutputCallResponse> responseStream); |
||||
Task<StreamingInputCallResponse> StreamingInputCall(ServerCallContext context, IAsyncStreamReader<StreamingInputCallRequest> requestStream); |
||||
Task FullDuplexCall(ServerCallContext context, IAsyncStreamReader<StreamingOutputCallRequest> requestStream, IServerStreamWriter<StreamingOutputCallResponse> responseStream); |
||||
Task HalfDuplexCall(ServerCallContext context, IAsyncStreamReader<StreamingOutputCallRequest> requestStream, IServerStreamWriter<StreamingOutputCallResponse> responseStream); |
||||
} |
||||
|
||||
// client stub |
||||
public class TestServiceClient : AbstractStub<TestServiceClient, StubConfiguration>, ITestServiceClient |
||||
{ |
||||
public TestServiceClient(Channel channel) : this(channel, StubConfiguration.Default) |
||||
{ |
||||
} |
||||
public TestServiceClient(Channel channel, StubConfiguration config) : base(channel, config) |
||||
{ |
||||
} |
||||
public Empty EmptyCall(Empty request, CancellationToken token = default(CancellationToken)) |
||||
{ |
||||
var call = CreateCall(__ServiceName, __Method_EmptyCall); |
||||
return Calls.BlockingUnaryCall(call, request, token); |
||||
} |
||||
public Task<Empty> EmptyCallAsync(Empty request, CancellationToken token = default(CancellationToken)) |
||||
{ |
||||
var call = CreateCall(__ServiceName, __Method_EmptyCall); |
||||
return Calls.AsyncUnaryCall(call, request, token); |
||||
} |
||||
public SimpleResponse UnaryCall(SimpleRequest request, CancellationToken token = default(CancellationToken)) |
||||
{ |
||||
var call = CreateCall(__ServiceName, __Method_UnaryCall); |
||||
return Calls.BlockingUnaryCall(call, request, token); |
||||
} |
||||
public Task<SimpleResponse> UnaryCallAsync(SimpleRequest request, CancellationToken token = default(CancellationToken)) |
||||
{ |
||||
var call = CreateCall(__ServiceName, __Method_UnaryCall); |
||||
return Calls.AsyncUnaryCall(call, request, token); |
||||
} |
||||
public AsyncServerStreamingCall<StreamingOutputCallResponse> StreamingOutputCall(StreamingOutputCallRequest request, CancellationToken token = default(CancellationToken)) |
||||
{ |
||||
var call = CreateCall(__ServiceName, __Method_StreamingOutputCall); |
||||
return Calls.AsyncServerStreamingCall(call, request, token); |
||||
} |
||||
public AsyncClientStreamingCall<StreamingInputCallRequest, StreamingInputCallResponse> StreamingInputCall(CancellationToken token = default(CancellationToken)) |
||||
{ |
||||
var call = CreateCall(__ServiceName, __Method_StreamingInputCall); |
||||
return Calls.AsyncClientStreamingCall(call, token); |
||||
} |
||||
public AsyncDuplexStreamingCall<StreamingOutputCallRequest, StreamingOutputCallResponse> FullDuplexCall(CancellationToken token = default(CancellationToken)) |
||||
{ |
||||
var call = CreateCall(__ServiceName, __Method_FullDuplexCall); |
||||
return Calls.AsyncDuplexStreamingCall(call, token); |
||||
} |
||||
public AsyncDuplexStreamingCall<StreamingOutputCallRequest, StreamingOutputCallResponse> HalfDuplexCall(CancellationToken token = default(CancellationToken)) |
||||
{ |
||||
var call = CreateCall(__ServiceName, __Method_HalfDuplexCall); |
||||
return Calls.AsyncDuplexStreamingCall(call, token); |
||||
} |
||||
} |
||||
|
||||
// creates service definition that can be registered with a server |
||||
public static ServerServiceDefinition BindService(ITestService serviceImpl) |
||||
{ |
||||
return ServerServiceDefinition.CreateBuilder(__ServiceName) |
||||
.AddMethod(__Method_EmptyCall, serviceImpl.EmptyCall) |
||||
.AddMethod(__Method_UnaryCall, serviceImpl.UnaryCall) |
||||
.AddMethod(__Method_StreamingOutputCall, serviceImpl.StreamingOutputCall) |
||||
.AddMethod(__Method_StreamingInputCall, serviceImpl.StreamingInputCall) |
||||
.AddMethod(__Method_FullDuplexCall, serviceImpl.FullDuplexCall) |
||||
.AddMethod(__Method_HalfDuplexCall, serviceImpl.HalfDuplexCall).Build(); |
||||
} |
||||
|
||||
// creates a new client stub |
||||
public static ITestServiceClient NewStub(Channel channel) |
||||
{ |
||||
return new TestServiceClient(channel); |
||||
} |
||||
|
||||
// creates a new client stub |
||||
public static ITestServiceClient NewStub(Channel channel, StubConfiguration config) |
||||
{ |
||||
return new TestServiceClient(channel, config); |
||||
} |
||||
} |
||||
} |
||||
#endregion |
@ -0,0 +1,43 @@ |
||||
#!/bin/sh |
||||
# 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. |
||||
|
||||
# Regenerates gRPC service stubs from proto files. |
||||
set +e |
||||
cd $(dirname $0) |
||||
|
||||
PLUGIN=protoc-gen-grpc=../../bins/opt/grpc_csharp_plugin |
||||
EXAMPLES_DIR=Grpc.Examples |
||||
INTEROP_DIR=Grpc.IntegrationTesting |
||||
|
||||
protoc --plugin=$PLUGIN --grpc_out=$EXAMPLES_DIR \ |
||||
-I $EXAMPLES_DIR/proto $EXAMPLES_DIR/proto/math.proto |
||||
|
||||
protoc --plugin=$PLUGIN --grpc_out=$INTEROP_DIR \ |
||||
-I $INTEROP_DIR/proto $INTEROP_DIR/proto/test.proto |
@ -1,315 +0,0 @@ |
||||
{ |
||||
"_readme": [ |
||||
"This file locks the dependencies of your project to a known state", |
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", |
||||
"This file is @generated automatically" |
||||
], |
||||
"hash": "bb81ea5f72ddea2f594a172ff0f3b44d", |
||||
"packages": [ |
||||
{ |
||||
"name": "firebase/php-jwt", |
||||
"version": "2.0.0", |
||||
"target-dir": "Firebase/PHP-JWT", |
||||
"source": { |
||||
"type": "git", |
||||
"url": "https://github.com/firebase/php-jwt.git", |
||||
"reference": "ffcfd888ce1e4f2d70cac2dc9b7301038332fe57" |
||||
}, |
||||
"dist": { |
||||
"type": "zip", |
||||
"url": "https://api.github.com/repos/firebase/php-jwt/zipball/ffcfd888ce1e4f2d70cac2dc9b7301038332fe57", |
||||
"reference": "ffcfd888ce1e4f2d70cac2dc9b7301038332fe57", |
||||
"shasum": "" |
||||
}, |
||||
"require": { |
||||
"php": ">=5.2.0" |
||||
}, |
||||
"type": "library", |
||||
"autoload": { |
||||
"classmap": [ |
||||
"Authentication/", |
||||
"Exceptions/" |
||||
] |
||||
}, |
||||
"notification-url": "https://packagist.org/downloads/", |
||||
"license": [ |
||||
"BSD-3-Clause" |
||||
], |
||||
"authors": [ |
||||
{ |
||||
"name": "Neuman Vong", |
||||
"email": "neuman+pear@twilio.com", |
||||
"role": "Developer" |
||||
}, |
||||
{ |
||||
"name": "Anant Narayanan", |
||||
"email": "anant@php.net", |
||||
"role": "Developer" |
||||
} |
||||
], |
||||
"description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.", |
||||
"homepage": "https://github.com/firebase/php-jwt", |
||||
"time": "2015-04-01 18:46:38" |
||||
}, |
||||
{ |
||||
"name": "google/auth", |
||||
"version": "dev-master", |
||||
"source": { |
||||
"type": "git", |
||||
"url": "https://github.com/google/google-auth-library-php.git", |
||||
"reference": "70ff1c9b27b1678827465c72ce81a067e1653442" |
||||
}, |
||||
"dist": { |
||||
"type": "zip", |
||||
"url": "https://api.github.com/repos/google/google-auth-library-php/zipball/70ff1c9b27b1678827465c72ce81a067e1653442", |
||||
"reference": "70ff1c9b27b1678827465c72ce81a067e1653442", |
||||
"shasum": "" |
||||
}, |
||||
"require": { |
||||
"firebase/php-jwt": "2.0.0", |
||||
"guzzlehttp/guzzle": "5.2.*", |
||||
"php": ">=5.4" |
||||
}, |
||||
"require-dev": { |
||||
"phplint/phplint": "0.0.1", |
||||
"phpunit/phpunit": "3.7.*" |
||||
}, |
||||
"type": "library", |
||||
"autoload": { |
||||
"classmap": [ |
||||
"src/" |
||||
], |
||||
"psr-4": { |
||||
"Google\\Auth\\": "src" |
||||
} |
||||
}, |
||||
"notification-url": "https://packagist.org/downloads/", |
||||
"license": [ |
||||
"Apache-2.0" |
||||
], |
||||
"description": "Google Auth Library for PHP", |
||||
"homepage": "http://github.com/google/google-auth-library-php", |
||||
"keywords": [ |
||||
"Authentication", |
||||
"google", |
||||
"oauth2" |
||||
], |
||||
"time": "2015-05-06 16:31:42" |
||||
}, |
||||
{ |
||||
"name": "guzzlehttp/guzzle", |
||||
"version": "5.2.0", |
||||
"source": { |
||||
"type": "git", |
||||
"url": "https://github.com/guzzle/guzzle.git", |
||||
"reference": "475b29ccd411f2fa8a408e64576418728c032cfa" |
||||
}, |
||||
"dist": { |
||||
"type": "zip", |
||||
"url": "https://api.github.com/repos/guzzle/guzzle/zipball/475b29ccd411f2fa8a408e64576418728c032cfa", |
||||
"reference": "475b29ccd411f2fa8a408e64576418728c032cfa", |
||||
"shasum": "" |
||||
}, |
||||
"require": { |
||||
"guzzlehttp/ringphp": "~1.0", |
||||
"php": ">=5.4.0" |
||||
}, |
||||
"require-dev": { |
||||
"ext-curl": "*", |
||||
"phpunit/phpunit": "~4.0", |
||||
"psr/log": "~1.0" |
||||
}, |
||||
"type": "library", |
||||
"extra": { |
||||
"branch-alias": { |
||||
"dev-master": "5.0-dev" |
||||
} |
||||
}, |
||||
"autoload": { |
||||
"psr-4": { |
||||
"GuzzleHttp\\": "src/" |
||||
} |
||||
}, |
||||
"notification-url": "https://packagist.org/downloads/", |
||||
"license": [ |
||||
"MIT" |
||||
], |
||||
"authors": [ |
||||
{ |
||||
"name": "Michael Dowling", |
||||
"email": "mtdowling@gmail.com", |
||||
"homepage": "https://github.com/mtdowling" |
||||
} |
||||
], |
||||
"description": "Guzzle is a PHP HTTP client library and framework for building RESTful web service clients", |
||||
"homepage": "http://guzzlephp.org/", |
||||
"keywords": [ |
||||
"client", |
||||
"curl", |
||||
"framework", |
||||
"http", |
||||
"http client", |
||||
"rest", |
||||
"web service" |
||||
], |
||||
"time": "2015-01-28 01:03:29" |
||||
}, |
||||
{ |
||||
"name": "guzzlehttp/ringphp", |
||||
"version": "1.0.7", |
||||
"source": { |
||||
"type": "git", |
||||
"url": "https://github.com/guzzle/RingPHP.git", |
||||
"reference": "52d868f13570a9a56e5fce6614e0ec75d0f13ac2" |
||||
}, |
||||
"dist": { |
||||
"type": "zip", |
||||
"url": "https://api.github.com/repos/guzzle/RingPHP/zipball/52d868f13570a9a56e5fce6614e0ec75d0f13ac2", |
||||
"reference": "52d868f13570a9a56e5fce6614e0ec75d0f13ac2", |
||||
"shasum": "" |
||||
}, |
||||
"require": { |
||||
"guzzlehttp/streams": "~3.0", |
||||
"php": ">=5.4.0", |
||||
"react/promise": "~2.0" |
||||
}, |
||||
"require-dev": { |
||||
"ext-curl": "*", |
||||
"phpunit/phpunit": "~4.0" |
||||
}, |
||||
"suggest": { |
||||
"ext-curl": "Guzzle will use specific adapters if cURL is present" |
||||
}, |
||||
"type": "library", |
||||
"extra": { |
||||
"branch-alias": { |
||||
"dev-master": "1.0-dev" |
||||
} |
||||
}, |
||||
"autoload": { |
||||
"psr-4": { |
||||
"GuzzleHttp\\Ring\\": "src/" |
||||
} |
||||
}, |
||||
"notification-url": "https://packagist.org/downloads/", |
||||
"license": [ |
||||
"MIT" |
||||
], |
||||
"authors": [ |
||||
{ |
||||
"name": "Michael Dowling", |
||||
"email": "mtdowling@gmail.com", |
||||
"homepage": "https://github.com/mtdowling" |
||||
} |
||||
], |
||||
"description": "Provides a simple API and specification that abstracts away the details of HTTP into a single PHP function.", |
||||
"time": "2015-03-30 01:43:20" |
||||
}, |
||||
{ |
||||
"name": "guzzlehttp/streams", |
||||
"version": "3.0.0", |
||||
"source": { |
||||
"type": "git", |
||||
"url": "https://github.com/guzzle/streams.git", |
||||
"reference": "47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5" |
||||
}, |
||||
"dist": { |
||||
"type": "zip", |
||||
"url": "https://api.github.com/repos/guzzle/streams/zipball/47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5", |
||||
"reference": "47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5", |
||||
"shasum": "" |
||||
}, |
||||
"require": { |
||||
"php": ">=5.4.0" |
||||
}, |
||||
"require-dev": { |
||||
"phpunit/phpunit": "~4.0" |
||||
}, |
||||
"type": "library", |
||||
"extra": { |
||||
"branch-alias": { |
||||
"dev-master": "3.0-dev" |
||||
} |
||||
}, |
||||
"autoload": { |
||||
"psr-4": { |
||||
"GuzzleHttp\\Stream\\": "src/" |
||||
} |
||||
}, |
||||
"notification-url": "https://packagist.org/downloads/", |
||||
"license": [ |
||||
"MIT" |
||||
], |
||||
"authors": [ |
||||
{ |
||||
"name": "Michael Dowling", |
||||
"email": "mtdowling@gmail.com", |
||||
"homepage": "https://github.com/mtdowling" |
||||
} |
||||
], |
||||
"description": "Provides a simple abstraction over streams of data", |
||||
"homepage": "http://guzzlephp.org/", |
||||
"keywords": [ |
||||
"Guzzle", |
||||
"stream" |
||||
], |
||||
"time": "2014-10-12 19:18:40" |
||||
}, |
||||
{ |
||||
"name": "react/promise", |
||||
"version": "v2.2.0", |
||||
"source": { |
||||
"type": "git", |
||||
"url": "https://github.com/reactphp/promise.git", |
||||
"reference": "365fcee430dfa4ace1fbc75737ca60ceea7eeeef" |
||||
}, |
||||
"dist": { |
||||
"type": "zip", |
||||
"url": "https://api.github.com/repos/reactphp/promise/zipball/365fcee430dfa4ace1fbc75737ca60ceea7eeeef", |
||||
"reference": "365fcee430dfa4ace1fbc75737ca60ceea7eeeef", |
||||
"shasum": "" |
||||
}, |
||||
"require": { |
||||
"php": ">=5.4.0" |
||||
}, |
||||
"type": "library", |
||||
"extra": { |
||||
"branch-alias": { |
||||
"dev-master": "2.0-dev" |
||||
} |
||||
}, |
||||
"autoload": { |
||||
"psr-4": { |
||||
"React\\Promise\\": "src/" |
||||
}, |
||||
"files": [ |
||||
"src/functions_include.php" |
||||
] |
||||
}, |
||||
"notification-url": "https://packagist.org/downloads/", |
||||
"license": [ |
||||
"MIT" |
||||
], |
||||
"authors": [ |
||||
{ |
||||
"name": "Jan Sorgalla", |
||||
"email": "jsorgalla@googlemail.com" |
||||
} |
||||
], |
||||
"description": "A lightweight implementation of CommonJS Promises/A for PHP", |
||||
"time": "2014-12-30 13:32:42" |
||||
} |
||||
], |
||||
"packages-dev": [], |
||||
"aliases": [], |
||||
"minimum-stability": "stable", |
||||
"stability-flags": { |
||||
"google/auth": 20 |
||||
}, |
||||
"prefer-stable": false, |
||||
"prefer-lowest": false, |
||||
"platform": { |
||||
"php": ">=5.5.0" |
||||
}, |
||||
"platform-dev": [] |
||||
} |
@ -0,0 +1,291 @@ |
||||
/*
|
||||
* |
||||
* 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. |
||||
* |
||||
*/ |
||||
|
||||
#include <thread> |
||||
|
||||
#include "test/core/util/port.h" |
||||
#include "test/core/util/test_config.h" |
||||
#include "test/cpp/util/echo_duplicate.grpc.pb.h" |
||||
#include "test/cpp/util/echo.grpc.pb.h" |
||||
#include "src/cpp/server/thread_pool.h" |
||||
#include <grpc++/channel_arguments.h> |
||||
#include <grpc++/channel_interface.h> |
||||
#include <grpc++/client_context.h> |
||||
#include <grpc++/create_channel.h> |
||||
#include <grpc++/credentials.h> |
||||
#include <grpc++/server.h> |
||||
#include <grpc++/server_builder.h> |
||||
#include <grpc++/server_context.h> |
||||
#include <grpc++/server_credentials.h> |
||||
#include <grpc++/status.h> |
||||
#include <grpc++/stream.h> |
||||
#include <grpc++/time.h> |
||||
#include <gtest/gtest.h> |
||||
|
||||
#include <grpc/grpc.h> |
||||
#include <grpc/support/thd.h> |
||||
#include <grpc/support/time.h> |
||||
|
||||
using grpc::cpp::test::util::EchoRequest; |
||||
using grpc::cpp::test::util::EchoResponse; |
||||
using grpc::cpp::test::util::TestService; |
||||
using std::chrono::system_clock; |
||||
|
||||
namespace grpc { |
||||
namespace testing { |
||||
|
||||
namespace { |
||||
template <class W, class R> |
||||
class MockClientReaderWriter GRPC_FINAL |
||||
: public ClientReaderWriterInterface<W, R> { |
||||
public: |
||||
void WaitForInitialMetadata() {} |
||||
bool Read(R* msg) GRPC_OVERRIDE { return true; } |
||||
bool Write(const W& msg) GRPC_OVERRIDE { return true; } |
||||
bool WritesDone() GRPC_OVERRIDE { return true; } |
||||
Status Finish() GRPC_OVERRIDE { return Status::OK; } |
||||
}; |
||||
template <> |
||||
class MockClientReaderWriter<EchoRequest, EchoResponse> GRPC_FINAL |
||||
: public ClientReaderWriterInterface<EchoRequest, EchoResponse> { |
||||
public: |
||||
MockClientReaderWriter() : writes_done_(false) {} |
||||
void WaitForInitialMetadata() {} |
||||
bool Read(EchoResponse* msg) GRPC_OVERRIDE { |
||||
if (writes_done_) return false; |
||||
msg->set_message(last_message_); |
||||
return true; |
||||
} |
||||
bool Write(const EchoRequest& msg) GRPC_OVERRIDE { |
||||
gpr_log(GPR_INFO, "mock recv msg %s", msg.message().c_str()); |
||||
last_message_ = msg.message(); |
||||
return true; |
||||
} |
||||
bool WritesDone() GRPC_OVERRIDE { |
||||
writes_done_ = true; |
||||
return true; |
||||
} |
||||
Status Finish() GRPC_OVERRIDE { return Status::OK; } |
||||
|
||||
private: |
||||
bool writes_done_; |
||||
grpc::string last_message_; |
||||
}; |
||||
|
||||
// Mocked stub.
|
||||
class MockStub : public TestService::StubInterface { |
||||
public: |
||||
MockStub() {} |
||||
~MockStub() {} |
||||
Status Echo(ClientContext* context, const EchoRequest& request, |
||||
EchoResponse* response) GRPC_OVERRIDE { |
||||
response->set_message(request.message()); |
||||
return Status::OK; |
||||
} |
||||
Status Unimplemented(ClientContext* context, const EchoRequest& request, |
||||
EchoResponse* response) GRPC_OVERRIDE { |
||||
return Status::OK; |
||||
} |
||||
|
||||
private: |
||||
ClientAsyncResponseReaderInterface<EchoResponse>* AsyncEchoRaw( |
||||
ClientContext* context, const EchoRequest& request, CompletionQueue* cq, |
||||
void* tag) GRPC_OVERRIDE { |
||||
return nullptr; |
||||
} |
||||
ClientWriterInterface<EchoRequest>* RequestStreamRaw( |
||||
ClientContext* context, EchoResponse* response) GRPC_OVERRIDE { |
||||
return nullptr; |
||||
} |
||||
ClientAsyncWriterInterface<EchoRequest>* AsyncRequestStreamRaw( |
||||
ClientContext* context, EchoResponse* response, CompletionQueue* cq, |
||||
void* tag) GRPC_OVERRIDE { |
||||
return nullptr; |
||||
} |
||||
ClientReaderInterface<EchoResponse>* ResponseStreamRaw( |
||||
ClientContext* context, const EchoRequest& request) GRPC_OVERRIDE { |
||||
return nullptr; |
||||
} |
||||
ClientAsyncReaderInterface<EchoResponse>* AsyncResponseStreamRaw( |
||||
ClientContext* context, const EchoRequest& request, CompletionQueue* cq, |
||||
void* tag) GRPC_OVERRIDE { |
||||
return nullptr; |
||||
} |
||||
ClientReaderWriterInterface<EchoRequest, EchoResponse>* BidiStreamRaw( |
||||
ClientContext* context) GRPC_OVERRIDE { |
||||
return new MockClientReaderWriter<EchoRequest, EchoResponse>(); |
||||
} |
||||
ClientAsyncReaderWriterInterface<EchoRequest, EchoResponse>* |
||||
AsyncBidiStreamRaw(ClientContext* context, CompletionQueue* cq, |
||||
void* tag) GRPC_OVERRIDE { |
||||
return nullptr; |
||||
} |
||||
ClientAsyncResponseReaderInterface<EchoResponse>* AsyncUnimplementedRaw( |
||||
ClientContext* context, const EchoRequest& request, CompletionQueue* cq, |
||||
void* tag) GRPC_OVERRIDE { |
||||
return nullptr; |
||||
} |
||||
}; |
||||
|
||||
class FakeClient { |
||||
public: |
||||
explicit FakeClient(TestService::StubInterface* stub) : stub_(stub) {} |
||||
|
||||
void DoEcho() { |
||||
ClientContext context; |
||||
EchoRequest request; |
||||
EchoResponse response; |
||||
request.set_message("hello world"); |
||||
Status s = stub_->Echo(&context, request, &response); |
||||
EXPECT_EQ(request.message(), response.message()); |
||||
EXPECT_TRUE(s.IsOk()); |
||||
} |
||||
|
||||
void DoBidiStream() { |
||||
EchoRequest request; |
||||
EchoResponse response; |
||||
ClientContext context; |
||||
grpc::string msg("hello"); |
||||
|
||||
std::unique_ptr<ClientReaderWriterInterface<EchoRequest, EchoResponse>> |
||||
stream = stub_->BidiStream(&context); |
||||
|
||||
request.set_message(msg + "0"); |
||||
EXPECT_TRUE(stream->Write(request)); |
||||
EXPECT_TRUE(stream->Read(&response)); |
||||
EXPECT_EQ(response.message(), request.message()); |
||||
|
||||
request.set_message(msg + "1"); |
||||
EXPECT_TRUE(stream->Write(request)); |
||||
EXPECT_TRUE(stream->Read(&response)); |
||||
EXPECT_EQ(response.message(), request.message()); |
||||
|
||||
request.set_message(msg + "2"); |
||||
EXPECT_TRUE(stream->Write(request)); |
||||
EXPECT_TRUE(stream->Read(&response)); |
||||
EXPECT_EQ(response.message(), request.message()); |
||||
|
||||
stream->WritesDone(); |
||||
EXPECT_FALSE(stream->Read(&response)); |
||||
|
||||
Status s = stream->Finish(); |
||||
EXPECT_TRUE(s.IsOk()); |
||||
} |
||||
|
||||
void ResetStub(TestService::StubInterface* stub) { stub_ = stub; } |
||||
|
||||
private: |
||||
TestService::StubInterface* stub_; |
||||
}; |
||||
|
||||
class TestServiceImpl : public TestService::Service { |
||||
public: |
||||
Status Echo(ServerContext* context, const EchoRequest* request, |
||||
EchoResponse* response) GRPC_OVERRIDE { |
||||
response->set_message(request->message()); |
||||
return Status::OK; |
||||
} |
||||
|
||||
Status BidiStream(ServerContext* context, |
||||
ServerReaderWriter<EchoResponse, EchoRequest>* stream) |
||||
GRPC_OVERRIDE { |
||||
EchoRequest request; |
||||
EchoResponse response; |
||||
while (stream->Read(&request)) { |
||||
gpr_log(GPR_INFO, "recv msg %s", request.message().c_str()); |
||||
response.set_message(request.message()); |
||||
stream->Write(response); |
||||
} |
||||
return Status::OK; |
||||
} |
||||
}; |
||||
|
||||
class MockTest : public ::testing::Test { |
||||
protected: |
||||
MockTest() : thread_pool_(2) {} |
||||
|
||||
void SetUp() GRPC_OVERRIDE { |
||||
int port = grpc_pick_unused_port_or_die(); |
||||
server_address_ << "localhost:" << port; |
||||
// Setup server
|
||||
ServerBuilder builder; |
||||
builder.AddListeningPort(server_address_.str(), |
||||
InsecureServerCredentials()); |
||||
builder.RegisterService(&service_); |
||||
builder.SetThreadPool(&thread_pool_); |
||||
server_ = builder.BuildAndStart(); |
||||
} |
||||
|
||||
void TearDown() GRPC_OVERRIDE { server_->Shutdown(); } |
||||
|
||||
void ResetStub() { |
||||
std::shared_ptr<ChannelInterface> channel = CreateChannel( |
||||
server_address_.str(), InsecureCredentials(), ChannelArguments()); |
||||
stub_ = std::move(grpc::cpp::test::util::TestService::NewStub(channel)); |
||||
} |
||||
|
||||
std::unique_ptr<grpc::cpp::test::util::TestService::Stub> stub_; |
||||
std::unique_ptr<Server> server_; |
||||
std::ostringstream server_address_; |
||||
TestServiceImpl service_; |
||||
ThreadPool thread_pool_; |
||||
}; |
||||
|
||||
// Do one real rpc and one mocked one
|
||||
TEST_F(MockTest, SimpleRpc) { |
||||
ResetStub(); |
||||
FakeClient client(stub_.get()); |
||||
client.DoEcho(); |
||||
MockStub stub; |
||||
client.ResetStub(&stub); |
||||
client.DoEcho(); |
||||
} |
||||
|
||||
TEST_F(MockTest, BidiStream) { |
||||
ResetStub(); |
||||
FakeClient client(stub_.get()); |
||||
client.DoBidiStream(); |
||||
MockStub stub; |
||||
client.ResetStub(&stub); |
||||
client.DoBidiStream(); |
||||
} |
||||
|
||||
} // namespace
|
||||
} // namespace testing
|
||||
} // namespace grpc
|
||||
|
||||
int main(int argc, char** argv) { |
||||
grpc_test_init(argc, argv); |
||||
::testing::InitGoogleTest(&argc, argv); |
||||
return RUN_ALL_TESTS(); |
||||
} |
@ -0,0 +1,79 @@ |
||||
/*
|
||||
* |
||||
* 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. |
||||
* |
||||
*/ |
||||
|
||||
#include <grpc/support/log.h> |
||||
|
||||
#include <signal.h> |
||||
|
||||
#include "test/cpp/qps/driver.h" |
||||
#include "test/cpp/qps/report.h" |
||||
|
||||
namespace grpc { |
||||
namespace testing { |
||||
|
||||
static const int WARMUP = 5; |
||||
static const int BENCHMARK = 10; |
||||
|
||||
static void RunQPS() { |
||||
gpr_log(GPR_INFO, "Running QPS test"); |
||||
|
||||
ClientConfig client_config; |
||||
client_config.set_client_type(ASYNC_CLIENT); |
||||
client_config.set_enable_ssl(false); |
||||
client_config.set_outstanding_rpcs_per_channel(1000); |
||||
client_config.set_client_channels(8); |
||||
client_config.set_payload_size(1); |
||||
client_config.set_async_client_threads(8); |
||||
client_config.set_rpc_type(UNARY); |
||||
|
||||
ServerConfig server_config; |
||||
server_config.set_server_type(ASYNC_SERVER); |
||||
server_config.set_enable_ssl(false); |
||||
server_config.set_threads(4); |
||||
|
||||
const auto result = |
||||
RunScenario(client_config, 1, server_config, 1, WARMUP, BENCHMARK, -2); |
||||
|
||||
ReportQPSPerCore(result, server_config); |
||||
ReportLatency(result); |
||||
} |
||||
|
||||
} // namespace testing
|
||||
} // namespace grpc
|
||||
|
||||
int main(int argc, char** argv) { |
||||
signal(SIGPIPE, SIG_IGN); |
||||
grpc::testing::RunQPS(); |
||||
|
||||
return 0; |
||||
} |
@ -0,0 +1,78 @@ |
||||
/*
|
||||
* |
||||
* 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. |
||||
* |
||||
*/ |
||||
|
||||
#include <grpc/support/log.h> |
||||
|
||||
#include <signal.h> |
||||
|
||||
#include "test/cpp/qps/driver.h" |
||||
#include "test/cpp/qps/report.h" |
||||
|
||||
namespace grpc { |
||||
namespace testing { |
||||
|
||||
static const int WARMUP = 5; |
||||
static const int BENCHMARK = 10; |
||||
|
||||
static void RunSynchronousStreamingPingPong() { |
||||
gpr_log(GPR_INFO, "Running Synchronous Streaming Ping Pong"); |
||||
|
||||
ClientConfig client_config; |
||||
client_config.set_client_type(SYNCHRONOUS_CLIENT); |
||||
client_config.set_enable_ssl(false); |
||||
client_config.set_outstanding_rpcs_per_channel(1); |
||||
client_config.set_client_channels(1); |
||||
client_config.set_payload_size(1); |
||||
client_config.set_rpc_type(STREAMING); |
||||
|
||||
ServerConfig server_config; |
||||
server_config.set_server_type(SYNCHRONOUS_SERVER); |
||||
server_config.set_enable_ssl(false); |
||||
server_config.set_threads(1); |
||||
|
||||
const auto result = |
||||
RunScenario(client_config, 1, server_config, 1, WARMUP, BENCHMARK, -2); |
||||
|
||||
ReportQPS(result); |
||||
ReportLatency(result); |
||||
} |
||||
|
||||
} // namespace testing
|
||||
} // namespace grpc
|
||||
|
||||
int main(int argc, char** argv) { |
||||
signal(SIGPIPE, SIG_IGN); |
||||
grpc::testing::RunSynchronousStreamingPingPong(); |
||||
|
||||
return 0; |
||||
} |
@ -0,0 +1,78 @@ |
||||
/*
|
||||
* |
||||
* 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. |
||||
* |
||||
*/ |
||||
|
||||
#include <grpc/support/log.h> |
||||
|
||||
#include <signal.h> |
||||
|
||||
#include "test/cpp/qps/driver.h" |
||||
#include "test/cpp/qps/report.h" |
||||
|
||||
namespace grpc { |
||||
namespace testing { |
||||
|
||||
static const int WARMUP = 5; |
||||
static const int BENCHMARK = 10; |
||||
|
||||
static void RunSynchronousUnaryPingPong() { |
||||
gpr_log(GPR_INFO, "Running Synchronous Unary Ping Pong"); |
||||
|
||||
ClientConfig client_config; |
||||
client_config.set_client_type(SYNCHRONOUS_CLIENT); |
||||
client_config.set_enable_ssl(false); |
||||
client_config.set_outstanding_rpcs_per_channel(1); |
||||
client_config.set_client_channels(1); |
||||
client_config.set_payload_size(1); |
||||
client_config.set_rpc_type(UNARY); |
||||
|
||||
ServerConfig server_config; |
||||
server_config.set_server_type(SYNCHRONOUS_SERVER); |
||||
server_config.set_enable_ssl(false); |
||||
server_config.set_threads(1); |
||||
|
||||
const auto result = |
||||
RunScenario(client_config, 1, server_config, 1, WARMUP, BENCHMARK, -2); |
||||
|
||||
ReportQPS(result); |
||||
ReportLatency(result); |
||||
} |
||||
|
||||
} // namespace testing
|
||||
} // namespace grpc
|
||||
|
||||
int main(int argc, char** argv) { |
||||
signal(SIGPIPE, SIG_IGN); |
||||
grpc::testing::RunSynchronousUnaryPingPong(); |
||||
|
||||
return 0; |
||||
} |
Loading…
Reference in new issue