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 PARTS:
        if (field.type == TType.MAP) {
          {
            TMap _map142 = iprot.readMapBegin();
            this.parts = new Map<int, List<t_nebula.Value>>();
            for (int _i143 = 0; _i143 < _map142.length; ++_i143) {
              int _key144;
              List<t_nebula.Value> _val145;
              _key144 = iprot.readI32();
              {
                TList _list146 = iprot.readListBegin();
                _val145 = <t_nebula.Value>[];
                for (int _i147 = 0; _i147 < _list146.length; ++_i147) {
                  t_nebula.Value _elem148;
                  _elem148 = new t_nebula.Value();
                  _elem148.read(iprot);
                  _val145.add(_elem148);
                }
                iprot.readListEnd();
              }
              this.parts?[_key144] = _val145;
            }
            iprot.readMapEnd();
          }
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      case COMMON:
        if (field.type == TType.STRUCT) {
          this.common = new RequestCommon();
          this.common?.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();
}