blob: 98529ab851208c47ae919bdacbd88ad9f228b15d [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 TDoubleColumn
{
static public $isValidate = false;
static public $_TSPEC = array(
1 => array(
'var' => 'values',
'isRequired' => true,
'type' => TType::LST,
'etype' => TType::DOUBLE,
'elem' => array(
'type' => TType::DOUBLE,
),
),
2 => array(
'var' => 'nulls',
'isRequired' => true,
'type' => TType::STRING,
),
);
/**
* @var double[]
*/
public $values = null;
/**
* @var string
*/
public $nulls = null;
public function __construct($vals = null)
{
if (is_array($vals)) {
if (isset($vals['values'])) {
$this->values = $vals['values'];
}
if (isset($vals['nulls'])) {
$this->nulls = $vals['nulls'];
}
}
}
public function getName()
{
return 'TDoubleColumn';
}
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->values = array();
$_size83 = 0;
$_etype86 = 0;
$xfer += $input->readListBegin($_etype86, $_size83);
for ($_i87 = 0; $_i87 < $_size83; ++$_i87) {
$elem88 = null;
$xfer += $input->readDouble($elem88);
$this->values []= $elem88;
}
$xfer += $input->readListEnd();
} else {
$xfer += $input->skip($ftype);
}
break;
case 2:
if ($ftype == TType::STRING) {
$xfer += $input->readString($this->nulls);
} 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('TDoubleColumn');
if ($this->values !== null) {
if (!is_array($this->values)) {
throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA);
}
$xfer += $output->writeFieldBegin('values', TType::LST, 1);
$output->writeListBegin(TType::DOUBLE, count($this->values));
foreach ($this->values as $iter89) {
$xfer += $output->writeDouble($iter89);
}
$output->writeListEnd();
$xfer += $output->writeFieldEnd();
}
if ($this->nulls !== null) {
$xfer += $output->writeFieldBegin('nulls', TType::STRING, 2);
$xfer += $output->writeString($this->nulls);
$xfer += $output->writeFieldEnd();
}
$xfer += $output->writeFieldStop();
$xfer += $output->writeStructEnd();
return $xfer;
}
}