Predis.php 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928
  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(), 'initMultiExec');
  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. if ($block !== null) {
  749. $this->setInsideBlock(true);
  750. try {
  751. $block($this);
  752. }
  753. catch (CommunicationException $exception) {
  754. $blockException = $exception;
  755. }
  756. catch (ServerException $exception) {
  757. $blockException = $exception;
  758. }
  759. catch (\Exception $exception) {
  760. $blockException = $exception;
  761. if ($this->_initialized === true) {
  762. $this->discard();
  763. }
  764. }
  765. $this->setInsideBlock(false);
  766. if ($blockException !== null) {
  767. throw $blockException;
  768. }
  769. }
  770. if ($this->_initialized === false) {
  771. return;
  772. }
  773. $reply = $this->_redisClient->exec();
  774. if ($reply === null) {
  775. throw new AbortedMultiExec('The current transaction has been aborted by the server');
  776. }
  777. $execReply = $reply instanceof \Iterator ? iterator_to_array($reply) : $reply;
  778. $commands = &$this->_commands;
  779. $sizeofReplies = count($execReply);
  780. if ($sizeofReplies !== count($commands)) {
  781. $this->malformedServerResponse('Unexpected number of responses for a MultiExecBlock');
  782. }
  783. for ($i = 0; $i < $sizeofReplies; $i++) {
  784. $returnValues[] = $commands[$i]->parseResponse($execReply[$i] instanceof \Iterator
  785. ? iterator_to_array($execReply[$i])
  786. : $execReply[$i]
  787. );
  788. unset($commands[$i]);
  789. }
  790. return $returnValues;
  791. }
  792. private function malformedServerResponse($message) {
  793. // NOTE: a MULTI/EXEC block cannot be initialized on a clustered
  794. // connection, which means that Predis\Client::getConnection
  795. // will always return an instance of Predis\Connection.
  796. Utils::onCommunicationException(new MalformedServerResponse(
  797. $this->_redisClient->getConnection(), $message
  798. ));
  799. }
  800. }
  801. class PubSubContext implements \Iterator {
  802. const SUBSCRIBE = 'subscribe';
  803. const UNSUBSCRIBE = 'unsubscribe';
  804. const PSUBSCRIBE = 'psubscribe';
  805. const PUNSUBSCRIBE = 'punsubscribe';
  806. const MESSAGE = 'message';
  807. const PMESSAGE = 'pmessage';
  808. const STATUS_VALID = 0x0001;
  809. const STATUS_SUBSCRIBED = 0x0010;
  810. const STATUS_PSUBSCRIBED = 0x0100;
  811. private $_redisClient, $_subscriptions, $_isStillValid, $_position;
  812. public function __construct(Client $redisClient) {
  813. $this->checkCapabilities($redisClient);
  814. $this->_redisClient = $redisClient;
  815. $this->_statusFlags = self::STATUS_VALID;
  816. }
  817. public function __destruct() {
  818. $this->closeContext();
  819. }
  820. private function checkCapabilities(Client $redisClient) {
  821. if (Utils::isCluster($redisClient->getConnection())) {
  822. throw new ClientException(
  823. 'Cannot initialize a PUB/SUB context over a cluster of connections'
  824. );
  825. }
  826. $profile = $redisClient->getProfile();
  827. $commands = array('publish', 'subscribe', 'unsubscribe', 'psubscribe', 'punsubscribe');
  828. if ($profile->supportsCommands($commands) === false) {
  829. throw new ClientException(
  830. 'The current profile does not support PUB/SUB related commands'
  831. );
  832. }
  833. }
  834. private function isFlagSet($value) {
  835. return ($this->_statusFlags & $value) === $value;
  836. }
  837. public function subscribe(/* arguments */) {
  838. $this->writeCommand(self::SUBSCRIBE, func_get_args());
  839. $this->_statusFlags |= self::STATUS_SUBSCRIBED;
  840. }
  841. public function unsubscribe(/* arguments */) {
  842. $this->writeCommand(self::UNSUBSCRIBE, func_get_args());
  843. }
  844. public function psubscribe(/* arguments */) {
  845. $this->writeCommand(self::PSUBSCRIBE, func_get_args());
  846. $this->_statusFlags |= self::STATUS_PSUBSCRIBED;
  847. }
  848. public function punsubscribe(/* arguments */) {
  849. $this->writeCommand(self::PUNSUBSCRIBE, func_get_args());
  850. }
  851. public function closeContext() {
  852. if ($this->valid()) {
  853. if ($this->isFlagSet(self::STATUS_SUBSCRIBED)) {
  854. $this->unsubscribe();
  855. }
  856. if ($this->isFlagSet(self::STATUS_PSUBSCRIBED)) {
  857. $this->punsubscribe();
  858. }
  859. }
  860. }
  861. private function writeCommand($method, $arguments) {
  862. if (count($arguments) === 1 && is_array($arguments[0])) {
  863. $arguments = $arguments[0];
  864. }
  865. $command = $this->_redisClient->createCommand($method, $arguments);
  866. $this->_redisClient->getConnection()->writeCommand($command);
  867. }
  868. public function rewind() {
  869. // NOOP
  870. }
  871. public function current() {
  872. return $this->getValue();
  873. }
  874. public function key() {
  875. return $this->_position;
  876. }
  877. public function next() {
  878. if ($this->isFlagSet(self::STATUS_VALID)) {
  879. $this->_position++;
  880. }
  881. return $this->_position;
  882. }
  883. public function valid() {
  884. $subscriptions = self::STATUS_SUBSCRIBED + self::STATUS_PSUBSCRIBED;
  885. return $this->isFlagSet(self::STATUS_VALID)
  886. && ($this->_statusFlags & $subscriptions) > 0;
  887. }
  888. private function invalidate() {
  889. $this->_statusFlags = 0x0000;
  890. }
  891. private function getValue() {
  892. $reader = $this->_redisClient->getResponseReader();
  893. $connection = $this->_redisClient->getConnection();
  894. $response = $reader->read($connection);
  895. switch ($response[0]) {
  896. case self::SUBSCRIBE:
  897. case self::UNSUBSCRIBE:
  898. case self::PSUBSCRIBE:
  899. case self::PUNSUBSCRIBE:
  900. if ($response[2] === 0) {
  901. $this->invalidate();
  902. }
  903. case self::MESSAGE:
  904. return (object) array(
  905. 'kind' => $response[0],
  906. 'channel' => $response[1],
  907. 'payload' => $response[2],
  908. );
  909. case self::PMESSAGE:
  910. return (object) array(
  911. 'kind' => $response[0],
  912. 'pattern' => $response[1],
  913. 'channel' => $response[2],
  914. 'payload' => $response[3],
  915. );
  916. default:
  917. throw new ClientException(
  918. "Received an unknown message type {$response[0]} inside of a pubsub context"
  919. );
  920. }
  921. }
  922. }
  923. /* ------------------------------------------------------------------------- */
  924. class ConnectionParameters {
  925. const DEFAULT_SCHEME = 'tcp';
  926. const DEFAULT_HOST = '127.0.0.1';
  927. const DEFAULT_PORT = 6379;
  928. const DEFAULT_TIMEOUT = 5;
  929. private $_parameters;
  930. public function __construct($parameters = null) {
  931. $parameters = $parameters ?: array();
  932. $this->_parameters = is_array($parameters)
  933. ? self::filterConnectionParams($parameters)
  934. : self::parseURI($parameters);
  935. }
  936. private static function paramsExtractor($params, $kv) {
  937. @list($k, $v) = explode('=', $kv);
  938. $params[$k] = $v;
  939. return $params;
  940. }
  941. private static function parseURI($uri) {
  942. $parsed = @parse_url($uri);
  943. if ($parsed == false || $parsed['host'] == null) {
  944. throw new ClientException("Invalid URI: $uri");
  945. }
  946. if (array_key_exists('query', $parsed)) {
  947. $query = explode('&', $parsed['query']);
  948. $parsed = array_reduce($query, 'self::paramsExtractor', $parsed);
  949. }
  950. return self::filterConnectionParams($parsed);
  951. }
  952. private static function getParamOrDefault(Array $parameters, $param, $default = null) {
  953. return array_key_exists($param, $parameters) ? $parameters[$param] : $default;
  954. }
  955. private static function filterConnectionParams($parameters) {
  956. return array(
  957. 'scheme' => self::getParamOrDefault($parameters, 'scheme', self::DEFAULT_SCHEME),
  958. 'host' => self::getParamOrDefault($parameters, 'host', self::DEFAULT_HOST),
  959. 'port' => (int) self::getParamOrDefault($parameters, 'port', self::DEFAULT_PORT),
  960. 'database' => self::getParamOrDefault($parameters, 'database'),
  961. 'password' => self::getParamOrDefault($parameters, 'password'),
  962. 'connection_async' => self::getParamOrDefault($parameters, 'connection_async', false),
  963. 'connection_persistent' => self::getParamOrDefault($parameters, 'connection_persistent', false),
  964. 'connection_timeout' => self::getParamOrDefault($parameters, 'connection_timeout', self::DEFAULT_TIMEOUT),
  965. 'read_write_timeout' => self::getParamOrDefault($parameters, 'read_write_timeout'),
  966. 'alias' => self::getParamOrDefault($parameters, 'alias'),
  967. 'weight' => self::getParamOrDefault($parameters, 'weight'),
  968. );
  969. }
  970. public function __get($parameter) {
  971. return $this->_parameters[$parameter];
  972. }
  973. public function __isset($parameter) {
  974. return isset($this->_parameters[$parameter]);
  975. }
  976. }
  977. interface IConnection {
  978. public function connect();
  979. public function disconnect();
  980. public function isConnected();
  981. public function writeCommand(ICommand $command);
  982. public function readResponse(ICommand $command);
  983. public function executeCommand(ICommand $command);
  984. }
  985. interface IConnectionSingle extends IConnection {
  986. public function writeBytes($buffer);
  987. public function readBytes($length);
  988. public function readLine();
  989. }
  990. interface IConnectionCluster extends IConnection {
  991. public function getConnection(ICommand $command);
  992. public function getConnectionById($connectionId);
  993. }
  994. final class ConnectionFactory {
  995. private static $_registeredSchemes;
  996. private function __construct() {
  997. // NOOP
  998. }
  999. private static function ensureInitialized() {
  1000. if (!isset(self::$_registeredSchemes)) {
  1001. self::$_registeredSchemes = self::getDefaultSchemes();
  1002. }
  1003. }
  1004. private static function getDefaultSchemes() {
  1005. return array(
  1006. 'tcp' => '\Predis\TcpConnection',
  1007. 'redis' => '\Predis\TcpConnection', // compatibility with older versions
  1008. );
  1009. }
  1010. public static function registerScheme($scheme, $connectionClass) {
  1011. self::ensureInitialized();
  1012. $connectionReflection = new \ReflectionClass($connectionClass);
  1013. if (!$connectionReflection->isSubclassOf('\Predis\IConnectionSingle')) {
  1014. throw new ClientException(
  1015. "Cannot register '$connectionClass' as it is not a valid connection class"
  1016. );
  1017. }
  1018. self::$_registeredSchemes[$scheme] = $connectionClass;
  1019. }
  1020. public static function create(ConnectionParameters $parameters, ResponseReader $reader) {
  1021. self::ensureInitialized();
  1022. if (!isset(self::$_registeredSchemes[$parameters->scheme])) {
  1023. throw new ClientException("Unknown connection scheme: {$parameters->scheme}");
  1024. }
  1025. $connection = self::$_registeredSchemes[$parameters->scheme];
  1026. return new $connection($parameters, $reader);
  1027. }
  1028. }
  1029. abstract class Connection implements IConnectionSingle {
  1030. protected $_params, $_socket, $_initCmds, $_reader;
  1031. public function __construct(ConnectionParameters $parameters, ResponseReader $reader = null) {
  1032. $this->_params = $parameters;
  1033. $this->_initCmds = array();
  1034. $this->_reader = $reader ?: new ResponseReader();
  1035. }
  1036. public function __destruct() {
  1037. $this->disconnect();
  1038. }
  1039. public function isConnected() {
  1040. return is_resource($this->_socket);
  1041. }
  1042. protected abstract function createResource();
  1043. public function connect() {
  1044. if ($this->isConnected()) {
  1045. throw new ClientException('Connection already estabilished');
  1046. }
  1047. $this->createResource();
  1048. }
  1049. public function disconnect() {
  1050. if ($this->isConnected()) {
  1051. fclose($this->_socket);
  1052. }
  1053. }
  1054. public function pushInitCommand(ICommand $command){
  1055. $this->_initCmds[] = $command;
  1056. }
  1057. public function executeCommand(ICommand $command) {
  1058. $this->writeCommand($command);
  1059. if ($command->closesConnection()) {
  1060. return $this->disconnect();
  1061. }
  1062. return $this->readResponse($command);
  1063. }
  1064. protected function onCommunicationException($message, $code = null) {
  1065. Utils::onCommunicationException(
  1066. new CommunicationException($this, $message, $code)
  1067. );
  1068. }
  1069. public function getSocket() {
  1070. if (!$this->isConnected()) {
  1071. $this->connect();
  1072. }
  1073. return $this->_socket;
  1074. }
  1075. public function getResponseReader() {
  1076. return $this->_reader;
  1077. }
  1078. public function getParameters() {
  1079. return $this->_params;
  1080. }
  1081. public function __toString() {
  1082. return sprintf('%s:%d', $this->_params->host, $this->_params->port);
  1083. }
  1084. }
  1085. class TcpConnection extends Connection implements IConnectionSingle {
  1086. public function __construct(ConnectionParameters $parameters, ResponseReader $reader = null) {
  1087. parent::__construct($this->checkParameters($parameters), $reader);
  1088. }
  1089. public function __destruct() {
  1090. if (!$this->_params->connection_persistent) {
  1091. $this->disconnect();
  1092. }
  1093. }
  1094. private function checkParameters(ConnectionParameters $parameters) {
  1095. if ($parameters->scheme != 'tcp' && $parameters->scheme != 'redis') {
  1096. throw new \InvalidArgumentException("Invalid scheme: {$parameters->scheme}");
  1097. }
  1098. return $parameters;
  1099. }
  1100. protected function createResource() {
  1101. $uri = sprintf('tcp://%s:%d/', $this->_params->host, $this->_params->port);
  1102. $connectFlags = STREAM_CLIENT_CONNECT;
  1103. if ($this->_params->connection_async) {
  1104. $connectFlags |= STREAM_CLIENT_ASYNC_CONNECT;
  1105. }
  1106. if ($this->_params->connection_persistent) {
  1107. $connectFlags |= STREAM_CLIENT_PERSISTENT;
  1108. }
  1109. $this->_socket = @stream_socket_client(
  1110. $uri, $errno, $errstr, $this->_params->connection_timeout, $connectFlags
  1111. );
  1112. if (!$this->_socket) {
  1113. $this->onCommunicationException(trim($errstr), $errno);
  1114. }
  1115. if (isset($this->_params->read_write_timeout)) {
  1116. $timeoutSeconds = floor($this->_params->read_write_timeout);
  1117. $timeoutUSeconds = ($this->_params->read_write_timeout - $timeoutSeconds) * 1000000;
  1118. stream_set_timeout($this->_socket, $timeoutSeconds, $timeoutUSeconds);
  1119. }
  1120. }
  1121. private function sendInitializationCommands() {
  1122. foreach ($this->_initCmds as $command) {
  1123. $this->writeCommand($command);
  1124. }
  1125. foreach ($this->_initCmds as $command) {
  1126. $this->readResponse($command);
  1127. }
  1128. }
  1129. public function connect() {
  1130. parent::connect();
  1131. if (count($this->_initCmds) > 0){
  1132. $this->sendInitializationCommands();
  1133. }
  1134. }
  1135. public function writeCommand(ICommand $command) {
  1136. $this->writeBytes($command->serialize());
  1137. }
  1138. public function readResponse(ICommand $command) {
  1139. $response = $this->_reader->read($this);
  1140. $skipparse = isset($response->queued) || isset($response->error);
  1141. return $skipparse ? $response : $command->parseResponse($response);
  1142. }
  1143. public function rawCommand($rawCommandData, $closesConnection = false) {
  1144. $this->writeBytes($rawCommandData);
  1145. if ($closesConnection) {
  1146. $this->disconnect();
  1147. return;
  1148. }
  1149. return $this->_reader->read($this);
  1150. }
  1151. public function writeBytes($value) {
  1152. $socket = $this->getSocket();
  1153. while (($length = strlen($value)) > 0) {
  1154. $written = fwrite($socket, $value);
  1155. if ($length === $written) {
  1156. return true;
  1157. }
  1158. if ($written === false || $written === 0) {
  1159. $this->onCommunicationException('Error while writing bytes to the server');
  1160. }
  1161. $value = substr($value, $written);
  1162. }
  1163. return true;
  1164. }
  1165. public function readBytes($length) {
  1166. if ($length == 0) {
  1167. throw new \InvalidArgumentException('Length parameter must be greater than 0');
  1168. }
  1169. $socket = $this->getSocket();
  1170. $value = '';
  1171. do {
  1172. $chunk = fread($socket, $length);
  1173. if ($chunk === false || $chunk === '') {
  1174. $this->onCommunicationException('Error while reading bytes from the server');
  1175. }
  1176. $value .= $chunk;
  1177. }
  1178. while (($length -= strlen($chunk)) > 0);
  1179. return $value;
  1180. }
  1181. public function readLine() {
  1182. $socket = $this->getSocket();
  1183. $value = '';
  1184. do {
  1185. $chunk = fgets($socket);
  1186. if ($chunk === false || strlen($chunk) == 0) {
  1187. $this->onCommunicationException('Error while reading line from the server');
  1188. }
  1189. $value .= $chunk;
  1190. }
  1191. while (substr($value, -2) !== Protocol::NEWLINE);
  1192. return substr($value, 0, -2);
  1193. }
  1194. }
  1195. class ConnectionCluster implements IConnectionCluster, \IteratorAggregate {
  1196. private $_pool, $_distributor;
  1197. public function __construct(IDistributionStrategy $distributor = null) {
  1198. $this->_pool = array();
  1199. $this->_distributor = $distributor ?: new Distribution\HashRing();
  1200. }
  1201. public function isConnected() {
  1202. foreach ($this->_pool as $connection) {
  1203. if ($connection->isConnected()) {
  1204. return true;
  1205. }
  1206. }
  1207. return false;
  1208. }
  1209. public function connect() {
  1210. foreach ($this->_pool as $connection) {
  1211. $connection->connect();
  1212. }
  1213. }
  1214. public function disconnect() {
  1215. foreach ($this->_pool as $connection) {
  1216. $connection->disconnect();
  1217. }
  1218. }
  1219. public function add(IConnectionSingle $connection) {
  1220. $parameters = $connection->getParameters();
  1221. if (isset($parameters->alias)) {
  1222. $this->_pool[$parameters->alias] = $connection;
  1223. }
  1224. else {
  1225. $this->_pool[] = $connection;
  1226. }
  1227. $this->_distributor->add($connection, $parameters->weight);
  1228. }
  1229. public function getConnection(ICommand $command) {
  1230. if ($command->canBeHashed() === false) {
  1231. throw new ClientException(
  1232. sprintf("Cannot send '%s' commands to a cluster of connections", $command->getCommandId())
  1233. );
  1234. }
  1235. return $this->_distributor->get($command->getHash($this->_distributor));
  1236. }
  1237. public function getConnectionById($id = null) {
  1238. $alias = $id ?: 0;
  1239. return isset($this->_pool[$alias]) ? $this->_pool[$alias] : null;
  1240. }
  1241. public function getIterator() {
  1242. return new \ArrayIterator($this->_pool);
  1243. }
  1244. public function writeCommand(ICommand $command) {
  1245. $this->getConnection($command)->writeCommand($command);
  1246. }
  1247. public function readResponse(ICommand $command) {
  1248. return $this->getConnection($command)->readResponse($command);
  1249. }
  1250. public function executeCommand(ICommand $command) {
  1251. $connection = $this->getConnection($command);
  1252. $connection->writeCommand($command);
  1253. return $connection->readResponse($command);
  1254. }
  1255. }
  1256. /* ------------------------------------------------------------------------- */
  1257. abstract class RedisServerProfile {
  1258. private static $_serverProfiles;
  1259. private $_registeredCommands;
  1260. public function __construct() {
  1261. $this->_registeredCommands = $this->getSupportedCommands();
  1262. }
  1263. public abstract function getVersion();
  1264. protected abstract function getSupportedCommands();
  1265. public static function getDefault() {
  1266. return self::get('default');
  1267. }
  1268. public static function getDevelopment() {
  1269. return self::get('dev');
  1270. }
  1271. private static function predisServerProfiles() {
  1272. return array(
  1273. '1.2' => '\Predis\RedisServer_v1_2',
  1274. '2.0' => '\Predis\RedisServer_v2_0',
  1275. 'default' => '\Predis\RedisServer_v2_0',
  1276. 'dev' => '\Predis\RedisServer_vNext',
  1277. );
  1278. }
  1279. public static function registerProfile($profileClass, $aliases) {
  1280. if (!isset(self::$_serverProfiles)) {
  1281. self::$_serverProfiles = self::predisServerProfiles();
  1282. }
  1283. $profileReflection = new \ReflectionClass($profileClass);
  1284. if (!$profileReflection->isSubclassOf('\Predis\RedisServerProfile')) {
  1285. throw new ClientException("Cannot register '$profileClass' as it is not a valid profile class");
  1286. }
  1287. if (is_array($aliases)) {
  1288. foreach ($aliases as $alias) {
  1289. self::$_serverProfiles[$alias] = $profileClass;
  1290. }
  1291. }
  1292. else {
  1293. self::$_serverProfiles[$aliases] = $profileClass;
  1294. }
  1295. }
  1296. public static function get($version) {
  1297. if (!isset(self::$_serverProfiles)) {
  1298. self::$_serverProfiles = self::predisServerProfiles();
  1299. }
  1300. if (!isset(self::$_serverProfiles[$version])) {
  1301. throw new ClientException("Unknown server profile: $version");
  1302. }
  1303. $profile = self::$_serverProfiles[$version];
  1304. return new $profile();
  1305. }
  1306. public function supportsCommands(Array $commands) {
  1307. foreach ($commands as $command) {
  1308. if ($this->supportsCommand($command) === false) {
  1309. return false;
  1310. }
  1311. }
  1312. return true;
  1313. }
  1314. public function supportsCommand($command) {
  1315. return isset($this->_registeredCommands[$command]);
  1316. }
  1317. public function createCommand($method, $arguments = array()) {
  1318. if (!isset($this->_registeredCommands[$method])) {
  1319. throw new ClientException("'$method' is not a registered Redis command");
  1320. }
  1321. $commandClass = $this->_registeredCommands[$method];
  1322. $command = new $commandClass();
  1323. $command->setArgumentsArray($arguments);
  1324. return $command;
  1325. }
  1326. public function registerCommands(Array $commands) {
  1327. foreach ($commands as $command => $aliases) {
  1328. $this->registerCommand($command, $aliases);
  1329. }
  1330. }
  1331. public function registerCommand($command, $aliases) {
  1332. $commandReflection = new \ReflectionClass($command);
  1333. if (!$commandReflection->isSubclassOf('\Predis\Command')) {
  1334. throw new ClientException("Cannot register '$command' as it is not a valid Redis command");
  1335. }
  1336. if (is_array($aliases)) {
  1337. foreach ($aliases as $alias) {
  1338. $this->_registeredCommands[$alias] = $command;
  1339. }
  1340. }
  1341. else {
  1342. $this->_registeredCommands[$aliases] = $command;
  1343. }
  1344. }
  1345. public function __toString() {
  1346. return $this->getVersion();
  1347. }
  1348. }
  1349. class RedisServer_v1_2 extends RedisServerProfile {
  1350. public function getVersion() { return '1.2'; }
  1351. public function getSupportedCommands() {
  1352. return array(
  1353. /* miscellaneous commands */
  1354. 'ping' => '\Predis\Commands\Ping',
  1355. 'echo' => '\Predis\Commands\DoEcho',
  1356. 'auth' => '\Predis\Commands\Auth',
  1357. /* connection handling */
  1358. 'quit' => '\Predis\Commands\Quit',
  1359. /* commands operating on string values */
  1360. 'set' => '\Predis\Commands\Set',
  1361. 'setnx' => '\Predis\Commands\SetPreserve',
  1362. 'mset' => '\Predis\Commands\SetMultiple',
  1363. 'msetnx' => '\Predis\Commands\SetMultiplePreserve',
  1364. 'get' => '\Predis\Commands\Get',
  1365. 'mget' => '\Predis\Commands\GetMultiple',
  1366. 'getset' => '\Predis\Commands\GetSet',
  1367. 'incr' => '\Predis\Commands\Increment',
  1368. 'incrby' => '\Predis\Commands\IncrementBy',
  1369. 'decr' => '\Predis\Commands\Decrement',
  1370. 'decrby' => '\Predis\Commands\DecrementBy',
  1371. 'exists' => '\Predis\Commands\Exists',
  1372. 'del' => '\Predis\Commands\Delete',
  1373. 'type' => '\Predis\Commands\Type',
  1374. /* commands operating on the key space */
  1375. 'keys' => '\Predis\Commands\Keys',
  1376. 'randomkey' => '\Predis\Commands\RandomKey',
  1377. 'rename' => '\Predis\Commands\Rename',
  1378. 'renamenx' => '\Predis\Commands\RenamePreserve',
  1379. 'expire' => '\Predis\Commands\Expire',
  1380. 'expireat' => '\Predis\Commands\ExpireAt',
  1381. 'dbsize' => '\Predis\Commands\DatabaseSize',
  1382. 'ttl' => '\Predis\Commands\TimeToLive',
  1383. /* commands operating on lists */
  1384. 'rpush' => '\Predis\Commands\ListPushTail',
  1385. 'lpush' => '\Predis\Commands\ListPushHead',
  1386. 'llen' => '\Predis\Commands\ListLength',
  1387. 'lrange' => '\Predis\Commands\ListRange',
  1388. 'ltrim' => '\Predis\Commands\ListTrim',
  1389. 'lindex' => '\Predis\Commands\ListIndex',
  1390. 'lset' => '\Predis\Commands\ListSet',
  1391. 'lrem' => '\Predis\Commands\ListRemove',
  1392. 'lpop' => '\Predis\Commands\ListPopFirst',
  1393. 'rpop' => '\Predis\Commands\ListPopLast',
  1394. 'rpoplpush' => '\Predis\Commands\ListPopLastPushHead',
  1395. /* commands operating on sets */
  1396. 'sadd' => '\Predis\Commands\SetAdd',
  1397. 'srem' => '\Predis\Commands\SetRemove',
  1398. 'spop' => '\Predis\Commands\SetPop',
  1399. 'smove' => '\Predis\Commands\SetMove',
  1400. 'scard' => '\Predis\Commands\SetCardinality',
  1401. 'sismember' => '\Predis\Commands\SetIsMember',
  1402. 'sinter' => '\Predis\Commands\SetIntersection',
  1403. 'sinterstore' => '\Predis\Commands\SetIntersectionStore',
  1404. 'sunion' => '\Predis\Commands\SetUnion',
  1405. 'sunionstore' => '\Predis\Commands\SetUnionStore',
  1406. 'sdiff' => '\Predis\Commands\SetDifference',
  1407. 'sdiffstore' => '\Predis\Commands\SetDifferenceStore',
  1408. 'smembers' => '\Predis\Commands\SetMembers',
  1409. 'srandmember' => '\Predis\Commands\SetRandomMember',
  1410. /* commands operating on sorted sets */
  1411. 'zadd' => '\Predis\Commands\ZSetAdd',
  1412. 'zincrby' => '\Predis\Commands\ZSetIncrementBy',
  1413. 'zrem' => '\Predis\Commands\ZSetRemove',
  1414. 'zrange' => '\Predis\Commands\ZSetRange',
  1415. 'zrevrange' => '\Predis\Commands\ZSetReverseRange',
  1416. 'zrangebyscore' => '\Predis\Commands\ZSetRangeByScore',
  1417. 'zcard' => '\Predis\Commands\ZSetCardinality',
  1418. 'zscore' => '\Predis\Commands\ZSetScore',
  1419. 'zremrangebyscore' => '\Predis\Commands\ZSetRemoveRangeByScore',
  1420. /* multiple databases handling commands */
  1421. 'select' => '\Predis\Commands\SelectDatabase',
  1422. 'move' => '\Predis\Commands\MoveKey',
  1423. 'flushdb' => '\Predis\Commands\FlushDatabase',
  1424. 'flushall' => '\Predis\Commands\FlushAll',
  1425. /* sorting */
  1426. 'sort' => '\Predis\Commands\Sort',
  1427. /* remote server control commands */
  1428. 'info' => '\Predis\Commands\Info',
  1429. 'slaveof' => '\Predis\Commands\SlaveOf',
  1430. /* persistence control commands */
  1431. 'save' => '\Predis\Commands\Save',
  1432. 'bgsave' => '\Predis\Commands\BackgroundSave',
  1433. 'lastsave' => '\Predis\Commands\LastSave',
  1434. 'shutdown' => '\Predis\Commands\Shutdown',
  1435. 'bgrewriteaof' => '\Predis\Commands\BackgroundRewriteAppendOnlyFile',
  1436. );
  1437. }
  1438. }
  1439. class RedisServer_v2_0 extends RedisServer_v1_2 {
  1440. public function getVersion() { return '2.0'; }
  1441. public function getSupportedCommands() {
  1442. return array_merge(parent::getSupportedCommands(), array(
  1443. /* transactions */
  1444. 'multi' => '\Predis\Commands\Multi',
  1445. 'exec' => '\Predis\Commands\Exec',
  1446. 'discard' => '\Predis\Commands\Discard',
  1447. /* commands operating on string values */
  1448. 'setex' => '\Predis\Commands\SetExpire',
  1449. 'append' => '\Predis\Commands\Append',
  1450. 'substr' => '\Predis\Commands\Substr',
  1451. /* commands operating on lists */
  1452. 'blpop' => '\Predis\Commands\ListPopFirstBlocking',
  1453. 'brpop' => '\Predis\Commands\ListPopLastBlocking',
  1454. /* commands operating on sorted sets */
  1455. 'zunionstore' => '\Predis\Commands\ZSetUnionStore',
  1456. 'zinterstore' => '\Predis\Commands\ZSetIntersectionStore',
  1457. 'zcount' => '\Predis\Commands\ZSetCount',
  1458. 'zrank' => '\Predis\Commands\ZSetRank',
  1459. 'zrevrank' => '\Predis\Commands\ZSetReverseRank',
  1460. 'zremrangebyrank' => '\Predis\Commands\ZSetRemoveRangeByRank',
  1461. /* commands operating on hashes */
  1462. 'hset' => '\Predis\Commands\HashSet',
  1463. 'hsetnx' => '\Predis\Commands\HashSetPreserve',
  1464. 'hmset' => '\Predis\Commands\HashSetMultiple',
  1465. 'hincrby' => '\Predis\Commands\HashIncrementBy',
  1466. 'hget' => '\Predis\Commands\HashGet',
  1467. 'hmget' => '\Predis\Commands\HashGetMultiple',
  1468. 'hdel' => '\Predis\Commands\HashDelete',
  1469. 'hexists' => '\Predis\Commands\HashExists',
  1470. 'hlen' => '\Predis\Commands\HashLength',
  1471. 'hkeys' => '\Predis\Commands\HashKeys',
  1472. 'hvals' => '\Predis\Commands\HashValues',
  1473. 'hgetall' => '\Predis\Commands\HashGetAll',
  1474. /* publish - subscribe */
  1475. 'subscribe' => '\Predis\Commands\Subscribe',
  1476. 'unsubscribe' => '\Predis\Commands\Unsubscribe',
  1477. 'psubscribe' => '\Predis\Commands\SubscribeByPattern',
  1478. 'punsubscribe' => '\Predis\Commands\UnsubscribeByPattern',
  1479. 'publish' => '\Predis\Commands\Publish',
  1480. /* remote server control commands */
  1481. 'config' => '\Predis\Commands\Config',
  1482. ));
  1483. }
  1484. }
  1485. class RedisServer_vNext extends RedisServer_v2_0 {
  1486. public function getVersion() { return '2.1'; }
  1487. public function getSupportedCommands() {
  1488. return array_merge(parent::getSupportedCommands(), array(
  1489. /* transactions */
  1490. 'watch' => '\Predis\Commands\Watch',
  1491. 'unwatch' => '\Predis\Commands\Unwatch',
  1492. /* commands operating on string values */
  1493. 'strlen' => '\Predis\Commands\Strlen',
  1494. /* commands operating on lists */
  1495. 'rpushx' => '\Predis\Commands\ListPushTailX',
  1496. 'lpushx' => '\Predis\Commands\ListPushHeadX',
  1497. 'linsert' => '\Predis\Commands\ListInsert',
  1498. ));
  1499. }
  1500. }
  1501. /* ------------------------------------------------------------------------- */
  1502. namespace Predis\Pipeline;
  1503. use Predis\IConnection, Predis\ServerException, Predis\CommunicationException;
  1504. interface IPipelineExecutor {
  1505. public function execute(IConnection $connection, &$commands);
  1506. }
  1507. class StandardExecutor implements IPipelineExecutor {
  1508. public function execute(IConnection $connection, &$commands) {
  1509. $sizeofPipe = count($commands);
  1510. $values = array();
  1511. foreach ($commands as $command) {
  1512. $connection->writeCommand($command);
  1513. }
  1514. try {
  1515. for ($i = 0; $i < $sizeofPipe; $i++) {
  1516. $response = $connection->readResponse($commands[$i]);
  1517. $values[] = $response instanceof \Iterator
  1518. ? iterator_to_array($response)
  1519. : $response;
  1520. unset($commands[$i]);
  1521. }
  1522. }
  1523. catch (ServerException $exception) {
  1524. // force disconnection to prevent protocol desynchronization
  1525. $connection->disconnect();
  1526. throw $exception;
  1527. }
  1528. return $values;
  1529. }
  1530. }
  1531. class SafeExecutor implements IPipelineExecutor {
  1532. public function execute(IConnection $connection, &$commands) {
  1533. $sizeofPipe = count($commands);
  1534. $values = array();
  1535. foreach ($commands as $command) {
  1536. try {
  1537. $connection->writeCommand($command);
  1538. }
  1539. catch (CommunicationException $exception) {
  1540. return array_fill(0, $sizeofPipe, $exception);
  1541. }
  1542. }
  1543. for ($i = 0; $i < $sizeofPipe; $i++) {
  1544. $command = $commands[$i];
  1545. unset($commands[$i]);
  1546. try {
  1547. $response = $connection->readResponse($command);
  1548. $values[] = ($response instanceof \Iterator
  1549. ? iterator_to_array($response)
  1550. : $response
  1551. );
  1552. }
  1553. catch (ServerException $exception) {
  1554. $values[] = $exception->toResponseError();
  1555. }
  1556. catch (CommunicationException $exception) {
  1557. $toAdd = count($commands) - count($values);
  1558. $values = array_merge($values, array_fill(0, $toAdd, $exception));
  1559. break;
  1560. }
  1561. }
  1562. return $values;
  1563. }
  1564. }
  1565. class SafeClusterExecutor implements IPipelineExecutor {
  1566. public function execute(IConnection $connection, &$commands) {
  1567. $connectionExceptions = array();
  1568. $sizeofPipe = count($commands);
  1569. $values = array();
  1570. foreach ($commands as $command) {
  1571. $cmdConnection = $connection->getConnection($command);
  1572. if (isset($connectionExceptions[spl_object_hash($cmdConnection)])) {
  1573. continue;
  1574. }
  1575. try {
  1576. $cmdConnection->writeCommand($command);
  1577. }
  1578. catch (CommunicationException $exception) {
  1579. $connectionExceptions[spl_object_hash($cmdConnection)] = $exception;
  1580. }
  1581. }
  1582. for ($i = 0; $i < $sizeofPipe; $i++) {
  1583. $command = $commands[$i];
  1584. unset($commands[$i]);
  1585. $cmdConnection = $connection->getConnection($command);
  1586. $connectionObjectHash = spl_object_hash($cmdConnection);
  1587. if (isset($connectionExceptions[$connectionObjectHash])) {
  1588. $values[] = $connectionExceptions[$connectionObjectHash];
  1589. continue;
  1590. }
  1591. try {
  1592. $response = $cmdConnection->readResponse($command);
  1593. $values[] = ($response instanceof \Iterator
  1594. ? iterator_to_array($response)
  1595. : $response
  1596. );
  1597. }
  1598. catch (ServerException $exception) {
  1599. $values[] = $exception->toResponseError();
  1600. }
  1601. catch (CommunicationException $exception) {
  1602. $values[] = $exception;
  1603. $connectionExceptions[$connectionObjectHash] = $exception;
  1604. }
  1605. }
  1606. return $values;
  1607. }
  1608. }
  1609. /* ------------------------------------------------------------------------- */
  1610. namespace Predis\Distribution;
  1611. interface IDistributionStrategy {
  1612. public function add($node, $weight = null);
  1613. public function remove($node);
  1614. public function get($key);
  1615. public function generateKey($value);
  1616. }
  1617. class EmptyRingException extends \Exception { }
  1618. class HashRing implements IDistributionStrategy {
  1619. const DEFAULT_REPLICAS = 128;
  1620. const DEFAULT_WEIGHT = 100;
  1621. private $_nodes, $_ring, $_ringKeys, $_ringKeysCount, $_replicas;
  1622. public function __construct($replicas = self::DEFAULT_REPLICAS) {
  1623. $this->_replicas = $replicas;
  1624. $this->_nodes = array();
  1625. }
  1626. public function add($node, $weight = null) {
  1627. // NOTE: in case of collisions in the hashes of the nodes, the node added
  1628. // last wins, thus the order in which nodes are added is significant.
  1629. $this->_nodes[] = array('object' => $node, 'weight' => (int) $weight ?: $this::DEFAULT_WEIGHT);
  1630. $this->reset();
  1631. }
  1632. public function remove($node) {
  1633. // NOTE: a node is removed by resetting the ring so that it's recreated from
  1634. // scratch, in order to reassign possible hashes with collisions to the
  1635. // right node according to the order in which they were added in the
  1636. // first place.
  1637. for ($i = 0; $i < count($this->_nodes); ++$i) {
  1638. if ($this->_nodes[$i]['object'] === $node) {
  1639. array_splice($this->_nodes, $i, 1);
  1640. $this->reset();
  1641. break;
  1642. }
  1643. }
  1644. }
  1645. private function reset() {
  1646. unset($this->_ring);
  1647. unset($this->_ringKeys);
  1648. unset($this->_ringKeysCount);
  1649. }
  1650. private function isInitialized() {
  1651. return isset($this->_ringKeys);
  1652. }
  1653. private function computeTotalWeight() {
  1654. // TODO: array_reduce + lambda for PHP 5.3
  1655. $totalWeight = 0;
  1656. foreach ($this->_nodes as $node) {
  1657. $totalWeight += $node['weight'];
  1658. }
  1659. return $totalWeight;
  1660. }
  1661. private function initialize() {
  1662. if ($this->isInitialized()) {
  1663. return;
  1664. }
  1665. if (count($this->_nodes) === 0) {
  1666. throw new EmptyRingException('Cannot initialize empty hashring');
  1667. }
  1668. $this->_ring = array();
  1669. $totalWeight = $this->computeTotalWeight();
  1670. $nodesCount = count($this->_nodes);
  1671. foreach ($this->_nodes as $node) {
  1672. $weightRatio = $node['weight'] / $totalWeight;
  1673. $this->addNodeToRing($this->_ring, $node, $nodesCount, $this->_replicas, $weightRatio);
  1674. }
  1675. ksort($this->_ring, SORT_NUMERIC);
  1676. $this->_ringKeys = array_keys($this->_ring);
  1677. $this->_ringKeysCount = count($this->_ringKeys);
  1678. }
  1679. protected function addNodeToRing(&$ring, $node, $totalNodes, $replicas, $weightRatio) {
  1680. $nodeObject = $node['object'];
  1681. $nodeHash = (string) $nodeObject;
  1682. $replicas = (int) round($weightRatio * $totalNodes * $replicas);
  1683. for ($i = 0; $i < $replicas; $i++) {
  1684. $key = crc32("$nodeHash:$i");
  1685. $ring[$key] = $nodeObject;
  1686. }
  1687. }
  1688. public function generateKey($value) {
  1689. return crc32($value);
  1690. }
  1691. public function get($key) {
  1692. return $this->_ring[$this->getNodeKey($key)];
  1693. }
  1694. private function getNodeKey($key) {
  1695. $this->initialize();
  1696. $ringKeys = $this->_ringKeys;
  1697. $upper = $this->_ringKeysCount - 1;
  1698. $lower = 0;
  1699. while ($lower <= $upper) {
  1700. $index = ($lower + $upper) >> 1;
  1701. $item = $ringKeys[$index];
  1702. if ($item > $key) {
  1703. $upper = $index - 1;
  1704. }
  1705. else if ($item < $key) {
  1706. $lower = $index + 1;
  1707. }
  1708. else {
  1709. return $item;
  1710. }
  1711. }
  1712. return $ringKeys[$this->wrapAroundStrategy($upper, $lower, $this->_ringKeysCount)];
  1713. }
  1714. protected function wrapAroundStrategy($upper, $lower, $ringKeysCount) {
  1715. // NOTE: binary search for the last item in _ringkeys with a value
  1716. // less or equal to the key. If no such item exists, return the
  1717. // last item.
  1718. return $upper >= 0 ? $upper : $ringKeysCount - 1;
  1719. }
  1720. }
  1721. class KetamaPureRing extends HashRing {
  1722. const DEFAULT_REPLICAS = 160;
  1723. public function __construct() {
  1724. parent::__construct($this::DEFAULT_REPLICAS);
  1725. }
  1726. protected function addNodeToRing(&$ring, $node, $totalNodes, $replicas, $weightRatio) {
  1727. $nodeObject = $node['object'];
  1728. $nodeHash = (string) $nodeObject;
  1729. $replicas = (int) floor($weightRatio * $totalNodes * ($replicas / 4));
  1730. for ($i = 0; $i < $replicas; $i++) {
  1731. $unpackedDigest = unpack('V4', md5("$nodeHash-$i", true));
  1732. foreach ($unpackedDigest as $key) {
  1733. $ring[$key] = $nodeObject;
  1734. }
  1735. }
  1736. }
  1737. public function generateKey($value) {
  1738. $hash = unpack('V', md5($value, true));
  1739. return $hash[1];
  1740. }
  1741. protected function wrapAroundStrategy($upper, $lower, $ringKeysCount) {
  1742. // NOTE: binary search for the first item in _ringkeys with a value
  1743. // greater or equal to the key. If no such item exists, return the
  1744. // first item.
  1745. return $lower < $ringKeysCount ? $lower : 0;
  1746. }
  1747. }
  1748. /* ------------------------------------------------------------------------- */
  1749. namespace Predis\Shared;
  1750. use Predis\IConnection, Predis\IConnectionSingle, Predis\IConnectionCluster,
  1751. Predis\CommunicationException;
  1752. class Utils {
  1753. public static function isCluster(IConnection $connection) {
  1754. return $connection instanceof IConnectionCluster;
  1755. }
  1756. public static function onCommunicationException(CommunicationException $exception) {
  1757. if ($exception->shouldResetConnection()) {
  1758. $connection = $exception->getConnection();
  1759. if ($connection->isConnected()) {
  1760. $connection->disconnect();
  1761. }
  1762. }
  1763. throw $exception;
  1764. }
  1765. public static function filterArrayArguments(Array $arguments) {
  1766. if (count($arguments) === 1 && is_array($arguments[0])) {
  1767. return $arguments[0];
  1768. }
  1769. return $arguments;
  1770. }
  1771. }
  1772. abstract class MultiBulkResponseIteratorBase implements \Iterator, \Countable {
  1773. protected $_position, $_current, $_replySize;
  1774. public function rewind() {
  1775. // NOOP
  1776. }
  1777. public function current() {
  1778. return $this->_current;
  1779. }
  1780. public function key() {
  1781. return $this->_position;
  1782. }
  1783. public function next() {
  1784. if (++$this->_position < $this->_replySize) {
  1785. $this->_current = $this->getValue();
  1786. }
  1787. return $this->_position;
  1788. }
  1789. public function valid() {
  1790. return $this->_position < $this->_replySize;
  1791. }
  1792. public function count() {
  1793. // NOTE: use count if you want to get the size of the current multi-bulk
  1794. // response without using iterator_count (which actually consumes
  1795. // our iterator to calculate the size, and we cannot perform a rewind)
  1796. return $this->_replySize;
  1797. }
  1798. protected abstract function getValue();
  1799. }
  1800. class MultiBulkResponseIterator extends MultiBulkResponseIteratorBase {
  1801. private $_connection;
  1802. public function __construct(IConnectionSingle $connection, $size) {
  1803. $this->_connection = $connection;
  1804. $this->_reader = $connection->getResponseReader();
  1805. $this->_position = 0;
  1806. $this->_current = $size > 0 ? $this->getValue() : null;
  1807. $this->_replySize = $size;
  1808. }
  1809. public function __destruct() {
  1810. // when the iterator is garbage-collected (e.g. it goes out of the
  1811. // scope of a foreach) but it has not reached its end, we must sync
  1812. // the client with the queued elements that have not been read from
  1813. // the connection with the server.
  1814. $this->sync();
  1815. }
  1816. public function sync($drop = false) {
  1817. if ($drop == true) {
  1818. if ($this->valid()) {
  1819. $this->_position = $this->_replySize;
  1820. $this->_connection->disconnect();
  1821. }
  1822. }
  1823. else {
  1824. while ($this->valid()) {
  1825. $this->next();
  1826. }
  1827. }
  1828. }
  1829. protected function getValue() {
  1830. return $this->_reader->read($this->_connection);
  1831. }
  1832. }
  1833. class MultiBulkResponseKVIterator extends MultiBulkResponseIteratorBase {
  1834. private $_iterator;
  1835. public function __construct(MultiBulkResponseIterator $iterator) {
  1836. $virtualSize = count($iterator) / 2;
  1837. $this->_iterator = $iterator;
  1838. $this->_position = 0;
  1839. $this->_current = $virtualSize > 0 ? $this->getValue() : null;
  1840. $this->_replySize = $virtualSize;
  1841. }
  1842. public function __destruct() {
  1843. $this->_iterator->sync();
  1844. }
  1845. protected function getValue() {
  1846. $k = $this->_iterator->current();
  1847. $this->_iterator->next();
  1848. $v = $this->_iterator->current();
  1849. $this->_iterator->next();
  1850. return array($k, $v);
  1851. }
  1852. }
  1853. /* ------------------------------------------------------------------------- */
  1854. namespace Predis\Commands;
  1855. use Predis\Command, Predis\Shared\Utils, Predis\Shared\MultiBulkResponseKVIterator;
  1856. /* miscellaneous commands */
  1857. class Ping extends Command {
  1858. public function canBeHashed() { return false; }
  1859. public function getCommandId() { return 'PING'; }
  1860. public function parseResponse($data) {
  1861. return $data === 'PONG' ? true : false;
  1862. }
  1863. }
  1864. class DoEcho extends Command {
  1865. public function canBeHashed() { return false; }
  1866. public function getCommandId() { return 'ECHO'; }
  1867. }
  1868. class Auth extends Command {
  1869. public function canBeHashed() { return false; }
  1870. public function getCommandId() { return 'AUTH'; }
  1871. }
  1872. /* connection handling */
  1873. class Quit extends Command {
  1874. public function canBeHashed() { return false; }
  1875. public function getCommandId() { return 'QUIT'; }
  1876. public function closesConnection() { return true; }
  1877. }
  1878. /* commands operating on string values */
  1879. class Set extends Command {
  1880. public function getCommandId() { return 'SET'; }
  1881. }
  1882. class SetExpire extends Command {
  1883. public function getCommandId() { return 'SETEX'; }
  1884. }
  1885. class SetPreserve extends Command {
  1886. public function getCommandId() { return 'SETNX'; }
  1887. public function parseResponse($data) { return (bool) $data; }
  1888. }
  1889. class SetMultiple extends Command {
  1890. public function canBeHashed() { return false; }
  1891. public function getCommandId() { return 'MSET'; }
  1892. public function filterArguments(Array $arguments) {
  1893. if (count($arguments) === 1 && is_array($arguments[0])) {
  1894. $flattenedKVs = array();
  1895. $args = &$arguments[0];
  1896. foreach ($args as $k => $v) {
  1897. $flattenedKVs[] = $k;
  1898. $flattenedKVs[] = $v;
  1899. }
  1900. return $flattenedKVs;
  1901. }
  1902. return $arguments;
  1903. }
  1904. }
  1905. class SetMultiplePreserve extends SetMultiple {
  1906. public function canBeHashed() { return false; }
  1907. public function getCommandId() { return 'MSETNX'; }
  1908. public function parseResponse($data) { return (bool) $data; }
  1909. }
  1910. class Get extends Command {
  1911. public function getCommandId() { return 'GET'; }
  1912. }
  1913. class GetMultiple extends Command {
  1914. public function canBeHashed() { return false; }
  1915. public function getCommandId() { return 'MGET'; }
  1916. public function filterArguments(Array $arguments) {
  1917. return Utils::filterArrayArguments($arguments);
  1918. }
  1919. }
  1920. class GetSet extends Command {
  1921. public function getCommandId() { return 'GETSET'; }
  1922. }
  1923. class Increment extends Command {
  1924. public function getCommandId() { return 'INCR'; }
  1925. }
  1926. class IncrementBy extends Command {
  1927. public function getCommandId() { return 'INCRBY'; }
  1928. }
  1929. class Decrement extends Command {
  1930. public function getCommandId() { return 'DECR'; }
  1931. }
  1932. class DecrementBy extends Command {
  1933. public function getCommandId() { return 'DECRBY'; }
  1934. }
  1935. class Exists extends Command {
  1936. public function getCommandId() { return 'EXISTS'; }
  1937. public function parseResponse($data) { return (bool) $data; }
  1938. }
  1939. class Delete extends Command {
  1940. public function getCommandId() { return 'DEL'; }
  1941. public function filterArguments(Array $arguments) {
  1942. return Utils::filterArrayArguments($arguments);
  1943. }
  1944. }
  1945. class Type extends Command {
  1946. public function getCommandId() { return 'TYPE'; }
  1947. }
  1948. class Append extends Command {
  1949. public function getCommandId() { return 'APPEND'; }
  1950. }
  1951. class Substr extends Command {
  1952. public function getCommandId() { return 'SUBSTR'; }
  1953. }
  1954. class Strlen extends Command {
  1955. public function getCommandId() { return 'STRLEN'; }
  1956. }
  1957. /* commands operating on the key space */
  1958. class Keys extends Command {
  1959. public function canBeHashed() { return false; }
  1960. public function getCommandId() { return 'KEYS'; }
  1961. public function parseResponse($data) {
  1962. // TODO: is this behaviour correct?
  1963. if (is_array($data) || $data instanceof \Iterator) {
  1964. return $data;
  1965. }
  1966. return strlen($data) > 0 ? explode(' ', $data) : array();
  1967. }
  1968. }
  1969. class RandomKey extends Command {
  1970. public function canBeHashed() { return false; }
  1971. public function getCommandId() { return 'RANDOMKEY'; }
  1972. public function parseResponse($data) { return $data !== '' ? $data : null; }
  1973. }
  1974. class Rename extends Command {
  1975. public function canBeHashed() { return false; }
  1976. public function getCommandId() { return 'RENAME'; }
  1977. }
  1978. class RenamePreserve extends Command {
  1979. public function canBeHashed() { return false; }
  1980. public function getCommandId() { return 'RENAMENX'; }
  1981. public function parseResponse($data) { return (bool) $data; }
  1982. }
  1983. class Expire extends Command {
  1984. public function getCommandId() { return 'EXPIRE'; }
  1985. public function parseResponse($data) { return (bool) $data; }
  1986. }
  1987. class ExpireAt extends Command {
  1988. public function getCommandId() { return 'EXPIREAT'; }
  1989. public function parseResponse($data) { return (bool) $data; }
  1990. }
  1991. class DatabaseSize extends Command {
  1992. public function canBeHashed() { return false; }
  1993. public function getCommandId() { return 'DBSIZE'; }
  1994. }
  1995. class TimeToLive extends Command {
  1996. public function getCommandId() { return 'TTL'; }
  1997. }
  1998. /* commands operating on lists */
  1999. class ListPushTail extends Command {
  2000. public function getCommandId() { return 'RPUSH'; }
  2001. }
  2002. class ListPushTailX extends Command {
  2003. public function getCommandId() { return 'RPUSHX'; }
  2004. }
  2005. class ListPushHead extends Command {
  2006. public function getCommandId() { return 'LPUSH'; }
  2007. }
  2008. class ListPushHeadX extends Command {
  2009. public function getCommandId() { return 'LPUSHX'; }
  2010. }
  2011. class ListLength extends Command {
  2012. public function getCommandId() { return 'LLEN'; }
  2013. }
  2014. class ListRange extends Command {
  2015. public function getCommandId() { return 'LRANGE'; }
  2016. }
  2017. class ListTrim extends Command {
  2018. public function getCommandId() { return 'LTRIM'; }
  2019. }
  2020. class ListIndex extends Command {
  2021. public function getCommandId() { return 'LINDEX'; }
  2022. }
  2023. class ListSet extends Command {
  2024. public function getCommandId() { return 'LSET'; }
  2025. }
  2026. class ListRemove extends Command {
  2027. public function getCommandId() { return 'LREM'; }
  2028. }
  2029. class ListPopLastPushHead extends Command {
  2030. public function getCommandId() { return 'RPOPLPUSH'; }
  2031. }
  2032. class ListPopLastPushHeadBulk extends Command {
  2033. public function getCommandId() { return 'RPOPLPUSH'; }
  2034. }
  2035. class ListPopFirst extends Command {
  2036. public function getCommandId() { return 'LPOP'; }
  2037. }
  2038. class ListPopLast extends Command {
  2039. public function getCommandId() { return 'RPOP'; }
  2040. }
  2041. class ListPopFirstBlocking extends Command {
  2042. public function getCommandId() { return 'BLPOP'; }
  2043. }
  2044. class ListPopLastBlocking extends Command {
  2045. public function getCommandId() { return 'BRPOP'; }
  2046. }
  2047. class ListInsert extends Command {
  2048. public function getCommandId() { return 'LINSERT'; }
  2049. }
  2050. /* commands operating on sets */
  2051. class SetAdd extends Command {
  2052. public function getCommandId() { return 'SADD'; }
  2053. public function parseResponse($data) { return (bool) $data; }
  2054. }
  2055. class SetRemove extends Command {
  2056. public function getCommandId() { return 'SREM'; }
  2057. public function parseResponse($data) { return (bool) $data; }
  2058. }
  2059. class SetPop extends Command {
  2060. public function getCommandId() { return 'SPOP'; }
  2061. }
  2062. class SetMove extends Command {
  2063. public function canBeHashed() { return false; }
  2064. public function getCommandId() { return 'SMOVE'; }
  2065. public function parseResponse($data) { return (bool) $data; }
  2066. }
  2067. class SetCardinality extends Command {
  2068. public function getCommandId() { return 'SCARD'; }
  2069. }
  2070. class SetIsMember extends Command {
  2071. public function getCommandId() { return 'SISMEMBER'; }
  2072. public function parseResponse($data) { return (bool) $data; }
  2073. }
  2074. class SetIntersection extends Command {
  2075. public function getCommandId() { return 'SINTER'; }
  2076. public function filterArguments(Array $arguments) {
  2077. return Utils::filterArrayArguments($arguments);
  2078. }
  2079. }
  2080. class SetIntersectionStore extends Command {
  2081. public function getCommandId() { return 'SINTERSTORE'; }
  2082. public function filterArguments(Array $arguments) {
  2083. return Utils::filterArrayArguments($arguments);
  2084. }
  2085. }
  2086. class SetUnion extends SetIntersection {
  2087. public function getCommandId() { return 'SUNION'; }
  2088. }
  2089. class SetUnionStore extends SetIntersectionStore {
  2090. public function getCommandId() { return 'SUNIONSTORE'; }
  2091. }
  2092. class SetDifference extends SetIntersection {
  2093. public function getCommandId() { return 'SDIFF'; }
  2094. }
  2095. class SetDifferenceStore extends SetIntersectionStore {
  2096. public function getCommandId() { return 'SDIFFSTORE'; }
  2097. }
  2098. class SetMembers extends Command {
  2099. public function getCommandId() { return 'SMEMBERS'; }
  2100. }
  2101. class SetRandomMember extends Command {
  2102. public function getCommandId() { return 'SRANDMEMBER'; }
  2103. }
  2104. /* commands operating on sorted sets */
  2105. class ZSetAdd extends Command {
  2106. public function getCommandId() { return 'ZADD'; }
  2107. public function parseResponse($data) { return (bool) $data; }
  2108. }
  2109. class ZSetIncrementBy extends Command {
  2110. public function getCommandId() { return 'ZINCRBY'; }
  2111. }
  2112. class ZSetRemove extends Command {
  2113. public function getCommandId() { return 'ZREM'; }
  2114. public function parseResponse($data) { return (bool) $data; }
  2115. }
  2116. class ZSetUnionStore extends Command {
  2117. public function getCommandId() { return 'ZUNIONSTORE'; }
  2118. public function filterArguments(Array $arguments) {
  2119. $options = array();
  2120. $argc = count($arguments);
  2121. if ($argc > 1 && is_array($arguments[$argc - 1])) {
  2122. $options = $this->prepareOptions(array_pop($arguments));
  2123. }
  2124. $args = is_array($arguments[0]) ? $arguments[0] : $arguments;
  2125. return array_merge($args, $options);
  2126. }
  2127. private function prepareOptions($options) {
  2128. $opts = array_change_key_case($options, CASE_UPPER);
  2129. $finalizedOpts = array();
  2130. if (isset($opts['WEIGHTS']) && is_array($opts['WEIGHTS'])) {
  2131. $finalizedOpts[] = 'WEIGHTS';
  2132. foreach ($opts['WEIGHTS'] as $weight) {
  2133. $finalizedOpts[] = $weight;
  2134. }
  2135. }
  2136. if (isset($opts['AGGREGATE'])) {
  2137. $finalizedOpts[] = 'AGGREGATE';
  2138. $finalizedOpts[] = $opts['AGGREGATE'];
  2139. }
  2140. return $finalizedOpts;
  2141. }
  2142. }
  2143. class ZSetIntersectionStore extends ZSetUnionStore {
  2144. public function getCommandId() { return 'ZINTERSTORE'; }
  2145. }
  2146. class ZSetRange extends Command {
  2147. private $_withScores = false;
  2148. public function getCommandId() { return 'ZRANGE'; }
  2149. public function filterArguments(Array $arguments) {
  2150. if (count($arguments) === 4) {
  2151. $lastType = gettype($arguments[3]);
  2152. if ($lastType === 'string' && strtolower($arguments[3]) === 'withscores') {
  2153. // used for compatibility with older versions
  2154. $arguments[3] = array('WITHSCORES' => true);
  2155. $lastType = 'array';
  2156. }
  2157. if ($lastType === 'array') {
  2158. $options = $this->prepareOptions(array_pop($arguments));
  2159. return array_merge($arguments, $options);
  2160. }
  2161. }
  2162. return $arguments;
  2163. }
  2164. protected function prepareOptions($options) {
  2165. $opts = array_change_key_case($options, CASE_UPPER);
  2166. $finalizedOpts = array();
  2167. if (isset($opts['WITHSCORES'])) {
  2168. $finalizedOpts[] = 'WITHSCORES';
  2169. $this->_withScores = true;
  2170. }
  2171. return $finalizedOpts;
  2172. }
  2173. public function parseResponse($data) {
  2174. if ($this->_withScores) {
  2175. if ($data instanceof \Iterator) {
  2176. return new MultiBulkResponseKVIterator($data);
  2177. }
  2178. $result = array();
  2179. for ($i = 0; $i < count($data); $i++) {
  2180. $result[] = array($data[$i], $data[++$i]);
  2181. }
  2182. return $result;
  2183. }
  2184. return $data;
  2185. }
  2186. }
  2187. class ZSetReverseRange extends ZSetRange {
  2188. public function getCommandId() { return 'ZREVRANGE'; }
  2189. }
  2190. class ZSetRangeByScore extends ZSetRange {
  2191. public function getCommandId() { return 'ZRANGEBYSCORE'; }
  2192. protected function prepareOptions($options) {
  2193. $opts = array_change_key_case($options, CASE_UPPER);
  2194. $finalizedOpts = array();
  2195. if (isset($opts['LIMIT']) && is_array($opts['LIMIT'])) {
  2196. $limit = array_change_key_case($opts['LIMIT'], CASE_UPPER);
  2197. $finalizedOpts[] = 'LIMIT';
  2198. $finalizedOpts[] = isset($limit['OFFSET']) ? $limit['OFFSET'] : $limit[0];
  2199. $finalizedOpts[] = isset($limit['COUNT']) ? $limit['COUNT'] : $limit[1];
  2200. }
  2201. return array_merge($finalizedOpts, parent::prepareOptions($options));
  2202. }
  2203. }
  2204. class ZSetCount extends Command {
  2205. public function getCommandId() { return 'ZCOUNT'; }
  2206. }
  2207. class ZSetCardinality extends Command {
  2208. public function getCommandId() { return 'ZCARD'; }
  2209. }
  2210. class ZSetScore extends Command {
  2211. public function getCommandId() { return 'ZSCORE'; }
  2212. }
  2213. class ZSetRemoveRangeByScore extends Command {
  2214. public function getCommandId() { return 'ZREMRANGEBYSCORE'; }
  2215. }
  2216. class ZSetRank extends Command {
  2217. public function getCommandId() { return 'ZRANK'; }
  2218. }
  2219. class ZSetReverseRank extends Command {
  2220. public function getCommandId() { return 'ZREVRANK'; }
  2221. }
  2222. class ZSetRemoveRangeByRank extends Command {
  2223. public function getCommandId() { return 'ZREMRANGEBYRANK'; }
  2224. }
  2225. /* commands operating on hashes */
  2226. class HashSet extends Command {
  2227. public function getCommandId() { return 'HSET'; }
  2228. public function parseResponse($data) { return (bool) $data; }
  2229. }
  2230. class HashSetPreserve extends Command {
  2231. public function getCommandId() { return 'HSETNX'; }
  2232. public function parseResponse($data) { return (bool) $data; }
  2233. }
  2234. class HashSetMultiple extends Command {
  2235. public function getCommandId() { return 'HMSET'; }
  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 $k => $v) {
  2241. $flattenedKVs[] = $k;
  2242. $flattenedKVs[] = $v;
  2243. }
  2244. return $flattenedKVs;
  2245. }
  2246. return $arguments;
  2247. }
  2248. }
  2249. class HashIncrementBy extends Command {
  2250. public function getCommandId() { return 'HINCRBY'; }
  2251. }
  2252. class HashGet extends Command {
  2253. public function getCommandId() { return 'HGET'; }
  2254. }
  2255. class HashGetMultiple extends Command {
  2256. public function getCommandId() { return 'HMGET'; }
  2257. public function filterArguments(Array $arguments) {
  2258. if (count($arguments) === 2 && is_array($arguments[1])) {
  2259. $flattenedKVs = array($arguments[0]);
  2260. $args = &$arguments[1];
  2261. foreach ($args as $v) {
  2262. $flattenedKVs[] = $v;
  2263. }
  2264. return $flattenedKVs;
  2265. }
  2266. return $arguments;
  2267. }
  2268. }
  2269. class HashDelete extends Command {
  2270. public function getCommandId() { return 'HDEL'; }
  2271. public function parseResponse($data) { return (bool) $data; }
  2272. }
  2273. class HashExists extends Command {
  2274. public function getCommandId() { return 'HEXISTS'; }
  2275. public function parseResponse($data) { return (bool) $data; }
  2276. }
  2277. class HashLength extends Command {
  2278. public function getCommandId() { return 'HLEN'; }
  2279. }
  2280. class HashKeys extends Command {
  2281. public function getCommandId() { return 'HKEYS'; }
  2282. }
  2283. class HashValues extends Command {
  2284. public function getCommandId() { return 'HVALS'; }
  2285. }
  2286. class HashGetAll extends Command {
  2287. public function getCommandId() { return 'HGETALL'; }
  2288. public function parseResponse($data) {
  2289. if ($data instanceof \Iterator) {
  2290. return new MultiBulkResponseKVIterator($data);
  2291. }
  2292. $result = array();
  2293. for ($i = 0; $i < count($data); $i++) {
  2294. $result[$data[$i]] = $data[++$i];
  2295. }
  2296. return $result;
  2297. }
  2298. }
  2299. /* multiple databases handling commands */
  2300. class SelectDatabase extends Command {
  2301. public function canBeHashed() { return false; }
  2302. public function getCommandId() { return 'SELECT'; }
  2303. }
  2304. class MoveKey extends Command {
  2305. public function canBeHashed() { return false; }
  2306. public function getCommandId() { return 'MOVE'; }
  2307. public function parseResponse($data) { return (bool) $data; }
  2308. }
  2309. class FlushDatabase extends Command {
  2310. public function canBeHashed() { return false; }
  2311. public function getCommandId() { return 'FLUSHDB'; }
  2312. }
  2313. class FlushAll extends Command {
  2314. public function canBeHashed() { return false; }
  2315. public function getCommandId() { return 'FLUSHALL'; }
  2316. }
  2317. /* sorting */
  2318. class Sort extends Command {
  2319. public function getCommandId() { return 'SORT'; }
  2320. public function filterArguments(Array $arguments) {
  2321. if (count($arguments) === 1) {
  2322. return $arguments;
  2323. }
  2324. $query = array($arguments[0]);
  2325. $sortParams = array_change_key_case($arguments[1], CASE_UPPER);
  2326. if (isset($sortParams['BY'])) {
  2327. $query[] = 'BY';
  2328. $query[] = $sortParams['BY'];
  2329. }
  2330. if (isset($sortParams['GET'])) {
  2331. $getargs = $sortParams['GET'];
  2332. if (is_array($getargs)) {
  2333. foreach ($getargs as $getarg) {
  2334. $query[] = 'GET';
  2335. $query[] = $getarg;
  2336. }
  2337. }
  2338. else {
  2339. $query[] = 'GET';
  2340. $query[] = $getargs;
  2341. }
  2342. }
  2343. if (isset($sortParams['LIMIT']) && is_array($sortParams['LIMIT'])
  2344. && count($sortParams['LIMIT']) == 2) {
  2345. $query[] = 'LIMIT';
  2346. $query[] = $sortParams['LIMIT'][0];
  2347. $query[] = $sortParams['LIMIT'][1];
  2348. }
  2349. if (isset($sortParams['SORT'])) {
  2350. $query[] = strtoupper($sortParams['SORT']);
  2351. }
  2352. if (isset($sortParams['ALPHA']) && $sortParams['ALPHA'] == true) {
  2353. $query[] = 'ALPHA';
  2354. }
  2355. if (isset($sortParams['STORE'])) {
  2356. $query[] = 'STORE';
  2357. $query[] = $sortParams['STORE'];
  2358. }
  2359. return $query;
  2360. }
  2361. }
  2362. /* transactions */
  2363. class Multi extends Command {
  2364. public function canBeHashed() { return false; }
  2365. public function getCommandId() { return 'MULTI'; }
  2366. }
  2367. class Exec extends Command {
  2368. public function canBeHashed() { return false; }
  2369. public function getCommandId() { return 'EXEC'; }
  2370. }
  2371. class Discard extends Command {
  2372. public function canBeHashed() { return false; }
  2373. public function getCommandId() { return 'DISCARD'; }
  2374. }
  2375. class Watch extends Command {
  2376. public function canBeHashed() { return false; }
  2377. public function getCommandId() { return 'WATCH'; }
  2378. public function filterArguments(Array $arguments) {
  2379. if (isset($arguments[0]) && is_array($arguments[0])) {
  2380. return $arguments[0];
  2381. }
  2382. return $arguments;
  2383. }
  2384. public function parseResponse($data) { return (bool) $data; }
  2385. }
  2386. class Unwatch extends Command {
  2387. public function canBeHashed() { return false; }
  2388. public function getCommandId() { return 'UNWATCH'; }
  2389. public function parseResponse($data) { return (bool) $data; }
  2390. }
  2391. /* publish/subscribe */
  2392. class Subscribe extends Command {
  2393. public function canBeHashed() { return false; }
  2394. public function getCommandId() { return 'SUBSCRIBE'; }
  2395. }
  2396. class Unsubscribe extends Command {
  2397. public function canBeHashed() { return false; }
  2398. public function getCommandId() { return 'UNSUBSCRIBE'; }
  2399. }
  2400. class SubscribeByPattern extends Command {
  2401. public function canBeHashed() { return false; }
  2402. public function getCommandId() { return 'PSUBSCRIBE'; }
  2403. }
  2404. class UnsubscribeByPattern extends Command {
  2405. public function canBeHashed() { return false; }
  2406. public function getCommandId() { return 'PUNSUBSCRIBE'; }
  2407. }
  2408. class Publish extends Command {
  2409. public function canBeHashed() { return false; }
  2410. public function getCommandId() { return 'PUBLISH'; }
  2411. }
  2412. /* persistence control commands */
  2413. class Save extends Command {
  2414. public function canBeHashed() { return false; }
  2415. public function getCommandId() { return 'SAVE'; }
  2416. }
  2417. class BackgroundSave extends Command {
  2418. public function canBeHashed() { return false; }
  2419. public function getCommandId() { return 'BGSAVE'; }
  2420. public function parseResponse($data) {
  2421. if ($data == 'Background saving started') {
  2422. return true;
  2423. }
  2424. return $data;
  2425. }
  2426. }
  2427. class BackgroundRewriteAppendOnlyFile extends Command {
  2428. public function canBeHashed() { return false; }
  2429. public function getCommandId() { return 'BGREWRITEAOF'; }
  2430. public function parseResponse($data) {
  2431. return $data == 'Background append only file rewriting started';
  2432. }
  2433. }
  2434. class LastSave extends Command {
  2435. public function canBeHashed() { return false; }
  2436. public function getCommandId() { return 'LASTSAVE'; }
  2437. }
  2438. class Shutdown extends Command {
  2439. public function canBeHashed() { return false; }
  2440. public function getCommandId() { return 'SHUTDOWN'; }
  2441. public function closesConnection() { return true; }
  2442. }
  2443. /* remote server control commands */
  2444. class Info extends Command {
  2445. public function canBeHashed() { return false; }
  2446. public function getCommandId() { return 'INFO'; }
  2447. public function parseResponse($data) {
  2448. $info = array();
  2449. $infoLines = explode("\r\n", $data, -1);
  2450. foreach ($infoLines as $row) {
  2451. list($k, $v) = explode(':', $row);
  2452. if (!preg_match('/^db\d+$/', $k)) {
  2453. $info[$k] = $v;
  2454. }
  2455. else {
  2456. $db = array();
  2457. foreach (explode(',', $v) as $dbvar) {
  2458. list($dbvk, $dbvv) = explode('=', $dbvar);
  2459. $db[trim($dbvk)] = $dbvv;
  2460. }
  2461. $info[$k] = $db;
  2462. }
  2463. }
  2464. return $info;
  2465. }
  2466. }
  2467. class SlaveOf extends Command {
  2468. public function canBeHashed() { return false; }
  2469. public function getCommandId() { return 'SLAVEOF'; }
  2470. public function filterArguments(Array $arguments) {
  2471. if (count($arguments) === 0 || $arguments[0] === 'NO ONE') {
  2472. return array('NO', 'ONE');
  2473. }
  2474. return $arguments;
  2475. }
  2476. }
  2477. class Config extends Command {
  2478. public function canBeHashed() { return false; }
  2479. public function getCommandId() { return 'CONFIG'; }
  2480. }
  2481. ?>