Predis.php 104 KB

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