]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Memcached_DataObject.php
Moved multiGet into Managed_DataObject
[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     static function getClassKV($cls, $k, $v=null)
34     {
35         if (!is_a($cls, __CLASS__, true)) {
36             throw new Exception('Trying to fetch ' . __CLASS__ . ' into a non-related class');
37         }
38         if (is_null($v)) {
39             $v = $k;
40             $keys = self::pkeyCols($cls);
41             if (count($keys) > 1) {
42                 // FIXME: maybe call pkeyGetClass() ourselves?
43                 throw new Exception('Use pkeyGetClass() for compound primary keys');
44             }
45             $k = $keys[0];
46         }
47         $i = self::getcached($cls, $k, $v);
48         if ($i === false) { // false == cache miss
49             $i = new $cls;
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      * Get multiple items from the database by key
69      *
70      * @param string  $cls       Class to fetch
71      * @param string  $keyCol    name of column for key
72      * @param array   $keyVals   key values to fetch
73      * @param boolean $skipNulls return only non-null results?
74      *
75      * @return array Array of objects, in order
76      */
77     static function multiGetClass($cls, $keyCol, array $keyVals, $skipNulls=true)
78     {
79         $result = self::pivotGetClass($cls, $keyCol, $keyVals);
80
81         $values = array_values($result);
82
83         if ($skipNulls) {
84             $tmp = array();
85             foreach ($values as $value) {
86                 if (!empty($value)) {
87                     $tmp[] = $value;
88                 }
89             }
90             $values = $tmp;
91         }
92
93         return new ArrayWrapper($values);
94     }
95
96     /**
97      * Get multiple items from the database by key
98      *
99      * @param string  $cls       Class to fetch
100      * @param string  $keyCol    name of column for key
101      * @param array   $keyVals   key values to fetch
102      * @param boolean $otherCols Other columns to hold fixed
103      *
104      * @return array Array mapping $keyVals to objects, or null if not found
105      */
106     static function pivotGetClass($cls, $keyCol, array $keyVals, array $otherCols = array())
107     {
108         if (!is_a($cls, __CLASS__, true)) {
109             throw new Exception('Trying to fetch ' . __CLASS__ . ' into a non-related class');
110         }
111         if (is_array($keyCol)) {
112             foreach ($keyVals as $keyVal) {
113                 $result[implode(',', $keyVal)] = null;
114             }
115         } else {
116             $result = array_fill_keys($keyVals, null);
117         }
118
119         $toFetch = array();
120
121         foreach ($keyVals as $keyVal) {
122
123             if (is_array($keyCol)) {
124                 $kv = array_combine($keyCol, $keyVal);
125             } else {
126                 $kv = array($keyCol => $keyVal);
127             }
128
129             $kv = array_merge($otherCols, $kv);
130
131             $i = self::multicache($cls, $kv);
132
133             if ($i !== false) {
134                 if (is_array($keyCol)) {
135                     $result[implode(',', $keyVal)] = $i;
136                 } else {
137                     $result[$keyVal] = $i;
138                 }
139             } else if (!empty($keyVal)) {
140                 $toFetch[] = $keyVal;
141             }
142         }
143
144         if (count($toFetch) > 0) {
145             $i = new $cls;
146             foreach ($otherCols as $otherKeyCol => $otherKeyVal) {
147                 $i->$otherKeyCol = $otherKeyVal;
148             }
149             if (is_array($keyCol)) {
150                 $i->whereAdd(self::_inMultiKey($i, $keyCol, $toFetch));
151             } else {
152                 $i->whereAddIn($keyCol, $toFetch, $i->columnType($keyCol));
153             }
154             if ($i->find()) {
155                 while ($i->fetch()) {
156                     $copy = clone($i);
157                     $copy->encache();
158                     if (is_array($keyCol)) {
159                         $vals = array();
160                         foreach ($keyCol as $k) {
161                             $vals[] = $i->$k;
162                         }
163                         $result[implode(',', $vals)] = $copy;
164                     } else {
165                         $result[$i->$keyCol] = $copy;
166                     }
167                 }
168             }
169
170             // Save state of DB misses
171
172             foreach ($toFetch as $keyVal) {
173                 $r = null;
174                 if (is_array($keyCol)) {
175                     $r = $result[implode(',', $keyVal)];
176                 } else {
177                     $r = $result[$keyVal];
178                 }
179                 if (empty($r)) {
180                     if (is_array($keyCol)) {
181                         $kv = array_combine($keyCol, $keyVal);
182                     } else {
183                         $kv = array($keyCol => $keyVal);
184                     }
185                     $kv = array_merge($otherCols, $kv);
186                     // save the fact that no such row exists
187                     $c = self::memcache();
188                     if (!empty($c)) {
189                         $ck = self::multicacheKey($cls, $kv);
190                         $c->set($ck, null);
191                     }
192                 }
193             }
194         }
195
196         return $result;
197     }
198
199     static function _inMultiKey($i, $cols, $values)
200     {
201         $types = array();
202
203         foreach ($cols as $col) {
204             $types[$col] = $i->columnType($col);
205         }
206
207         $first = true;
208
209         $query = '';
210
211         foreach ($values as $value) {
212             if ($first) {
213                 $query .= '( ';
214                 $first = false;
215             } else {
216                 $query .= ' OR ';
217             }
218             $query .= '( ';
219             $i = 0;
220             $firstc = true;
221             foreach ($cols as $col) {
222                 if (!$firstc) {
223                     $query .= ' AND ';
224                 } else {
225                     $firstc = false;
226                 }
227                 switch ($types[$col]) {
228                 case 'string':
229                 case 'datetime':
230                     $query .= sprintf("%s = %s", $col, $i->_quote($value[$i]));
231                     break;
232                 default:
233                     $query .= sprintf("%s = %s", $col, $value[$i]);
234                     break;
235                 }
236             }
237             $query .= ') ';
238         }
239
240         if (!$first) {
241             $query .= ' )';
242         }
243
244         return $query;
245     }
246
247     static function pkeyCols($cls)
248     {
249         if (!is_a($cls, __CLASS__, true)) {
250             throw new Exception('Trying to fetch ' . __CLASS__ . ' into a non-related class');
251         }
252         $i = new $cls;
253         $types = $i->keyTypes();
254         ksort($types);
255
256         $pkey = array();
257
258         foreach ($types as $key => $type) {
259             if ($type == 'K' || $type == 'N') {
260                 $pkey[] = $key;
261             }
262         }
263
264         return $pkey;
265     }
266
267     static function listGetClass($cls, $keyCol, array $keyVals)
268     {
269         if (!is_a($cls, __CLASS__, true)) {
270             throw new Exception('Trying to fetch ' . __CLASS__ . ' into a non-related class');
271         }
272         $pkeyMap = array_fill_keys($keyVals, array());
273         $result = array_fill_keys($keyVals, array());
274
275         $pkeyCols = self::pkeyCols($cls);
276
277         $toFetch = array();
278         $allPkeys = array();
279
280         // We only cache keys -- not objects!
281
282         foreach ($keyVals as $keyVal) {
283             $l = self::cacheGet(sprintf("%s:list-ids:%s:%s", strtolower($cls), $keyCol, $keyVal));
284             if ($l !== false) {
285                 $pkeyMap[$keyVal] = $l;
286                 foreach ($l as $pkey) {
287                     $allPkeys[] = $pkey;
288                 }
289             } else {
290                 $toFetch[] = $keyVal;
291             }
292         }
293
294         if (count($allPkeys) > 0) {
295             $keyResults = self::pivotGetClass($cls, $pkeyCols, $allPkeys);
296
297             foreach ($pkeyMap as $keyVal => $pkeyList) {
298                 foreach ($pkeyList as $pkeyVal) {
299                     $i = $keyResults[implode(',',$pkeyVal)];
300                     if (!empty($i)) {
301                         $result[$keyVal][] = $i;
302                     }
303                 }
304             }
305         }
306
307         if (count($toFetch) > 0) {
308             $i = new $cls;
309             $i->whereAddIn($keyCol, $toFetch, $i->columnType($keyCol));
310             if ($i->find()) {
311                 sprintf(__CLASS__ . "() got {$i->N} results for class $cls key $keyCol");
312                 while ($i->fetch()) {
313                     $copy = clone($i);
314                     $copy->encache();
315                     $result[$i->$keyCol][] = $copy;
316                     $pkeyVal = array();
317                     foreach ($pkeyCols as $pkeyCol) {
318                         $pkeyVal[] = $i->$pkeyCol;
319                     }
320                     $pkeyMap[$i->$keyCol][] = $pkeyVal;
321                 }
322             }
323             foreach ($toFetch as $keyVal) {
324                 self::cacheSet(sprintf("%s:list-ids:%s:%s", strtolower($cls), $keyCol, $keyVal),
325                                $pkeyMap[$keyVal]);
326             }
327         }
328
329         return $result;
330     }
331
332     function columnType($columnName)
333     {
334         $keys = $this->table();
335         if (!array_key_exists($columnName, $keys)) {
336             throw new Exception('Unknown key column ' . $columnName . ' in ' . join(',', array_keys($keys)));
337         }
338
339         $def = $keys[$columnName];
340
341         if ($def & DB_DATAOBJECT_INT) {
342             return 'integer';
343         } else {
344             return 'string';
345         }
346     }
347
348     /**
349      * @todo FIXME: Should this return false on lookup fail to match getKV?
350      */
351     static function pkeyGetClass($cls, array $kv)
352     {
353         if (!is_a($cls, __CLASS__, true)) {
354             throw new Exception('Trying to fetch ' . __CLASS__ . ' into a non-related class');
355         }
356         $i = Memcached_DataObject::multicache($cls, $kv);
357         if ($i !== false) { // false == cache miss
358             return $i;
359         } else {
360             $i = new $cls;
361             foreach ($kv as $k => $v) {
362                 if (is_null($v)) {
363                     // XXX: possible SQL injection...? Don't
364                     // pass keys from the browser, eh.
365                     $i->whereAdd("$k is null");
366                 } else {
367                     $i->$k = $v;
368                 }
369             }
370             if ($i->find(true)) {
371                 $i->encache();
372             } else {
373                 $i = null;
374                 $c = self::memcache();
375                 if (!empty($c)) {
376                     $ck = self::multicacheKey($cls, $kv);
377                     $c->set($ck, null);
378                 }
379             }
380             return $i;
381         }
382     }
383
384     function insert()
385     {
386         $result = parent::insert();
387         if ($result) {
388             $this->fixupTimestamps();
389             $this->encache(); // in case of cached negative lookups
390         }
391         return $result;
392     }
393
394     function update($orig=null)
395     {
396         if (is_object($orig) && $orig instanceof Memcached_DataObject) {
397             $orig->decache(); # might be different keys
398         }
399         $result = parent::update($orig);
400         if ($result) {
401             $this->fixupTimestamps();
402             $this->encache();
403         }
404         return $result;
405     }
406
407     function delete()
408     {
409         $this->decache(); # while we still have the values!
410         return parent::delete();
411     }
412
413     static function memcache() {
414         return Cache::instance();
415     }
416
417     static function cacheKey($cls, $k, $v) {
418         if (is_object($cls) || is_object($k) || (is_object($v) && !($v instanceof DB_DataObject_Cast))) {
419             $e = new Exception();
420             common_log(LOG_ERR, __METHOD__ . ' object in param: ' .
421                 str_replace("\n", " ", $e->getTraceAsString()));
422         }
423         $vstr = self::valueString($v);
424         return Cache::key(strtolower($cls).':'.$k.':'.$vstr);
425     }
426
427     static function getcached($cls, $k, $v) {
428         $c = Memcached_DataObject::memcache();
429         if (!$c) {
430             return false;
431         } else {
432             $obj = $c->get(Memcached_DataObject::cacheKey($cls, $k, $v));
433             if (0 == strcasecmp($cls, 'User')) {
434                 // Special case for User
435                 if (is_object($obj) && is_object($obj->id)) {
436                     common_log(LOG_ERR, "User " . $obj->nickname . " was cached with User as ID; deleting");
437                     $c->delete(Memcached_DataObject::cacheKey($cls, $k, $v));
438                     return false;
439                 }
440             }
441             return $obj;
442         }
443     }
444
445     function keyTypes()
446     {
447         // ini-based classes return number-indexed arrays. handbuilt
448         // classes return column => keytype. Make this uniform.
449
450         $keys = $this->keys();
451
452         $keyskeys = array_keys($keys);
453
454         if (is_string($keyskeys[0])) {
455             return $keys;
456         }
457
458         global $_DB_DATAOBJECT;
459         if (!isset($_DB_DATAOBJECT['INI'][$this->_database][$this->__table."__keys"])) {
460             $this->databaseStructure();
461
462         }
463         return $_DB_DATAOBJECT['INI'][$this->_database][$this->__table."__keys"];
464     }
465
466     function encache()
467     {
468         $c = $this->memcache();
469
470         if (!$c) {
471             return false;
472         } else if ($this->tableName() == 'user' && is_object($this->id)) {
473             // Special case for User bug
474             $e = new Exception();
475             common_log(LOG_ERR, __METHOD__ . ' caching user with User object as ID ' .
476                        str_replace("\n", " ", $e->getTraceAsString()));
477             return false;
478         } else {
479             $keys = $this->_allCacheKeys();
480
481             foreach ($keys as $key) {
482                 $c->set($key, $this);
483             }
484         }
485     }
486
487     function decache()
488     {
489         $c = $this->memcache();
490
491         if (!$c) {
492             return false;
493         }
494
495         $keys = $this->_allCacheKeys();
496
497         foreach ($keys as $key) {
498             $c->delete($key, $this);
499         }
500     }
501
502     function _allCacheKeys()
503     {
504         $ckeys = array();
505
506         $types = $this->keyTypes();
507         ksort($types);
508
509         $pkey = array();
510         $pval = array();
511
512         foreach ($types as $key => $type) {
513
514             assert(!empty($key));
515
516             if ($type == 'U') {
517                 if (empty($this->$key)) {
518                     continue;
519                 }
520                 $ckeys[] = $this->cacheKey($this->tableName(), $key, self::valueString($this->$key));
521             } else if ($type == 'K' || $type == 'N') {
522                 $pkey[] = $key;
523                 $pval[] = self::valueString($this->$key);
524             } else {
525                 // Low level exception. No need for i18n as discussed with Brion.
526                 throw new Exception("Unknown key type $key => $type for " . $this->tableName());
527             }
528         }
529
530         assert(count($pkey) > 0);
531
532         // XXX: should work for both compound and scalar pkeys
533         $pvals = implode(',', $pval);
534         $pkeys = implode(',', $pkey);
535
536         $ckeys[] = $this->cacheKey($this->tableName(), $pkeys, $pvals);
537
538         return $ckeys;
539     }
540
541     static function multicache($cls, $kv)
542     {
543         ksort($kv);
544         $c = self::memcache();
545         if (!$c) {
546             return false;
547         } else {
548             return $c->get(self::multicacheKey($cls, $kv));
549         }
550     }
551
552     static function multicacheKey($cls, $kv)
553     {
554         ksort($kv);
555         $pkeys = implode(',', array_keys($kv));
556         $pvals = implode(',', array_values($kv));
557         return self::cacheKey($cls, $pkeys, $pvals);
558     }
559
560     function getSearchEngine($table)
561     {
562         require_once INSTALLDIR.'/lib/search_engines.php';
563
564         if (Event::handle('GetSearchEngine', array($this, $table, &$search_engine))) {
565             if ('mysql' === common_config('db', 'type')) {
566                 $type = common_config('search', 'type');
567                 if ($type == 'like') {
568                     $search_engine = new MySQLLikeSearch($this, $table);
569                 } else if ($type == 'fulltext') {
570                     $search_engine = new MySQLSearch($this, $table);
571                 } else {
572                     // Low level exception. No need for i18n as discussed with Brion.
573                     throw new ServerException('Unknown search type: ' . $type);
574                 }
575             } else {
576                 $search_engine = new PGSearch($this, $table);
577             }
578         }
579
580         return $search_engine;
581     }
582
583     static function cachedQuery($cls, $qry, $expiry=3600)
584     {
585         $c = Memcached_DataObject::memcache();
586         if (!$c) {
587             $inst = new $cls();
588             $inst->query($qry);
589             return $inst;
590         }
591         $key_part = Cache::keyize($cls).':'.md5($qry);
592         $ckey = Cache::key($key_part);
593         $stored = $c->get($ckey);
594
595         if ($stored !== false) {
596             return new ArrayWrapper($stored);
597         }
598
599         $inst = new $cls();
600         $inst->query($qry);
601         $cached = array();
602         while ($inst->fetch()) {
603             $cached[] = clone($inst);
604         }
605         $inst->free();
606         $c->set($ckey, $cached, Cache::COMPRESSED, $expiry);
607         return new ArrayWrapper($cached);
608     }
609
610     /**
611      * sends query to database - this is the private one that must work
612      *   - internal functions use this rather than $this->query()
613      *
614      * Overridden to do logging.
615      *
616      * @param  string  $string
617      * @access private
618      * @return mixed none or PEAR_Error
619      */
620     function _query($string)
621     {
622         if (common_config('db', 'annotate_queries')) {
623             $string = $this->annotateQuery($string);
624         }
625
626         $start = microtime(true);
627         $fail = false;
628         $result = null;
629         if (Event::handle('StartDBQuery', array($this, $string, &$result))) {
630             common_perf_counter('query', $string);
631             try {
632                 $result = parent::_query($string);
633             } catch (Exception $e) {
634                 $fail = $e;
635             }
636             Event::handle('EndDBQuery', array($this, $string, &$result));
637         }
638         $delta = microtime(true) - $start;
639
640         $limit = common_config('db', 'log_slow_queries');
641         if (($limit > 0 && $delta >= $limit) || common_config('db', 'log_queries')) {
642             $clean = $this->sanitizeQuery($string);
643             if ($fail) {
644                 $msg = sprintf("FAILED DB query (%0.3fs): %s - %s", $delta, $fail->getMessage(), $clean);
645             } else {
646                 $msg = sprintf("DB query (%0.3fs): %s", $delta, $clean);
647             }
648             common_log(LOG_DEBUG, $msg);
649         }
650
651         if ($fail) {
652             throw $fail;
653         }
654         return $result;
655     }
656
657     /**
658      * Find the first caller in the stack trace that's not a
659      * low-level database function and add a comment to the
660      * query string. This should then be visible in process lists
661      * and slow query logs, to help identify problem areas.
662      *
663      * Also marks whether this was a web GET/POST or which daemon
664      * was running it.
665      *
666      * @param string $string SQL query string
667      * @return string SQL query string, with a comment in it
668      */
669     function annotateQuery($string)
670     {
671         $ignore = array('annotateQuery',
672                         '_query',
673                         'query',
674                         'get',
675                         'insert',
676                         'delete',
677                         'update',
678                         'find');
679         $ignoreStatic = array('getKV',
680                               'getClassKV',
681                               'pkeyGet',
682                               'pkeyGetClass',
683                               'cachedQuery');
684         $here = get_class($this); // if we get confused
685         $bt = debug_backtrace();
686
687         // Find the first caller that's not us?
688         foreach ($bt as $frame) {
689             $func = $frame['function'];
690             if (isset($frame['type']) && $frame['type'] == '::') {
691                 if (in_array($func, $ignoreStatic)) {
692                     continue;
693                 }
694                 $here = $frame['class'] . '::' . $func;
695                 break;
696             } else if (isset($frame['type']) && $frame['type'] == '->') {
697                 if ($frame['object'] === $this && in_array($func, $ignore)) {
698                     continue;
699                 }
700                 if (in_array($func, $ignoreStatic)) {
701                     continue; // @todo FIXME: This shouldn't be needed?
702                 }
703                 $here = get_class($frame['object']) . '->' . $func;
704                 break;
705             }
706             $here = $func;
707             break;
708         }
709
710         if (php_sapi_name() == 'cli') {
711             $context = basename($_SERVER['PHP_SELF']);
712         } else {
713             $context = $_SERVER['REQUEST_METHOD'];
714         }
715
716         // Slip the comment in after the first command,
717         // or DB_DataObject gets confused about handling inserts and such.
718         $parts = explode(' ', $string, 2);
719         $parts[0] .= " /* $context $here */";
720         return implode(' ', $parts);
721     }
722
723     // Sanitize a query for logging
724     // @fixme don't trim spaces in string literals
725     function sanitizeQuery($string)
726     {
727         $string = preg_replace('/\s+/', ' ', $string);
728         $string = trim($string);
729         return $string;
730     }
731
732     // We overload so that 'SET NAMES "utf8"' is called for
733     // each connection
734
735     function _connect()
736     {
737         global $_DB_DATAOBJECT;
738
739         $sum = $this->_getDbDsnMD5();
740
741         if (!empty($_DB_DATAOBJECT['CONNECTIONS'][$sum]) &&
742             !PEAR::isError($_DB_DATAOBJECT['CONNECTIONS'][$sum])) {
743             $exists = true;
744         } else {
745             $exists = false;
746        }
747
748         // @fixme horrible evil hack!
749         //
750         // In multisite configuration we don't want to keep around a separate
751         // connection for every database; we could end up with thousands of
752         // connections open per thread. In an ideal world we might keep
753         // a connection per server and select different databases, but that'd
754         // be reliant on having the same db username/pass as well.
755         //
756         // MySQL connections are cheap enough we're going to try just
757         // closing out the old connection and reopening when we encounter
758         // a new DSN.
759         //
760         // WARNING WARNING if we end up actually using multiple DBs at a time
761         // we'll need some fancier logic here.
762         if (!$exists && !empty($_DB_DATAOBJECT['CONNECTIONS']) && php_sapi_name() == 'cli') {
763             foreach ($_DB_DATAOBJECT['CONNECTIONS'] as $index => $conn) {
764                 if (!empty($conn)) {
765                     $conn->disconnect();
766                 }
767                 unset($_DB_DATAOBJECT['CONNECTIONS'][$index]);
768             }
769         }
770
771         $result = parent::_connect();
772
773         if ($result && !$exists) {
774             $DB = &$_DB_DATAOBJECT['CONNECTIONS'][$this->_database_dsn_md5];
775             if (common_config('db', 'type') == 'mysql' &&
776                 common_config('db', 'utf8')) {
777                 $conn = $DB->connection;
778                 if (!empty($conn)) {
779                     if ($DB instanceof DB_mysqli) {
780                         mysqli_set_charset($conn, 'utf8');
781                     } else if ($DB instanceof DB_mysql) {
782                         mysql_set_charset('utf8', $conn);
783                     }
784                 }
785             }
786             // Needed to make timestamp values usefully comparable.
787             if (common_config('db', 'type') == 'mysql') {
788                 parent::_query("set time_zone='+0:00'");
789             }
790         }
791
792         return $result;
793     }
794
795     // XXX: largely cadged from DB_DataObject
796
797     function _getDbDsnMD5()
798     {
799         if ($this->_database_dsn_md5) {
800             return $this->_database_dsn_md5;
801         }
802
803         $dsn = $this->_getDbDsn();
804
805         if (is_string($dsn)) {
806             $sum = md5($dsn);
807         } else {
808             /// support array based dsn's
809             $sum = md5(serialize($dsn));
810         }
811
812         return $sum;
813     }
814
815     function _getDbDsn()
816     {
817         global $_DB_DATAOBJECT;
818
819         if (empty($_DB_DATAOBJECT['CONFIG'])) {
820             DB_DataObject::_loadConfig();
821         }
822
823         $options = &$_DB_DATAOBJECT['CONFIG'];
824
825         // if the databse dsn dis defined in the object..
826
827         $dsn = isset($this->_database_dsn) ? $this->_database_dsn : null;
828
829         if (!$dsn) {
830
831             if (!$this->_database) {
832                 $this->_database = isset($options["table_{$this->__table}"]) ? $options["table_{$this->__table}"] : null;
833             }
834
835             if ($this->_database && !empty($options["database_{$this->_database}"]))  {
836                 $dsn = $options["database_{$this->_database}"];
837             } else if (!empty($options['database'])) {
838                 $dsn = $options['database'];
839             }
840         }
841
842         if (!$dsn) {
843             // TRANS: Exception thrown when database name or Data Source Name could not be found.
844             throw new Exception(_('No database name or DSN found anywhere.'));
845         }
846
847         return $dsn;
848     }
849
850     static function blow()
851     {
852         $c = self::memcache();
853
854         if (empty($c)) {
855             return false;
856         }
857
858         $args = func_get_args();
859
860         $format = array_shift($args);
861
862         $keyPart = vsprintf($format, $args);
863
864         $cacheKey = Cache::key($keyPart);
865
866         return $c->delete($cacheKey);
867     }
868
869     function fixupTimestamps()
870     {
871         // Fake up timestamp columns
872         $columns = $this->table();
873         foreach ($columns as $name => $type) {
874             if ($type & DB_DATAOBJECT_MYSQLTIMESTAMP) {
875                 $this->$name = common_sql_now();
876             }
877         }
878     }
879
880     function debugDump()
881     {
882         common_debug("debugDump: " . common_log_objstring($this));
883     }
884
885     function raiseError($message, $type = null, $behaviour = null)
886     {
887         $id = get_class($this);
888         if (!empty($this->id)) {
889             $id .= ':' . $this->id;
890         }
891         if ($message instanceof PEAR_Error) {
892             $message = $message->getMessage();
893         }
894         // Low level exception. No need for i18n as discussed with Brion.
895         throw new ServerException("[$id] DB_DataObject error [$type]: $message");
896     }
897
898     static function cacheGet($keyPart)
899     {
900         $c = self::memcache();
901
902         if (empty($c)) {
903             return false;
904         }
905
906         $cacheKey = Cache::key($keyPart);
907
908         return $c->get($cacheKey);
909     }
910
911     static function cacheSet($keyPart, $value, $flag=null, $expiry=null)
912     {
913         $c = self::memcache();
914
915         if (empty($c)) {
916             return false;
917         }
918
919         $cacheKey = Cache::key($keyPart);
920
921         return $c->set($cacheKey, $value, $flag, $expiry);
922     }
923
924     static function valueString($v)
925     {
926         $vstr = null;
927         if (is_object($v) && $v instanceof DB_DataObject_Cast) {
928             switch ($v->type) {
929             case 'date':
930                 $vstr = $v->year . '-' . $v->month . '-' . $v->day;
931                 break;
932             case 'blob':
933             case 'string':
934             case 'sql':
935             case 'datetime':
936             case 'time':
937                 // Low level exception. No need for i18n as discussed with Brion.
938                 throw new ServerException("Unhandled DB_DataObject_Cast type passed as cacheKey value: '$v->type'");
939                 break;
940             default:
941                 // Low level exception. No need for i18n as discussed with Brion.
942                 throw new ServerException("Unknown DB_DataObject_Cast type passed as cacheKey value: '$v->type'");
943                 break;
944             }
945         } else {
946             $vstr = strval($v);
947         }
948         return $vstr;
949     }
950 }