]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Memcached_DataObject.php
Mass replacement of #-comments with //-comments
[quix0rs-gnu-social.git] / classes / Memcached_DataObject.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, StatusNet, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
21
22 class Memcached_DataObject extends Safe_DataObject
23 {
24     /**
25      * Wrapper for DB_DataObject's static lookup using memcached
26      * as backing instead of an in-process cache array.
27      *
28      * @param string $cls classname of object type to load
29      * @param mixed $k key field name, or value for primary key
30      * @param mixed $v key field value, or leave out for primary key lookup
31      * @return mixed Memcached_DataObject subtype or false
32      */
33     function &staticGet($cls, $k, $v=null)
34     {
35         if (is_null($v)) {
36             $v = $k;
37             // XXX: HACK!
38             $i = new $cls;
39             $keys = $i->keys();
40             $k = $keys[0];
41             unset($i);
42         }
43         $i = Memcached_DataObject::getcached($cls, $k, $v);
44         if ($i === false) { // false == cache miss
45             $i = DB_DataObject::factory($cls);
46             if (empty($i)) {
47                 $i = false;
48                 return $i;
49             }
50             $result = $i->get($k, $v);
51             if ($result) {
52                 // Hit!
53                 $i->encache();
54             } else {
55                 // save the fact that no such row exists
56                 $c = self::memcache();
57                 if (!empty($c)) {
58                     $ck = self::cachekey($cls, $k, $v);
59                     $c->set($ck, null);
60                 }
61                 $i = false;
62             }
63         }
64         return $i;
65     }
66
67     /**
68      * @fixme Should this return false on lookup fail to match staticGet?
69      */
70     function pkeyGet($cls, $kv)
71     {
72         $i = Memcached_DataObject::multicache($cls, $kv);
73         if ($i !== false) { // false == cache miss
74             return $i;
75         } else {
76             $i = DB_DataObject::factory($cls);
77             if (empty($i) || PEAR::isError($i)) {
78                 return false;
79             }
80             foreach ($kv as $k => $v) {
81                 $i->$k = $v;
82             }
83             if ($i->find(true)) {
84                 $i->encache();
85             } else {
86                 $i = null;
87                 $c = self::memcache();
88                 if (!empty($c)) {
89                     $ck = self::multicacheKey($cls, $kv);
90                     $c->set($ck, null);
91                 }
92             }
93             return $i;
94         }
95     }
96
97     function insert()
98     {
99         $result = parent::insert();
100         if ($result) {
101             $this->fixupTimestamps();
102             $this->encache(); // in case of cached negative lookups
103         }
104         return $result;
105     }
106
107     function update($orig=null)
108     {
109         if (is_object($orig) && $orig instanceof Memcached_DataObject) {
110             $orig->decache(); # might be different keys
111         }
112         $result = parent::update($orig);
113         if ($result) {
114             $this->fixupTimestamps();
115             $this->encache();
116         }
117         return $result;
118     }
119
120     function delete()
121     {
122         $this->decache(); # while we still have the values!
123         return parent::delete();
124     }
125
126     static function memcache() {
127         return Cache::instance();
128     }
129
130     static function cacheKey($cls, $k, $v) {
131         if (is_object($cls) || is_object($k) || (is_object($v) && !($v instanceof DB_DataObject_Cast))) {
132             $e = new Exception();
133             common_log(LOG_ERR, __METHOD__ . ' object in param: ' .
134                 str_replace("\n", " ", $e->getTraceAsString()));
135         }
136         $vstr = self::valueString($v);
137         return Cache::key(strtolower($cls).':'.$k.':'.$vstr);
138     }
139
140     static function getcached($cls, $k, $v) {
141         $c = Memcached_DataObject::memcache();
142         if (!$c) {
143             return false;
144         } else {
145             $obj = $c->get(Memcached_DataObject::cacheKey($cls, $k, $v));
146             if (0 == strcasecmp($cls, 'User')) {
147                 // Special case for User
148                 if (is_object($obj) && is_object($obj->id)) {
149                     common_log(LOG_ERR, "User " . $obj->nickname . " was cached with User as ID; deleting");
150                     $c->delete(Memcached_DataObject::cacheKey($cls, $k, $v));
151                     return false;
152                 }
153             }
154             return $obj;
155         }
156     }
157
158     function keyTypes()
159     {
160         // ini-based classes return number-indexed arrays. handbuilt
161         // classes return column => keytype. Make this uniform.
162
163         $keys = $this->keys();
164
165         $keyskeys = array_keys($keys);
166
167         if (is_string($keyskeys[0])) {
168             return $keys;
169         }
170
171         global $_DB_DATAOBJECT;
172         if (!isset($_DB_DATAOBJECT['INI'][$this->_database][$this->__table."__keys"])) {
173             $this->databaseStructure();
174
175         }
176         return $_DB_DATAOBJECT['INI'][$this->_database][$this->__table."__keys"];
177     }
178
179     function encache()
180     {
181         $c = $this->memcache();
182
183         if (!$c) {
184             return false;
185         } else if ($this->tableName() == 'user' && is_object($this->id)) {
186             // Special case for User bug
187             $e = new Exception();
188             common_log(LOG_ERR, __METHOD__ . ' caching user with User object as ID ' .
189                        str_replace("\n", " ", $e->getTraceAsString()));
190             return false;
191         } else {
192             $keys = $this->_allCacheKeys();
193
194             foreach ($keys as $key) {
195                 $c->set($key, $this);
196             }
197         }
198     }
199
200     function decache()
201     {
202         $c = $this->memcache();
203
204         if (!$c) {
205             return false;
206         }
207
208         $keys = $this->_allCacheKeys();
209
210         foreach ($keys as $key) {
211             $c->delete($key, $this);
212         }
213     }
214
215     function _allCacheKeys()
216     {
217         $ckeys = array();
218
219         $types = $this->keyTypes();
220         ksort($types);
221
222         $pkey = array();
223         $pval = array();
224
225         foreach ($types as $key => $type) {
226
227             assert(!empty($key));
228
229             if ($type == 'U') {
230                 if (empty($this->$key)) {
231                     continue;
232                 }
233                 $ckeys[] = $this->cacheKey($this->tableName(), $key, self::valueString($this->$key));
234             } else if ($type == 'K' || $type == 'N') {
235                 $pkey[] = $key;
236                 $pval[] = self::valueString($this->$key);
237             } else {
238                 // Low level exception. No need for i18n as discussed with Brion.
239                 throw new Exception("Unknown key type $key => $type for " . $this->tableName());
240             }
241         }
242
243         assert(count($pkey) > 0);
244
245         // XXX: should work for both compound and scalar pkeys
246         $pvals = implode(',', $pval);
247         $pkeys = implode(',', $pkey);
248
249         $ckeys[] = $this->cacheKey($this->tableName(), $pkeys, $pvals);
250
251         return $ckeys;
252     }
253
254     function multicache($cls, $kv)
255     {
256         ksort($kv);
257         $c = self::memcache();
258         if (!$c) {
259             return false;
260         } else {
261             return $c->get(self::multicacheKey($cls, $kv));
262         }
263     }
264
265     static function multicacheKey($cls, $kv)
266     {
267         ksort($kv);
268         $pkeys = implode(',', array_keys($kv));
269         $pvals = implode(',', array_values($kv));
270         return self::cacheKey($cls, $pkeys, $pvals);
271     }
272
273     function getSearchEngine($table)
274     {
275         require_once INSTALLDIR.'/lib/search_engines.php';
276         static $search_engine;
277         if (!isset($search_engine)) {
278             if (Event::handle('GetSearchEngine', array($this, $table, &$search_engine))) {
279                 if ('mysql' === common_config('db', 'type')) {
280                     $type = common_config('search', 'type');
281                     if ($type == 'like') {
282                         $search_engine = new MySQLLikeSearch($this, $table);
283                     } else if ($type == 'fulltext') {
284                         $search_engine = new MySQLSearch($this, $table);
285                     } else {
286                         // Low level exception. No need for i18n as discussed with Brion.
287                         throw new ServerException('Unknown search type: ' . $type);
288                     }
289                 } else {
290                     $search_engine = new PGSearch($this, $table);
291                 }
292             }
293         }
294         return $search_engine;
295     }
296
297     static function cachedQuery($cls, $qry, $expiry=3600)
298     {
299         $c = Memcached_DataObject::memcache();
300         if (!$c) {
301             $inst = new $cls();
302             $inst->query($qry);
303             return $inst;
304         }
305         $key_part = Cache::keyize($cls).':'.md5($qry);
306         $ckey = Cache::key($key_part);
307         $stored = $c->get($ckey);
308
309         if ($stored !== false) {
310             return new ArrayWrapper($stored);
311         }
312
313         $inst = new $cls();
314         $inst->query($qry);
315         $cached = array();
316         while ($inst->fetch()) {
317             $cached[] = clone($inst);
318         }
319         $inst->free();
320         $c->set($ckey, $cached, Cache::COMPRESSED, $expiry);
321         return new ArrayWrapper($cached);
322     }
323
324     /**
325      * sends query to database - this is the private one that must work
326      *   - internal functions use this rather than $this->query()
327      *
328      * Overridden to do logging.
329      *
330      * @param  string  $string
331      * @access private
332      * @return mixed none or PEAR_Error
333      */
334     function _query($string)
335     {
336         if (common_config('db', 'annotate_queries')) {
337             $string = $this->annotateQuery($string);
338         }
339
340         $start = microtime(true);
341         $fail = false;
342         $result = null;
343         if (Event::handle('StartDBQuery', array($this, $string, &$result))) {
344             common_perf_counter('query', $string);
345             try {
346                 $result = parent::_query($string);
347             } catch (Exception $e) {
348                 $fail = $e;
349             }
350             Event::handle('EndDBQuery', array($this, $string, &$result));
351         }
352         $delta = microtime(true) - $start;
353
354         $limit = common_config('db', 'log_slow_queries');
355         if (($limit > 0 && $delta >= $limit) || common_config('db', 'log_queries')) {
356             $clean = $this->sanitizeQuery($string);
357             if ($fail) {
358                 $msg = sprintf("FAILED DB query (%0.3fs): %s - %s", $delta, $fail->getMessage(), $clean);
359             } else {
360                 $msg = sprintf("DB query (%0.3fs): %s", $delta, $clean);
361             }
362             common_log(LOG_DEBUG, $msg);
363         }
364
365         if ($fail) {
366             throw $fail;
367         }
368         return $result;
369     }
370
371     /**
372      * Find the first caller in the stack trace that's not a
373      * low-level database function and add a comment to the
374      * query string. This should then be visible in process lists
375      * and slow query logs, to help identify problem areas.
376      *
377      * Also marks whether this was a web GET/POST or which daemon
378      * was running it.
379      *
380      * @param string $string SQL query string
381      * @return string SQL query string, with a comment in it
382      */
383     function annotateQuery($string)
384     {
385         $ignore = array('annotateQuery',
386                         '_query',
387                         'query',
388                         'get',
389                         'insert',
390                         'delete',
391                         'update',
392                         'find');
393         $ignoreStatic = array('staticGet',
394                               'pkeyGet',
395                               'cachedQuery');
396         $here = get_class($this); // if we get confused
397         $bt = debug_backtrace();
398
399         // Find the first caller that's not us?
400         foreach ($bt as $frame) {
401             $func = $frame['function'];
402             if (isset($frame['type']) && $frame['type'] == '::') {
403                 if (in_array($func, $ignoreStatic)) {
404                     continue;
405                 }
406                 $here = $frame['class'] . '::' . $func;
407                 break;
408             } else if (isset($frame['type']) && $frame['type'] == '->') {
409                 if ($frame['object'] === $this && in_array($func, $ignore)) {
410                     continue;
411                 }
412                 if (in_array($func, $ignoreStatic)) {
413                     continue; // @fixme this shouldn't be needed?
414                 }
415                 $here = get_class($frame['object']) . '->' . $func;
416                 break;
417             }
418             $here = $func;
419             break;
420         }
421
422         if (php_sapi_name() == 'cli') {
423             $context = basename($_SERVER['PHP_SELF']);
424         } else {
425             $context = $_SERVER['REQUEST_METHOD'];
426         }
427
428         // Slip the comment in after the first command,
429         // or DB_DataObject gets confused about handling inserts and such.
430         $parts = explode(' ', $string, 2);
431         $parts[0] .= " /* $context $here */";
432         return implode(' ', $parts);
433     }
434
435     // Sanitize a query for logging
436     // @fixme don't trim spaces in string literals
437     function sanitizeQuery($string)
438     {
439         $string = preg_replace('/\s+/', ' ', $string);
440         $string = trim($string);
441         return $string;
442     }
443
444     // We overload so that 'SET NAMES "utf8"' is called for
445     // each connection
446
447     function _connect()
448     {
449         global $_DB_DATAOBJECT;
450
451         $sum = $this->_getDbDsnMD5();
452
453         if (!empty($_DB_DATAOBJECT['CONNECTIONS'][$sum]) &&
454             !PEAR::isError($_DB_DATAOBJECT['CONNECTIONS'][$sum])) {
455             $exists = true;
456         } else {
457             $exists = false;
458        }
459
460         // @fixme horrible evil hack!
461         //
462         // In multisite configuration we don't want to keep around a separate
463         // connection for every database; we could end up with thousands of
464         // connections open per thread. In an ideal world we might keep
465         // a connection per server and select different databases, but that'd
466         // be reliant on having the same db username/pass as well.
467         //
468         // MySQL connections are cheap enough we're going to try just
469         // closing out the old connection and reopening when we encounter
470         // a new DSN.
471         //
472         // WARNING WARNING if we end up actually using multiple DBs at a time
473         // we'll need some fancier logic here.
474         if (!$exists && !empty($_DB_DATAOBJECT['CONNECTIONS']) && php_sapi_name() == 'cli') {
475             foreach ($_DB_DATAOBJECT['CONNECTIONS'] as $index => $conn) {
476                 if (!empty($conn)) {
477                     $conn->disconnect();
478                 }
479                 unset($_DB_DATAOBJECT['CONNECTIONS'][$index]);
480             }
481         }
482
483         $result = parent::_connect();
484
485         if ($result && !$exists) {
486             $DB = &$_DB_DATAOBJECT['CONNECTIONS'][$this->_database_dsn_md5];
487             if (common_config('db', 'type') == 'mysql' &&
488                 common_config('db', 'utf8')) {
489                 $conn = $DB->connection;
490                 if (!empty($conn)) {
491                     if ($DB instanceof DB_mysqli) {
492                         mysqli_set_charset($conn, 'utf8');
493                     } else if ($DB instanceof DB_mysql) {
494                         mysql_set_charset('utf8', $conn);
495                     }
496                 }
497             }
498             // Needed to make timestamp values usefully comparable.
499             if (common_config('db', 'type') == 'mysql') {
500                 parent::_query("set time_zone='+0:00'");
501             }
502         }
503
504         return $result;
505     }
506
507     // XXX: largely cadged from DB_DataObject
508
509     function _getDbDsnMD5()
510     {
511         if ($this->_database_dsn_md5) {
512             return $this->_database_dsn_md5;
513         }
514
515         $dsn = $this->_getDbDsn();
516
517         if (is_string($dsn)) {
518             $sum = md5($dsn);
519         } else {
520             /// support array based dsn's
521             $sum = md5(serialize($dsn));
522         }
523
524         return $sum;
525     }
526
527     function _getDbDsn()
528     {
529         global $_DB_DATAOBJECT;
530
531         if (empty($_DB_DATAOBJECT['CONFIG'])) {
532             DB_DataObject::_loadConfig();
533         }
534
535         $options = &$_DB_DATAOBJECT['CONFIG'];
536
537         // if the databse dsn dis defined in the object..
538
539         $dsn = isset($this->_database_dsn) ? $this->_database_dsn : null;
540
541         if (!$dsn) {
542
543             if (!$this->_database) {
544                 $this->_database = isset($options["table_{$this->__table}"]) ? $options["table_{$this->__table}"] : null;
545             }
546
547             if ($this->_database && !empty($options["database_{$this->_database}"]))  {
548                 $dsn = $options["database_{$this->_database}"];
549             } else if (!empty($options['database'])) {
550                 $dsn = $options['database'];
551             }
552         }
553
554         if (!$dsn) {
555             // TRANS: Exception thrown when database name or Data Source Name could not be found.
556             throw new Exception(_("No database name or DSN found anywhere."));
557         }
558
559         return $dsn;
560     }
561
562     static function blow()
563     {
564         $c = self::memcache();
565
566         if (empty($c)) {
567             return false;
568         }
569
570         $args = func_get_args();
571
572         $format = array_shift($args);
573
574         $keyPart = vsprintf($format, $args);
575
576         $cacheKey = Cache::key($keyPart);
577
578         return $c->delete($cacheKey);
579     }
580
581     function fixupTimestamps()
582     {
583         // Fake up timestamp columns
584         $columns = $this->table();
585         foreach ($columns as $name => $type) {
586             if ($type & DB_DATAOBJECT_MYSQLTIMESTAMP) {
587                 $this->$name = common_sql_now();
588             }
589         }
590     }
591
592     function debugDump()
593     {
594         common_debug("debugDump: " . common_log_objstring($this));
595     }
596
597     function raiseError($message, $type = null, $behaviour = null)
598     {
599         $id = get_class($this);
600         if (!empty($this->id)) {
601             $id .= ':' . $this->id;
602         }
603         if ($message instanceof PEAR_Error) {
604             $message = $message->getMessage();
605         }
606         // Low level exception. No need for i18n as discussed with Brion.
607         throw new ServerException("[$id] DB_DataObject error [$type]: $message");
608     }
609
610     static function cacheGet($keyPart)
611     {
612         $c = self::memcache();
613
614         if (empty($c)) {
615             return false;
616         }
617
618         $cacheKey = Cache::key($keyPart);
619
620         return $c->get($cacheKey);
621     }
622
623     static function cacheSet($keyPart, $value, $flag=null, $expiry=null)
624     {
625         $c = self::memcache();
626
627         if (empty($c)) {
628             return false;
629         }
630
631         $cacheKey = Cache::key($keyPart);
632
633         return $c->set($cacheKey, $value, $flag, $expiry);
634     }
635
636     static function valueString($v)
637     {
638         $vstr = null;
639         if (is_object($v) && $v instanceof DB_DataObject_Cast) {
640             switch ($v->type) {
641             case 'date':
642                 $vstr = $v->year . '-' . $v->month . '-' . $v->day;
643                 break;
644             case 'blob':
645             case 'string':
646             case 'sql':
647             case 'datetime':
648             case 'time':
649                 // Low level exception. No need for i18n as discussed with Brion.
650                 throw new ServerException("Unhandled DB_DataObject_Cast type passed as cacheKey value: '$v->type'");
651                 break;
652             default:
653                 // Low level exception. No need for i18n as discussed with Brion.
654                 throw new ServerException("Unknown DB_DataObject_Cast type passed as cacheKey value: '$v->type'");
655                 break;
656             }
657         } else {
658             $vstr = strval($v);
659         }
660         return $vstr;
661     }
662 }