diff options
Diffstat (limited to 'src/csharp/Grpc.IntegrationTesting/CoreStats/Stats.cs')
-rw-r--r-- | src/csharp/Grpc.IntegrationTesting/CoreStats/Stats.cs | 74 |
1 files changed, 62 insertions, 12 deletions
diff --git a/src/csharp/Grpc.IntegrationTesting/CoreStats/Stats.cs b/src/csharp/Grpc.IntegrationTesting/CoreStats/Stats.cs index 380294e335..4ff56cd3ec 100644 --- a/src/csharp/Grpc.IntegrationTesting/CoreStats/Stats.cs +++ b/src/csharp/Grpc.IntegrationTesting/CoreStats/Stats.cs @@ -1,5 +1,7 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: grpc/core/stats.proto +// <auto-generated> +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: grpc/core/stats.proto +// </auto-generated> #pragma warning disable 1591, 0612, 3021 #region Designer generated code @@ -43,6 +45,7 @@ namespace Grpc.Core { #region Messages public sealed partial class Bucket : pb::IMessage<Bucket> { private static readonly pb::MessageParser<Bucket> _parser = new pb::MessageParser<Bucket>(() => new Bucket()); + private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public static pb::MessageParser<Bucket> Parser { get { return _parser; } } @@ -67,6 +70,7 @@ namespace Grpc.Core { public Bucket(Bucket other) : this() { start_ = other.start_; count_ = other.count_; + _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -109,16 +113,19 @@ namespace Grpc.Core { if (ReferenceEquals(other, this)) { return true; } - if (Start != other.Start) return false; + if (!pbc::ProtobufEqualityComparers.BitwiseDoubleEqualityComparer.Equals(Start, other.Start)) return false; if (Count != other.Count) return false; - return true; + return Equals(_unknownFields, other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public override int GetHashCode() { int hash = 1; - if (Start != 0D) hash ^= Start.GetHashCode(); + if (Start != 0D) hash ^= pbc::ProtobufEqualityComparers.BitwiseDoubleEqualityComparer.GetHashCode(Start); if (Count != 0UL) hash ^= Count.GetHashCode(); + if (_unknownFields != null) { + hash ^= _unknownFields.GetHashCode(); + } return hash; } @@ -137,6 +144,9 @@ namespace Grpc.Core { output.WriteRawTag(16); output.WriteUInt64(Count); } + if (_unknownFields != null) { + _unknownFields.WriteTo(output); + } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -148,6 +158,9 @@ namespace Grpc.Core { if (Count != 0UL) { size += 1 + pb::CodedOutputStream.ComputeUInt64Size(Count); } + if (_unknownFields != null) { + size += _unknownFields.CalculateSize(); + } return size; } @@ -162,6 +175,7 @@ namespace Grpc.Core { if (other.Count != 0UL) { Count = other.Count; } + _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -170,7 +184,7 @@ namespace Grpc.Core { while ((tag = input.ReadTag()) != 0) { switch(tag) { default: - input.SkipLastField(); + _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 9: { Start = input.ReadDouble(); @@ -188,6 +202,7 @@ namespace Grpc.Core { public sealed partial class Histogram : pb::IMessage<Histogram> { private static readonly pb::MessageParser<Histogram> _parser = new pb::MessageParser<Histogram>(() => new Histogram()); + private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public static pb::MessageParser<Histogram> Parser { get { return _parser; } } @@ -211,6 +226,7 @@ namespace Grpc.Core { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public Histogram(Histogram other) : this() { buckets_ = other.buckets_.Clone(); + _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -242,13 +258,16 @@ namespace Grpc.Core { return true; } if(!buckets_.Equals(other.buckets_)) return false; - return true; + return Equals(_unknownFields, other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public override int GetHashCode() { int hash = 1; hash ^= buckets_.GetHashCode(); + if (_unknownFields != null) { + hash ^= _unknownFields.GetHashCode(); + } return hash; } @@ -260,12 +279,18 @@ namespace Grpc.Core { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public void WriteTo(pb::CodedOutputStream output) { buckets_.WriteTo(output, _repeated_buckets_codec); + if (_unknownFields != null) { + _unknownFields.WriteTo(output); + } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public int CalculateSize() { int size = 0; size += buckets_.CalculateSize(_repeated_buckets_codec); + if (_unknownFields != null) { + size += _unknownFields.CalculateSize(); + } return size; } @@ -275,6 +300,7 @@ namespace Grpc.Core { return; } buckets_.Add(other.buckets_); + _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -283,7 +309,7 @@ namespace Grpc.Core { while ((tag = input.ReadTag()) != 0) { switch(tag) { default: - input.SkipLastField(); + _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 10: { buckets_.AddEntriesFrom(input, _repeated_buckets_codec); @@ -297,6 +323,7 @@ namespace Grpc.Core { public sealed partial class Metric : pb::IMessage<Metric> { private static readonly pb::MessageParser<Metric> _parser = new pb::MessageParser<Metric>(() => new Metric()); + private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public static pb::MessageParser<Metric> Parser { get { return _parser; } } @@ -329,6 +356,7 @@ namespace Grpc.Core { break; } + _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -405,7 +433,7 @@ namespace Grpc.Core { if (Count != other.Count) return false; if (!object.Equals(Histogram, other.Histogram)) return false; if (ValueCase != other.ValueCase) return false; - return true; + return Equals(_unknownFields, other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -415,6 +443,9 @@ namespace Grpc.Core { if (valueCase_ == ValueOneofCase.Count) hash ^= Count.GetHashCode(); if (valueCase_ == ValueOneofCase.Histogram) hash ^= Histogram.GetHashCode(); hash ^= (int) valueCase_; + if (_unknownFields != null) { + hash ^= _unknownFields.GetHashCode(); + } return hash; } @@ -437,6 +468,9 @@ namespace Grpc.Core { output.WriteRawTag(90); output.WriteMessage(Histogram); } + if (_unknownFields != null) { + _unknownFields.WriteTo(output); + } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -451,6 +485,9 @@ namespace Grpc.Core { if (valueCase_ == ValueOneofCase.Histogram) { size += 1 + pb::CodedOutputStream.ComputeMessageSize(Histogram); } + if (_unknownFields != null) { + size += _unknownFields.CalculateSize(); + } return size; } @@ -474,6 +511,7 @@ namespace Grpc.Core { break; } + _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -482,7 +520,7 @@ namespace Grpc.Core { while ((tag = input.ReadTag()) != 0) { switch(tag) { default: - input.SkipLastField(); + _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 10: { Name = input.ReadString(); @@ -509,6 +547,7 @@ namespace Grpc.Core { public sealed partial class Stats : pb::IMessage<Stats> { private static readonly pb::MessageParser<Stats> _parser = new pb::MessageParser<Stats>(() => new Stats()); + private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public static pb::MessageParser<Stats> Parser { get { return _parser; } } @@ -532,6 +571,7 @@ namespace Grpc.Core { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public Stats(Stats other) : this() { metrics_ = other.metrics_.Clone(); + _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -563,13 +603,16 @@ namespace Grpc.Core { return true; } if(!metrics_.Equals(other.metrics_)) return false; - return true; + return Equals(_unknownFields, other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public override int GetHashCode() { int hash = 1; hash ^= metrics_.GetHashCode(); + if (_unknownFields != null) { + hash ^= _unknownFields.GetHashCode(); + } return hash; } @@ -581,12 +624,18 @@ namespace Grpc.Core { [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public void WriteTo(pb::CodedOutputStream output) { metrics_.WriteTo(output, _repeated_metrics_codec); + if (_unknownFields != null) { + _unknownFields.WriteTo(output); + } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] public int CalculateSize() { int size = 0; size += metrics_.CalculateSize(_repeated_metrics_codec); + if (_unknownFields != null) { + size += _unknownFields.CalculateSize(); + } return size; } @@ -596,6 +645,7 @@ namespace Grpc.Core { return; } metrics_.Add(other.metrics_); + _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] @@ -604,7 +654,7 @@ namespace Grpc.Core { while ((tag = input.ReadTag()) != 0) { switch(tag) { default: - input.SkipLastField(); + _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 10: { metrics_.AddEntriesFrom(input, _repeated_metrics_codec); |