Predis.php 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898
  1. <?php
  2. namespace Predis;
  3. use Predis\Shared\Utils, Predis\Distribution\IDistributionStrategy;
  4. class PredisException extends \Exception { }
  5. class ClientException extends PredisException { } // Client-side errors
  6. class AbortedMultiExec extends PredisException { } // Aborted multi/exec
  7. class ServerException extends PredisException { // Server-side errors
  8. public function toResponseError() {
  9. return new ResponseError($this->getMessage());
  10. }
  11. }
  12. class CommunicationException extends PredisException { // Communication errors
  13. private $_connection;
  14. public function __construct(IConnectionSingle $connection,
  15. $message = null, $code = null) {
  16. $this->_connection = $connection;
  17. parent::__construct($message, $code);
  18. }
  19. public function getConnection() { return $this->_connection; }
  20. public function shouldResetConnection() { return true; }
  21. }
  22. class MalformedServerResponse extends CommunicationException { } // Unexpected responses
  23. /* ------------------------------------------------------------------------- */
  24. class Client {
  25. private $_options, $_connection, $_serverProfile, $_responseReader;
  26. public function __construct($parameters = null, $clientOptions = null) {
  27. $this->setupClient($clientOptions ?: new ClientOptions());
  28. $this->setupConnection($parameters);
  29. }
  30. private static function filterClientOptions($options) {
  31. if ($options instanceof ClientOptions) {
  32. return $options;
  33. }
  34. if (is_array($options)) {
  35. return new ClientOptions($options);
  36. }
  37. if ($options instanceof RedisServerProfile) {
  38. return new ClientOptions(array(
  39. 'profile' => $options
  40. ));
  41. }
  42. if (is_string($options)) {
  43. return new ClientOptions(array(
  44. 'profile' => RedisServerProfile::get($options)
  45. ));
  46. }
  47. throw new \InvalidArgumentException("Invalid type for client options");
  48. }
  49. private function setupClient($options) {
  50. $this->_responseReader = new ResponseReader();
  51. $this->_options = self::filterClientOptions($options);
  52. $this->setProfile($this->_options->profile);
  53. if ($this->_options->iterable_multibulk === true) {
  54. $this->_responseReader->setHandler(
  55. Protocol::PREFIX_MULTI_BULK,
  56. new ResponseMultiBulkStreamHandler()
  57. );
  58. }
  59. if ($this->_options->throw_on_error === false) {
  60. $this->_responseReader->setHandler(
  61. Protocol::PREFIX_ERROR,
  62. new ResponseErrorSilentHandler()
  63. );
  64. }
  65. }
  66. private function setupConnection($parameters) {
  67. if ($parameters === null) {
  68. return $this->setConnection($this->createConnection(null));
  69. }
  70. if (!(is_array($parameters) || is_string($parameters) || $parameters instanceof IConnection
  71. || $parameters instanceof ConnectionParameters)) {
  72. throw new \InvalidArgumentException(
  73. 'Array, String, Predis\ConnectionParameters or Predis\IConnection expected'
  74. );
  75. }
  76. if (is_array($parameters) && isset($parameters[0])) {
  77. $cluster = new ConnectionCluster($this->_options->key_distribution);
  78. foreach ($parameters as $shardParams) {
  79. $cluster->add($this->createConnection($shardParams));
  80. }
  81. $this->setConnection($cluster);
  82. }
  83. else {
  84. $this->setConnection($this->createConnection($parameters));
  85. }
  86. }
  87. private function createConnection($parameters) {
  88. $params = null;
  89. $connection = null;
  90. if ($parameters instanceof IConnectionSingle) {
  91. $connection = $parameters;
  92. $params = $connection->getParameters();
  93. }
  94. else {
  95. $params = $parameters instanceof ConnectionParameters
  96. ? $parameters
  97. : new ConnectionParameters($parameters);
  98. $connection = ConnectionFactory::create($params, $this->_responseReader);
  99. }
  100. return $this->pushInitCommands($connection, $params);
  101. }
  102. private function pushInitCommands(IConnectionSingle $connection, ConnectionParameters $params) {
  103. if (isset($params->password)) {
  104. $connection->pushInitCommand($this->createCommand(
  105. 'auth', array($params->password)
  106. ));
  107. }
  108. if (isset($params->database)) {
  109. $connection->pushInitCommand($this->createCommand(
  110. 'select', array($params->database)
  111. ));
  112. }
  113. return $connection;
  114. }
  115. private function setConnection(IConnection $connection) {
  116. $this->_connection = $connection;
  117. }
  118. public function setProfile($serverProfile) {
  119. if (!($serverProfile instanceof RedisServerProfile || is_string($serverProfile))) {
  120. throw new \InvalidArgumentException(
  121. "Invalid type for server profile, \Predis\RedisServerProfile or string expected"
  122. );
  123. }
  124. $this->_serverProfile = (is_string($serverProfile)
  125. ? RedisServerProfile::get($serverProfile)
  126. : $serverProfile
  127. );
  128. }
  129. public function getProfile() {
  130. return $this->_serverProfile;
  131. }
  132. public function getResponseReader() {
  133. return $this->_responseReader;
  134. }
  135. public function getClientFor($connectionAlias) {
  136. if (!Utils::isCluster($this->_connection)) {
  137. throw new ClientException(
  138. 'This method is supported only when the client is connected to a cluster of connections'
  139. );
  140. }
  141. $connection = $this->_connection->getConnectionById($connectionAlias);
  142. if ($connection === null) {
  143. throw new \InvalidArgumentException(
  144. "Invalid connection alias: '$connectionAlias'"
  145. );
  146. }
  147. $newClient = new Client();
  148. $newClient->setupClient($this->_options);
  149. $newClient->setConnection($connection);
  150. return $newClient;
  151. }
  152. public function connect() {
  153. $this->_connection->connect();
  154. }
  155. public function disconnect() {
  156. $this->_connection->disconnect();
  157. }
  158. public function isConnected() {
  159. return $this->_connection->isConnected();
  160. }
  161. public function getConnection($id = null) {
  162. if (!isset($id)) {
  163. return $this->_connection;
  164. }
  165. else {
  166. return Utils::isCluster($this->_connection)
  167. ? $this->_connection->getConnectionById($id)
  168. : $this->_connection;
  169. }
  170. }
  171. public function __call($method, $arguments) {
  172. $command = $this->_serverProfile->createCommand($method, $arguments);
  173. return $this->_connection->executeCommand($command);
  174. }
  175. public function createCommand($method, $arguments = array()) {
  176. return $this->_serverProfile->createCommand($method, $arguments);
  177. }
  178. public function executeCommand(ICommand $command) {
  179. return $this->_connection->executeCommand($command);
  180. }
  181. public function executeCommandOnShards(ICommand $command) {
  182. $replies = array();
  183. if (Utils::isCluster($this->_connection)) {
  184. foreach($this->_connection as $connection) {
  185. $replies[] = $connection->executeCommand($command);
  186. }
  187. }
  188. else {
  189. $replies[] = $this->_connection->executeCommand($command);
  190. }
  191. return $replies;
  192. }
  193. private function sharedInitializer($argv, $initializer) {
  194. $argc = count($argv);
  195. if ($argc === 0) {
  196. return $this->$initializer();
  197. }
  198. else if ($argc === 1) {
  199. list($arg0) = $argv;
  200. return is_array($arg0) ? $this->$initializer($arg0) : $this->$initializer(null, $arg0);
  201. }
  202. else if ($argc === 2) {
  203. list($arg0, $arg1) = $argv;
  204. return $this->$initializer($arg0, $arg1);
  205. }
  206. return $this->$initializer($this, $arguments);
  207. }
  208. public function pipeline(/* arguments */) {
  209. return $this->sharedInitializer(func_get_args(), 'initPipeline');
  210. }
  211. private function initPipeline(Array $options = null, $pipelineBlock = null) {
  212. $pipeline = null;
  213. if (isset($options)) {
  214. if (isset($options['safe']) && $options['safe'] == true) {
  215. $connection = $this->getConnection();
  216. $pipeline = new CommandPipeline($this, $connection instanceof Connection
  217. ? new Pipeline\SafeExecutor($connection)
  218. : new Pipeline\SafeClusterExecutor($connection)
  219. );
  220. }
  221. else {
  222. $pipeline = new CommandPipeline($this);
  223. }
  224. }
  225. else {
  226. $pipeline = new CommandPipeline($this);
  227. }
  228. return $this->pipelineExecute($pipeline, $pipelineBlock);
  229. }
  230. private function pipelineExecute(CommandPipeline $pipeline, $block) {
  231. return $block !== null ? $pipeline->execute($block) : $pipeline;
  232. }
  233. public function multiExec(/* arguments */) {
  234. return $this->sharedInitializer(func_get_args(), 'multiExec');
  235. }
  236. private function initMultiExec(Array $options = null, $transBlock = null) {
  237. $multi = isset($options) ? new MultiExecBlock($this, $options) : new MultiExecBlock($this);
  238. return $transBlock !== null ? $multi->execute($transBlock) : $multi;
  239. }
  240. public function pubSubContext() {
  241. return new PubSubContext($this);
  242. }
  243. }
  244. /* ------------------------------------------------------------------------- */
  245. interface IClientOptionsHandler {
  246. public function validate($option, $value);
  247. public function getDefault();
  248. }
  249. class ClientOptionsProfile implements IClientOptionsHandler {
  250. public function validate($option, $value) {
  251. if ($value instanceof RedisServerProfile) {
  252. return $value;
  253. }
  254. if (is_string($value)) {
  255. return RedisServerProfile::get($value);
  256. }
  257. throw new \InvalidArgumentException("Invalid value for option $option");
  258. }
  259. public function getDefault() {
  260. return RedisServerProfile::getDefault();
  261. }
  262. }
  263. class ClientOptionsKeyDistribution implements IClientOptionsHandler {
  264. public function validate($option, $value) {
  265. if ($value instanceof IDistributionStrategy) {
  266. return $value;
  267. }
  268. if (is_string($value)) {
  269. $valueReflection = new \ReflectionClass($value);
  270. if ($valueReflection->isSubclassOf('\Predis\Distribution\IDistributionStrategy')) {
  271. return new $value;
  272. }
  273. }
  274. throw new \InvalidArgumentException("Invalid value for option $option");
  275. }
  276. public function getDefault() {
  277. return new Distribution\HashRing();
  278. }
  279. }
  280. class ClientOptionsIterableMultiBulk implements IClientOptionsHandler {
  281. public function validate($option, $value) {
  282. return (bool) $value;
  283. }
  284. public function getDefault() {
  285. return false;
  286. }
  287. }
  288. class ClientOptionsThrowOnError implements IClientOptionsHandler {
  289. public function validate($option, $value) {
  290. return (bool) $value;
  291. }
  292. public function getDefault() {
  293. return true;
  294. }
  295. }
  296. class ClientOptions {
  297. private static $_optionsHandlers;
  298. private $_options;
  299. public function __construct($options = null) {
  300. self::initializeOptionsHandlers();
  301. $this->initializeOptions($options ?: array());
  302. }
  303. private static function initializeOptionsHandlers() {
  304. if (!isset(self::$_optionsHandlers)) {
  305. self::$_optionsHandlers = self::getOptionsHandlers();
  306. }
  307. }
  308. private static function getOptionsHandlers() {
  309. return array(
  310. 'profile' => new ClientOptionsProfile(),
  311. 'key_distribution' => new ClientOptionsKeyDistribution(),
  312. 'iterable_multibulk' => new ClientOptionsIterableMultiBulk(),
  313. 'throw_on_error' => new ClientOptionsThrowOnError(),
  314. );
  315. }
  316. private function initializeOptions($options) {
  317. foreach ($options as $option => $value) {
  318. if (isset(self::$_optionsHandlers[$option])) {
  319. $handler = self::$_optionsHandlers[$option];
  320. $this->_options[$option] = $handler->validate($option, $value);
  321. }
  322. }
  323. }
  324. public function __get($option) {
  325. if (!isset($this->_options[$option])) {
  326. $defaultValue = self::$_optionsHandlers[$option]->getDefault();
  327. $this->_options[$option] = $defaultValue;
  328. }
  329. return $this->_options[$option];
  330. }
  331. public function __isset($option) {
  332. return isset(self::$_optionsHandlers[$option]);
  333. }
  334. }
  335. /* ------------------------------------------------------------------------- */
  336. class Protocol {
  337. const NEWLINE = "\r\n";
  338. const OK = 'OK';
  339. const ERROR = 'ERR';
  340. const QUEUED = 'QUEUED';
  341. const NULL = 'nil';
  342. const PREFIX_STATUS = '+';
  343. const PREFIX_ERROR = '-';
  344. const PREFIX_INTEGER = ':';
  345. const PREFIX_BULK = '$';
  346. const PREFIX_MULTI_BULK = '*';
  347. }
  348. interface ICommand {
  349. public function getCommandId();
  350. public function canBeHashed();
  351. public function closesConnection();
  352. public function getHash(IDistributionStrategy $distributor);
  353. public function setArgumentsArray(Array $arguments);
  354. public function getArguments();
  355. public function parseResponse($data);
  356. public function serialize();
  357. }
  358. abstract class Command implements ICommand {
  359. private $_arguments, $_hash;
  360. protected function serializeRequest($command, $arguments) {
  361. $newline = Protocol::NEWLINE;
  362. $cmdlen = strlen($command);
  363. $reqlen = count($arguments) + 1;
  364. $buffer = "*{$reqlen}{$newline}\${$cmdlen}{$newline}{$command}{$newline}";
  365. foreach ($arguments as $argument) {
  366. $arglen = strlen($argument);
  367. $buffer .= "\${$arglen}{$newline}{$argument}{$newline}";
  368. }
  369. return $buffer;
  370. }
  371. public function canBeHashed() {
  372. return true;
  373. }
  374. public function getHash(IDistributionStrategy $distributor) {
  375. if (isset($this->_hash)) {
  376. return $this->_hash;
  377. }
  378. else {
  379. if (isset($this->_arguments[0])) {
  380. // TODO: should we throw an exception if the command does
  381. // not support sharding?
  382. $key = $this->_arguments[0];
  383. $start = strpos($key, '{');
  384. $end = strpos($key, '}');
  385. if ($start !== false && $end !== false) {
  386. $key = substr($key, ++$start, $end - $start);
  387. }
  388. $this->_hash = $distributor->generateKey($key);
  389. return $this->_hash;
  390. }
  391. }
  392. return null;
  393. }
  394. public function closesConnection() {
  395. return false;
  396. }
  397. protected function filterArguments(Array $arguments) {
  398. return $arguments;
  399. }
  400. public function setArguments(/* arguments */) {
  401. $this->_arguments = $this->filterArguments(func_get_args());
  402. unset($this->_hash);
  403. }
  404. public function setArgumentsArray(Array $arguments) {
  405. $this->_arguments = $this->filterArguments($arguments);
  406. unset($this->_hash);
  407. }
  408. public function getArguments() {
  409. return isset($this->_arguments) ? $this->_arguments : array();
  410. }
  411. public function getArgument($index = 0) {
  412. return isset($this->_arguments[$index]) ? $this->_arguments[$index] : null;
  413. }
  414. public function parseResponse($data) {
  415. return $data;
  416. }
  417. public final function serialize() {
  418. return $this->serializeRequest($this->getCommandId(), $this->getArguments());
  419. }
  420. }
  421. /* ------------------------------------------------------------------------- */
  422. interface IResponseHandler {
  423. function handle(IConnectionSingle $connection, $payload);
  424. }
  425. class ResponseStatusHandler implements IResponseHandler {
  426. public function handle(IConnectionSingle $connection, $status) {
  427. if ($status === Protocol::OK) {
  428. return true;
  429. }
  430. else if ($status === Protocol::QUEUED) {
  431. return new ResponseQueued();
  432. }
  433. return $status;
  434. }
  435. }
  436. class ResponseErrorHandler implements IResponseHandler {
  437. public function handle(IConnectionSingle $connection, $errorMessage) {
  438. throw new ServerException(substr($errorMessage, 4));
  439. }
  440. }
  441. class ResponseErrorSilentHandler implements IResponseHandler {
  442. public function handle(IConnectionSingle $connection, $errorMessage) {
  443. return new ResponseError(substr($errorMessage, 4));
  444. }
  445. }
  446. class ResponseBulkHandler implements IResponseHandler {
  447. public function handle(IConnectionSingle $connection, $dataLength) {
  448. if (!is_numeric($dataLength)) {
  449. Utils::onCommunicationException(new MalformedServerResponse(
  450. $connection, "Cannot parse '$dataLength' as data length"
  451. ));
  452. }
  453. if ($dataLength > 0) {
  454. $value = $connection->readBytes($dataLength);
  455. self::discardNewLine($connection);
  456. return $value;
  457. }
  458. else if ($dataLength == 0) {
  459. self::discardNewLine($connection);
  460. return '';
  461. }
  462. return null;
  463. }
  464. private static function discardNewLine(IConnectionSingle $connection) {
  465. if ($connection->readBytes(2) !== Protocol::NEWLINE) {
  466. Utils::onCommunicationException(new MalformedServerResponse(
  467. $connection, 'Did not receive a new-line at the end of a bulk response'
  468. ));
  469. }
  470. }
  471. }
  472. class ResponseMultiBulkHandler implements IResponseHandler {
  473. public function handle(IConnectionSingle $connection, $rawLength) {
  474. if (!is_numeric($rawLength)) {
  475. Utils::onCommunicationException(new MalformedServerResponse(
  476. $connection, "Cannot parse '$rawLength' as data length"
  477. ));
  478. }
  479. $listLength = (int) $rawLength;
  480. if ($listLength === -1) {
  481. return null;
  482. }
  483. $list = array();
  484. if ($listLength > 0) {
  485. $reader = $connection->getResponseReader();
  486. for ($i = 0; $i < $listLength; $i++) {
  487. $list[] = $reader->read($connection);
  488. }
  489. }
  490. return $list;
  491. }
  492. }
  493. class ResponseMultiBulkStreamHandler implements IResponseHandler {
  494. public function handle(IConnectionSingle $connection, $rawLength) {
  495. if (!is_numeric($rawLength)) {
  496. Utils::onCommunicationException(new MalformedServerResponse(
  497. $connection, "Cannot parse '$rawLength' as data length"
  498. ));
  499. }
  500. return new Shared\MultiBulkResponseIterator($connection, (int)$rawLength);
  501. }
  502. }
  503. class ResponseIntegerHandler implements IResponseHandler {
  504. public function handle(IConnectionSingle $connection, $number) {
  505. if (is_numeric($number)) {
  506. return (int) $number;
  507. }
  508. else {
  509. if ($number !== Protocol::NULL) {
  510. Utils::onCommunicationException(new MalformedServerResponse(
  511. $connection, "Cannot parse '$number' as numeric response"
  512. ));
  513. }
  514. return null;
  515. }
  516. }
  517. }
  518. class ResponseReader {
  519. private $_prefixHandlers;
  520. public function __construct() {
  521. $this->initializePrefixHandlers();
  522. }
  523. private function initializePrefixHandlers() {
  524. $this->_prefixHandlers = array(
  525. Protocol::PREFIX_STATUS => new ResponseStatusHandler(),
  526. Protocol::PREFIX_ERROR => new ResponseErrorHandler(),
  527. Protocol::PREFIX_INTEGER => new ResponseIntegerHandler(),
  528. Protocol::PREFIX_BULK => new ResponseBulkHandler(),
  529. Protocol::PREFIX_MULTI_BULK => new ResponseMultiBulkHandler(),
  530. );
  531. }
  532. public function setHandler($prefix, IResponseHandler $handler) {
  533. $this->_prefixHandlers[$prefix] = $handler;
  534. }
  535. public function getHandler($prefix) {
  536. if (isset($this->_prefixHandlers[$prefix])) {
  537. return $this->_prefixHandlers[$prefix];
  538. }
  539. }
  540. public function read(IConnectionSingle $connection) {
  541. $header = $connection->readLine();
  542. if ($header === '') {
  543. Utils::onCommunicationException(new MalformedServerResponse(
  544. $connection, 'Unexpected empty header'
  545. ));
  546. }
  547. $prefix = $header[0];
  548. $payload = strlen($header) > 1 ? substr($header, 1) : '';
  549. if (!isset($this->_prefixHandlers[$prefix])) {
  550. Utils::onCommunicationException(new MalformedServerResponse(
  551. $connection, "Unknown prefix '$prefix'"
  552. ));
  553. }
  554. $handler = $this->_prefixHandlers[$prefix];
  555. return $handler->handle($connection, $payload);
  556. }
  557. }
  558. class ResponseError {
  559. private $_message;
  560. public function __construct($message) {
  561. $this->_message = $message;
  562. }
  563. public function __get($property) {
  564. if ($property == 'error') {
  565. return true;
  566. }
  567. if ($property == 'message') {
  568. return $this->_message;
  569. }
  570. }
  571. public function __isset($property) {
  572. return $property === 'error';
  573. }
  574. public function __toString() {
  575. return $this->_message;
  576. }
  577. }
  578. class ResponseQueued {
  579. public $queued = true;
  580. public function __toString() {
  581. return Protocol::QUEUED;
  582. }
  583. }
  584. /* ------------------------------------------------------------------------- */
  585. use Predis\Pipeline\IPipelineExecutor;
  586. class CommandPipeline {
  587. private $_redisClient, $_pipelineBuffer, $_returnValues, $_running, $_executor;
  588. public function __construct(Client $redisClient, IPipelineExecutor $executor = null) {
  589. $this->_redisClient = $redisClient;
  590. $this->_executor = $executor ?: new Pipeline\StandardExecutor();
  591. $this->_pipelineBuffer = array();
  592. $this->_returnValues = array();
  593. }
  594. public function __call($method, $arguments) {
  595. $command = $this->_redisClient->createCommand($method, $arguments);
  596. $this->recordCommand($command);
  597. return $this;
  598. }
  599. private function recordCommand(ICommand $command) {
  600. $this->_pipelineBuffer[] = $command;
  601. }
  602. private function getRecordedCommands() {
  603. return $this->_pipelineBuffer;
  604. }
  605. public function flushPipeline() {
  606. if (count($this->_pipelineBuffer) > 0) {
  607. $connection = $this->_redisClient->getConnection();
  608. $this->_returnValues = array_merge(
  609. $this->_returnValues,
  610. $this->_executor->execute($connection, $this->_pipelineBuffer)
  611. );
  612. $this->_pipelineBuffer = array();
  613. }
  614. return $this;
  615. }
  616. private function setRunning($bool) {
  617. if ($bool == true && $this->_running == true) {
  618. throw new ClientException("This pipeline is already opened");
  619. }
  620. $this->_running = $bool;
  621. }
  622. public function execute($block = null) {
  623. if ($block && !is_callable($block)) {
  624. throw new \InvalidArgumentException('Argument passed must be a callable object');
  625. }
  626. // TODO: do not reuse previously executed pipelines
  627. $this->setRunning(true);
  628. $pipelineBlockException = null;
  629. try {
  630. if ($block !== null) {
  631. $block($this);
  632. }
  633. $this->flushPipeline();
  634. }
  635. catch (\Exception $exception) {
  636. $pipelineBlockException = $exception;
  637. }
  638. $this->setRunning(false);
  639. if ($pipelineBlockException !== null) {
  640. throw $pipelineBlockException;
  641. }
  642. return $this->_returnValues;
  643. }
  644. }
  645. class MultiExecBlock {
  646. private $_initialized, $_discarded, $_insideBlock;
  647. private $_redisClient, $_options, $_commands;
  648. private $_supportsWatch;
  649. public function __construct(Client $redisClient, Array $options = null) {
  650. $this->checkCapabilities($redisClient);
  651. $this->_initialized = false;
  652. $this->_discarded = false;
  653. $this->_insideBlock = false;
  654. $this->_redisClient = $redisClient;
  655. $this->_options = $options ?: array();
  656. $this->_commands = array();
  657. }
  658. private function checkCapabilities(Client $redisClient) {
  659. if (Utils::isCluster($redisClient->getConnection())) {
  660. throw new ClientException(
  661. 'Cannot initialize a MULTI/EXEC context over a cluster of connections'
  662. );
  663. }
  664. $profile = $redisClient->getProfile();
  665. if ($profile->supportsCommands(array('multi', 'exec', 'discard')) === false) {
  666. throw new ClientException(
  667. 'The current profile does not support MULTI, EXEC and DISCARD commands'
  668. );
  669. }
  670. $this->_supportsWatch = $profile->supportsCommands(array('watch', 'unwatch'));
  671. }
  672. private function isWatchSupported() {
  673. if ($this->_supportsWatch === false) {
  674. throw new ClientException(
  675. 'The current profile does not support WATCH and UNWATCH commands'
  676. );
  677. }
  678. }
  679. private function initialize() {
  680. if ($this->_initialized === false) {
  681. if (isset($this->_options['watch'])) {
  682. $this->watch($this->_options['watch']);
  683. }
  684. $this->_redisClient->multi();
  685. $this->_initialized = true;
  686. $this->_discarded = false;
  687. }
  688. }
  689. private function setInsideBlock($value) {
  690. $this->_insideBlock = $value;
  691. }
  692. public function __call($method, $arguments) {
  693. $this->initialize();
  694. $command = $this->_redisClient->createCommand($method, $arguments);
  695. $response = $this->_redisClient->executeCommand($command);
  696. if (isset($response->queued)) {
  697. $this->_commands[] = $command;
  698. return $this;
  699. }
  700. else {
  701. $this->malformedServerResponse('The server did not respond with a QUEUED status reply');
  702. }
  703. }
  704. public function watch($keys) {
  705. $this->isWatchSupported();
  706. if ($this->_initialized === true) {
  707. throw new ClientException('WATCH inside MULTI is not allowed');
  708. }
  709. $reply = null;
  710. if (is_array($keys)) {
  711. $reply = array();
  712. foreach ($keys as $key) {
  713. $reply = $this->_redisClient->watch($keys);
  714. }
  715. }
  716. else {
  717. $reply = $this->_redisClient->watch($keys);
  718. }
  719. return $reply;
  720. }
  721. public function multi() {
  722. $this->initialize();
  723. }
  724. public function unwatch() {
  725. $this->isWatchSupported();
  726. $this->_redisClient->unwatch();
  727. }
  728. public function discard() {
  729. $this->_redisClient->discard();
  730. $this->_commands = array();
  731. $this->_initialized = false;
  732. $this->_discarded = true;
  733. }
  734. public function exec() {
  735. return $this->execute();
  736. }
  737. public function execute($block = null) {
  738. if ($this->_insideBlock === true) {
  739. throw new ClientException(
  740. "Cannot invoke 'execute' or 'exec' inside an active client transaction block"
  741. );
  742. }
  743. if ($block && !is_callable($block)) {
  744. throw new \InvalidArgumentException('Argument passed must be a callable object');
  745. }
  746. $blockException = null;
  747. $returnValues = array();
  748. try {
  749. if ($block !== null) {
  750. $this->setInsideBlock(true);
  751. $block($this);
  752. $this->setInsideBlock(false);
  753. }
  754. if ($this->_discarded === true) {
  755. return;
  756. }
  757. $reply = $this->_redisClient->exec();
  758. if ($reply === null) {
  759. throw new AbortedMultiExec('The current transaction has been aborted by the server');
  760. }
  761. $execReply = $reply instanceof \Iterator ? iterator_to_array($reply) : $reply;
  762. $commands = &$this->_commands;
  763. $sizeofReplies = count($execReply);
  764. if ($sizeofReplies !== count($commands)) {
  765. $this->malformedServerResponse('Unexpected number of responses for a MultiExecBlock');
  766. }
  767. for ($i = 0; $i < $sizeofReplies; $i++) {
  768. $returnValues[] = $commands[$i]->parseResponse($execReply[$i] instanceof \Iterator
  769. ? iterator_to_array($execReply[$i])
  770. : $execReply[$i]
  771. );
  772. unset($commands[$i]);
  773. }
  774. }
  775. catch (\Exception $exception) {
  776. $this->setInsideBlock(false);
  777. $blockException = $exception;
  778. }
  779. if ($blockException !== null) {
  780. throw $blockException;
  781. }
  782. return $returnValues;
  783. }
  784. private function malformedServerResponse($message) {
  785. // NOTE: a MULTI/EXEC block cannot be initialized on a clustered
  786. // connection, which means that Predis\Client::getConnection
  787. // will always return an instance of Predis\Connection.
  788. Utils::onCommunicationException(new MalformedServerResponse(
  789. $this->_redisClient->getConnection(), $message
  790. ));
  791. }
  792. }
  793. class PubSubContext implements \Iterator {
  794. const SUBSCRIBE = 'subscribe';
  795. const UNSUBSCRIBE = 'unsubscribe';
  796. const PSUBSCRIBE = 'psubscribe';
  797. const PUNSUBSCRIBE = 'punsubscribe';
  798. const MESSAGE = 'message';
  799. const PMESSAGE = 'pmessage';
  800. const STATUS_VALID = 0x0001;
  801. const STATUS_SUBSCRIBED = 0x0010;
  802. const STATUS_PSUBSCRIBED = 0x0100;
  803. private $_redisClient, $_subscriptions, $_isStillValid, $_position;
  804. public function __construct(Client $redisClient) {
  805. $this->checkCapabilities($redisClient);
  806. $this->_redisClient = $redisClient;
  807. $this->_statusFlags = self::STATUS_VALID;
  808. }
  809. public function __destruct() {
  810. $this->closeContext();
  811. }
  812. private function checkCapabilities(Client $redisClient) {
  813. if (Utils::isCluster($redisClient->getConnection())) {
  814. throw new ClientException(
  815. 'Cannot initialize a PUB/SUB context over a cluster of connections'
  816. );
  817. }
  818. $profile = $redisClient->getProfile();
  819. $commands = array('publish', 'subscribe', 'unsubscribe', 'psubscribe', 'punsubscribe');
  820. if ($profile->supportsCommands($commands) === false) {
  821. throw new ClientException(
  822. 'The current profile does not support PUB/SUB related commands'
  823. );
  824. }
  825. }
  826. private function isFlagSet($value) {
  827. return ($this->_statusFlags & $value) === $value;
  828. }
  829. public function subscribe(/* arguments */) {
  830. $this->writeCommand(self::SUBSCRIBE, func_get_args());
  831. $this->_statusFlags |= self::STATUS_SUBSCRIBED;
  832. }
  833. public function unsubscribe(/* arguments */) {
  834. $this->writeCommand(self::UNSUBSCRIBE, func_get_args());
  835. }
  836. public function psubscribe(/* arguments */) {
  837. $this->writeCommand(self::PSUBSCRIBE, func_get_args());
  838. $this->_statusFlags |= self::STATUS_PSUBSCRIBED;
  839. }
  840. public function punsubscribe(/* arguments */) {
  841. $this->writeCommand(self::PUNSUBSCRIBE, func_get_args());
  842. }
  843. public function closeContext() {
  844. if ($this->valid()) {
  845. if ($this->isFlagSet(self::STATUS_SUBSCRIBED)) {
  846. $this->unsubscribe();
  847. }
  848. if ($this->isFlagSet(self::STATUS_PSUBSCRIBED)) {
  849. $this->punsubscribe();
  850. }
  851. }
  852. }
  853. private function writeCommand($method, $arguments) {
  854. if (count($arguments) === 1 && is_array($arguments[0])) {
  855. $arguments = $arguments[0];
  856. }
  857. $command = $this->_redisClient->createCommand($method, $arguments);
  858. $this->_redisClient->getConnection()->writeCommand($command);
  859. }
  860. public function rewind() {
  861. // NOOP
  862. }
  863. public function current() {
  864. return $this->getValue();
  865. }
  866. public function key() {
  867. return $this->_position;
  868. }
  869. public function next() {
  870. if ($this->isFlagSet(self::STATUS_VALID)) {
  871. $this->_position++;
  872. }
  873. return $this->_position;
  874. }
  875. public function valid() {
  876. $subscriptions = self::STATUS_SUBSCRIBED + self::STATUS_PSUBSCRIBED;
  877. return $this->isFlagSet(self::STATUS_VALID)
  878. && ($this->_statusFlags & $subscriptions) > 0;
  879. }
  880. private function invalidate() {
  881. $this->_statusFlags = 0x0000;
  882. }
  883. private function getValue() {
  884. $reader = $this->_redisClient->getResponseReader();
  885. $connection = $this->_redisClient->getConnection();
  886. $response = $reader->read($connection);
  887. switch ($response[0]) {
  888. case self::SUBSCRIBE:
  889. case self::UNSUBSCRIBE:
  890. case self::PSUBSCRIBE:
  891. case self::PUNSUBSCRIBE:
  892. if ($response[2] === 0) {
  893. $this->invalidate();
  894. }
  895. case self::MESSAGE:
  896. return (object) array(
  897. 'kind' => $response[0],
  898. 'channel' => $response[1],
  899. 'payload' => $response[2],
  900. );
  901. case self::PMESSAGE:
  902. return (object) array(
  903. 'kind' => $response[0],
  904. 'pattern' => $response[1],
  905. 'channel' => $response[2],
  906. 'payload' => $response[3],
  907. );
  908. default:
  909. throw new ClientException(
  910. "Received an unknown message type {$response[0]} inside of a pubsub context"
  911. );
  912. }
  913. }
  914. }
  915. /* ------------------------------------------------------------------------- */
  916. class ConnectionParameters {
  917. const DEFAULT_SCHEME = 'tcp';
  918. const DEFAULT_HOST = '127.0.0.1';
  919. const DEFAULT_PORT = 6379;
  920. const DEFAULT_TIMEOUT = 5;
  921. private $_parameters;
  922. public function __construct($parameters = null) {
  923. $parameters = $parameters ?: array();
  924. $this->_parameters = is_array($parameters)
  925. ? self::filterConnectionParams($parameters)
  926. : self::parseURI($parameters);
  927. }
  928. private static function paramsExtractor($params, $kv) {
  929. @list($k, $v) = explode('=', $kv);
  930. $params[$k] = $v;
  931. return $params;
  932. }
  933. private static function parseURI($uri) {
  934. $parsed = @parse_url($uri);
  935. if ($parsed == false || $parsed['host'] == null) {
  936. throw new ClientException("Invalid URI: $uri");
  937. }
  938. if (array_key_exists('query', $parsed)) {
  939. $query = explode('&', $parsed['query']);
  940. $parsed = array_reduce($query, 'self::paramsExtractor', $parsed);
  941. }
  942. return self::filterConnectionParams($parsed);
  943. }
  944. private static function getParamOrDefault(Array $parameters, $param, $default = null) {
  945. return array_key_exists($param, $parameters) ? $parameters[$param] : $default;
  946. }
  947. private static function filterConnectionParams($parameters) {
  948. return array(
  949. 'scheme' => self::getParamOrDefault($parameters, 'scheme', self::DEFAULT_SCHEME),
  950. 'host' => self::getParamOrDefault($parameters, 'host', self::DEFAULT_HOST),
  951. 'port' => (int) self::getParamOrDefault($parameters, 'port', self::DEFAULT_PORT),
  952. 'database' => self::getParamOrDefault($parameters, 'database'),
  953. 'password' => self::getParamOrDefault($parameters, 'password'),
  954. 'connection_async' => self::getParamOrDefault($parameters, 'connection_async', false),
  955. 'connection_persistent' => self::getParamOrDefault($parameters, 'connection_persistent', false),
  956. 'connection_timeout' => self::getParamOrDefault($parameters, 'connection_timeout', self::DEFAULT_TIMEOUT),
  957. 'read_write_timeout' => self::getParamOrDefault($parameters, 'read_write_timeout'),
  958. 'alias' => self::getParamOrDefault($parameters, 'alias'),
  959. 'weight' => self::getParamOrDefault($parameters, 'weight'),
  960. );
  961. }
  962. public function __get($parameter) {
  963. return $this->_parameters[$parameter];
  964. }
  965. public function __isset($parameter) {
  966. return isset($this->_parameters[$parameter]);
  967. }
  968. }
  969. interface IConnection {
  970. public function connect();
  971. public function disconnect();
  972. public function isConnected();
  973. public function writeCommand(ICommand $command);
  974. public function readResponse(ICommand $command);
  975. public function executeCommand(ICommand $command);
  976. }
  977. interface IConnectionSingle extends IConnection {
  978. public function writeBytes($buffer);
  979. public function readBytes($length);
  980. public function readLine();
  981. }
  982. interface IConnectionCluster extends IConnection {
  983. public function getConnection(ICommand $command);
  984. public function getConnectionById($connectionId);
  985. }
  986. final class ConnectionFactory {
  987. private static $_registeredSchemes;
  988. private function __construct() {
  989. // NOOP
  990. }
  991. private static function ensureInitialized() {
  992. if (!isset(self::$_registeredSchemes)) {
  993. self::$_registeredSchemes = self::getDefaultSchemes();
  994. }
  995. }
  996. private static function getDefaultSchemes() {
  997. return array(
  998. 'tcp' => '\Predis\TcpConnection',
  999. 'redis' => '\Predis\TcpConnection', // compatibility with older versions
  1000. );
  1001. }
  1002. public static function registerScheme($scheme, $connectionClass) {
  1003. self::ensureInitialized();
  1004. $connectionReflection = new \ReflectionClass($connectionClass);
  1005. if (!$connectionReflection->isSubclassOf('\Predis\IConnectionSingle')) {
  1006. throw new ClientException(
  1007. "Cannot register '$connectionClass' as it is not a valid connection class"
  1008. );
  1009. }
  1010. self::$_registeredSchemes[$scheme] = $connectionClass;
  1011. }
  1012. public static function create(ConnectionParameters $parameters, ResponseReader $reader) {
  1013. self::ensureInitialized();
  1014. if (!isset(self::$_registeredSchemes[$parameters->scheme])) {
  1015. throw new ClientException("Unknown connection scheme: {$parameters->scheme}");
  1016. }
  1017. $connection = self::$_registeredSchemes[$parameters->scheme];
  1018. return new $connection($parameters, $reader);
  1019. }
  1020. }
  1021. abstract class Connection implements IConnectionSingle {
  1022. protected $_params, $_socket, $_initCmds, $_reader;
  1023. public function __construct(ConnectionParameters $parameters, ResponseReader $reader = null) {
  1024. $this->_params = $parameters;
  1025. $this->_initCmds = array();
  1026. $this->_reader = $reader ?: new ResponseReader();
  1027. }
  1028. public function __destruct() {
  1029. $this->disconnect();
  1030. }
  1031. public function isConnected() {
  1032. return is_resource($this->_socket);
  1033. }
  1034. protected abstract function createResource();
  1035. public function connect() {
  1036. if ($this->isConnected()) {
  1037. throw new ClientException('Connection already estabilished');
  1038. }
  1039. $this->createResource();
  1040. }
  1041. public function disconnect() {
  1042. if ($this->isConnected()) {
  1043. fclose($this->_socket);
  1044. }
  1045. }
  1046. public function pushInitCommand(ICommand $command){
  1047. $this->_initCmds[] = $command;
  1048. }
  1049. public function executeCommand(ICommand $command) {
  1050. $this->writeCommand($command);
  1051. if ($command->closesConnection()) {
  1052. return $this->disconnect();
  1053. }
  1054. return $this->readResponse($command);
  1055. }
  1056. protected function onCommunicationException($message, $code = null) {
  1057. Utils::onCommunicationException(
  1058. new CommunicationException($this, $message, $code)
  1059. );
  1060. }
  1061. public function getSocket() {
  1062. if (!$this->isConnected()) {
  1063. $this->connect();
  1064. }
  1065. return $this->_socket;
  1066. }
  1067. public function getResponseReader() {
  1068. return $this->_reader;
  1069. }
  1070. public function getParameters() {
  1071. return $this->_params;
  1072. }
  1073. public function __toString() {
  1074. return sprintf('%s:%d', $this->_params->host, $this->_params->port);
  1075. }
  1076. }
  1077. class TcpConnection extends Connection implements IConnectionSingle {
  1078. public function __construct(ConnectionParameters $parameters, ResponseReader $reader = null) {
  1079. parent::__construct($this->checkParameters($parameters), $reader);
  1080. }
  1081. public function __destruct() {
  1082. if (!$this->_params->connection_persistent) {
  1083. $this->disconnect();
  1084. }
  1085. }
  1086. private function checkParameters(ConnectionParameters $parameters) {
  1087. if ($parameters->scheme != 'tcp' && $parameters->scheme != 'redis') {
  1088. throw new \InvalidArgumentException("Invalid scheme: {$parameters->scheme}");
  1089. }
  1090. return $parameters;
  1091. }
  1092. protected function createResource() {
  1093. $uri = sprintf('tcp://%s:%d/', $this->_params->host, $this->_params->port);
  1094. $connectFlags = STREAM_CLIENT_CONNECT;
  1095. if ($this->_params->connection_async) {
  1096. $connectFlags |= STREAM_CLIENT_ASYNC_CONNECT;
  1097. }
  1098. if ($this->_params->connection_persistent) {
  1099. $connectFlags |= STREAM_CLIENT_PERSISTENT;
  1100. }
  1101. $this->_socket = @stream_socket_client(
  1102. $uri, $errno, $errstr, $this->_params->connection_timeout, $connectFlags
  1103. );
  1104. if (!$this->_socket) {
  1105. $this->onCommunicationException(trim($errstr), $errno);
  1106. }
  1107. if (isset($this->_params->read_write_timeout)) {
  1108. $timeoutSeconds = floor($this->_params->read_write_timeout);
  1109. $timeoutUSeconds = ($this->_params->read_write_timeout - $timeoutSeconds) * 1000000;
  1110. stream_set_timeout($this->_socket, $timeoutSeconds, $timeoutUSeconds);
  1111. }
  1112. }
  1113. private function sendInitializationCommands() {
  1114. foreach ($this->_initCmds as $command) {
  1115. $this->writeCommand($command);
  1116. }
  1117. foreach ($this->_initCmds as $command) {
  1118. $this->readResponse($command);
  1119. }
  1120. }
  1121. public function connect() {
  1122. parent::connect();
  1123. if (count($this->_initCmds) > 0){
  1124. $this->sendInitializationCommands();
  1125. }
  1126. }
  1127. public function writeCommand(ICommand $command) {
  1128. $this->writeBytes($command->serialize());
  1129. }
  1130. public function readResponse(ICommand $command) {
  1131. $response = $this->_reader->read($this);
  1132. $skipparse = isset($response->queued) || isset($response->error);
  1133. return $skipparse ? $response : $command->parseResponse($response);
  1134. }
  1135. public function rawCommand($rawCommandData, $closesConnection = false) {
  1136. $this->writeBytes($rawCommandData);
  1137. if ($closesConnection) {
  1138. $this->disconnect();
  1139. return;
  1140. }
  1141. return $this->_reader->read($this);
  1142. }
  1143. public function writeBytes($value) {
  1144. $socket = $this->getSocket();
  1145. while (($length = strlen($value)) > 0) {
  1146. $written = fwrite($socket, $value);
  1147. if ($length === $written) {
  1148. return true;
  1149. }
  1150. if ($written === false || $written === 0) {
  1151. $this->onCommunicationException('Error while writing bytes to the server');
  1152. }
  1153. $value = substr($value, $written);
  1154. }
  1155. return true;
  1156. }
  1157. public function readBytes($length) {
  1158. if ($length == 0) {
  1159. throw new \InvalidArgumentException('Length parameter must be greater than 0');
  1160. }
  1161. $socket = $this->getSocket();
  1162. $value = '';
  1163. do {
  1164. $chunk = fread($socket, $length);
  1165. if ($chunk === false || $chunk === '') {
  1166. $this->onCommunicationException('Error while reading bytes from the server');
  1167. }
  1168. $value .= $chunk;
  1169. }
  1170. while (($length -= strlen($chunk)) > 0);
  1171. return $value;
  1172. }
  1173. public function readLine() {
  1174. $socket = $this->getSocket();
  1175. $value = '';
  1176. do {
  1177. $chunk = fgets($socket);
  1178. if ($chunk === false || strlen($chunk) == 0) {
  1179. $this->onCommunicationException('Error while reading line from the server');
  1180. }
  1181. $value .= $chunk;
  1182. }
  1183. while (substr($value, -2) !== Protocol::NEWLINE);
  1184. return substr($value, 0, -2);
  1185. }
  1186. }
  1187. class ConnectionCluster implements IConnectionCluster, \IteratorAggregate {
  1188. private $_pool, $_distributor;
  1189. public function __construct(IDistributionStrategy $distributor = null) {
  1190. $this->_pool = array();
  1191. $this->_distributor = $distributor ?: new Distribution\HashRing();
  1192. }
  1193. public function isConnected() {
  1194. foreach ($this->_pool as $connection) {
  1195. if ($connection->isConnected()) {
  1196. return true;
  1197. }
  1198. }
  1199. return false;
  1200. }
  1201. public function connect() {
  1202. foreach ($this->_pool as $connection) {
  1203. $connection->connect();
  1204. }
  1205. }
  1206. public function disconnect() {
  1207. foreach ($this->_pool as $connection) {
  1208. $connection->disconnect();
  1209. }
  1210. }
  1211. public function add(IConnectionSingle $connection) {
  1212. $parameters = $connection->getParameters();
  1213. if (isset($parameters->alias)) {
  1214. $this->_pool[$parameters->alias] = $connection;
  1215. }
  1216. else {
  1217. $this->_pool[] = $connection;
  1218. }
  1219. $this->_distributor->add($connection, $parameters->weight);
  1220. }
  1221. public function getConnection(ICommand $command) {
  1222. if ($command->canBeHashed() === false) {
  1223. throw new ClientException(
  1224. sprintf("Cannot send '%s' commands to a cluster of connections", $command->getCommandId())
  1225. );
  1226. }
  1227. return $this->_distributor->get($command->getHash($this->_distributor));
  1228. }
  1229. public function getConnectionById($id = null) {
  1230. $alias = $id ?: 0;
  1231. return isset($this->_pool[$alias]) ? $this->_pool[$alias] : null;
  1232. }
  1233. public function getIterator() {
  1234. return new \ArrayIterator($this->_pool);
  1235. }
  1236. public function writeCommand(ICommand $command) {
  1237. $this->getConnection($command)->writeCommand($command);
  1238. }
  1239. public function readResponse(ICommand $command) {
  1240. return $this->getConnection($command)->readResponse($command);
  1241. }
  1242. public function executeCommand(ICommand $command) {
  1243. $connection = $this->getConnection($command);
  1244. $connection->writeCommand($command);
  1245. return $connection->readResponse($command);
  1246. }
  1247. }
  1248. /* ------------------------------------------------------------------------- */
  1249. abstract class RedisServerProfile {
  1250. private static $_serverProfiles;
  1251. private $_registeredCommands;
  1252. public function __construct() {
  1253. $this->_registeredCommands = $this->getSupportedCommands();
  1254. }
  1255. public abstract function getVersion();
  1256. protected abstract function getSupportedCommands();
  1257. public static function getDefault() {
  1258. return self::get('default');
  1259. }
  1260. public static function getDevelopment() {
  1261. return self::get('dev');
  1262. }
  1263. private static function predisServerProfiles() {
  1264. return array(
  1265. '1.2' => '\Predis\RedisServer_v1_2',
  1266. '2.0' => '\Predis\RedisServer_v2_0',
  1267. 'default' => '\Predis\RedisServer_v2_0',
  1268. 'dev' => '\Predis\RedisServer_vNext',
  1269. );
  1270. }
  1271. public static function registerProfile($profileClass, $aliases) {
  1272. if (!isset(self::$_serverProfiles)) {
  1273. self::$_serverProfiles = self::predisServerProfiles();
  1274. }
  1275. $profileReflection = new \ReflectionClass($profileClass);
  1276. if (!$profileReflection->isSubclassOf('\Predis\RedisServerProfile')) {
  1277. throw new ClientException("Cannot register '$profileClass' as it is not a valid profile class");
  1278. }
  1279. if (is_array($aliases)) {
  1280. foreach ($aliases as $alias) {
  1281. self::$_serverProfiles[$alias] = $profileClass;
  1282. }
  1283. }
  1284. else {
  1285. self::$_serverProfiles[$aliases] = $profileClass;
  1286. }
  1287. }
  1288. public static function get($version) {
  1289. if (!isset(self::$_serverProfiles)) {
  1290. self::$_serverProfiles = self::predisServerProfiles();
  1291. }
  1292. if (!isset(self::$_serverProfiles[$version])) {
  1293. throw new ClientException("Unknown server profile: $version");
  1294. }
  1295. $profile = self::$_serverProfiles[$version];
  1296. return new $profile();
  1297. }
  1298. public function supportsCommands(Array $commands) {
  1299. foreach ($commands as $command) {
  1300. if ($this->supportsCommand($command) === false) {
  1301. return false;
  1302. }
  1303. }
  1304. return true;
  1305. }
  1306. public function supportsCommand($command) {
  1307. return isset($this->_registeredCommands[$command]);
  1308. }
  1309. public function createCommand($method, $arguments = array()) {
  1310. if (!isset($this->_registeredCommands[$method])) {
  1311. throw new ClientException("'$method' is not a registered Redis command");
  1312. }
  1313. $commandClass = $this->_registeredCommands[$method];
  1314. $command = new $commandClass();
  1315. $command->setArgumentsArray($arguments);
  1316. return $command;
  1317. }
  1318. public function registerCommands(Array $commands) {
  1319. foreach ($commands as $command => $aliases) {
  1320. $this->registerCommand($command, $aliases);
  1321. }
  1322. }
  1323. public function registerCommand($command, $aliases) {
  1324. $commandReflection = new \ReflectionClass($command);
  1325. if (!$commandReflection->isSubclassOf('\Predis\Command')) {
  1326. throw new ClientException("Cannot register '$command' as it is not a valid Redis command");
  1327. }
  1328. if (is_array($aliases)) {
  1329. foreach ($aliases as $alias) {
  1330. $this->_registeredCommands[$alias] = $command;
  1331. }
  1332. }
  1333. else {
  1334. $this->_registeredCommands[$aliases] = $command;
  1335. }
  1336. }
  1337. public function __toString() {
  1338. return $this->getVersion();
  1339. }
  1340. }
  1341. class RedisServer_v1_2 extends RedisServerProfile {
  1342. public function getVersion() { return '1.2'; }
  1343. public function getSupportedCommands() {
  1344. return array(
  1345. /* miscellaneous commands */
  1346. 'ping' => '\Predis\Commands\Ping',
  1347. 'echo' => '\Predis\Commands\DoEcho',
  1348. 'auth' => '\Predis\Commands\Auth',
  1349. /* connection handling */
  1350. 'quit' => '\Predis\Commands\Quit',
  1351. /* commands operating on string values */
  1352. 'set' => '\Predis\Commands\Set',
  1353. 'setnx' => '\Predis\Commands\SetPreserve',
  1354. 'mset' => '\Predis\Commands\SetMultiple',
  1355. 'msetnx' => '\Predis\Commands\SetMultiplePreserve',
  1356. 'get' => '\Predis\Commands\Get',
  1357. 'mget' => '\Predis\Commands\GetMultiple',
  1358. 'getset' => '\Predis\Commands\GetSet',
  1359. 'incr' => '\Predis\Commands\Increment',
  1360. 'incrby' => '\Predis\Commands\IncrementBy',
  1361. 'decr' => '\Predis\Commands\Decrement',
  1362. 'decrby' => '\Predis\Commands\DecrementBy',
  1363. 'exists' => '\Predis\Commands\Exists',
  1364. 'del' => '\Predis\Commands\Delete',
  1365. 'type' => '\Predis\Commands\Type',
  1366. /* commands operating on the key space */
  1367. 'keys' => '\Predis\Commands\Keys',
  1368. 'randomkey' => '\Predis\Commands\RandomKey',
  1369. 'rename' => '\Predis\Commands\Rename',
  1370. 'renamenx' => '\Predis\Commands\RenamePreserve',
  1371. 'expire' => '\Predis\Commands\Expire',
  1372. 'expireat' => '\Predis\Commands\ExpireAt',
  1373. 'dbsize' => '\Predis\Commands\DatabaseSize',
  1374. 'ttl' => '\Predis\Commands\TimeToLive',
  1375. /* commands operating on lists */
  1376. 'rpush' => '\Predis\Commands\ListPushTail',
  1377. 'lpush' => '\Predis\Commands\ListPushHead',
  1378. 'llen' => '\Predis\Commands\ListLength',
  1379. 'lrange' => '\Predis\Commands\ListRange',
  1380. 'ltrim' => '\Predis\Commands\ListTrim',
  1381. 'lindex' => '\Predis\Commands\ListIndex',
  1382. 'lset' => '\Predis\Commands\ListSet',
  1383. 'lrem' => '\Predis\Commands\ListRemove',
  1384. 'lpop' => '\Predis\Commands\ListPopFirst',
  1385. 'rpop' => '\Predis\Commands\ListPopLast',
  1386. 'rpoplpush' => '\Predis\Commands\ListPopLastPushHead',
  1387. /* commands operating on sets */
  1388. 'sadd' => '\Predis\Commands\SetAdd',
  1389. 'srem' => '\Predis\Commands\SetRemove',
  1390. 'spop' => '\Predis\Commands\SetPop',
  1391. 'smove' => '\Predis\Commands\SetMove',
  1392. 'scard' => '\Predis\Commands\SetCardinality',
  1393. 'sismember' => '\Predis\Commands\SetIsMember',
  1394. 'sinter' => '\Predis\Commands\SetIntersection',
  1395. 'sinterstore' => '\Predis\Commands\SetIntersectionStore',
  1396. 'sunion' => '\Predis\Commands\SetUnion',
  1397. 'sunionstore' => '\Predis\Commands\SetUnionStore',
  1398. 'sdiff' => '\Predis\Commands\SetDifference',
  1399. 'sdiffstore' => '\Predis\Commands\SetDifferenceStore',
  1400. 'smembers' => '\Predis\Commands\SetMembers',
  1401. 'srandmember' => '\Predis\Commands\SetRandomMember',
  1402. /* commands operating on sorted sets */
  1403. 'zadd' => '\Predis\Commands\ZSetAdd',
  1404. 'zincrby' => '\Predis\Commands\ZSetIncrementBy',
  1405. 'zrem' => '\Predis\Commands\ZSetRemove',
  1406. 'zrange' => '\Predis\Commands\ZSetRange',
  1407. 'zrevrange' => '\Predis\Commands\ZSetReverseRange',
  1408. 'zrangebyscore' => '\Predis\Commands\ZSetRangeByScore',
  1409. 'zcard' => '\Predis\Commands\ZSetCardinality',
  1410. 'zscore' => '\Predis\Commands\ZSetScore',
  1411. 'zremrangebyscore' => '\Predis\Commands\ZSetRemoveRangeByScore',
  1412. /* multiple databases handling commands */
  1413. 'select' => '\Predis\Commands\SelectDatabase',
  1414. 'move' => '\Predis\Commands\MoveKey',
  1415. 'flushdb' => '\Predis\Commands\FlushDatabase',
  1416. 'flushall' => '\Predis\Commands\FlushAll',
  1417. /* sorting */
  1418. 'sort' => '\Predis\Commands\Sort',
  1419. /* remote server control commands */
  1420. 'info' => '\Predis\Commands\Info',
  1421. 'slaveof' => '\Predis\Commands\SlaveOf',
  1422. /* persistence control commands */
  1423. 'save' => '\Predis\Commands\Save',
  1424. 'bgsave' => '\Predis\Commands\BackgroundSave',
  1425. 'lastsave' => '\Predis\Commands\LastSave',
  1426. 'shutdown' => '\Predis\Commands\Shutdown',
  1427. 'bgrewriteaof' => '\Predis\Commands\BackgroundRewriteAppendOnlyFile',
  1428. );
  1429. }
  1430. }
  1431. class RedisServer_v2_0 extends RedisServer_v1_2 {
  1432. public function getVersion() { return '2.0'; }
  1433. public function getSupportedCommands() {
  1434. return array_merge(parent::getSupportedCommands(), array(
  1435. /* transactions */
  1436. 'multi' => '\Predis\Commands\Multi',
  1437. 'exec' => '\Predis\Commands\Exec',
  1438. 'discard' => '\Predis\Commands\Discard',
  1439. /* commands operating on string values */
  1440. 'setex' => '\Predis\Commands\SetExpire',
  1441. 'append' => '\Predis\Commands\Append',
  1442. 'substr' => '\Predis\Commands\Substr',
  1443. /* commands operating on lists */
  1444. 'blpop' => '\Predis\Commands\ListPopFirstBlocking',
  1445. 'brpop' => '\Predis\Commands\ListPopLastBlocking',
  1446. /* commands operating on sorted sets */
  1447. 'zunionstore' => '\Predis\Commands\ZSetUnionStore',
  1448. 'zinterstore' => '\Predis\Commands\ZSetIntersectionStore',
  1449. 'zcount' => '\Predis\Commands\ZSetCount',
  1450. 'zrank' => '\Predis\Commands\ZSetRank',
  1451. 'zrevrank' => '\Predis\Commands\ZSetReverseRank',
  1452. 'zremrangebyrank' => '\Predis\Commands\ZSetRemoveRangeByRank',
  1453. /* commands operating on hashes */
  1454. 'hset' => '\Predis\Commands\HashSet',
  1455. 'hsetnx' => '\Predis\Commands\HashSetPreserve',
  1456. 'hmset' => '\Predis\Commands\HashSetMultiple',
  1457. 'hincrby' => '\Predis\Commands\HashIncrementBy',
  1458. 'hget' => '\Predis\Commands\HashGet',
  1459. 'hmget' => '\Predis\Commands\HashGetMultiple',
  1460. 'hdel' => '\Predis\Commands\HashDelete',
  1461. 'hexists' => '\Predis\Commands\HashExists',
  1462. 'hlen' => '\Predis\Commands\HashLength',
  1463. 'hkeys' => '\Predis\Commands\HashKeys',
  1464. 'hvals' => '\Predis\Commands\HashValues',
  1465. 'hgetall' => '\Predis\Commands\HashGetAll',
  1466. /* publish - subscribe */
  1467. 'subscribe' => '\Predis\Commands\Subscribe',
  1468. 'unsubscribe' => '\Predis\Commands\Unsubscribe',
  1469. 'psubscribe' => '\Predis\Commands\SubscribeByPattern',
  1470. 'punsubscribe' => '\Predis\Commands\UnsubscribeByPattern',
  1471. 'publish' => '\Predis\Commands\Publish',
  1472. /* remote server control commands */
  1473. 'config' => '\Predis\Commands\Config',
  1474. ));
  1475. }
  1476. }
  1477. class RedisServer_vNext extends RedisServer_v2_0 {
  1478. public function getVersion() { return '2.1'; }
  1479. public function getSupportedCommands() {
  1480. return array_merge(parent::getSupportedCommands(), array(
  1481. /* transactions */
  1482. 'watch' => '\Predis\Commands\Watch',
  1483. 'unwatch' => '\Predis\Commands\Unwatch',
  1484. /* commands operating on string values */
  1485. 'strlen' => '\Predis\Commands\Strlen',
  1486. ));
  1487. }
  1488. }
  1489. /* ------------------------------------------------------------------------- */
  1490. namespace Predis\Pipeline;
  1491. use Predis\IConnection, Predis\ServerException, Predis\CommunicationException;
  1492. interface IPipelineExecutor {
  1493. public function execute(IConnection $connection, &$commands);
  1494. }
  1495. class StandardExecutor implements IPipelineExecutor {
  1496. public function execute(IConnection $connection, &$commands) {
  1497. $sizeofPipe = count($commands);
  1498. $values = array();
  1499. foreach ($commands as $command) {
  1500. $connection->writeCommand($command);
  1501. }
  1502. try {
  1503. for ($i = 0; $i < $sizeofPipe; $i++) {
  1504. $response = $connection->readResponse($commands[$i]);
  1505. $values[] = $response instanceof \Iterator
  1506. ? iterator_to_array($response)
  1507. : $response;
  1508. unset($commands[$i]);
  1509. }
  1510. }
  1511. catch (ServerException $exception) {
  1512. // force disconnection to prevent protocol desynchronization
  1513. $connection->disconnect();
  1514. throw $exception;
  1515. }
  1516. return $values;
  1517. }
  1518. }
  1519. class SafeExecutor implements IPipelineExecutor {
  1520. public function execute(IConnection $connection, &$commands) {
  1521. $sizeofPipe = count($commands);
  1522. $values = array();
  1523. foreach ($commands as $command) {
  1524. try {
  1525. $connection->writeCommand($command);
  1526. }
  1527. catch (CommunicationException $exception) {
  1528. return array_fill(0, $sizeofPipe, $exception);
  1529. }
  1530. }
  1531. for ($i = 0; $i < $sizeofPipe; $i++) {
  1532. $command = $commands[$i];
  1533. unset($commands[$i]);
  1534. try {
  1535. $response = $connection->readResponse($command);
  1536. $values[] = ($response instanceof \Iterator
  1537. ? iterator_to_array($response)
  1538. : $response
  1539. );
  1540. }
  1541. catch (ServerException $exception) {
  1542. $values[] = $exception->toResponseError();
  1543. }
  1544. catch (CommunicationException $exception) {
  1545. $toAdd = count($commands) - count($values);
  1546. $values = array_merge($values, array_fill(0, $toAdd, $exception));
  1547. break;
  1548. }
  1549. }
  1550. return $values;
  1551. }
  1552. }
  1553. class SafeClusterExecutor implements IPipelineExecutor {
  1554. public function execute(IConnection $connection, &$commands) {
  1555. $connectionExceptions = array();
  1556. $sizeofPipe = count($commands);
  1557. $values = array();
  1558. foreach ($commands as $command) {
  1559. $cmdConnection = $connection->getConnection($command);
  1560. if (isset($connectionExceptions[spl_object_hash($cmdConnection)])) {
  1561. continue;
  1562. }
  1563. try {
  1564. $cmdConnection->writeCommand($command);
  1565. }
  1566. catch (CommunicationException $exception) {
  1567. $connectionExceptions[spl_object_hash($cmdConnection)] = $exception;
  1568. }
  1569. }
  1570. for ($i = 0; $i < $sizeofPipe; $i++) {
  1571. $command = $commands[$i];
  1572. unset($commands[$i]);
  1573. $cmdConnection = $connection->getConnection($command);
  1574. $connectionObjectHash = spl_object_hash($cmdConnection);
  1575. if (isset($connectionExceptions[$connectionObjectHash])) {
  1576. $values[] = $connectionExceptions[$connectionObjectHash];
  1577. continue;
  1578. }
  1579. try {
  1580. $response = $cmdConnection->readResponse($command);
  1581. $values[] = ($response instanceof \Iterator
  1582. ? iterator_to_array($response)
  1583. : $response
  1584. );
  1585. }
  1586. catch (ServerException $exception) {
  1587. $values[] = $exception->toResponseError();
  1588. }
  1589. catch (CommunicationException $exception) {
  1590. $values[] = $exception;
  1591. $connectionExceptions[$connectionObjectHash] = $exception;
  1592. }
  1593. }
  1594. return $values;
  1595. }
  1596. }
  1597. /* ------------------------------------------------------------------------- */
  1598. namespace Predis\Distribution;
  1599. interface IDistributionStrategy {
  1600. public function add($node, $weight = null);
  1601. public function remove($node);
  1602. public function get($key);
  1603. public function generateKey($value);
  1604. }
  1605. class EmptyRingException extends \Exception { }
  1606. class HashRing implements IDistributionStrategy {
  1607. const DEFAULT_REPLICAS = 128;
  1608. const DEFAULT_WEIGHT = 100;
  1609. private $_nodes, $_ring, $_ringKeys, $_ringKeysCount, $_replicas;
  1610. public function __construct($replicas = self::DEFAULT_REPLICAS) {
  1611. $this->_replicas = $replicas;
  1612. $this->_nodes = array();
  1613. }
  1614. public function add($node, $weight = null) {
  1615. // NOTE: in case of collisions in the hashes of the nodes, the node added
  1616. // last wins, thus the order in which nodes are added is significant.
  1617. $this->_nodes[] = array('object' => $node, 'weight' => (int) $weight ?: $this::DEFAULT_WEIGHT);
  1618. $this->reset();
  1619. }
  1620. public function remove($node) {
  1621. // NOTE: a node is removed by resetting the ring so that it's recreated from
  1622. // scratch, in order to reassign possible hashes with collisions to the
  1623. // right node according to the order in which they were added in the
  1624. // first place.
  1625. for ($i = 0; $i < count($this->_nodes); ++$i) {
  1626. if ($this->_nodes[$i]['object'] === $node) {
  1627. array_splice($this->_nodes, $i, 1);
  1628. $this->reset();
  1629. break;
  1630. }
  1631. }
  1632. }
  1633. private function reset() {
  1634. unset($this->_ring);
  1635. unset($this->_ringKeys);
  1636. unset($this->_ringKeysCount);
  1637. }
  1638. private function isInitialized() {
  1639. return isset($this->_ringKeys);
  1640. }
  1641. private function computeTotalWeight() {
  1642. // TODO: array_reduce + lambda for PHP 5.3
  1643. $totalWeight = 0;
  1644. foreach ($this->_nodes as $node) {
  1645. $totalWeight += $node['weight'];
  1646. }
  1647. return $totalWeight;
  1648. }
  1649. private function initialize() {
  1650. if ($this->isInitialized()) {
  1651. return;
  1652. }
  1653. if (count($this->_nodes) === 0) {
  1654. throw new EmptyRingException('Cannot initialize empty hashring');
  1655. }
  1656. $this->_ring = array();
  1657. $totalWeight = $this->computeTotalWeight();
  1658. $nodesCount = count($this->_nodes);
  1659. foreach ($this->_nodes as $node) {
  1660. $weightRatio = $node['weight'] / $totalWeight;
  1661. $this->addNodeToRing($this->_ring, $node, $nodesCount, $this->_replicas, $weightRatio);
  1662. }
  1663. ksort($this->_ring, SORT_NUMERIC);
  1664. $this->_ringKeys = array_keys($this->_ring);
  1665. $this->_ringKeysCount = count($this->_ringKeys);
  1666. }
  1667. protected function addNodeToRing(&$ring, $node, $totalNodes, $replicas, $weightRatio) {
  1668. $nodeObject = $node['object'];
  1669. $nodeHash = (string) $nodeObject;
  1670. $replicas = (int) round($weightRatio * $totalNodes * $replicas);
  1671. for ($i = 0; $i < $replicas; $i++) {
  1672. $key = crc32("$nodeHash:$i");
  1673. $ring[$key] = $nodeObject;
  1674. }
  1675. }
  1676. public function generateKey($value) {
  1677. return crc32($value);
  1678. }
  1679. public function get($key) {
  1680. return $this->_ring[$this->getNodeKey($key)];
  1681. }
  1682. private function getNodeKey($key) {
  1683. $this->initialize();
  1684. $ringKeys = $this->_ringKeys;
  1685. $upper = $this->_ringKeysCount - 1;
  1686. $lower = 0;
  1687. while ($lower <= $upper) {
  1688. $index = ($lower + $upper) >> 1;
  1689. $item = $ringKeys[$index];
  1690. if ($item > $key) {
  1691. $upper = $index - 1;
  1692. }
  1693. else if ($item < $key) {
  1694. $lower = $index + 1;
  1695. }
  1696. else {
  1697. return $item;
  1698. }
  1699. }
  1700. return $ringKeys[$this->wrapAroundStrategy($upper, $lower, $this->_ringKeysCount)];
  1701. }
  1702. protected function wrapAroundStrategy($upper, $lower, $ringKeysCount) {
  1703. // NOTE: binary search for the last item in _ringkeys with a value
  1704. // less or equal to the key. If no such item exists, return the
  1705. // last item.
  1706. return $upper >= 0 ? $upper : $ringKeysCount - 1;
  1707. }
  1708. }
  1709. class KetamaPureRing extends HashRing {
  1710. const DEFAULT_REPLICAS = 160;
  1711. public function __construct() {
  1712. parent::__construct($this::DEFAULT_REPLICAS);
  1713. }
  1714. protected function addNodeToRing(&$ring, $node, $totalNodes, $replicas, $weightRatio) {
  1715. $nodeObject = $node['object'];
  1716. $nodeHash = (string) $nodeObject;
  1717. $replicas = (int) floor($weightRatio * $totalNodes * ($replicas / 4));
  1718. for ($i = 0; $i < $replicas; $i++) {
  1719. $unpackedDigest = unpack('V4', md5("$nodeHash-$i", true));
  1720. foreach ($unpackedDigest as $key) {
  1721. $ring[$key] = $nodeObject;
  1722. }
  1723. }
  1724. }
  1725. public function generateKey($value) {
  1726. $hash = unpack('V', md5($value, true));
  1727. return $hash[1];
  1728. }
  1729. protected function wrapAroundStrategy($upper, $lower, $ringKeysCount) {
  1730. // NOTE: binary search for the first item in _ringkeys with a value
  1731. // greater or equal to the key. If no such item exists, return the
  1732. // first item.
  1733. return $lower < $ringKeysCount ? $lower : 0;
  1734. }
  1735. }
  1736. /* ------------------------------------------------------------------------- */
  1737. namespace Predis\Shared;
  1738. use Predis\IConnection, Predis\IConnectionSingle, Predis\IConnectionCluster,
  1739. Predis\CommunicationException;
  1740. class Utils {
  1741. public static function isCluster(IConnection $connection) {
  1742. return $connection instanceof IConnectionCluster;
  1743. }
  1744. public static function onCommunicationException(CommunicationException $exception) {
  1745. if ($exception->shouldResetConnection()) {
  1746. $connection = $exception->getConnection();
  1747. if ($connection->isConnected()) {
  1748. $connection->disconnect();
  1749. }
  1750. }
  1751. throw $exception;
  1752. }
  1753. public static function filterArrayArguments(Array $arguments) {
  1754. if (count($arguments) === 1 && is_array($arguments[0])) {
  1755. return $arguments[0];
  1756. }
  1757. return $arguments;
  1758. }
  1759. }
  1760. abstract class MultiBulkResponseIteratorBase implements \Iterator, \Countable {
  1761. protected $_position, $_current, $_replySize;
  1762. public function rewind() {
  1763. // NOOP
  1764. }
  1765. public function current() {
  1766. return $this->_current;
  1767. }
  1768. public function key() {
  1769. return $this->_position;
  1770. }
  1771. public function next() {
  1772. if (++$this->_position < $this->_replySize) {
  1773. $this->_current = $this->getValue();
  1774. }
  1775. return $this->_position;
  1776. }
  1777. public function valid() {
  1778. return $this->_position < $this->_replySize;
  1779. }
  1780. public function count() {
  1781. // NOTE: use count if you want to get the size of the current multi-bulk
  1782. // response without using iterator_count (which actually consumes
  1783. // our iterator to calculate the size, and we cannot perform a rewind)
  1784. return $this->_replySize;
  1785. }
  1786. protected abstract function getValue();
  1787. }
  1788. class MultiBulkResponseIterator extends MultiBulkResponseIteratorBase {
  1789. private $_connection;
  1790. public function __construct(IConnectionSingle $connection, $size) {
  1791. $this->_connection = $connection;
  1792. $this->_reader = $connection->getResponseReader();
  1793. $this->_position = 0;
  1794. $this->_current = $size > 0 ? $this->getValue() : null;
  1795. $this->_replySize = $size;
  1796. }
  1797. public function __destruct() {
  1798. // when the iterator is garbage-collected (e.g. it goes out of the
  1799. // scope of a foreach) but it has not reached its end, we must sync
  1800. // the client with the queued elements that have not been read from
  1801. // the connection with the server.
  1802. $this->sync();
  1803. }
  1804. public function sync($drop = false) {
  1805. if ($drop == true) {
  1806. if ($this->valid()) {
  1807. $this->_position = $this->_replySize;
  1808. $this->_connection->disconnect();
  1809. }
  1810. }
  1811. else {
  1812. while ($this->valid()) {
  1813. $this->next();
  1814. }
  1815. }
  1816. }
  1817. protected function getValue() {
  1818. return $this->_reader->read($this->_connection);
  1819. }
  1820. }
  1821. class MultiBulkResponseKVIterator extends MultiBulkResponseIteratorBase {
  1822. private $_iterator;
  1823. public function __construct(MultiBulkResponseIterator $iterator) {
  1824. $virtualSize = count($iterator) / 2;
  1825. $this->_iterator = $iterator;
  1826. $this->_position = 0;
  1827. $this->_current = $virtualSize > 0 ? $this->getValue() : null;
  1828. $this->_replySize = $virtualSize;
  1829. }
  1830. public function __destruct() {
  1831. $this->_iterator->sync();
  1832. }
  1833. protected function getValue() {
  1834. $k = $this->_iterator->current();
  1835. $this->_iterator->next();
  1836. $v = $this->_iterator->current();
  1837. $this->_iterator->next();
  1838. return array($k, $v);
  1839. }
  1840. }
  1841. /* ------------------------------------------------------------------------- */
  1842. namespace Predis\Commands;
  1843. use Predis\Command, Predis\Shared\Utils, Predis\Shared\MultiBulkResponseKVIterator;
  1844. /* miscellaneous commands */
  1845. class Ping extends Command {
  1846. public function canBeHashed() { return false; }
  1847. public function getCommandId() { return 'PING'; }
  1848. public function parseResponse($data) {
  1849. return $data === 'PONG' ? true : false;
  1850. }
  1851. }
  1852. class DoEcho extends Command {
  1853. public function canBeHashed() { return false; }
  1854. public function getCommandId() { return 'ECHO'; }
  1855. }
  1856. class Auth extends Command {
  1857. public function canBeHashed() { return false; }
  1858. public function getCommandId() { return 'AUTH'; }
  1859. }
  1860. /* connection handling */
  1861. class Quit extends Command {
  1862. public function canBeHashed() { return false; }
  1863. public function getCommandId() { return 'QUIT'; }
  1864. public function closesConnection() { return true; }
  1865. }
  1866. /* commands operating on string values */
  1867. class Set extends Command {
  1868. public function getCommandId() { return 'SET'; }
  1869. }
  1870. class SetExpire extends Command {
  1871. public function getCommandId() { return 'SETEX'; }
  1872. }
  1873. class SetPreserve extends Command {
  1874. public function getCommandId() { return 'SETNX'; }
  1875. public function parseResponse($data) { return (bool) $data; }
  1876. }
  1877. class SetMultiple extends Command {
  1878. public function canBeHashed() { return false; }
  1879. public function getCommandId() { return 'MSET'; }
  1880. public function filterArguments(Array $arguments) {
  1881. if (count($arguments) === 1 && is_array($arguments[0])) {
  1882. $flattenedKVs = array();
  1883. $args = &$arguments[0];
  1884. foreach ($args as $k => $v) {
  1885. $flattenedKVs[] = $k;
  1886. $flattenedKVs[] = $v;
  1887. }
  1888. return $flattenedKVs;
  1889. }
  1890. return $arguments;
  1891. }
  1892. }
  1893. class SetMultiplePreserve extends SetMultiple {
  1894. public function canBeHashed() { return false; }
  1895. public function getCommandId() { return 'MSETNX'; }
  1896. public function parseResponse($data) { return (bool) $data; }
  1897. }
  1898. class Get extends Command {
  1899. public function getCommandId() { return 'GET'; }
  1900. }
  1901. class GetMultiple extends Command {
  1902. public function canBeHashed() { return false; }
  1903. public function getCommandId() { return 'MGET'; }
  1904. public function filterArguments(Array $arguments) {
  1905. return Utils::filterArrayArguments($arguments);
  1906. }
  1907. }
  1908. class GetSet extends Command {
  1909. public function getCommandId() { return 'GETSET'; }
  1910. }
  1911. class Increment extends Command {
  1912. public function getCommandId() { return 'INCR'; }
  1913. }
  1914. class IncrementBy extends Command {
  1915. public function getCommandId() { return 'INCRBY'; }
  1916. }
  1917. class Decrement extends Command {
  1918. public function getCommandId() { return 'DECR'; }
  1919. }
  1920. class DecrementBy extends Command {
  1921. public function getCommandId() { return 'DECRBY'; }
  1922. }
  1923. class Exists extends Command {
  1924. public function getCommandId() { return 'EXISTS'; }
  1925. public function parseResponse($data) { return (bool) $data; }
  1926. }
  1927. class Delete extends Command {
  1928. public function getCommandId() { return 'DEL'; }
  1929. public function filterArguments(Array $arguments) {
  1930. return Utils::filterArrayArguments($arguments);
  1931. }
  1932. }
  1933. class Type extends Command {
  1934. public function getCommandId() { return 'TYPE'; }
  1935. }
  1936. class Append extends Command {
  1937. public function getCommandId() { return 'APPEND'; }
  1938. }
  1939. class Substr extends Command {
  1940. public function getCommandId() { return 'SUBSTR'; }
  1941. }
  1942. class Strlen extends Command {
  1943. public function getCommandId() { return 'STRLEN'; }
  1944. }
  1945. /* commands operating on the key space */
  1946. class Keys extends Command {
  1947. public function canBeHashed() { return false; }
  1948. public function getCommandId() { return 'KEYS'; }
  1949. public function parseResponse($data) {
  1950. // TODO: is this behaviour correct?
  1951. if (is_array($data) || $data instanceof \Iterator) {
  1952. return $data;
  1953. }
  1954. return strlen($data) > 0 ? explode(' ', $data) : array();
  1955. }
  1956. }
  1957. class RandomKey extends Command {
  1958. public function canBeHashed() { return false; }
  1959. public function getCommandId() { return 'RANDOMKEY'; }
  1960. public function parseResponse($data) { return $data !== '' ? $data : null; }
  1961. }
  1962. class Rename extends Command {
  1963. public function canBeHashed() { return false; }
  1964. public function getCommandId() { return 'RENAME'; }
  1965. }
  1966. class RenamePreserve extends Command {
  1967. public function canBeHashed() { return false; }
  1968. public function getCommandId() { return 'RENAMENX'; }
  1969. public function parseResponse($data) { return (bool) $data; }
  1970. }
  1971. class Expire extends Command {
  1972. public function getCommandId() { return 'EXPIRE'; }
  1973. public function parseResponse($data) { return (bool) $data; }
  1974. }
  1975. class ExpireAt extends Command {
  1976. public function getCommandId() { return 'EXPIREAT'; }
  1977. public function parseResponse($data) { return (bool) $data; }
  1978. }
  1979. class DatabaseSize extends Command {
  1980. public function canBeHashed() { return false; }
  1981. public function getCommandId() { return 'DBSIZE'; }
  1982. }
  1983. class TimeToLive extends Command {
  1984. public function getCommandId() { return 'TTL'; }
  1985. }
  1986. /* commands operating on lists */
  1987. class ListPushTail extends Command {
  1988. public function getCommandId() { return 'RPUSH'; }
  1989. }
  1990. class ListPushHead extends Command {
  1991. public function getCommandId() { return 'LPUSH'; }
  1992. }
  1993. class ListLength extends Command {
  1994. public function getCommandId() { return 'LLEN'; }
  1995. }
  1996. class ListRange extends Command {
  1997. public function getCommandId() { return 'LRANGE'; }
  1998. }
  1999. class ListTrim extends Command {
  2000. public function getCommandId() { return 'LTRIM'; }
  2001. }
  2002. class ListIndex extends Command {
  2003. public function getCommandId() { return 'LINDEX'; }
  2004. }
  2005. class ListSet extends Command {
  2006. public function getCommandId() { return 'LSET'; }
  2007. }
  2008. class ListRemove extends Command {
  2009. public function getCommandId() { return 'LREM'; }
  2010. }
  2011. class ListPopLastPushHead extends Command {
  2012. public function getCommandId() { return 'RPOPLPUSH'; }
  2013. }
  2014. class ListPopLastPushHeadBulk extends Command {
  2015. public function getCommandId() { return 'RPOPLPUSH'; }
  2016. }
  2017. class ListPopFirst extends Command {
  2018. public function getCommandId() { return 'LPOP'; }
  2019. }
  2020. class ListPopLast extends Command {
  2021. public function getCommandId() { return 'RPOP'; }
  2022. }
  2023. class ListPopFirstBlocking extends Command {
  2024. public function getCommandId() { return 'BLPOP'; }
  2025. }
  2026. class ListPopLastBlocking extends Command {
  2027. public function getCommandId() { return 'BRPOP'; }
  2028. }
  2029. /* commands operating on sets */
  2030. class SetAdd extends Command {
  2031. public function getCommandId() { return 'SADD'; }
  2032. public function parseResponse($data) { return (bool) $data; }
  2033. }
  2034. class SetRemove extends Command {
  2035. public function getCommandId() { return 'SREM'; }
  2036. public function parseResponse($data) { return (bool) $data; }
  2037. }
  2038. class SetPop extends Command {
  2039. public function getCommandId() { return 'SPOP'; }
  2040. }
  2041. class SetMove extends Command {
  2042. public function canBeHashed() { return false; }
  2043. public function getCommandId() { return 'SMOVE'; }
  2044. public function parseResponse($data) { return (bool) $data; }
  2045. }
  2046. class SetCardinality extends Command {
  2047. public function getCommandId() { return 'SCARD'; }
  2048. }
  2049. class SetIsMember extends Command {
  2050. public function getCommandId() { return 'SISMEMBER'; }
  2051. public function parseResponse($data) { return (bool) $data; }
  2052. }
  2053. class SetIntersection extends Command {
  2054. public function getCommandId() { return 'SINTER'; }
  2055. public function filterArguments(Array $arguments) {
  2056. return Utils::filterArrayArguments($arguments);
  2057. }
  2058. }
  2059. class SetIntersectionStore extends Command {
  2060. public function getCommandId() { return 'SINTERSTORE'; }
  2061. public function filterArguments(Array $arguments) {
  2062. return Utils::filterArrayArguments($arguments);
  2063. }
  2064. }
  2065. class SetUnion extends SetIntersection {
  2066. public function getCommandId() { return 'SUNION'; }
  2067. }
  2068. class SetUnionStore extends SetIntersectionStore {
  2069. public function getCommandId() { return 'SUNIONSTORE'; }
  2070. }
  2071. class SetDifference extends SetIntersection {
  2072. public function getCommandId() { return 'SDIFF'; }
  2073. }
  2074. class SetDifferenceStore extends SetIntersectionStore {
  2075. public function getCommandId() { return 'SDIFFSTORE'; }
  2076. }
  2077. class SetMembers extends Command {
  2078. public function getCommandId() { return 'SMEMBERS'; }
  2079. }
  2080. class SetRandomMember extends Command {
  2081. public function getCommandId() { return 'SRANDMEMBER'; }
  2082. }
  2083. /* commands operating on sorted sets */
  2084. class ZSetAdd extends Command {
  2085. public function getCommandId() { return 'ZADD'; }
  2086. public function parseResponse($data) { return (bool) $data; }
  2087. }
  2088. class ZSetIncrementBy extends Command {
  2089. public function getCommandId() { return 'ZINCRBY'; }
  2090. }
  2091. class ZSetRemove extends Command {
  2092. public function getCommandId() { return 'ZREM'; }
  2093. public function parseResponse($data) { return (bool) $data; }
  2094. }
  2095. class ZSetUnionStore extends Command {
  2096. public function getCommandId() { return 'ZUNIONSTORE'; }
  2097. public function filterArguments(Array $arguments) {
  2098. $options = array();
  2099. $argc = count($arguments);
  2100. if ($argc > 1 && is_array($arguments[$argc - 1])) {
  2101. $options = $this->prepareOptions(array_pop($arguments));
  2102. }
  2103. $args = is_array($arguments[0]) ? $arguments[0] : $arguments;
  2104. return array_merge($args, $options);
  2105. }
  2106. private function prepareOptions($options) {
  2107. $opts = array_change_key_case($options, CASE_UPPER);
  2108. $finalizedOpts = array();
  2109. if (isset($opts['WEIGHTS']) && is_array($opts['WEIGHTS'])) {
  2110. $finalizedOpts[] = 'WEIGHTS';
  2111. foreach ($opts['WEIGHTS'] as $weight) {
  2112. $finalizedOpts[] = $weight;
  2113. }
  2114. }
  2115. if (isset($opts['AGGREGATE'])) {
  2116. $finalizedOpts[] = 'AGGREGATE';
  2117. $finalizedOpts[] = $opts['AGGREGATE'];
  2118. }
  2119. return $finalizedOpts;
  2120. }
  2121. }
  2122. class ZSetIntersectionStore extends ZSetUnionStore {
  2123. public function getCommandId() { return 'ZINTERSTORE'; }
  2124. }
  2125. class ZSetRange extends Command {
  2126. private $_withScores = false;
  2127. public function getCommandId() { return 'ZRANGE'; }
  2128. public function filterArguments(Array $arguments) {
  2129. if (count($arguments) === 4) {
  2130. $lastType = gettype($arguments[3]);
  2131. if ($lastType === 'string' && strtolower($arguments[3]) === 'withscores') {
  2132. // used for compatibility with older versions
  2133. $arguments[3] = array('WITHSCORES' => true);
  2134. $lastType = 'array';
  2135. }
  2136. if ($lastType === 'array') {
  2137. $options = $this->prepareOptions(array_pop($arguments));
  2138. return array_merge($arguments, $options);
  2139. }
  2140. }
  2141. return $arguments;
  2142. }
  2143. protected function prepareOptions($options) {
  2144. $opts = array_change_key_case($options, CASE_UPPER);
  2145. $finalizedOpts = array();
  2146. if (isset($opts['WITHSCORES'])) {
  2147. $finalizedOpts[] = 'WITHSCORES';
  2148. $this->_withScores = true;
  2149. }
  2150. return $finalizedOpts;
  2151. }
  2152. public function parseResponse($data) {
  2153. if ($this->_withScores) {
  2154. if ($data instanceof \Iterator) {
  2155. return new MultiBulkResponseKVIterator($data);
  2156. }
  2157. $result = array();
  2158. for ($i = 0; $i < count($data); $i++) {
  2159. $result[] = array($data[$i], $data[++$i]);
  2160. }
  2161. return $result;
  2162. }
  2163. return $data;
  2164. }
  2165. }
  2166. class ZSetReverseRange extends ZSetRange {
  2167. public function getCommandId() { return 'ZREVRANGE'; }
  2168. }
  2169. class ZSetRangeByScore extends ZSetRange {
  2170. public function getCommandId() { return 'ZRANGEBYSCORE'; }
  2171. protected function prepareOptions($options) {
  2172. $opts = array_change_key_case($options, CASE_UPPER);
  2173. $finalizedOpts = array();
  2174. if (isset($opts['LIMIT']) && is_array($opts['LIMIT'])) {
  2175. $limit = array_change_key_case($opts['LIMIT'], CASE_UPPER);
  2176. $finalizedOpts[] = 'LIMIT';
  2177. $finalizedOpts[] = isset($limit['OFFSET']) ? $limit['OFFSET'] : $limit[0];
  2178. $finalizedOpts[] = isset($limit['COUNT']) ? $limit['COUNT'] : $limit[1];
  2179. }
  2180. return array_merge($finalizedOpts, parent::prepareOptions($options));
  2181. }
  2182. }
  2183. class ZSetCount extends Command {
  2184. public function getCommandId() { return 'ZCOUNT'; }
  2185. }
  2186. class ZSetCardinality extends Command {
  2187. public function getCommandId() { return 'ZCARD'; }
  2188. }
  2189. class ZSetScore extends Command {
  2190. public function getCommandId() { return 'ZSCORE'; }
  2191. }
  2192. class ZSetRemoveRangeByScore extends Command {
  2193. public function getCommandId() { return 'ZREMRANGEBYSCORE'; }
  2194. }
  2195. class ZSetRank extends Command {
  2196. public function getCommandId() { return 'ZRANK'; }
  2197. }
  2198. class ZSetReverseRank extends Command {
  2199. public function getCommandId() { return 'ZREVRANK'; }
  2200. }
  2201. class ZSetRemoveRangeByRank extends Command {
  2202. public function getCommandId() { return 'ZREMRANGEBYRANK'; }
  2203. }
  2204. /* commands operating on hashes */
  2205. class HashSet extends Command {
  2206. public function getCommandId() { return 'HSET'; }
  2207. public function parseResponse($data) { return (bool) $data; }
  2208. }
  2209. class HashSetPreserve extends Command {
  2210. public function getCommandId() { return 'HSETNX'; }
  2211. public function parseResponse($data) { return (bool) $data; }
  2212. }
  2213. class HashSetMultiple extends Command {
  2214. public function getCommandId() { return 'HMSET'; }
  2215. public function filterArguments(Array $arguments) {
  2216. if (count($arguments) === 2 && is_array($arguments[1])) {
  2217. $flattenedKVs = array($arguments[0]);
  2218. $args = &$arguments[1];
  2219. foreach ($args as $k => $v) {
  2220. $flattenedKVs[] = $k;
  2221. $flattenedKVs[] = $v;
  2222. }
  2223. return $flattenedKVs;
  2224. }
  2225. return $arguments;
  2226. }
  2227. }
  2228. class HashIncrementBy extends Command {
  2229. public function getCommandId() { return 'HINCRBY'; }
  2230. }
  2231. class HashGet extends Command {
  2232. public function getCommandId() { return 'HGET'; }
  2233. }
  2234. class HashGetMultiple extends Command {
  2235. public function getCommandId() { return 'HMGET'; }
  2236. public function filterArguments(Array $arguments) {
  2237. if (count($arguments) === 2 && is_array($arguments[1])) {
  2238. $flattenedKVs = array($arguments[0]);
  2239. $args = &$arguments[1];
  2240. foreach ($args as $v) {
  2241. $flattenedKVs[] = $v;
  2242. }
  2243. return $flattenedKVs;
  2244. }
  2245. return $arguments;
  2246. }
  2247. }
  2248. class HashDelete extends Command {
  2249. public function getCommandId() { return 'HDEL'; }
  2250. public function parseResponse($data) { return (bool) $data; }
  2251. }
  2252. class HashExists extends Command {
  2253. public function getCommandId() { return 'HEXISTS'; }
  2254. public function parseResponse($data) { return (bool) $data; }
  2255. }
  2256. class HashLength extends Command {
  2257. public function getCommandId() { return 'HLEN'; }
  2258. }
  2259. class HashKeys extends Command {
  2260. public function getCommandId() { return 'HKEYS'; }
  2261. }
  2262. class HashValues extends Command {
  2263. public function getCommandId() { return 'HVALS'; }
  2264. }
  2265. class HashGetAll extends Command {
  2266. public function getCommandId() { return 'HGETALL'; }
  2267. public function parseResponse($data) {
  2268. if ($data instanceof \Iterator) {
  2269. return new MultiBulkResponseKVIterator($data);
  2270. }
  2271. $result = array();
  2272. for ($i = 0; $i < count($data); $i++) {
  2273. $result[$data[$i]] = $data[++$i];
  2274. }
  2275. return $result;
  2276. }
  2277. }
  2278. /* multiple databases handling commands */
  2279. class SelectDatabase extends Command {
  2280. public function canBeHashed() { return false; }
  2281. public function getCommandId() { return 'SELECT'; }
  2282. }
  2283. class MoveKey extends Command {
  2284. public function canBeHashed() { return false; }
  2285. public function getCommandId() { return 'MOVE'; }
  2286. public function parseResponse($data) { return (bool) $data; }
  2287. }
  2288. class FlushDatabase extends Command {
  2289. public function canBeHashed() { return false; }
  2290. public function getCommandId() { return 'FLUSHDB'; }
  2291. }
  2292. class FlushAll extends Command {
  2293. public function canBeHashed() { return false; }
  2294. public function getCommandId() { return 'FLUSHALL'; }
  2295. }
  2296. /* sorting */
  2297. class Sort extends Command {
  2298. public function getCommandId() { return 'SORT'; }
  2299. public function filterArguments(Array $arguments) {
  2300. if (count($arguments) === 1) {
  2301. return $arguments;
  2302. }
  2303. $query = array($arguments[0]);
  2304. $sortParams = array_change_key_case($arguments[1], CASE_UPPER);
  2305. if (isset($sortParams['BY'])) {
  2306. $query[] = 'BY';
  2307. $query[] = $sortParams['BY'];
  2308. }
  2309. if (isset($sortParams['GET'])) {
  2310. $getargs = $sortParams['GET'];
  2311. if (is_array($getargs)) {
  2312. foreach ($getargs as $getarg) {
  2313. $query[] = 'GET';
  2314. $query[] = $getarg;
  2315. }
  2316. }
  2317. else {
  2318. $query[] = 'GET';
  2319. $query[] = $getargs;
  2320. }
  2321. }
  2322. if (isset($sortParams['LIMIT']) && is_array($sortParams['LIMIT'])
  2323. && count($sortParams['LIMIT']) == 2) {
  2324. $query[] = 'LIMIT';
  2325. $query[] = $sortParams['LIMIT'][0];
  2326. $query[] = $sortParams['LIMIT'][1];
  2327. }
  2328. if (isset($sortParams['SORT'])) {
  2329. $query[] = strtoupper($sortParams['SORT']);
  2330. }
  2331. if (isset($sortParams['ALPHA']) && $sortParams['ALPHA'] == true) {
  2332. $query[] = 'ALPHA';
  2333. }
  2334. if (isset($sortParams['STORE'])) {
  2335. $query[] = 'STORE';
  2336. $query[] = $sortParams['STORE'];
  2337. }
  2338. return $query;
  2339. }
  2340. }
  2341. /* transactions */
  2342. class Multi extends Command {
  2343. public function canBeHashed() { return false; }
  2344. public function getCommandId() { return 'MULTI'; }
  2345. }
  2346. class Exec extends Command {
  2347. public function canBeHashed() { return false; }
  2348. public function getCommandId() { return 'EXEC'; }
  2349. }
  2350. class Discard extends Command {
  2351. public function canBeHashed() { return false; }
  2352. public function getCommandId() { return 'DISCARD'; }
  2353. }
  2354. class Watch extends Command {
  2355. public function canBeHashed() { return false; }
  2356. public function getCommandId() { return 'WATCH'; }
  2357. public function parseResponse($data) { return (bool) $data; }
  2358. }
  2359. class Unwatch extends Command {
  2360. public function canBeHashed() { return false; }
  2361. public function getCommandId() { return 'UNWATCH'; }
  2362. public function parseResponse($data) { return (bool) $data; }
  2363. }
  2364. /* publish/subscribe */
  2365. class Subscribe extends Command {
  2366. public function canBeHashed() { return false; }
  2367. public function getCommandId() { return 'SUBSCRIBE'; }
  2368. }
  2369. class Unsubscribe extends Command {
  2370. public function canBeHashed() { return false; }
  2371. public function getCommandId() { return 'UNSUBSCRIBE'; }
  2372. }
  2373. class SubscribeByPattern extends Command {
  2374. public function canBeHashed() { return false; }
  2375. public function getCommandId() { return 'PSUBSCRIBE'; }
  2376. }
  2377. class UnsubscribeByPattern extends Command {
  2378. public function canBeHashed() { return false; }
  2379. public function getCommandId() { return 'PUNSUBSCRIBE'; }
  2380. }
  2381. class Publish extends Command {
  2382. public function canBeHashed() { return false; }
  2383. public function getCommandId() { return 'PUBLISH'; }
  2384. }
  2385. /* persistence control commands */
  2386. class Save extends Command {
  2387. public function canBeHashed() { return false; }
  2388. public function getCommandId() { return 'SAVE'; }
  2389. }
  2390. class BackgroundSave extends Command {
  2391. public function canBeHashed() { return false; }
  2392. public function getCommandId() { return 'BGSAVE'; }
  2393. public function parseResponse($data) {
  2394. if ($data == 'Background saving started') {
  2395. return true;
  2396. }
  2397. return $data;
  2398. }
  2399. }
  2400. class BackgroundRewriteAppendOnlyFile extends Command {
  2401. public function canBeHashed() { return false; }
  2402. public function getCommandId() { return 'BGREWRITEAOF'; }
  2403. public function parseResponse($data) {
  2404. return $data == 'Background append only file rewriting started';
  2405. }
  2406. }
  2407. class LastSave extends Command {
  2408. public function canBeHashed() { return false; }
  2409. public function getCommandId() { return 'LASTSAVE'; }
  2410. }
  2411. class Shutdown extends Command {
  2412. public function canBeHashed() { return false; }
  2413. public function getCommandId() { return 'SHUTDOWN'; }
  2414. public function closesConnection() { return true; }
  2415. }
  2416. /* remote server control commands */
  2417. class Info extends Command {
  2418. public function canBeHashed() { return false; }
  2419. public function getCommandId() { return 'INFO'; }
  2420. public function parseResponse($data) {
  2421. $info = array();
  2422. $infoLines = explode("\r\n", $data, -1);
  2423. foreach ($infoLines as $row) {
  2424. list($k, $v) = explode(':', $row);
  2425. if (!preg_match('/^db\d+$/', $k)) {
  2426. $info[$k] = $v;
  2427. }
  2428. else {
  2429. $db = array();
  2430. foreach (explode(',', $v) as $dbvar) {
  2431. list($dbvk, $dbvv) = explode('=', $dbvar);
  2432. $db[trim($dbvk)] = $dbvv;
  2433. }
  2434. $info[$k] = $db;
  2435. }
  2436. }
  2437. return $info;
  2438. }
  2439. }
  2440. class SlaveOf extends Command {
  2441. public function canBeHashed() { return false; }
  2442. public function getCommandId() { return 'SLAVEOF'; }
  2443. public function filterArguments(Array $arguments) {
  2444. if (count($arguments) === 0 || $arguments[0] === 'NO ONE') {
  2445. return array('NO', 'ONE');
  2446. }
  2447. return $arguments;
  2448. }
  2449. }
  2450. class Config extends Command {
  2451. public function canBeHashed() { return false; }
  2452. public function getCommandId() { return 'CONFIG'; }
  2453. }
  2454. ?>