123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409 |
- <?php
- namespace OpenSearch\Generated\Summary;
- /**
- * Autogenerated by Thrift Compiler (0.10.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;
- interface SummaryServiceIf {
- /**
- * @param string $appId
- * @param string $group
- * @return \OpenSearch\Generated\Summary\Summary[]
- * @throws \OpenSearch\Generated\Common\OpenSearchException
- * @throws \OpenSearch\Generated\Common\OpenSearchClientException
- */
- public function listByAppIdAndGroup($appId, $group);
- }
- class SummaryServiceClient implements \OpenSearch\Generated\Summary\SummaryServiceIf {
- protected $input_ = null;
- protected $output_ = null;
- protected $seqid_ = 0;
- public function __construct($input, $output=null) {
- $this->input_ = $input;
- $this->output_ = $output ? $output : $input;
- }
- public function listByAppIdAndGroup($appId, $group)
- {
- $this->send_listByAppIdAndGroup($appId, $group);
- return $this->recv_listByAppIdAndGroup();
- }
- public function send_listByAppIdAndGroup($appId, $group)
- {
- $args = new \OpenSearch\Generated\Summary\SummaryService_listByAppIdAndGroup_args();
- $args->appId = $appId;
- $args->group = $group;
- $bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
- if ($bin_accel)
- {
- thrift_protocol_write_binary($this->output_, 'listByAppIdAndGroup', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
- }
- else
- {
- $this->output_->writeMessageBegin('listByAppIdAndGroup', TMessageType::CALL, $this->seqid_);
- $args->write($this->output_);
- $this->output_->writeMessageEnd();
- $this->output_->getTransport()->flush();
- }
- }
- public function recv_listByAppIdAndGroup()
- {
- $bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
- if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\OpenSearch\Generated\Summary\SummaryService_listByAppIdAndGroup_result', $this->input_->isStrictRead());
- else
- {
- $rseqid = 0;
- $fname = null;
- $mtype = 0;
- $this->input_->readMessageBegin($fname, $mtype, $rseqid);
- if ($mtype == TMessageType::EXCEPTION) {
- $x = new TApplicationException();
- $x->read($this->input_);
- $this->input_->readMessageEnd();
- throw $x;
- }
- $result = new \OpenSearch\Generated\Summary\SummaryService_listByAppIdAndGroup_result();
- $result->read($this->input_);
- $this->input_->readMessageEnd();
- }
- if ($result->success !== null) {
- return $result->success;
- }
- if ($result->error !== null) {
- throw $result->error;
- }
- if ($result->e !== null) {
- throw $result->e;
- }
- throw new \Exception("listByAppIdAndGroup failed: unknown result");
- }
- }
- // HELPER FUNCTIONS AND STRUCTURES
- class SummaryService_listByAppIdAndGroup_args {
- static $_TSPEC;
- /**
- * @var string
- */
- public $appId = null;
- /**
- * @var string
- */
- public $group = null;
- public function __construct($vals=null) {
- if (!isset(self::$_TSPEC)) {
- self::$_TSPEC = array(
- 1 => array(
- 'var' => 'appId',
- 'type' => TType::STRING,
- ),
- 2 => array(
- 'var' => 'group',
- 'type' => TType::STRING,
- ),
- );
- }
- if (is_array($vals)) {
- if (isset($vals['appId'])) {
- $this->appId = $vals['appId'];
- }
- if (isset($vals['group'])) {
- $this->group = $vals['group'];
- }
- }
- }
- public function getName() {
- return 'SummaryService_listByAppIdAndGroup_args';
- }
- 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::STRING) {
- $xfer += $input->readString($this->appId);
- } else {
- $xfer += $input->skip($ftype);
- }
- break;
- case 2:
- if ($ftype == TType::STRING) {
- $xfer += $input->readString($this->group);
- } 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('SummaryService_listByAppIdAndGroup_args');
- if ($this->appId !== null) {
- $xfer += $output->writeFieldBegin('appId', TType::STRING, 1);
- $xfer += $output->writeString($this->appId);
- $xfer += $output->writeFieldEnd();
- }
- if ($this->group !== null) {
- $xfer += $output->writeFieldBegin('group', TType::STRING, 2);
- $xfer += $output->writeString($this->group);
- $xfer += $output->writeFieldEnd();
- }
- $xfer += $output->writeFieldStop();
- $xfer += $output->writeStructEnd();
- return $xfer;
- }
- }
- class SummaryService_listByAppIdAndGroup_result {
- static $_TSPEC;
- /**
- * @var \OpenSearch\Generated\Summary\Summary[]
- */
- public $success = null;
- /**
- * @var \OpenSearch\Generated\Common\OpenSearchException
- */
- public $error = null;
- /**
- * @var \OpenSearch\Generated\Common\OpenSearchClientException
- */
- public $e = null;
- public function __construct($vals=null) {
- if (!isset(self::$_TSPEC)) {
- self::$_TSPEC = array(
- 0 => array(
- 'var' => 'success',
- 'type' => TType::LST,
- 'etype' => TType::STRUCT,
- 'elem' => array(
- 'type' => TType::STRUCT,
- 'class' => '\OpenSearch\Generated\Summary\Summary',
- ),
- ),
- 1 => array(
- 'var' => 'error',
- 'type' => TType::STRUCT,
- 'class' => '\OpenSearch\Generated\Common\OpenSearchException',
- ),
- 2 => array(
- 'var' => 'e',
- 'type' => TType::STRUCT,
- 'class' => '\OpenSearch\Generated\Common\OpenSearchClientException',
- ),
- );
- }
- if (is_array($vals)) {
- if (isset($vals['success'])) {
- $this->success = $vals['success'];
- }
- if (isset($vals['error'])) {
- $this->error = $vals['error'];
- }
- if (isset($vals['e'])) {
- $this->e = $vals['e'];
- }
- }
- }
- public function getName() {
- return 'SummaryService_listByAppIdAndGroup_result';
- }
- 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 0:
- if ($ftype == TType::LST) {
- $this->success = array();
- $_size0 = 0;
- $_etype3 = 0;
- $xfer += $input->readListBegin($_etype3, $_size0);
- for ($_i4 = 0; $_i4 < $_size0; ++$_i4)
- {
- $elem5 = null;
- $elem5 = new \OpenSearch\Generated\Summary\Summary();
- $xfer += $elem5->read($input);
- $this->success []= $elem5;
- }
- $xfer += $input->readListEnd();
- } else {
- $xfer += $input->skip($ftype);
- }
- break;
- case 1:
- if ($ftype == TType::STRUCT) {
- $this->error = new \OpenSearch\Generated\Common\OpenSearchException();
- $xfer += $this->error->read($input);
- } else {
- $xfer += $input->skip($ftype);
- }
- break;
- case 2:
- if ($ftype == TType::STRUCT) {
- $this->e = new \OpenSearch\Generated\Common\OpenSearchClientException();
- $xfer += $this->e->read($input);
- } 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('SummaryService_listByAppIdAndGroup_result');
- if ($this->success !== null) {
- if (!is_array($this->success)) {
- throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA);
- }
- $xfer += $output->writeFieldBegin('success', TType::LST, 0);
- {
- $output->writeListBegin(TType::STRUCT, count($this->success));
- {
- foreach ($this->success as $iter6)
- {
- $xfer += $iter6->write($output);
- }
- }
- $output->writeListEnd();
- }
- $xfer += $output->writeFieldEnd();
- }
- if ($this->error !== null) {
- $xfer += $output->writeFieldBegin('error', TType::STRUCT, 1);
- $xfer += $this->error->write($output);
- $xfer += $output->writeFieldEnd();
- }
- if ($this->e !== null) {
- $xfer += $output->writeFieldBegin('e', TType::STRUCT, 2);
- $xfer += $this->e->write($output);
- $xfer += $output->writeFieldEnd();
- }
- $xfer += $output->writeFieldStop();
- $xfer += $output->writeStructEnd();
- return $xfer;
- }
- }
- class SummaryServiceProcessor {
- protected $handler_ = null;
- public function __construct($handler) {
- $this->handler_ = $handler;
- }
- public function process($input, $output) {
- $rseqid = 0;
- $fname = null;
- $mtype = 0;
- $input->readMessageBegin($fname, $mtype, $rseqid);
- $methodname = 'process_'.$fname;
- if (!method_exists($this, $methodname)) {
- $input->skip(TType::STRUCT);
- $input->readMessageEnd();
- $x = new TApplicationException('Function '.$fname.' not implemented.', TApplicationException::UNKNOWN_METHOD);
- $output->writeMessageBegin($fname, TMessageType::EXCEPTION, $rseqid);
- $x->write($output);
- $output->writeMessageEnd();
- $output->getTransport()->flush();
- return;
- }
- $this->$methodname($rseqid, $input, $output);
- return true;
- }
- protected function process_listByAppIdAndGroup($seqid, $input, $output) {
- $args = new \OpenSearch\Generated\Summary\SummaryService_listByAppIdAndGroup_args();
- $args->read($input);
- $input->readMessageEnd();
- $result = new \OpenSearch\Generated\Summary\SummaryService_listByAppIdAndGroup_result();
- try {
- $result->success = $this->handler_->listByAppIdAndGroup($args->appId, $args->group);
- } catch (\OpenSearch\Generated\Common\OpenSearchException $error) {
- $result->error = $error;
- } catch (\OpenSearch\Generated\Common\OpenSearchClientException $e) {
- $result->e = $e;
- }
- $bin_accel = ($output instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
- if ($bin_accel)
- {
- thrift_protocol_write_binary($output, 'listByAppIdAndGroup', TMessageType::REPLY, $result, $seqid, $output->isStrictWrite());
- }
- else
- {
- $output->writeMessageBegin('listByAppIdAndGroup', TMessageType::REPLY, $seqid);
- $result->write($output);
- $output->writeMessageEnd();
- $output->getTransport()->flush();
- }
- }
- }
|