blob: 3f7a2d16dc56e80df4bf1555621a70a7036af469 [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 TGetTablesReq
{
static public $isValidate = false;
static public $_TSPEC = array(
1 => array(
'var' => 'sessionHandle',
'isRequired' => true,
'type' => TType::STRUCT,
'class' => '\TSessionHandle',
),
2 => array(
'var' => 'catalogName',
'isRequired' => false,
'type' => TType::STRING,
),
3 => array(
'var' => 'schemaName',
'isRequired' => false,
'type' => TType::STRING,
),
4 => array(
'var' => 'tableName',
'isRequired' => false,
'type' => TType::STRING,
),
5 => array(
'var' => 'tableTypes',
'isRequired' => false,
'type' => TType::LST,
'etype' => TType::STRING,
'elem' => array(
'type' => TType::STRING,
),
),
);
/**
* @var \TSessionHandle
*/
public $sessionHandle = null;
/**
* @var string
*/
public $catalogName = null;
/**
* @var string
*/
public $schemaName = null;
/**
* @var string
*/
public $tableName = null;
/**
* @var string[]
*/
public $tableTypes = null;
public function __construct($vals = null)
{
if (is_array($vals)) {
if (isset($vals['sessionHandle'])) {
$this->sessionHandle = $vals['sessionHandle'];
}
if (isset($vals['catalogName'])) {
$this->catalogName = $vals['catalogName'];
}
if (isset($vals['schemaName'])) {
$this->schemaName = $vals['schemaName'];
}
if (isset($vals['tableName'])) {
$this->tableName = $vals['tableName'];
}
if (isset($vals['tableTypes'])) {
$this->tableTypes = $vals['tableTypes'];
}
}
}
public function getName()
{
return 'TGetTablesReq';
}
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::STRUCT) {
$this->sessionHandle = new \TSessionHandle();
$xfer += $this->sessionHandle->read($input);
} else {
$xfer += $input->skip($ftype);
}
break;
case 2:
if ($ftype == TType::STRING) {
$xfer += $input->readString($this->catalogName);
} else {
$xfer += $input->skip($ftype);
}
break;
case 3:
if ($ftype == TType::STRING) {
$xfer += $input->readString($this->schemaName);
} else {
$xfer += $input->skip($ftype);
}
break;
case 4:
if ($ftype == TType::STRING) {
$xfer += $input->readString($this->tableName);
} else {
$xfer += $input->skip($ftype);
}
break;
case 5:
if ($ftype == TType::LST) {
$this->tableTypes = array();
$_size170 = 0;
$_etype173 = 0;
$xfer += $input->readListBegin($_etype173, $_size170);
for ($_i174 = 0; $_i174 < $_size170; ++$_i174) {
$elem175 = null;
$xfer += $input->readString($elem175);
$this->tableTypes []= $elem175;
}
$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('TGetTablesReq');
if ($this->sessionHandle !== null) {
if (!is_object($this->sessionHandle)) {
throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA);
}
$xfer += $output->writeFieldBegin('sessionHandle', TType::STRUCT, 1);
$xfer += $this->sessionHandle->write($output);
$xfer += $output->writeFieldEnd();
}
if ($this->catalogName !== null) {
$xfer += $output->writeFieldBegin('catalogName', TType::STRING, 2);
$xfer += $output->writeString($this->catalogName);
$xfer += $output->writeFieldEnd();
}
if ($this->schemaName !== null) {
$xfer += $output->writeFieldBegin('schemaName', TType::STRING, 3);
$xfer += $output->writeString($this->schemaName);
$xfer += $output->writeFieldEnd();
}
if ($this->tableName !== null) {
$xfer += $output->writeFieldBegin('tableName', TType::STRING, 4);
$xfer += $output->writeString($this->tableName);
$xfer += $output->writeFieldEnd();
}
if ($this->tableTypes !== null) {
if (!is_array($this->tableTypes)) {
throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA);
}
$xfer += $output->writeFieldBegin('tableTypes', TType::LST, 5);
$output->writeListBegin(TType::STRING, count($this->tableTypes));
foreach ($this->tableTypes as $iter176) {
$xfer += $output->writeString($iter176);
}
$output->writeListEnd();
$xfer += $output->writeFieldEnd();
}
$xfer += $output->writeFieldStop();
$xfer += $output->writeStructEnd();
return $xfer;
}
}