BehaviorCollectionService.php 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  1. <?php
  2. namespace OpenSearch\Generated\BehaviorCollection;
  3. /**
  4. * Autogenerated by Thrift Compiler (0.9.3)
  5. *
  6. * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
  7. * @generated
  8. */
  9. use Thrift\Base\TBase;
  10. use Thrift\Type\TType;
  11. use Thrift\Type\TMessageType;
  12. use Thrift\Exception\TException;
  13. use Thrift\Exception\TProtocolException;
  14. use Thrift\Protocol\TProtocol;
  15. use Thrift\Protocol\TBinaryProtocolAccelerated;
  16. use Thrift\Exception\TApplicationException;
  17. /**
  18. * @deprecated
  19. */
  20. interface BehaviorCollectionServiceIf {
  21. /**
  22. * @param string $recordsJson
  23. * @param string $searchAppName
  24. * @param string $behaviorCollectionName
  25. * @return \OpenSearch\Generated\Common\OpenSearchResult
  26. * @throws \OpenSearch\Generated\Common\OpenSearchException
  27. * @throws \OpenSearch\Generated\Common\OpenSearchClientException
  28. */
  29. public function push($recordsJson, $searchAppName, $behaviorCollectionName);
  30. }
  31. /**
  32. * @deprecated
  33. */
  34. class BehaviorCollectionServiceClient implements \OpenSearch\Generated\BehaviorCollection\BehaviorCollectionServiceIf {
  35. protected $input_ = null;
  36. protected $output_ = null;
  37. protected $seqid_ = 0;
  38. public function __construct($input, $output=null) {
  39. $this->input_ = $input;
  40. $this->output_ = $output ? $output : $input;
  41. }
  42. public function push($recordsJson, $searchAppName, $behaviorCollectionName)
  43. {
  44. $this->send_push($recordsJson, $searchAppName, $behaviorCollectionName);
  45. return $this->recv_push();
  46. }
  47. public function send_push($recordsJson, $searchAppName, $behaviorCollectionName)
  48. {
  49. $args = new \BehaviorCollectionService_push_args();
  50. $args->recordsJson = $recordsJson;
  51. $args->searchAppName = $searchAppName;
  52. $args->behaviorCollectionName = $behaviorCollectionName;
  53. $bin_accel = ($this->output_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_write_binary');
  54. if ($bin_accel)
  55. {
  56. thrift_protocol_write_binary($this->output_, 'push', TMessageType::CALL, $args, $this->seqid_, $this->output_->isStrictWrite());
  57. }
  58. else
  59. {
  60. $this->output_->writeMessageBegin('push', TMessageType::CALL, $this->seqid_);
  61. $args->write($this->output_);
  62. $this->output_->writeMessageEnd();
  63. $this->output_->getTransport()->flush();
  64. }
  65. }
  66. public function recv_push()
  67. {
  68. $bin_accel = ($this->input_ instanceof TBinaryProtocolAccelerated) && function_exists('thrift_protocol_read_binary');
  69. if ($bin_accel) $result = thrift_protocol_read_binary($this->input_, '\BehaviorCollectionService_push_result', $this->input_->isStrictRead());
  70. else
  71. {
  72. $rseqid = 0;
  73. $fname = null;
  74. $mtype = 0;
  75. $this->input_->readMessageBegin($fname, $mtype, $rseqid);
  76. if ($mtype == TMessageType::EXCEPTION) {
  77. $x = new TApplicationException();
  78. $x->read($this->input_);
  79. $this->input_->readMessageEnd();
  80. throw $x;
  81. }
  82. $result = new \BehaviorCollectionService_push_result();
  83. $result->read($this->input_);
  84. $this->input_->readMessageEnd();
  85. }
  86. if ($result->success !== null) {
  87. return $result->success;
  88. }
  89. if ($result->error !== null) {
  90. throw $result->error;
  91. }
  92. if ($result->e !== null) {
  93. throw $result->e;
  94. }
  95. throw new \Exception("push failed: unknown result");
  96. }
  97. }
  98. // HELPER FUNCTIONS AND STRUCTURES
  99. /**
  100. * @deprecated
  101. */
  102. class BehaviorCollectionService_push_args {
  103. static $_TSPEC;
  104. /**
  105. * @var string
  106. */
  107. public $recordsJson = null;
  108. /**
  109. * @var string
  110. */
  111. public $searchAppName = null;
  112. /**
  113. * @var string
  114. */
  115. public $behaviorCollectionName = null;
  116. public function __construct($vals=null) {
  117. if (!isset(self::$_TSPEC)) {
  118. self::$_TSPEC = array(
  119. 1 => array(
  120. 'var' => 'recordsJson',
  121. 'type' => TType::STRING,
  122. ),
  123. 2 => array(
  124. 'var' => 'searchAppName',
  125. 'type' => TType::STRING,
  126. ),
  127. 3 => array(
  128. 'var' => 'behaviorCollectionName',
  129. 'type' => TType::STRING,
  130. ),
  131. );
  132. }
  133. if (is_array($vals)) {
  134. if (isset($vals['recordsJson'])) {
  135. $this->recordsJson = $vals['recordsJson'];
  136. }
  137. if (isset($vals['searchAppName'])) {
  138. $this->searchAppName = $vals['searchAppName'];
  139. }
  140. if (isset($vals['behaviorCollectionName'])) {
  141. $this->behaviorCollectionName = $vals['behaviorCollectionName'];
  142. }
  143. }
  144. }
  145. public function getName() {
  146. return 'BehaviorCollectionService_push_args';
  147. }
  148. public function read($input)
  149. {
  150. $xfer = 0;
  151. $fname = null;
  152. $ftype = 0;
  153. $fid = 0;
  154. $xfer += $input->readStructBegin($fname);
  155. while (true)
  156. {
  157. $xfer += $input->readFieldBegin($fname, $ftype, $fid);
  158. if ($ftype == TType::STOP) {
  159. break;
  160. }
  161. switch ($fid)
  162. {
  163. case 1:
  164. if ($ftype == TType::STRING) {
  165. $xfer += $input->readString($this->recordsJson);
  166. } else {
  167. $xfer += $input->skip($ftype);
  168. }
  169. break;
  170. case 2:
  171. if ($ftype == TType::STRING) {
  172. $xfer += $input->readString($this->searchAppName);
  173. } else {
  174. $xfer += $input->skip($ftype);
  175. }
  176. break;
  177. case 3:
  178. if ($ftype == TType::STRING) {
  179. $xfer += $input->readString($this->behaviorCollectionName);
  180. } else {
  181. $xfer += $input->skip($ftype);
  182. }
  183. break;
  184. default:
  185. $xfer += $input->skip($ftype);
  186. break;
  187. }
  188. $xfer += $input->readFieldEnd();
  189. }
  190. $xfer += $input->readStructEnd();
  191. return $xfer;
  192. }
  193. public function write($output) {
  194. $xfer = 0;
  195. $xfer += $output->writeStructBegin('BehaviorCollectionService_push_args');
  196. if ($this->recordsJson !== null) {
  197. $xfer += $output->writeFieldBegin('recordsJson', TType::STRING, 1);
  198. $xfer += $output->writeString($this->recordsJson);
  199. $xfer += $output->writeFieldEnd();
  200. }
  201. if ($this->searchAppName !== null) {
  202. $xfer += $output->writeFieldBegin('searchAppName', TType::STRING, 2);
  203. $xfer += $output->writeString($this->searchAppName);
  204. $xfer += $output->writeFieldEnd();
  205. }
  206. if ($this->behaviorCollectionName !== null) {
  207. $xfer += $output->writeFieldBegin('behaviorCollectionName', TType::STRING, 3);
  208. $xfer += $output->writeString($this->behaviorCollectionName);
  209. $xfer += $output->writeFieldEnd();
  210. }
  211. $xfer += $output->writeFieldStop();
  212. $xfer += $output->writeStructEnd();
  213. return $xfer;
  214. }
  215. }
  216. /**
  217. * @deprecated
  218. */
  219. class BehaviorCollectionService_push_result {
  220. static $_TSPEC;
  221. /**
  222. * @var \Generated\Common\OpenSearchResult
  223. */
  224. public $success = null;
  225. /**
  226. * @var \Generated\Common\OpenSearchException
  227. */
  228. public $error = null;
  229. /**
  230. * @var \Generated\Common\OpenSearchClientException
  231. */
  232. public $e = null;
  233. public function __construct($vals=null) {
  234. if (!isset(self::$_TSPEC)) {
  235. self::$_TSPEC = array(
  236. 0 => array(
  237. 'var' => 'success',
  238. 'type' => TType::STRUCT,
  239. 'class' => '\Generated\Common\OpenSearchResult',
  240. ),
  241. 1 => array(
  242. 'var' => 'error',
  243. 'type' => TType::STRUCT,
  244. 'class' => '\Generated\Common\OpenSearchException',
  245. ),
  246. 2 => array(
  247. 'var' => 'e',
  248. 'type' => TType::STRUCT,
  249. 'class' => '\Generated\Common\OpenSearchClientException',
  250. ),
  251. );
  252. }
  253. if (is_array($vals)) {
  254. if (isset($vals['success'])) {
  255. $this->success = $vals['success'];
  256. }
  257. if (isset($vals['error'])) {
  258. $this->error = $vals['error'];
  259. }
  260. if (isset($vals['e'])) {
  261. $this->e = $vals['e'];
  262. }
  263. }
  264. }
  265. public function getName() {
  266. return 'BehaviorCollectionService_push_result';
  267. }
  268. public function read($input)
  269. {
  270. $xfer = 0;
  271. $fname = null;
  272. $ftype = 0;
  273. $fid = 0;
  274. $xfer += $input->readStructBegin($fname);
  275. while (true)
  276. {
  277. $xfer += $input->readFieldBegin($fname, $ftype, $fid);
  278. if ($ftype == TType::STOP) {
  279. break;
  280. }
  281. switch ($fid)
  282. {
  283. case 0:
  284. if ($ftype == TType::STRUCT) {
  285. $this->success = new \Generated\Common\OpenSearchResult();
  286. $xfer += $this->success->read($input);
  287. } else {
  288. $xfer += $input->skip($ftype);
  289. }
  290. break;
  291. case 1:
  292. if ($ftype == TType::STRUCT) {
  293. $this->error = new \Generated\Common\OpenSearchException();
  294. $xfer += $this->error->read($input);
  295. } else {
  296. $xfer += $input->skip($ftype);
  297. }
  298. break;
  299. case 2:
  300. if ($ftype == TType::STRUCT) {
  301. $this->e = new \Generated\Common\OpenSearchClientException();
  302. $xfer += $this->e->read($input);
  303. } else {
  304. $xfer += $input->skip($ftype);
  305. }
  306. break;
  307. default:
  308. $xfer += $input->skip($ftype);
  309. break;
  310. }
  311. $xfer += $input->readFieldEnd();
  312. }
  313. $xfer += $input->readStructEnd();
  314. return $xfer;
  315. }
  316. public function write($output) {
  317. $xfer = 0;
  318. $xfer += $output->writeStructBegin('BehaviorCollectionService_push_result');
  319. if ($this->success !== null) {
  320. if (!is_object($this->success)) {
  321. throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA);
  322. }
  323. $xfer += $output->writeFieldBegin('success', TType::STRUCT, 0);
  324. $xfer += $this->success->write($output);
  325. $xfer += $output->writeFieldEnd();
  326. }
  327. if ($this->error !== null) {
  328. $xfer += $output->writeFieldBegin('error', TType::STRUCT, 1);
  329. $xfer += $this->error->write($output);
  330. $xfer += $output->writeFieldEnd();
  331. }
  332. if ($this->e !== null) {
  333. $xfer += $output->writeFieldBegin('e', TType::STRUCT, 2);
  334. $xfer += $this->e->write($output);
  335. $xfer += $output->writeFieldEnd();
  336. }
  337. $xfer += $output->writeFieldStop();
  338. $xfer += $output->writeStructEnd();
  339. return $xfer;
  340. }
  341. }