blob: b190aa5e7bea7203048e144e527ba41e826e85b4 [file] [log] [blame]
/**
* Autogenerated by Thrift Compiler (0.14.1)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Thrift;
using Thrift.Collections;
using Thrift.Protocol;
using Thrift.Protocol.Entities;
using Thrift.Protocol.Utilities;
using Thrift.Transport;
using Thrift.Transport.Client;
using Thrift.Transport.Server;
using Thrift.Processor;
#pragma warning disable IDE0079 // remove unnecessary pragmas
#pragma warning disable IDE1006 // parts of the code use IDL spelling
public partial class TServiceProvider : TBase
{
public TEndPoint EndPoint { get; set; }
/// <summary>
///
/// <seealso cref="global::.TServiceType"/>
/// </summary>
public TServiceType ServiceType { get; set; }
public int NodeId { get; set; }
public TServiceProvider()
{
}
public TServiceProvider(TEndPoint endPoint, TServiceType serviceType, int nodeId) : this()
{
this.EndPoint = endPoint;
this.ServiceType = serviceType;
this.NodeId = nodeId;
}
public async global::System.Threading.Tasks.Task ReadAsync(TProtocol iprot, CancellationToken cancellationToken)
{
iprot.IncrementRecursionDepth();
try
{
bool isset_endPoint = false;
bool isset_serviceType = false;
bool isset_nodeId = false;
TField field;
await iprot.ReadStructBeginAsync(cancellationToken);
while (true)
{
field = await iprot.ReadFieldBeginAsync(cancellationToken);
if (field.Type == TType.Stop)
{
break;
}
switch (field.ID)
{
case 1:
if (field.Type == TType.Struct)
{
EndPoint = new TEndPoint();
await EndPoint.ReadAsync(iprot, cancellationToken);
isset_endPoint = true;
}
else
{
await TProtocolUtil.SkipAsync(iprot, field.Type, cancellationToken);
}
break;
case 2:
if (field.Type == TType.I32)
{
ServiceType = (TServiceType)await iprot.ReadI32Async(cancellationToken);
isset_serviceType = true;
}
else
{
await TProtocolUtil.SkipAsync(iprot, field.Type, cancellationToken);
}
break;
case 3:
if (field.Type == TType.I32)
{
NodeId = await iprot.ReadI32Async(cancellationToken);
isset_nodeId = true;
}
else
{
await TProtocolUtil.SkipAsync(iprot, field.Type, cancellationToken);
}
break;
default:
await TProtocolUtil.SkipAsync(iprot, field.Type, cancellationToken);
break;
}
await iprot.ReadFieldEndAsync(cancellationToken);
}
await iprot.ReadStructEndAsync(cancellationToken);
if (!isset_endPoint)
{
throw new TProtocolException(TProtocolException.INVALID_DATA);
}
if (!isset_serviceType)
{
throw new TProtocolException(TProtocolException.INVALID_DATA);
}
if (!isset_nodeId)
{
throw new TProtocolException(TProtocolException.INVALID_DATA);
}
}
finally
{
iprot.DecrementRecursionDepth();
}
}
public async global::System.Threading.Tasks.Task WriteAsync(TProtocol oprot, CancellationToken cancellationToken)
{
oprot.IncrementRecursionDepth();
try
{
var struc = new TStruct("TServiceProvider");
await oprot.WriteStructBeginAsync(struc, cancellationToken);
var field = new TField();
if((EndPoint != null))
{
field.Name = "endPoint";
field.Type = TType.Struct;
field.ID = 1;
await oprot.WriteFieldBeginAsync(field, cancellationToken);
await EndPoint.WriteAsync(oprot, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
field.Name = "serviceType";
field.Type = TType.I32;
field.ID = 2;
await oprot.WriteFieldBeginAsync(field, cancellationToken);
await oprot.WriteI32Async((int)ServiceType, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
field.Name = "nodeId";
field.Type = TType.I32;
field.ID = 3;
await oprot.WriteFieldBeginAsync(field, cancellationToken);
await oprot.WriteI32Async(NodeId, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
await oprot.WriteFieldStopAsync(cancellationToken);
await oprot.WriteStructEndAsync(cancellationToken);
}
finally
{
oprot.DecrementRecursionDepth();
}
}
public override bool Equals(object that)
{
if (!(that is TServiceProvider other)) return false;
if (ReferenceEquals(this, other)) return true;
return System.Object.Equals(EndPoint, other.EndPoint)
&& System.Object.Equals(ServiceType, other.ServiceType)
&& System.Object.Equals(NodeId, other.NodeId);
}
public override int GetHashCode() {
int hashcode = 157;
unchecked {
if((EndPoint != null))
{
hashcode = (hashcode * 397) + EndPoint.GetHashCode();
}
hashcode = (hashcode * 397) + ServiceType.GetHashCode();
hashcode = (hashcode * 397) + NodeId.GetHashCode();
}
return hashcode;
}
public override string ToString()
{
var sb = new StringBuilder("TServiceProvider(");
if((EndPoint != null))
{
sb.Append(", EndPoint: ");
EndPoint.ToString(sb);
}
sb.Append(", ServiceType: ");
ServiceType.ToString(sb);
sb.Append(", NodeId: ");
NodeId.ToString(sb);
sb.Append(')');
return sb.ToString();
}
}