blob: 7a589d4416a57559f4e42b02c125f3bca010f0f1 [file] [log] [blame]
<?php
/**
* Autogenerated by Thrift Compiler (0.16.0)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
use Thrift\Base\TBase;
use Thrift\Type\TType;
use Thrift\Type\TMessageType;
use Thrift\Exception\TException;
use Thrift\Exception\TProtocolException;
use Thrift\Protocol\TProtocol;
use Thrift\Protocol\TBinaryProtocolAccelerated;
use Thrift\Exception\TApplicationException;
class TTableSchema
{
static public $isValidate = false;
static public $_TSPEC = array(
1 => array(
'var' => 'columns',
'isRequired' => true,
'type' => TType::LST,
'etype' => TType::STRUCT,
'elem' => array(
'type' => TType::STRUCT,
'class' => '\TColumnDesc',
),
),
);
/**
* @var \TColumnDesc[]
*/
public $columns = null;
public function __construct($vals = null)
{
if (is_array($vals)) {
if (isset($vals['columns'])) {
$this->columns = $vals['columns'];
}
}
}
public function getName()
{
return 'TTableSchema';
}
public function read($input)
{
$xfer = 0;
$fname = null;
$ftype = 0;
$fid = 0;
$xfer += $input->readStructBegin($fname);
while (true) {
$xfer += $input->readFieldBegin($fname, $ftype, $fid);
if ($ftype == TType::STOP) {
break;
}
switch ($fid) {
case 1:
if ($ftype == TType::LST) {
$this->columns = array();
$_size34 = 0;
$_etype37 = 0;
$xfer += $input->readListBegin($_etype37, $_size34);
for ($_i38 = 0; $_i38 < $_size34; ++$_i38) {
$elem39 = null;
$elem39 = new \TColumnDesc();
$xfer += $elem39->read($input);
$this->columns []= $elem39;
}
$xfer += $input->readListEnd();
} else {
$xfer += $input->skip($ftype);
}
break;
default:
$xfer += $input->skip($ftype);
break;
}
$xfer += $input->readFieldEnd();
}
$xfer += $input->readStructEnd();
return $xfer;
}
public function write($output)
{
$xfer = 0;
$xfer += $output->writeStructBegin('TTableSchema');
if ($this->columns !== null) {
if (!is_array($this->columns)) {
throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA);
}
$xfer += $output->writeFieldBegin('columns', TType::LST, 1);
$output->writeListBegin(TType::STRUCT, count($this->columns));
foreach ($this->columns as $iter40) {
$xfer += $iter40->write($output);
}
$output->writeListEnd();
$xfer += $output->writeFieldEnd();
}
$xfer += $output->writeFieldStop();
$xfer += $output->writeStructEnd();
return $xfer;
}
}