read method

void read(
  1. TProtocol iprot
)
override

Reads the TObject from the given input protocol.

Implementation

read(TProtocol iprot) {
  TField field;
  iprot.readStructBegin();
  while (true) {
    field = iprot.readFieldBegin();
    if (field.type == TType.STOP) {
      break;
    }
    switch (field.id) {
      case SPACE_ID:
        if (field.type == TType.I32) {
          this.space_id = iprot.readI32();
          this.__isset_space_id = true;
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      case INDEX_NAME:
        if (field.type == TType.STRING) {
          this.index_name = iprot.readBinary();
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      case EDGE_NAME:
        if (field.type == TType.STRING) {
          this.edge_name = iprot.readBinary();
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      case FIELDS:
        if (field.type == TType.LIST) {
          {
            TList _list186 = iprot.readListBegin();
            this.fields = <IndexFieldDef>[];
            for (int _i187 = 0; _i187 < _list186.length; ++_i187) {
              IndexFieldDef _elem188;
              _elem188 = new IndexFieldDef();
              _elem188.read(iprot);
              this.fields?.add(_elem188);
            }
            iprot.readListEnd();
          }
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      case IF_NOT_EXISTS:
        if (field.type == TType.BOOL) {
          this.if_not_exists = iprot.readBool();
          this.__isset_if_not_exists = true;
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      case COMMENT:
        if (field.type == TType.STRING) {
          this.comment = iprot.readBinary();
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      case INDEX_PARAMS:
        if (field.type == TType.STRUCT) {
          this.index_params = new IndexParams();
          this.index_params?.read(iprot);
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      default:
        TProtocolUtil.skip(iprot, field.type);
        break;
    }
    iprot.readFieldEnd();
  }
  iprot.readStructEnd();

  // check for required fields of primitive type, which can't be checked in the validate method
  validate();
}