blob: cb3f73b212d5174e487440eaf04b85f8237d6e60 [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 TMapTypeEntry
{
static public $isValidate = false;
static public $_TSPEC = array(
1 => array(
'var' => 'keyTypePtr',
'isRequired' => true,
'type' => TType::I32,
),
2 => array(
'var' => 'valueTypePtr',
'isRequired' => true,
'type' => TType::I32,
),
);
/**
* @var int
*/
public $keyTypePtr = null;
/**
* @var int
*/
public $valueTypePtr = null;
public function __construct($vals = null)
{
if (is_array($vals)) {
if (isset($vals['keyTypePtr'])) {
$this->keyTypePtr = $vals['keyTypePtr'];
}
if (isset($vals['valueTypePtr'])) {
$this->valueTypePtr = $vals['valueTypePtr'];
}
}
}
public function getName()
{
return 'TMapTypeEntry';
}
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::I32) {
$xfer += $input->readI32($this->keyTypePtr);
} else {
$xfer += $input->skip($ftype);
}
break;
case 2:
if ($ftype == TType::I32) {
$xfer += $input->readI32($this->valueTypePtr);
} 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('TMapTypeEntry');
if ($this->keyTypePtr !== null) {
$xfer += $output->writeFieldBegin('keyTypePtr', TType::I32, 1);
$xfer += $output->writeI32($this->keyTypePtr);
$xfer += $output->writeFieldEnd();
}
if ($this->valueTypePtr !== null) {
$xfer += $output->writeFieldBegin('valueTypePtr', TType::I32, 2);
$xfer += $output->writeI32($this->valueTypePtr);
$xfer += $output->writeFieldEnd();
}
$xfer += $output->writeFieldStop();
$xfer += $output->writeStructEnd();
return $xfer;
}
}