DataCollectionService.php 11 KB

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