Merge pull request #3207 from jtattermusch/csharp_update_examples
C# update examples to proto3pull/3211/head
commit
f496d4d1ed
44 changed files with 1287 additions and 2932 deletions
@ -1,617 +0,0 @@ |
|||||||
// Generated by the protocol buffer compiler. DO NOT EDIT! |
|
||||||
// source: helloworld.proto |
|
||||||
#pragma warning disable 1591, 0612, 3021 |
|
||||||
#region Designer generated code |
|
||||||
|
|
||||||
using pb = global::Google.ProtocolBuffers; |
|
||||||
using pbc = global::Google.ProtocolBuffers.Collections; |
|
||||||
using pbd = global::Google.ProtocolBuffers.Descriptors; |
|
||||||
using scg = global::System.Collections.Generic; |
|
||||||
namespace helloworld { |
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] |
|
||||||
public static partial class Helloworld { |
|
||||||
|
|
||||||
#region Extension registration |
|
||||||
public static void RegisterAllExtensions(pb::ExtensionRegistry registry) { |
|
||||||
} |
|
||||||
#endregion |
|
||||||
#region Static variables |
|
||||||
internal static pbd::MessageDescriptor internal__static_helloworld_HelloRequest__Descriptor; |
|
||||||
internal static pb::FieldAccess.FieldAccessorTable<global::helloworld.HelloRequest, global::helloworld.HelloRequest.Builder> internal__static_helloworld_HelloRequest__FieldAccessorTable; |
|
||||||
internal static pbd::MessageDescriptor internal__static_helloworld_HelloReply__Descriptor; |
|
||||||
internal static pb::FieldAccess.FieldAccessorTable<global::helloworld.HelloReply, global::helloworld.HelloReply.Builder> internal__static_helloworld_HelloReply__FieldAccessorTable; |
|
||||||
#endregion |
|
||||||
#region Descriptor |
|
||||||
public static pbd::FileDescriptor Descriptor { |
|
||||||
get { return descriptor; } |
|
||||||
} |
|
||||||
private static pbd::FileDescriptor descriptor; |
|
||||||
|
|
||||||
static Helloworld() { |
|
||||||
byte[] descriptorData = global::System.Convert.FromBase64String( |
|
||||||
string.Concat( |
|
||||||
"ChBoZWxsb3dvcmxkLnByb3RvEgpoZWxsb3dvcmxkIhwKDEhlbGxvUmVxdWVz", |
|
||||||
"dBIMCgRuYW1lGAEgASgJIh0KCkhlbGxvUmVwbHkSDwoHbWVzc2FnZRgBIAEo", |
|
||||||
"CTJJCgdHcmVldGVyEj4KCFNheUhlbGxvEhguaGVsbG93b3JsZC5IZWxsb1Jl", |
|
||||||
"cXVlc3QaFi5oZWxsb3dvcmxkLkhlbGxvUmVwbHkiAEISChBpby5ncnBjLmV4", |
|
||||||
"YW1wbGVz")); |
|
||||||
pbd::FileDescriptor.InternalDescriptorAssigner assigner = delegate(pbd::FileDescriptor root) { |
|
||||||
descriptor = root; |
|
||||||
internal__static_helloworld_HelloRequest__Descriptor = Descriptor.MessageTypes[0]; |
|
||||||
internal__static_helloworld_HelloRequest__FieldAccessorTable = |
|
||||||
new pb::FieldAccess.FieldAccessorTable<global::helloworld.HelloRequest, global::helloworld.HelloRequest.Builder>(internal__static_helloworld_HelloRequest__Descriptor, |
|
||||||
new string[] { "Name", }); |
|
||||||
internal__static_helloworld_HelloReply__Descriptor = Descriptor.MessageTypes[1]; |
|
||||||
internal__static_helloworld_HelloReply__FieldAccessorTable = |
|
||||||
new pb::FieldAccess.FieldAccessorTable<global::helloworld.HelloReply, global::helloworld.HelloReply.Builder>(internal__static_helloworld_HelloReply__Descriptor, |
|
||||||
new string[] { "Message", }); |
|
||||||
pb::ExtensionRegistry registry = pb::ExtensionRegistry.CreateInstance(); |
|
||||||
RegisterAllExtensions(registry); |
|
||||||
return registry; |
|
||||||
}; |
|
||||||
pbd::FileDescriptor.InternalBuildGeneratedFileFrom(descriptorData, |
|
||||||
new pbd::FileDescriptor[] { |
|
||||||
}, assigner); |
|
||||||
} |
|
||||||
#endregion |
|
||||||
|
|
||||||
} |
|
||||||
#region Messages |
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] |
|
||||||
public sealed partial class HelloRequest : pb::GeneratedMessage<HelloRequest, HelloRequest.Builder> { |
|
||||||
private HelloRequest() { } |
|
||||||
private static readonly HelloRequest defaultInstance = new HelloRequest().MakeReadOnly(); |
|
||||||
private static readonly string[] _helloRequestFieldNames = new string[] { "name" }; |
|
||||||
private static readonly uint[] _helloRequestFieldTags = new uint[] { 10 }; |
|
||||||
public static HelloRequest DefaultInstance { |
|
||||||
get { return defaultInstance; } |
|
||||||
} |
|
||||||
|
|
||||||
public override HelloRequest DefaultInstanceForType { |
|
||||||
get { return DefaultInstance; } |
|
||||||
} |
|
||||||
|
|
||||||
protected override HelloRequest ThisMessage { |
|
||||||
get { return this; } |
|
||||||
} |
|
||||||
|
|
||||||
public static pbd::MessageDescriptor Descriptor { |
|
||||||
get { return global::helloworld.Helloworld.internal__static_helloworld_HelloRequest__Descriptor; } |
|
||||||
} |
|
||||||
|
|
||||||
protected override pb::FieldAccess.FieldAccessorTable<HelloRequest, HelloRequest.Builder> InternalFieldAccessors { |
|
||||||
get { return global::helloworld.Helloworld.internal__static_helloworld_HelloRequest__FieldAccessorTable; } |
|
||||||
} |
|
||||||
|
|
||||||
public const int NameFieldNumber = 1; |
|
||||||
private bool hasName; |
|
||||||
private string name_ = ""; |
|
||||||
public bool HasName { |
|
||||||
get { return hasName; } |
|
||||||
} |
|
||||||
public string Name { |
|
||||||
get { return name_; } |
|
||||||
} |
|
||||||
|
|
||||||
public override bool IsInitialized { |
|
||||||
get { |
|
||||||
return true; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
public override void WriteTo(pb::ICodedOutputStream output) { |
|
||||||
CalcSerializedSize(); |
|
||||||
string[] field_names = _helloRequestFieldNames; |
|
||||||
if (hasName) { |
|
||||||
output.WriteString(1, field_names[0], Name); |
|
||||||
} |
|
||||||
UnknownFields.WriteTo(output); |
|
||||||
} |
|
||||||
|
|
||||||
private int memoizedSerializedSize = -1; |
|
||||||
public override int SerializedSize { |
|
||||||
get { |
|
||||||
int size = memoizedSerializedSize; |
|
||||||
if (size != -1) return size; |
|
||||||
return CalcSerializedSize(); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
private int CalcSerializedSize() { |
|
||||||
int size = memoizedSerializedSize; |
|
||||||
if (size != -1) return size; |
|
||||||
|
|
||||||
size = 0; |
|
||||||
if (hasName) { |
|
||||||
size += pb::CodedOutputStream.ComputeStringSize(1, Name); |
|
||||||
} |
|
||||||
size += UnknownFields.SerializedSize; |
|
||||||
memoizedSerializedSize = size; |
|
||||||
return size; |
|
||||||
} |
|
||||||
public static HelloRequest ParseFrom(pb::ByteString data) { |
|
||||||
return ((Builder) CreateBuilder().MergeFrom(data)).BuildParsed(); |
|
||||||
} |
|
||||||
public static HelloRequest ParseFrom(pb::ByteString data, pb::ExtensionRegistry extensionRegistry) { |
|
||||||
return ((Builder) CreateBuilder().MergeFrom(data, extensionRegistry)).BuildParsed(); |
|
||||||
} |
|
||||||
public static HelloRequest ParseFrom(byte[] data) { |
|
||||||
return ((Builder) CreateBuilder().MergeFrom(data)).BuildParsed(); |
|
||||||
} |
|
||||||
public static HelloRequest ParseFrom(byte[] data, pb::ExtensionRegistry extensionRegistry) { |
|
||||||
return ((Builder) CreateBuilder().MergeFrom(data, extensionRegistry)).BuildParsed(); |
|
||||||
} |
|
||||||
public static HelloRequest ParseFrom(global::System.IO.Stream input) { |
|
||||||
return ((Builder) CreateBuilder().MergeFrom(input)).BuildParsed(); |
|
||||||
} |
|
||||||
public static HelloRequest ParseFrom(global::System.IO.Stream input, pb::ExtensionRegistry extensionRegistry) { |
|
||||||
return ((Builder) CreateBuilder().MergeFrom(input, extensionRegistry)).BuildParsed(); |
|
||||||
} |
|
||||||
public static HelloRequest ParseDelimitedFrom(global::System.IO.Stream input) { |
|
||||||
return CreateBuilder().MergeDelimitedFrom(input).BuildParsed(); |
|
||||||
} |
|
||||||
public static HelloRequest ParseDelimitedFrom(global::System.IO.Stream input, pb::ExtensionRegistry extensionRegistry) { |
|
||||||
return CreateBuilder().MergeDelimitedFrom(input, extensionRegistry).BuildParsed(); |
|
||||||
} |
|
||||||
public static HelloRequest ParseFrom(pb::ICodedInputStream input) { |
|
||||||
return ((Builder) CreateBuilder().MergeFrom(input)).BuildParsed(); |
|
||||||
} |
|
||||||
public static HelloRequest ParseFrom(pb::ICodedInputStream input, pb::ExtensionRegistry extensionRegistry) { |
|
||||||
return ((Builder) CreateBuilder().MergeFrom(input, extensionRegistry)).BuildParsed(); |
|
||||||
} |
|
||||||
private HelloRequest MakeReadOnly() { |
|
||||||
return this; |
|
||||||
} |
|
||||||
|
|
||||||
public static Builder CreateBuilder() { return new Builder(); } |
|
||||||
public override Builder ToBuilder() { return CreateBuilder(this); } |
|
||||||
public override Builder CreateBuilderForType() { return new Builder(); } |
|
||||||
public static Builder CreateBuilder(HelloRequest prototype) { |
|
||||||
return new Builder(prototype); |
|
||||||
} |
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] |
|
||||||
public sealed partial class Builder : pb::GeneratedBuilder<HelloRequest, Builder> { |
|
||||||
protected override Builder ThisBuilder { |
|
||||||
get { return this; } |
|
||||||
} |
|
||||||
public Builder() { |
|
||||||
result = DefaultInstance; |
|
||||||
resultIsReadOnly = true; |
|
||||||
} |
|
||||||
internal Builder(HelloRequest cloneFrom) { |
|
||||||
result = cloneFrom; |
|
||||||
resultIsReadOnly = true; |
|
||||||
} |
|
||||||
|
|
||||||
private bool resultIsReadOnly; |
|
||||||
private HelloRequest result; |
|
||||||
|
|
||||||
private HelloRequest PrepareBuilder() { |
|
||||||
if (resultIsReadOnly) { |
|
||||||
HelloRequest original = result; |
|
||||||
result = new HelloRequest(); |
|
||||||
resultIsReadOnly = false; |
|
||||||
MergeFrom(original); |
|
||||||
} |
|
||||||
return result; |
|
||||||
} |
|
||||||
|
|
||||||
public override bool IsInitialized { |
|
||||||
get { return result.IsInitialized; } |
|
||||||
} |
|
||||||
|
|
||||||
protected override HelloRequest MessageBeingBuilt { |
|
||||||
get { return PrepareBuilder(); } |
|
||||||
} |
|
||||||
|
|
||||||
public override Builder Clear() { |
|
||||||
result = DefaultInstance; |
|
||||||
resultIsReadOnly = true; |
|
||||||
return this; |
|
||||||
} |
|
||||||
|
|
||||||
public override Builder Clone() { |
|
||||||
if (resultIsReadOnly) { |
|
||||||
return new Builder(result); |
|
||||||
} else { |
|
||||||
return new Builder().MergeFrom(result); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
public override pbd::MessageDescriptor DescriptorForType { |
|
||||||
get { return global::helloworld.HelloRequest.Descriptor; } |
|
||||||
} |
|
||||||
|
|
||||||
public override HelloRequest DefaultInstanceForType { |
|
||||||
get { return global::helloworld.HelloRequest.DefaultInstance; } |
|
||||||
} |
|
||||||
|
|
||||||
public override HelloRequest BuildPartial() { |
|
||||||
if (resultIsReadOnly) { |
|
||||||
return result; |
|
||||||
} |
|
||||||
resultIsReadOnly = true; |
|
||||||
return result.MakeReadOnly(); |
|
||||||
} |
|
||||||
|
|
||||||
public override Builder MergeFrom(pb::IMessage other) { |
|
||||||
if (other is HelloRequest) { |
|
||||||
return MergeFrom((HelloRequest) other); |
|
||||||
} else { |
|
||||||
base.MergeFrom(other); |
|
||||||
return this; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
public override Builder MergeFrom(HelloRequest other) { |
|
||||||
if (other == global::helloworld.HelloRequest.DefaultInstance) return this; |
|
||||||
PrepareBuilder(); |
|
||||||
if (other.HasName) { |
|
||||||
Name = other.Name; |
|
||||||
} |
|
||||||
this.MergeUnknownFields(other.UnknownFields); |
|
||||||
return this; |
|
||||||
} |
|
||||||
|
|
||||||
public override Builder MergeFrom(pb::ICodedInputStream input) { |
|
||||||
return MergeFrom(input, pb::ExtensionRegistry.Empty); |
|
||||||
} |
|
||||||
|
|
||||||
public override Builder MergeFrom(pb::ICodedInputStream input, pb::ExtensionRegistry extensionRegistry) { |
|
||||||
PrepareBuilder(); |
|
||||||
pb::UnknownFieldSet.Builder unknownFields = null; |
|
||||||
uint tag; |
|
||||||
string field_name; |
|
||||||
while (input.ReadTag(out tag, out field_name)) { |
|
||||||
if(tag == 0 && field_name != null) { |
|
||||||
int field_ordinal = global::System.Array.BinarySearch(_helloRequestFieldNames, field_name, global::System.StringComparer.Ordinal); |
|
||||||
if(field_ordinal >= 0) |
|
||||||
tag = _helloRequestFieldTags[field_ordinal]; |
|
||||||
else { |
|
||||||
if (unknownFields == null) { |
|
||||||
unknownFields = pb::UnknownFieldSet.CreateBuilder(this.UnknownFields); |
|
||||||
} |
|
||||||
ParseUnknownField(input, unknownFields, extensionRegistry, tag, field_name); |
|
||||||
continue; |
|
||||||
} |
|
||||||
} |
|
||||||
switch (tag) { |
|
||||||
case 0: { |
|
||||||
throw pb::InvalidProtocolBufferException.InvalidTag(); |
|
||||||
} |
|
||||||
default: { |
|
||||||
if (pb::WireFormat.IsEndGroupTag(tag)) { |
|
||||||
if (unknownFields != null) { |
|
||||||
this.UnknownFields = unknownFields.Build(); |
|
||||||
} |
|
||||||
return this; |
|
||||||
} |
|
||||||
if (unknownFields == null) { |
|
||||||
unknownFields = pb::UnknownFieldSet.CreateBuilder(this.UnknownFields); |
|
||||||
} |
|
||||||
ParseUnknownField(input, unknownFields, extensionRegistry, tag, field_name); |
|
||||||
break; |
|
||||||
} |
|
||||||
case 10: { |
|
||||||
result.hasName = input.ReadString(ref result.name_); |
|
||||||
break; |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
if (unknownFields != null) { |
|
||||||
this.UnknownFields = unknownFields.Build(); |
|
||||||
} |
|
||||||
return this; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
public bool HasName { |
|
||||||
get { return result.hasName; } |
|
||||||
} |
|
||||||
public string Name { |
|
||||||
get { return result.Name; } |
|
||||||
set { SetName(value); } |
|
||||||
} |
|
||||||
public Builder SetName(string value) { |
|
||||||
pb::ThrowHelper.ThrowIfNull(value, "value"); |
|
||||||
PrepareBuilder(); |
|
||||||
result.hasName = true; |
|
||||||
result.name_ = value; |
|
||||||
return this; |
|
||||||
} |
|
||||||
public Builder ClearName() { |
|
||||||
PrepareBuilder(); |
|
||||||
result.hasName = false; |
|
||||||
result.name_ = ""; |
|
||||||
return this; |
|
||||||
} |
|
||||||
} |
|
||||||
static HelloRequest() { |
|
||||||
object.ReferenceEquals(global::helloworld.Helloworld.Descriptor, null); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] |
|
||||||
public sealed partial class HelloReply : pb::GeneratedMessage<HelloReply, HelloReply.Builder> { |
|
||||||
private HelloReply() { } |
|
||||||
private static readonly HelloReply defaultInstance = new HelloReply().MakeReadOnly(); |
|
||||||
private static readonly string[] _helloReplyFieldNames = new string[] { "message" }; |
|
||||||
private static readonly uint[] _helloReplyFieldTags = new uint[] { 10 }; |
|
||||||
public static HelloReply DefaultInstance { |
|
||||||
get { return defaultInstance; } |
|
||||||
} |
|
||||||
|
|
||||||
public override HelloReply DefaultInstanceForType { |
|
||||||
get { return DefaultInstance; } |
|
||||||
} |
|
||||||
|
|
||||||
protected override HelloReply ThisMessage { |
|
||||||
get { return this; } |
|
||||||
} |
|
||||||
|
|
||||||
public static pbd::MessageDescriptor Descriptor { |
|
||||||
get { return global::helloworld.Helloworld.internal__static_helloworld_HelloReply__Descriptor; } |
|
||||||
} |
|
||||||
|
|
||||||
protected override pb::FieldAccess.FieldAccessorTable<HelloReply, HelloReply.Builder> InternalFieldAccessors { |
|
||||||
get { return global::helloworld.Helloworld.internal__static_helloworld_HelloReply__FieldAccessorTable; } |
|
||||||
} |
|
||||||
|
|
||||||
public const int MessageFieldNumber = 1; |
|
||||||
private bool hasMessage; |
|
||||||
private string message_ = ""; |
|
||||||
public bool HasMessage { |
|
||||||
get { return hasMessage; } |
|
||||||
} |
|
||||||
public string Message { |
|
||||||
get { return message_; } |
|
||||||
} |
|
||||||
|
|
||||||
public override bool IsInitialized { |
|
||||||
get { |
|
||||||
return true; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
public override void WriteTo(pb::ICodedOutputStream output) { |
|
||||||
CalcSerializedSize(); |
|
||||||
string[] field_names = _helloReplyFieldNames; |
|
||||||
if (hasMessage) { |
|
||||||
output.WriteString(1, field_names[0], Message); |
|
||||||
} |
|
||||||
UnknownFields.WriteTo(output); |
|
||||||
} |
|
||||||
|
|
||||||
private int memoizedSerializedSize = -1; |
|
||||||
public override int SerializedSize { |
|
||||||
get { |
|
||||||
int size = memoizedSerializedSize; |
|
||||||
if (size != -1) return size; |
|
||||||
return CalcSerializedSize(); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
private int CalcSerializedSize() { |
|
||||||
int size = memoizedSerializedSize; |
|
||||||
if (size != -1) return size; |
|
||||||
|
|
||||||
size = 0; |
|
||||||
if (hasMessage) { |
|
||||||
size += pb::CodedOutputStream.ComputeStringSize(1, Message); |
|
||||||
} |
|
||||||
size += UnknownFields.SerializedSize; |
|
||||||
memoizedSerializedSize = size; |
|
||||||
return size; |
|
||||||
} |
|
||||||
public static HelloReply ParseFrom(pb::ByteString data) { |
|
||||||
return ((Builder) CreateBuilder().MergeFrom(data)).BuildParsed(); |
|
||||||
} |
|
||||||
public static HelloReply ParseFrom(pb::ByteString data, pb::ExtensionRegistry extensionRegistry) { |
|
||||||
return ((Builder) CreateBuilder().MergeFrom(data, extensionRegistry)).BuildParsed(); |
|
||||||
} |
|
||||||
public static HelloReply ParseFrom(byte[] data) { |
|
||||||
return ((Builder) CreateBuilder().MergeFrom(data)).BuildParsed(); |
|
||||||
} |
|
||||||
public static HelloReply ParseFrom(byte[] data, pb::ExtensionRegistry extensionRegistry) { |
|
||||||
return ((Builder) CreateBuilder().MergeFrom(data, extensionRegistry)).BuildParsed(); |
|
||||||
} |
|
||||||
public static HelloReply ParseFrom(global::System.IO.Stream input) { |
|
||||||
return ((Builder) CreateBuilder().MergeFrom(input)).BuildParsed(); |
|
||||||
} |
|
||||||
public static HelloReply ParseFrom(global::System.IO.Stream input, pb::ExtensionRegistry extensionRegistry) { |
|
||||||
return ((Builder) CreateBuilder().MergeFrom(input, extensionRegistry)).BuildParsed(); |
|
||||||
} |
|
||||||
public static HelloReply ParseDelimitedFrom(global::System.IO.Stream input) { |
|
||||||
return CreateBuilder().MergeDelimitedFrom(input).BuildParsed(); |
|
||||||
} |
|
||||||
public static HelloReply ParseDelimitedFrom(global::System.IO.Stream input, pb::ExtensionRegistry extensionRegistry) { |
|
||||||
return CreateBuilder().MergeDelimitedFrom(input, extensionRegistry).BuildParsed(); |
|
||||||
} |
|
||||||
public static HelloReply ParseFrom(pb::ICodedInputStream input) { |
|
||||||
return ((Builder) CreateBuilder().MergeFrom(input)).BuildParsed(); |
|
||||||
} |
|
||||||
public static HelloReply ParseFrom(pb::ICodedInputStream input, pb::ExtensionRegistry extensionRegistry) { |
|
||||||
return ((Builder) CreateBuilder().MergeFrom(input, extensionRegistry)).BuildParsed(); |
|
||||||
} |
|
||||||
private HelloReply MakeReadOnly() { |
|
||||||
return this; |
|
||||||
} |
|
||||||
|
|
||||||
public static Builder CreateBuilder() { return new Builder(); } |
|
||||||
public override Builder ToBuilder() { return CreateBuilder(this); } |
|
||||||
public override Builder CreateBuilderForType() { return new Builder(); } |
|
||||||
public static Builder CreateBuilder(HelloReply prototype) { |
|
||||||
return new Builder(prototype); |
|
||||||
} |
|
||||||
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] |
|
||||||
public sealed partial class Builder : pb::GeneratedBuilder<HelloReply, Builder> { |
|
||||||
protected override Builder ThisBuilder { |
|
||||||
get { return this; } |
|
||||||
} |
|
||||||
public Builder() { |
|
||||||
result = DefaultInstance; |
|
||||||
resultIsReadOnly = true; |
|
||||||
} |
|
||||||
internal Builder(HelloReply cloneFrom) { |
|
||||||
result = cloneFrom; |
|
||||||
resultIsReadOnly = true; |
|
||||||
} |
|
||||||
|
|
||||||
private bool resultIsReadOnly; |
|
||||||
private HelloReply result; |
|
||||||
|
|
||||||
private HelloReply PrepareBuilder() { |
|
||||||
if (resultIsReadOnly) { |
|
||||||
HelloReply original = result; |
|
||||||
result = new HelloReply(); |
|
||||||
resultIsReadOnly = false; |
|
||||||
MergeFrom(original); |
|
||||||
} |
|
||||||
return result; |
|
||||||
} |
|
||||||
|
|
||||||
public override bool IsInitialized { |
|
||||||
get { return result.IsInitialized; } |
|
||||||
} |
|
||||||
|
|
||||||
protected override HelloReply MessageBeingBuilt { |
|
||||||
get { return PrepareBuilder(); } |
|
||||||
} |
|
||||||
|
|
||||||
public override Builder Clear() { |
|
||||||
result = DefaultInstance; |
|
||||||
resultIsReadOnly = true; |
|
||||||
return this; |
|
||||||
} |
|
||||||
|
|
||||||
public override Builder Clone() { |
|
||||||
if (resultIsReadOnly) { |
|
||||||
return new Builder(result); |
|
||||||
} else { |
|
||||||
return new Builder().MergeFrom(result); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
public override pbd::MessageDescriptor DescriptorForType { |
|
||||||
get { return global::helloworld.HelloReply.Descriptor; } |
|
||||||
} |
|
||||||
|
|
||||||
public override HelloReply DefaultInstanceForType { |
|
||||||
get { return global::helloworld.HelloReply.DefaultInstance; } |
|
||||||
} |
|
||||||
|
|
||||||
public override HelloReply BuildPartial() { |
|
||||||
if (resultIsReadOnly) { |
|
||||||
return result; |
|
||||||
} |
|
||||||
resultIsReadOnly = true; |
|
||||||
return result.MakeReadOnly(); |
|
||||||
} |
|
||||||
|
|
||||||
public override Builder MergeFrom(pb::IMessage other) { |
|
||||||
if (other is HelloReply) { |
|
||||||
return MergeFrom((HelloReply) other); |
|
||||||
} else { |
|
||||||
base.MergeFrom(other); |
|
||||||
return this; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
public override Builder MergeFrom(HelloReply other) { |
|
||||||
if (other == global::helloworld.HelloReply.DefaultInstance) return this; |
|
||||||
PrepareBuilder(); |
|
||||||
if (other.HasMessage) { |
|
||||||
Message = other.Message; |
|
||||||
} |
|
||||||
this.MergeUnknownFields(other.UnknownFields); |
|
||||||
return this; |
|
||||||
} |
|
||||||
|
|
||||||
public override Builder MergeFrom(pb::ICodedInputStream input) { |
|
||||||
return MergeFrom(input, pb::ExtensionRegistry.Empty); |
|
||||||
} |
|
||||||
|
|
||||||
public override Builder MergeFrom(pb::ICodedInputStream input, pb::ExtensionRegistry extensionRegistry) { |
|
||||||
PrepareBuilder(); |
|
||||||
pb::UnknownFieldSet.Builder unknownFields = null; |
|
||||||
uint tag; |
|
||||||
string field_name; |
|
||||||
while (input.ReadTag(out tag, out field_name)) { |
|
||||||
if(tag == 0 && field_name != null) { |
|
||||||
int field_ordinal = global::System.Array.BinarySearch(_helloReplyFieldNames, field_name, global::System.StringComparer.Ordinal); |
|
||||||
if(field_ordinal >= 0) |
|
||||||
tag = _helloReplyFieldTags[field_ordinal]; |
|
||||||
else { |
|
||||||
if (unknownFields == null) { |
|
||||||
unknownFields = pb::UnknownFieldSet.CreateBuilder(this.UnknownFields); |
|
||||||
} |
|
||||||
ParseUnknownField(input, unknownFields, extensionRegistry, tag, field_name); |
|
||||||
continue; |
|
||||||
} |
|
||||||
} |
|
||||||
switch (tag) { |
|
||||||
case 0: { |
|
||||||
throw pb::InvalidProtocolBufferException.InvalidTag(); |
|
||||||
} |
|
||||||
default: { |
|
||||||
if (pb::WireFormat.IsEndGroupTag(tag)) { |
|
||||||
if (unknownFields != null) { |
|
||||||
this.UnknownFields = unknownFields.Build(); |
|
||||||
} |
|
||||||
return this; |
|
||||||
} |
|
||||||
if (unknownFields == null) { |
|
||||||
unknownFields = pb::UnknownFieldSet.CreateBuilder(this.UnknownFields); |
|
||||||
} |
|
||||||
ParseUnknownField(input, unknownFields, extensionRegistry, tag, field_name); |
|
||||||
break; |
|
||||||
} |
|
||||||
case 10: { |
|
||||||
result.hasMessage = input.ReadString(ref result.message_); |
|
||||||
break; |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
if (unknownFields != null) { |
|
||||||
this.UnknownFields = unknownFields.Build(); |
|
||||||
} |
|
||||||
return this; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
public bool HasMessage { |
|
||||||
get { return result.hasMessage; } |
|
||||||
} |
|
||||||
public string Message { |
|
||||||
get { return result.Message; } |
|
||||||
set { SetMessage(value); } |
|
||||||
} |
|
||||||
public Builder SetMessage(string value) { |
|
||||||
pb::ThrowHelper.ThrowIfNull(value, "value"); |
|
||||||
PrepareBuilder(); |
|
||||||
result.hasMessage = true; |
|
||||||
result.message_ = value; |
|
||||||
return this; |
|
||||||
} |
|
||||||
public Builder ClearMessage() { |
|
||||||
PrepareBuilder(); |
|
||||||
result.hasMessage = false; |
|
||||||
result.message_ = ""; |
|
||||||
return this; |
|
||||||
} |
|
||||||
} |
|
||||||
static HelloReply() { |
|
||||||
object.ReferenceEquals(global::helloworld.Helloworld.Descriptor, null); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
#endregion |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
#endregion Designer generated code |
|
@ -1,78 +0,0 @@ |
|||||||
// Generated by the protocol buffer compiler. DO NOT EDIT! |
|
||||||
// source: helloworld.proto |
|
||||||
#region Designer generated code |
|
||||||
|
|
||||||
using System; |
|
||||||
using System.Threading; |
|
||||||
using System.Threading.Tasks; |
|
||||||
using Grpc.Core; |
|
||||||
|
|
||||||
namespace helloworld { |
|
||||||
public static class Greeter |
|
||||||
{ |
|
||||||
static readonly string __ServiceName = "helloworld.Greeter"; |
|
||||||
|
|
||||||
static readonly Marshaller<global::helloworld.HelloRequest> __Marshaller_HelloRequest = Marshallers.Create((arg) => arg.ToByteArray(), global::helloworld.HelloRequest.ParseFrom); |
|
||||||
static readonly Marshaller<global::helloworld.HelloReply> __Marshaller_HelloReply = Marshallers.Create((arg) => arg.ToByteArray(), global::helloworld.HelloReply.ParseFrom); |
|
||||||
|
|
||||||
static readonly Method<global::helloworld.HelloRequest, global::helloworld.HelloReply> __Method_SayHello = new Method<global::helloworld.HelloRequest, global::helloworld.HelloReply>( |
|
||||||
MethodType.Unary, |
|
||||||
"SayHello", |
|
||||||
__Marshaller_HelloRequest, |
|
||||||
__Marshaller_HelloReply); |
|
||||||
|
|
||||||
// client-side stub interface |
|
||||||
public interface IGreeterClient |
|
||||||
{ |
|
||||||
global::helloworld.HelloReply SayHello(global::helloworld.HelloRequest request, CancellationToken token = default(CancellationToken)); |
|
||||||
Task<global::helloworld.HelloReply> SayHelloAsync(global::helloworld.HelloRequest request, CancellationToken token = default(CancellationToken)); |
|
||||||
} |
|
||||||
|
|
||||||
// server-side interface |
|
||||||
public interface IGreeter |
|
||||||
{ |
|
||||||
Task<global::helloworld.HelloReply> SayHello(ServerCallContext context, global::helloworld.HelloRequest request); |
|
||||||
} |
|
||||||
|
|
||||||
// client stub |
|
||||||
public class GreeterClient : AbstractStub<GreeterClient, StubConfiguration>, IGreeterClient |
|
||||||
{ |
|
||||||
public GreeterClient(Channel channel) : this(channel, StubConfiguration.Default) |
|
||||||
{ |
|
||||||
} |
|
||||||
public GreeterClient(Channel channel, StubConfiguration config) : base(channel, config) |
|
||||||
{ |
|
||||||
} |
|
||||||
public global::helloworld.HelloReply SayHello(global::helloworld.HelloRequest request, CancellationToken token = default(CancellationToken)) |
|
||||||
{ |
|
||||||
var call = CreateCall(__ServiceName, __Method_SayHello); |
|
||||||
return Calls.BlockingUnaryCall(call, request, token); |
|
||||||
} |
|
||||||
public Task<global::helloworld.HelloReply> SayHelloAsync(global::helloworld.HelloRequest request, CancellationToken token = default(CancellationToken)) |
|
||||||
{ |
|
||||||
var call = CreateCall(__ServiceName, __Method_SayHello); |
|
||||||
return Calls.AsyncUnaryCall(call, request, token); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
// creates service definition that can be registered with a server |
|
||||||
public static ServerServiceDefinition BindService(IGreeter serviceImpl) |
|
||||||
{ |
|
||||||
return ServerServiceDefinition.CreateBuilder(__ServiceName) |
|
||||||
.AddMethod(__Method_SayHello, serviceImpl.SayHello).Build(); |
|
||||||
} |
|
||||||
|
|
||||||
// creates a new client stub |
|
||||||
public static IGreeterClient NewStub(Channel channel) |
|
||||||
{ |
|
||||||
return new GreeterClient(channel); |
|
||||||
} |
|
||||||
|
|
||||||
// creates a new client stub |
|
||||||
public static IGreeterClient NewStub(Channel channel, StubConfiguration config) |
|
||||||
{ |
|
||||||
return new GreeterClient(channel, config); |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
#endregion |
|
@ -1,52 +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. |
|
||||||
|
|
||||||
// TODO(jtattermusch): as of now, C# protobufs don't officially support |
|
||||||
// proto3. |
|
||||||
syntax = "proto2"; |
|
||||||
|
|
||||||
option java_package = "io.grpc.examples"; |
|
||||||
|
|
||||||
package helloworld; |
|
||||||
|
|
||||||
// The greeting service definition. |
|
||||||
service Greeter { |
|
||||||
// Sends a greeting |
|
||||||
rpc SayHello (HelloRequest) returns (HelloReply) {} |
|
||||||
} |
|
||||||
|
|
||||||
// The request message containing the user's name. |
|
||||||
message HelloRequest { |
|
||||||
optional string name = 1; |
|
||||||
} |
|
||||||
|
|
||||||
// The response message containing the greetings |
|
||||||
message HelloReply { |
|
||||||
optional string message = 1; |
|
||||||
} |
|
@ -1,25 +0,0 @@ |
|||||||
using System; |
|
||||||
using Grpc.Core; |
|
||||||
using helloworld; |
|
||||||
|
|
||||||
namespace GreeterClient |
|
||||||
{ |
|
||||||
class ClientMainClass |
|
||||||
{ |
|
||||||
public static void Main(string[] args) |
|
||||||
{ |
|
||||||
GrpcEnvironment.Initialize(); |
|
||||||
|
|
||||||
using (Channel channel = new Channel("127.0.0.1:50051")) |
|
||||||
{ |
|
||||||
var client = Greeter.NewStub(channel); |
|
||||||
String user = "you"; |
|
||||||
|
|
||||||
var reply = client.SayHello(new HelloRequest.Builder { Name = user }.Build()); |
|
||||||
Console.WriteLine("Greeting: " + reply.Message); |
|
||||||
} |
|
||||||
|
|
||||||
GrpcEnvironment.Shutdown(); |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
@ -1,37 +0,0 @@ |
|||||||
using System; |
|
||||||
using System.Threading.Tasks; |
|
||||||
using Grpc.Core; |
|
||||||
using helloworld; |
|
||||||
|
|
||||||
namespace GreeterServer |
|
||||||
{ |
|
||||||
class GreeterImpl : Greeter.IGreeter |
|
||||||
{ |
|
||||||
// Server side handler of the SayHello RPC |
|
||||||
public Task<HelloReply> SayHello(ServerCallContext context, HelloRequest request) |
|
||||||
{ |
|
||||||
var reply = new HelloReply.Builder { Message = "Hello " + request.Name }.Build(); |
|
||||||
return Task.FromResult(reply); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
class ServerMainClass |
|
||||||
{ |
|
||||||
public static void Main(string[] args) |
|
||||||
{ |
|
||||||
GrpcEnvironment.Initialize(); |
|
||||||
|
|
||||||
Server server = new Server(); |
|
||||||
server.AddServiceDefinition(Greeter.BindService(new GreeterImpl())); |
|
||||||
int port = server.AddListeningPort("localhost", 50051); |
|
||||||
server.Start(); |
|
||||||
|
|
||||||
Console.WriteLine("Greeter server listening on port " + port); |
|
||||||
Console.WriteLine("Press any key to stop the server..."); |
|
||||||
Console.ReadKey(); |
|
||||||
|
|
||||||
server.ShutdownAsync().Wait(); |
|
||||||
GrpcEnvironment.Shutdown(); |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
@ -0,0 +1,248 @@ |
|||||||
|
// Generated by the protocol buffer compiler. DO NOT EDIT! |
||||||
|
// source: helloworld.proto |
||||||
|
#pragma warning disable 1591, 0612, 3021 |
||||||
|
#region Designer generated code |
||||||
|
|
||||||
|
using pb = global::Google.Protobuf; |
||||||
|
using pbc = global::Google.Protobuf.Collections; |
||||||
|
using pbr = global::Google.Protobuf.Reflection; |
||||||
|
using scg = global::System.Collections.Generic; |
||||||
|
namespace Helloworld { |
||||||
|
|
||||||
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] |
||||||
|
public static partial class Helloworld { |
||||||
|
|
||||||
|
#region Descriptor |
||||||
|
public static pbr::FileDescriptor Descriptor { |
||||||
|
get { return descriptor; } |
||||||
|
} |
||||||
|
private static pbr::FileDescriptor descriptor; |
||||||
|
|
||||||
|
static Helloworld() { |
||||||
|
byte[] descriptorData = global::System.Convert.FromBase64String( |
||||||
|
string.Concat( |
||||||
|
"ChBoZWxsb3dvcmxkLnByb3RvEgpoZWxsb3dvcmxkIhwKDEhlbGxvUmVxdWVz", |
||||||
|
"dBIMCgRuYW1lGAEgASgJIh0KCkhlbGxvUmVwbHkSDwoHbWVzc2FnZRgBIAEo", |
||||||
|
"CTJJCgdHcmVldGVyEj4KCFNheUhlbGxvEhguaGVsbG93b3JsZC5IZWxsb1Jl", |
||||||
|
"cXVlc3QaFi5oZWxsb3dvcmxkLkhlbGxvUmVwbHkiAEIYChBpby5ncnBjLmV4", |
||||||
|
"YW1wbGVzogIDSExXYgZwcm90bzM=")); |
||||||
|
descriptor = pbr::FileDescriptor.InternalBuildGeneratedFileFrom(descriptorData, |
||||||
|
new pbr::FileDescriptor[] { }, |
||||||
|
new pbr::GeneratedCodeInfo(null, new pbr::GeneratedCodeInfo[] { |
||||||
|
new pbr::GeneratedCodeInfo(typeof(global::Helloworld.HelloRequest), new[]{ "Name" }, null, null, null), |
||||||
|
new pbr::GeneratedCodeInfo(typeof(global::Helloworld.HelloReply), new[]{ "Message" }, null, null, null) |
||||||
|
})); |
||||||
|
} |
||||||
|
#endregion |
||||||
|
|
||||||
|
} |
||||||
|
#region Messages |
||||||
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] |
||||||
|
public sealed partial class HelloRequest : pb::IMessage<HelloRequest> { |
||||||
|
private static readonly pb::MessageParser<HelloRequest> _parser = new pb::MessageParser<HelloRequest>(() => new HelloRequest()); |
||||||
|
public static pb::MessageParser<HelloRequest> Parser { get { return _parser; } } |
||||||
|
|
||||||
|
public static pbr::MessageDescriptor Descriptor { |
||||||
|
get { return global::Helloworld.Helloworld.Descriptor.MessageTypes[0]; } |
||||||
|
} |
||||||
|
|
||||||
|
pbr::MessageDescriptor pb::IMessage.Descriptor { |
||||||
|
get { return Descriptor; } |
||||||
|
} |
||||||
|
|
||||||
|
public HelloRequest() { |
||||||
|
OnConstruction(); |
||||||
|
} |
||||||
|
|
||||||
|
partial void OnConstruction(); |
||||||
|
|
||||||
|
public HelloRequest(HelloRequest other) : this() { |
||||||
|
name_ = other.name_; |
||||||
|
} |
||||||
|
|
||||||
|
public HelloRequest Clone() { |
||||||
|
return new HelloRequest(this); |
||||||
|
} |
||||||
|
|
||||||
|
public const int NameFieldNumber = 1; |
||||||
|
private string name_ = ""; |
||||||
|
public string Name { |
||||||
|
get { return name_; } |
||||||
|
set { |
||||||
|
name_ = pb::Preconditions.CheckNotNull(value, "value"); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public override bool Equals(object other) { |
||||||
|
return Equals(other as HelloRequest); |
||||||
|
} |
||||||
|
|
||||||
|
public bool Equals(HelloRequest other) { |
||||||
|
if (ReferenceEquals(other, null)) { |
||||||
|
return false; |
||||||
|
} |
||||||
|
if (ReferenceEquals(other, this)) { |
||||||
|
return true; |
||||||
|
} |
||||||
|
if (Name != other.Name) return false; |
||||||
|
return true; |
||||||
|
} |
||||||
|
|
||||||
|
public override int GetHashCode() { |
||||||
|
int hash = 1; |
||||||
|
if (Name.Length != 0) hash ^= Name.GetHashCode(); |
||||||
|
return hash; |
||||||
|
} |
||||||
|
|
||||||
|
public override string ToString() { |
||||||
|
return pb::JsonFormatter.Default.Format(this); |
||||||
|
} |
||||||
|
|
||||||
|
public void WriteTo(pb::CodedOutputStream output) { |
||||||
|
if (Name.Length != 0) { |
||||||
|
output.WriteRawTag(10); |
||||||
|
output.WriteString(Name); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public int CalculateSize() { |
||||||
|
int size = 0; |
||||||
|
if (Name.Length != 0) { |
||||||
|
size += 1 + pb::CodedOutputStream.ComputeStringSize(Name); |
||||||
|
} |
||||||
|
return size; |
||||||
|
} |
||||||
|
|
||||||
|
public void MergeFrom(HelloRequest other) { |
||||||
|
if (other == null) { |
||||||
|
return; |
||||||
|
} |
||||||
|
if (other.Name.Length != 0) { |
||||||
|
Name = other.Name; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public void MergeFrom(pb::CodedInputStream input) { |
||||||
|
uint tag; |
||||||
|
while ((tag = input.ReadTag()) != 0) { |
||||||
|
switch(tag) { |
||||||
|
default: |
||||||
|
input.SkipLastField(); |
||||||
|
break; |
||||||
|
case 10: { |
||||||
|
Name = input.ReadString(); |
||||||
|
break; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] |
||||||
|
public sealed partial class HelloReply : pb::IMessage<HelloReply> { |
||||||
|
private static readonly pb::MessageParser<HelloReply> _parser = new pb::MessageParser<HelloReply>(() => new HelloReply()); |
||||||
|
public static pb::MessageParser<HelloReply> Parser { get { return _parser; } } |
||||||
|
|
||||||
|
public static pbr::MessageDescriptor Descriptor { |
||||||
|
get { return global::Helloworld.Helloworld.Descriptor.MessageTypes[1]; } |
||||||
|
} |
||||||
|
|
||||||
|
pbr::MessageDescriptor pb::IMessage.Descriptor { |
||||||
|
get { return Descriptor; } |
||||||
|
} |
||||||
|
|
||||||
|
public HelloReply() { |
||||||
|
OnConstruction(); |
||||||
|
} |
||||||
|
|
||||||
|
partial void OnConstruction(); |
||||||
|
|
||||||
|
public HelloReply(HelloReply other) : this() { |
||||||
|
message_ = other.message_; |
||||||
|
} |
||||||
|
|
||||||
|
public HelloReply Clone() { |
||||||
|
return new HelloReply(this); |
||||||
|
} |
||||||
|
|
||||||
|
public const int MessageFieldNumber = 1; |
||||||
|
private string message_ = ""; |
||||||
|
public string Message { |
||||||
|
get { return message_; } |
||||||
|
set { |
||||||
|
message_ = pb::Preconditions.CheckNotNull(value, "value"); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public override bool Equals(object other) { |
||||||
|
return Equals(other as HelloReply); |
||||||
|
} |
||||||
|
|
||||||
|
public bool Equals(HelloReply other) { |
||||||
|
if (ReferenceEquals(other, null)) { |
||||||
|
return false; |
||||||
|
} |
||||||
|
if (ReferenceEquals(other, this)) { |
||||||
|
return true; |
||||||
|
} |
||||||
|
if (Message != other.Message) return false; |
||||||
|
return true; |
||||||
|
} |
||||||
|
|
||||||
|
public override int GetHashCode() { |
||||||
|
int hash = 1; |
||||||
|
if (Message.Length != 0) hash ^= Message.GetHashCode(); |
||||||
|
return hash; |
||||||
|
} |
||||||
|
|
||||||
|
public override string ToString() { |
||||||
|
return pb::JsonFormatter.Default.Format(this); |
||||||
|
} |
||||||
|
|
||||||
|
public void WriteTo(pb::CodedOutputStream output) { |
||||||
|
if (Message.Length != 0) { |
||||||
|
output.WriteRawTag(10); |
||||||
|
output.WriteString(Message); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public int CalculateSize() { |
||||||
|
int size = 0; |
||||||
|
if (Message.Length != 0) { |
||||||
|
size += 1 + pb::CodedOutputStream.ComputeStringSize(Message); |
||||||
|
} |
||||||
|
return size; |
||||||
|
} |
||||||
|
|
||||||
|
public void MergeFrom(HelloReply other) { |
||||||
|
if (other == null) { |
||||||
|
return; |
||||||
|
} |
||||||
|
if (other.Message.Length != 0) { |
||||||
|
Message = other.Message; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public void MergeFrom(pb::CodedInputStream input) { |
||||||
|
uint tag; |
||||||
|
while ((tag = input.ReadTag()) != 0) { |
||||||
|
switch(tag) { |
||||||
|
default: |
||||||
|
input.SkipLastField(); |
||||||
|
break; |
||||||
|
case 10: { |
||||||
|
Message = input.ReadString(); |
||||||
|
break; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
#endregion |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
#endregion Designer generated code |
@ -0,0 +1,89 @@ |
|||||||
|
// Generated by the protocol buffer compiler. DO NOT EDIT! |
||||||
|
// source: helloworld.proto |
||||||
|
#region Designer generated code |
||||||
|
|
||||||
|
using System; |
||||||
|
using System.Threading; |
||||||
|
using System.Threading.Tasks; |
||||||
|
using Grpc.Core; |
||||||
|
|
||||||
|
namespace Helloworld { |
||||||
|
public static class Greeter |
||||||
|
{ |
||||||
|
static readonly string __ServiceName = "helloworld.Greeter"; |
||||||
|
|
||||||
|
static readonly Marshaller<global::Helloworld.HelloRequest> __Marshaller_HelloRequest = Marshallers.Create((arg) => global::Google.Protobuf.MessageExtensions.ToByteArray(arg), global::Helloworld.HelloRequest.Parser.ParseFrom); |
||||||
|
static readonly Marshaller<global::Helloworld.HelloReply> __Marshaller_HelloReply = Marshallers.Create((arg) => global::Google.Protobuf.MessageExtensions.ToByteArray(arg), global::Helloworld.HelloReply.Parser.ParseFrom); |
||||||
|
|
||||||
|
static readonly Method<global::Helloworld.HelloRequest, global::Helloworld.HelloReply> __Method_SayHello = new Method<global::Helloworld.HelloRequest, global::Helloworld.HelloReply>( |
||||||
|
MethodType.Unary, |
||||||
|
__ServiceName, |
||||||
|
"SayHello", |
||||||
|
__Marshaller_HelloRequest, |
||||||
|
__Marshaller_HelloReply); |
||||||
|
|
||||||
|
// service descriptor |
||||||
|
public static global::Google.Protobuf.Reflection.ServiceDescriptor Descriptor |
||||||
|
{ |
||||||
|
get { return global::Helloworld.Helloworld.Descriptor.Services[0]; } |
||||||
|
} |
||||||
|
|
||||||
|
// client interface |
||||||
|
public interface IGreeterClient |
||||||
|
{ |
||||||
|
global::Helloworld.HelloReply SayHello(global::Helloworld.HelloRequest request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default(CancellationToken)); |
||||||
|
global::Helloworld.HelloReply SayHello(global::Helloworld.HelloRequest request, CallOptions options); |
||||||
|
AsyncUnaryCall<global::Helloworld.HelloReply> SayHelloAsync(global::Helloworld.HelloRequest request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default(CancellationToken)); |
||||||
|
AsyncUnaryCall<global::Helloworld.HelloReply> SayHelloAsync(global::Helloworld.HelloRequest request, CallOptions options); |
||||||
|
} |
||||||
|
|
||||||
|
// server-side interface |
||||||
|
public interface IGreeter |
||||||
|
{ |
||||||
|
Task<global::Helloworld.HelloReply> SayHello(global::Helloworld.HelloRequest request, ServerCallContext context); |
||||||
|
} |
||||||
|
|
||||||
|
// client stub |
||||||
|
public class GreeterClient : ClientBase, IGreeterClient |
||||||
|
{ |
||||||
|
public GreeterClient(Channel channel) : base(channel) |
||||||
|
{ |
||||||
|
} |
||||||
|
public global::Helloworld.HelloReply SayHello(global::Helloworld.HelloRequest request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default(CancellationToken)) |
||||||
|
{ |
||||||
|
var call = CreateCall(__Method_SayHello, new CallOptions(headers, deadline, cancellationToken)); |
||||||
|
return Calls.BlockingUnaryCall(call, request); |
||||||
|
} |
||||||
|
public global::Helloworld.HelloReply SayHello(global::Helloworld.HelloRequest request, CallOptions options) |
||||||
|
{ |
||||||
|
var call = CreateCall(__Method_SayHello, options); |
||||||
|
return Calls.BlockingUnaryCall(call, request); |
||||||
|
} |
||||||
|
public AsyncUnaryCall<global::Helloworld.HelloReply> SayHelloAsync(global::Helloworld.HelloRequest request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default(CancellationToken)) |
||||||
|
{ |
||||||
|
var call = CreateCall(__Method_SayHello, new CallOptions(headers, deadline, cancellationToken)); |
||||||
|
return Calls.AsyncUnaryCall(call, request); |
||||||
|
} |
||||||
|
public AsyncUnaryCall<global::Helloworld.HelloReply> SayHelloAsync(global::Helloworld.HelloRequest request, CallOptions options) |
||||||
|
{ |
||||||
|
var call = CreateCall(__Method_SayHello, options); |
||||||
|
return Calls.AsyncUnaryCall(call, request); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
// creates service definition that can be registered with a server |
||||||
|
public static ServerServiceDefinition BindService(IGreeter serviceImpl) |
||||||
|
{ |
||||||
|
return ServerServiceDefinition.CreateBuilder(__ServiceName) |
||||||
|
.AddMethod(__Method_SayHello, serviceImpl.SayHello).Build(); |
||||||
|
} |
||||||
|
|
||||||
|
// creates a new client |
||||||
|
public static GreeterClient NewClient(Channel channel) |
||||||
|
{ |
||||||
|
return new GreeterClient(channel); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
} |
||||||
|
#endregion |
@ -0,0 +1,24 @@ |
|||||||
|
using System; |
||||||
|
using Grpc.Core; |
||||||
|
using Helloworld; |
||||||
|
|
||||||
|
namespace GreeterClient |
||||||
|
{ |
||||||
|
class Program |
||||||
|
{ |
||||||
|
public static void Main(string[] args) |
||||||
|
{ |
||||||
|
Channel channel = new Channel("127.0.0.1:50051", Credentials.Insecure); |
||||||
|
|
||||||
|
var client = Greeter.NewClient(channel); |
||||||
|
String user = "you"; |
||||||
|
|
||||||
|
var reply = client.SayHello(new HelloRequest { Name = user }); |
||||||
|
Console.WriteLine("Greeting: " + reply.Message); |
||||||
|
|
||||||
|
channel.ShutdownAsync().Wait(); |
||||||
|
Console.WriteLine("Press any key to exit..."); |
||||||
|
Console.ReadKey(); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,37 @@ |
|||||||
|
using System; |
||||||
|
using System.Threading.Tasks; |
||||||
|
using Grpc.Core; |
||||||
|
using Helloworld; |
||||||
|
|
||||||
|
namespace GreeterServer |
||||||
|
{ |
||||||
|
class GreeterImpl : Greeter.IGreeter |
||||||
|
{ |
||||||
|
// Server side handler of the SayHello RPC |
||||||
|
public Task<HelloReply> SayHello(HelloRequest request, ServerCallContext context) |
||||||
|
{ |
||||||
|
return Task.FromResult(new HelloReply { Message = "Hello " + request.Name }); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
class Program |
||||||
|
{ |
||||||
|
const int Port = 50051; |
||||||
|
|
||||||
|
public static void Main(string[] args) |
||||||
|
{ |
||||||
|
Server server = new Server |
||||||
|
{ |
||||||
|
Services = { Greeter.BindService(new GreeterImpl()) }, |
||||||
|
Ports = { new ServerPort("localhost", Port, ServerCredentials.Insecure) } |
||||||
|
}; |
||||||
|
server.Start(); |
||||||
|
|
||||||
|
Console.WriteLine("Greeter server listening on port " + Port); |
||||||
|
Console.WriteLine("Press any key to stop the server..."); |
||||||
|
Console.ReadKey(); |
||||||
|
|
||||||
|
server.ShutdownAsync().Wait(); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,10 @@ |
|||||||
|
@rem Generate the C# code for .proto files |
||||||
|
|
||||||
|
setlocal |
||||||
|
|
||||||
|
@rem enter this directory |
||||||
|
cd /d %~dp0 |
||||||
|
|
||||||
|
packages\Google.Protobuf.3.0.0-alpha4\tools\protoc.exe -I../../protos --csharp_out Greeter ../../protos/helloworld.proto --grpc_out Greeter --plugin=protoc-gen-grpc=packages\Grpc.Tools.0.7.0\tools\grpc_csharp_plugin.exe |
||||||
|
|
||||||
|
endlocal |
File diff suppressed because it is too large
Load Diff
@ -1,123 +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. |
|
||||||
|
|
||||||
// TODO(jtattermusch): as of now, C# protobufs don't officially support |
|
||||||
// proto3. |
|
||||||
syntax = "proto2"; |
|
||||||
|
|
||||||
package examples; |
|
||||||
|
|
||||||
// Interface exported by the server. |
|
||||||
service RouteGuide { |
|
||||||
// A simple RPC. |
|
||||||
// |
|
||||||
// Obtains the feature at a given position. |
|
||||||
// |
|
||||||
// A feature with an empty name is returned if there's no feature at the given |
|
||||||
// position. |
|
||||||
rpc GetFeature(Point) returns (Feature) {} |
|
||||||
|
|
||||||
// A server-to-client streaming RPC. |
|
||||||
// |
|
||||||
// Obtains the Features available within the given Rectangle. Results are |
|
||||||
// streamed rather than returned at once (e.g. in a response message with a |
|
||||||
// repeated field), as the rectangle may cover a large area and contain a |
|
||||||
// huge number of features. |
|
||||||
rpc ListFeatures(Rectangle) returns (stream Feature) {} |
|
||||||
|
|
||||||
// A client-to-server streaming RPC. |
|
||||||
// |
|
||||||
// Accepts a stream of Points on a route being traversed, returning a |
|
||||||
// RouteSummary when traversal is completed. |
|
||||||
rpc RecordRoute(stream Point) returns (RouteSummary) {} |
|
||||||
|
|
||||||
// A Bidirectional streaming RPC. |
|
||||||
// |
|
||||||
// Accepts a stream of RouteNotes sent while a route is being traversed, |
|
||||||
// while receiving other RouteNotes (e.g. from other users). |
|
||||||
rpc RouteChat(stream RouteNote) returns (stream RouteNote) {} |
|
||||||
} |
|
||||||
|
|
||||||
// Points are represented as latitude-longitude pairs in the E7 representation |
|
||||||
// (degrees multiplied by 10**7 and rounded to the nearest integer). |
|
||||||
// Latitudes should be in the range +/- 90 degrees and longitude should be in |
|
||||||
// the range +/- 180 degrees (inclusive). |
|
||||||
message Point { |
|
||||||
optional int32 latitude = 1; |
|
||||||
optional int32 longitude = 2; |
|
||||||
} |
|
||||||
|
|
||||||
// A latitude-longitude rectangle, represented as two diagonally opposite |
|
||||||
// points "lo" and "hi". |
|
||||||
message Rectangle { |
|
||||||
// One corner of the rectangle. |
|
||||||
optional Point lo = 1; |
|
||||||
|
|
||||||
// The other corner of the rectangle. |
|
||||||
optional Point hi = 2; |
|
||||||
} |
|
||||||
|
|
||||||
// A feature names something at a given point. |
|
||||||
// |
|
||||||
// If a feature could not be named, the name is empty. |
|
||||||
message Feature { |
|
||||||
// The name of the feature. |
|
||||||
optional string name = 1; |
|
||||||
|
|
||||||
// The point where the feature is detected. |
|
||||||
optional Point location = 2; |
|
||||||
} |
|
||||||
|
|
||||||
// A RouteNote is a message sent while at a given point. |
|
||||||
message RouteNote { |
|
||||||
// The location from which the message is sent. |
|
||||||
optional Point location = 1; |
|
||||||
|
|
||||||
// The message to be sent. |
|
||||||
optional string message = 2; |
|
||||||
} |
|
||||||
|
|
||||||
// A RouteSummary is received in response to a RecordRoute rpc. |
|
||||||
// |
|
||||||
// It contains the number of individual points received, the number of |
|
||||||
// detected features, and the total distance covered as the cumulative sum of |
|
||||||
// the distance between each point. |
|
||||||
message RouteSummary { |
|
||||||
// The number of points received. |
|
||||||
optional int32 point_count = 1; |
|
||||||
|
|
||||||
// The number of known features passed while traversing the route. |
|
||||||
optional int32 feature_count = 2; |
|
||||||
|
|
||||||
// The distance covered in metres. |
|
||||||
optional int32 distance = 3; |
|
||||||
|
|
||||||
// The duration of the traversal in seconds. |
|
||||||
optional int32 elapsed_time = 4; |
|
||||||
} |
|
@ -0,0 +1,10 @@ |
|||||||
|
@rem Generate the C# code for .proto files |
||||||
|
|
||||||
|
setlocal |
||||||
|
|
||||||
|
@rem enter this directory |
||||||
|
cd /d %~dp0 |
||||||
|
|
||||||
|
packages\Google.Protobuf.3.0.0-alpha4\tools\protoc.exe -I../../protos --csharp_out RouteGuide ../../protos/route_guide.proto --grpc_out RouteGuide --plugin=protoc-gen-grpc=packages\Grpc.Tools.0.7.0\tools\grpc_csharp_plugin.exe |
||||||
|
|
||||||
|
endlocal |
Loading…
Reference in new issue