]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/WikiDB.php
Reformat code
[SourceForge/phpwiki.git] / lib / WikiDB.php
1 <?php
2 require_once 'lib/PageType.php';
3
4 /**
5  * The classes in the file define the interface to the
6  * page database.
7  *
8  * @package WikiDB
9  * @author Geoffrey T. Dairiki <dairiki@dairiki.org>
10  * Minor enhancements by Reini Urban
11  */
12
13 /**
14  * Force the creation of a new revision.
15  * @see WikiDB_Page::createRevision()
16  */
17 if (!defined('WIKIDB_FORCE_CREATE'))
18     define('WIKIDB_FORCE_CREATE', -1);
19
20 /**
21  * Abstract base class for the database used by PhpWiki.
22  *
23  * A <tt>WikiDB</tt> is a container for <tt>WikiDB_Page</tt>s which in
24  * turn contain <tt>WikiDB_PageRevision</tt>s.
25  *
26  * Conceptually a <tt>WikiDB</tt> contains all possible
27  * <tt>WikiDB_Page</tt>s, whether they have been initialized or not.
28  * Since all possible pages are already contained in a WikiDB, a call
29  * to WikiDB::getPage() will never fail (barring bugs and
30  * e.g. filesystem or SQL database problems.)
31  *
32  * Also each <tt>WikiDB_Page</tt> always contains at least one
33  * <tt>WikiDB_PageRevision</tt>: the default content (e.g. "Describe
34  * [PageName] here.").  This default content has a version number of
35  * zero.
36  *
37  * <tt>WikiDB_PageRevision</tt>s have read-only semantics. One can
38  * only create new revisions or delete old ones --- one can not modify
39  * an existing revision.
40  */
41 class WikiDB
42 {
43     /**
44      * Open a WikiDB database.
45      *
46      * This is a static member function. This function inspects its
47      * arguments to determine the proper subclass of WikiDB to
48      * instantiate, and then it instantiates it.
49      *
50      * @access public
51      *
52      * @param hash $dbparams Database configuration parameters.
53      * Some pertinent parameters are:
54      * <dl>
55      * <dt> dbtype
56      * <dd> The back-end type.  Current supported types are:
57      *   <dl>
58      *   <dt> SQL
59      *     <dd> Generic SQL backend based on the PEAR/DB database abstraction
60      *       library. (More stable and conservative)
61      *   <dt> ADODB
62      *     <dd> Another generic SQL backend. (More current features are tested here. Much faster)
63      *   <dt> dba
64      *     <dd> Dba based backend. The default and by far the fastest.
65      *   <dt> cvs
66      *     <dd>
67      *   <dt> file
68      *     <dd> flat files
69      *   </dl>
70      *
71      * <dt> dsn
72      * <dd> (Used by the SQL and ADODB backends.)
73      *      The DSN specifying which database to connect to.
74      *
75      * <dt> prefix
76      * <dd> Prefix to be prepended to database tables (and file names).
77      *
78      * <dt> directory
79      * <dd> (Used by the dba backend.)
80      *      Which directory db files reside in.
81      *
82      * <dt> timeout
83      * <dd> Used only by the dba backend so far.
84      *      And: When optimizing mysql it closes timed out mysql processes.
85      *      otherwise only used for dba: Timeout in seconds for opening (and
86      *      obtaining lock) on the dbm file.
87      *
88      * <dt> dba_handler
89      * <dd> (Used by the dba backend.)
90      *
91      *      Which dba handler to use. Good choices are probably either
92      *      'gdbm' or 'db2'.
93      *
94      * <dt> readonly
95      * <dd> Either set by config.ini: READONLY = true or detected automatically
96      *      when a database can be read but cannot be updated.
97      * </dl>
98      *
99      * @return WikiDB A WikiDB object.
100      **/
101     function open($dbparams)
102     {
103         $dbtype = $dbparams{'dbtype'};
104         include_once("lib/WikiDB/$dbtype.php");
105
106         $class = 'WikiDB_' . $dbtype;
107         return new $class ($dbparams);
108     }
109
110     /**
111      * Constructor.
112      *
113      * @access private
114      * @see open()
115      */
116     function WikiDB(&$backend, $dbparams)
117     {
118         $this->_backend =& $backend;
119         // don't do the following with the auth_dsn!
120         if (isset($dbparams['auth_dsn'])) return;
121
122         $this->_cache = new WikiDB_cache($backend);
123         if (!empty($GLOBALS['request'])) $GLOBALS['request']->_dbi = $this;
124
125         // If the database doesn't yet have a timestamp, initialize it now.
126         if ($this->get('_timestamp') === false)
127             $this->touch();
128
129         // devel checking.
130         if ((int)DEBUG & _DEBUG_SQL) {
131             $this->_backend->check();
132         }
133         // might be changed when opening the database fails
134         $this->readonly = defined("READONLY") ? READONLY : false;
135     }
136
137     /**
138      * Close database connection.
139      *
140      * The database may no longer be used after it is closed.
141      *
142      * Closing a WikiDB invalidates all <tt>WikiDB_Page</tt>s,
143      * <tt>WikiDB_PageRevision</tt>s and <tt>WikiDB_PageIterator</tt>s
144      * which have been obtained from it.
145      *
146      * @access public
147      */
148     function close()
149     {
150         $this->_backend->close();
151         $this->_cache->close();
152     }
153
154     /**
155      * Get a WikiDB_Page from a WikiDB.
156      *
157      * A {@link WikiDB} consists of the (infinite) set of all possible pages,
158      * therefore this method never fails.
159      *
160      * @access public
161      * @param  string      $pagename Which page to get.
162      * @return WikiDB_Page The requested WikiDB_Page.
163      */
164     function getPage($pagename)
165     {
166         static $error_displayed = false;
167         $pagename = (string)$pagename;
168         if ((int)DEBUG) {
169             if ($pagename === '') {
170                 if ($error_displayed) return false;
171                 $error_displayed = true;
172                 if (function_exists("xdebug_get_function_stack"))
173                     var_dump(xdebug_get_function_stack());
174                 trigger_error("empty pagename", E_USER_WARNING);
175                 return false;
176             }
177         } else {
178             assert($pagename != '');
179         }
180         return new WikiDB_Page($this, $pagename);
181     }
182
183     /**
184      * Determine whether page exists (in non-default form).
185      *
186      * <pre>
187      *   $is_page = $dbi->isWikiPage($pagename);
188      * </pre>
189      * is equivalent to
190      * <pre>
191      *   $page = $dbi->getPage($pagename);
192      *   $current = $page->getCurrentRevision();
193      *   $is_page = ! $current->hasDefaultContents();
194      * </pre>
195      * however isWikiPage may be implemented in a more efficient
196      * manner in certain back-ends.
197      *
198      * @access public
199      * @param  string  $pagename string Which page to check.
200      * @return boolean True if the page actually exists with
201      * non-default contents in the WikiDataBase.
202      */
203     function isWikiPage($pagename)
204     {
205         $page = $this->getPage($pagename);
206         return ($page and $page->exists());
207     }
208
209     /**
210      * Delete page from the WikiDB.
211      *
212      * Deletes the page from the WikiDB with the possibility to revert and diff.
213      * //Also resets all page meta-data to the default values.
214      *
215      * Note: purgePage() effectively destroys all revisions of the page from the WikiDB.
216      *
217      * @access public
218      * @param string $pagename Name of page to delete.
219      * @see purgePage
220      */
221     function deletePage($pagename)
222     {
223         if (!empty($this->readonly)) {
224             trigger_error("readonly database", E_USER_WARNING);
225             return;
226         }
227         // don't create empty revisions of already purged pages.
228         if ($this->_backend->get_latest_version($pagename))
229             $result = $this->_cache->delete_page($pagename);
230         else
231             $result = -1;
232
233         /* Generate notification emails */
234         if (ENABLE_MAILNOTIFY) {
235             include_once 'lib/MailNotify.php';
236             $MailNotify = new MailNotify($pagename);
237             $MailNotify->onDeletePage($this, $pagename);
238         }
239
240         //How to create a RecentChanges entry with explaining summary? Dynamically
241         /*
242         $page = $this->getPage($pagename);
243         $current = $page->getCurrentRevision();
244         $meta = $current->_data;
245         $version = $current->getVersion();
246         $meta['summary'] = _("removed");
247         $page->save($current->getPackedContent(), $version + 1, $meta);
248         */
249         return $result;
250     }
251
252     /**
253      * Completely remove the page from the WikiDB, without undo possibility.
254      * @access public
255      * @param string $pagename Name of page to delete.
256      * @see deletePage
257      */
258     function purgePage($pagename)
259     {
260         if (!empty($this->readonly)) {
261             trigger_error("readonly database", E_USER_WARNING);
262             return;
263         }
264         $result = $this->_cache->purge_page($pagename);
265         $this->deletePage($pagename); // just for the notification
266         return $result;
267     }
268
269     /**
270      * Retrieve all pages.
271      *
272      * Gets the set of all pages with non-default contents.
273      *
274      * @access public
275      *
276      * @param boolean $include_empty Optional. Normally pages whose most
277      * recent revision has empty content are considered to be
278      * non-existant. Unless $include_defaulted is set to true, those
279      * pages will not be returned.
280      * @param string or false $sortby Optional. "+-column,+-column2".
281      *        If false the result is faster in natural order.
282      * @param string or false $limit Optional. Encoded as "$offset,$count".
283      *         $offset defaults to 0.
284      * @param string $exclude: Optional comma-seperated list of pagenames.
285      *
286      * @return WikiDB_PageIterator A WikiDB_PageIterator which contains all pages
287      *     in the WikiDB which have non-default contents.
288      */
289     function getAllPages($include_empty = false, $sortby = '', $limit = '', $exclude = '')
290     {
291         $result = $this->_backend->get_all_pages($include_empty, $sortby, $limit,
292             $exclude);
293         return new WikiDB_PageIterator($this, $result,
294             array('include_empty' => $include_empty,
295                 'exclude' => $exclude,
296                 'limit_by_db' => $result->_options['limit_by_db'],
297                 'limit' => $result->limit()));
298     }
299
300     /**
301      * @access public
302      *
303      * @param boolean $include_empty If true include also empty pages
304      * @param string  $exclude:      comma-seperated list of pagenames.
305      *             TBD: array of pagenames
306      * @return integer
307      *
308      */
309     function numPages($include_empty = false, $exclude = '')
310     {
311         if (method_exists($this->_backend, 'numPages'))
312             // FIXME: currently are all args ignored.
313             $count = $this->_backend->numPages($include_empty, $exclude);
314         else {
315             // FIXME: exclude ignored.
316             $iter = $this->getAllPages($include_empty, false, false, $exclude);
317             $count = $iter->count();
318             $iter->free();
319         }
320         return (int)$count;
321     }
322
323     /**
324      * Title search.
325      *
326      * Search for pages containing (or not containing) certain words
327      * in their names.
328      *
329      * Pages are returned in alphabetical order whenever it is
330      * practical to do so.
331      * TODO: Sort by ranking. Only postgresql with tsearch2 can do ranking so far.
332      *
333      * @access public
334      * @param TextSearchQuery $search A TextSearchQuery object
335      * @param string or false $sortby Optional. "+-column,+-column2".
336      *        If false the result is faster in natural order.
337      * @param string or false $limit Optional. Encoded as "$offset,$count".
338      *         $offset defaults to 0.
339      * @param  string              $exclude: Optional comma-seperated list of pagenames.
340      * @return WikiDB_PageIterator A WikiDB_PageIterator containing the matching pages.
341      * @see TextSearchQuery
342      */
343     function titleSearch($search, $sortby = 'pagename', $limit = '', $exclude = '')
344     {
345         $result = $this->_backend->text_search($search, false, $sortby, $limit, $exclude);
346         $options = array('exclude' => $exclude,
347             'limit' => $limit);
348         //if (isset($result->_count)) $options['count'] = $result->_count;
349         return new WikiDB_PageIterator($this, $result, $options);
350     }
351
352     /**
353      * Full text search.
354      *
355      * Search for pages containing (or not containing) certain words
356      * in their entire text (this includes the page content and the
357      * page name).
358      *
359      * Pages are returned in alphabetical order whenever it is
360      * practical to do so.
361      * TODO: Sort by ranking. Only postgresql with tsearch2 can do ranking so far.
362      *
363      * @access public
364      *
365      * @param TextSearchQuery $search A TextSearchQuery object.
366      * @param string or false $sortby Optional. "+-column,+-column2".
367      *        If false the result is faster in natural order.
368      * @param string or false $limit Optional. Encoded as "$offset,$count".
369      *         $offset defaults to 0.
370      * @param  string              $exclude: Optional comma-seperated list of pagenames.
371      * @return WikiDB_PageIterator A WikiDB_PageIterator containing the matching pages.
372      * @see TextSearchQuery
373      */
374     function fullSearch($search, $sortby = 'pagename', $limit = '', $exclude = '')
375     {
376         $result = $this->_backend->text_search($search, true, $sortby, $limit, $exclude);
377         return new WikiDB_PageIterator($this, $result,
378             array('exclude' => $exclude,
379                 'limit' => $limit,
380                 'stoplisted' => $result->stoplisted
381             ));
382     }
383
384     /**
385      * Find the pages with the greatest hit counts.
386      *
387      * Pages are returned in reverse order by hit count.
388      *
389      * @access public
390      *
391      * @param integer $limit The maximum number of pages to return.
392      * Set $limit to zero to return all pages.  If $limit < 0, pages will
393      * be sorted in decreasing order of popularity.
394      * @param string or false $sortby Optional. "+-column,+-column2".
395      *        If false the result is faster in natural order.
396      *
397      * @return WikiDB_PageIterator A WikiDB_PageIterator containing the matching
398      * pages.
399      */
400     function mostPopular($limit = 20, $sortby = '-hits')
401     {
402         $result = $this->_backend->most_popular($limit, $sortby);
403         return new WikiDB_PageIterator($this, $result);
404     }
405
406     /**
407      * Find recent page revisions.
408      *
409      * Revisions are returned in reverse order by creation time.
410      *
411      * @access public
412      *
413      * @param hash $params This hash is used to specify various optional
414      *   parameters:
415      * <dl>
416      * <dt> limit
417      *    <dd> (integer) At most this many revisions will be returned.
418      * <dt> since
419      *    <dd> (integer) Only revisions since this time (unix-timestamp)
420      *        will be returned.
421      * <dt> include_minor_revisions
422      *    <dd> (boolean) Also include minor revisions.  (Default is not to.)
423      * <dt> exclude_major_revisions
424      *    <dd> (boolean) Don't include non-minor revisions.
425      *         (Exclude_major_revisions implies include_minor_revisions.)
426      * <dt> include_all_revisions
427      *    <dd> (boolean) Return all matching revisions for each page.
428      *         Normally only the most recent matching revision is returned
429      *         for each page.
430      * </dl>
431      *
432      * @return WikiDB_PageRevisionIterator A WikiDB_PageRevisionIterator
433      * containing the matching revisions.
434      */
435     function mostRecent($params = false)
436     {
437         $result = $this->_backend->most_recent($params);
438         return new WikiDB_PageRevisionIterator($this, $result);
439     }
440
441     /**
442      * @access public
443      *
444      * @param string or false $sortby Optional. "+-column,+-column2".
445      *        If false the result is faster in natural order.
446      * @param string or false $limit Optional. Encoded as "$offset,$count".
447      *         $offset defaults to 0.
448      * @return Iterator A generic iterator containing rows of
449      *         (duplicate) pagename, wantedfrom.
450      */
451     function wantedPages($exclude_from = '', $exclude = '', $sortby = '', $limit = '')
452     {
453         return $this->_backend->wanted_pages($exclude_from, $exclude, $sortby, $limit);
454         //return new WikiDB_PageIterator($this, $result);
455     }
456
457     /**
458      * Generic interface to the link table. Esp. useful to search for rdf triples as in
459      * SemanticSearch and ListRelations.
460      *
461      * @access public
462      *
463      * @param $pages  object A TextSearchQuery object.
464      * @param $search object A TextSearchQuery object.
465      * @param string $linktype One of "linkto", "linkfrom", "relation", "attribute".
466      *   linktype parameter:
467      * <dl>
468      * <dt> "linkto"
469      *    <dd> search for simple out-links
470      * <dt> "linkfrom"
471      *    <dd> in-links, i.e BackLinks
472      * <dt> "relation"
473      *    <dd> the first part in a <>::<> link
474      * <dt> "attribute"
475      *    <dd> the first part in a <>:=<> link
476      * </dl>
477      * @param $relation object An optional TextSearchQuery to match the
478      * relation name. Ignored on simple in-out links.
479      *
480      * @return Iterator A generic iterator containing links to pages or values.
481      *                  hash of "pagename", "linkname", "linkvalue.
482      */
483     function linkSearch($pages, $search, $linktype, $relation = false)
484     {
485         return $this->_backend->link_search($pages, $search, $linktype, $relation);
486     }
487
488     /**
489      * Return a simple list of all defined relations (and attributes), mainly
490      * for the SemanticSearch autocompletion.
491      *
492      * @access public
493      *
494      * @return array of strings
495      */
496     function listRelations($also_attributes = false, $only_attributes = false, $sorted = true)
497     {
498         if (method_exists($this->_backend, "list_relations"))
499             return $this->_backend->list_relations($also_attributes, $only_attributes, $sorted);
500         // dumb, slow fallback. no iter, so simply define it here.
501         $relations = array();
502         $iter = $this->getAllPages();
503         while ($page = $iter->next()) {
504             $reliter = $page->getRelations();
505             $names = array();
506             while ($rel = $reliter->next()) {
507                 // if there's no pagename it's an attribute
508                 $names[] = $rel->getName();
509             }
510             $relations = array_merge($relations, $names);
511             $reliter->free();
512         }
513         $iter->free();
514         if ($sorted) {
515             sort($relations);
516             reset($relations);
517         }
518         return $relations;
519     }
520
521     /**
522      * Call the appropriate backend method.
523      *
524      * @access public
525      * @param  string  $from            Page to rename
526      * @param  string  $to              New name
527      * @param  boolean $updateWikiLinks If the text in all pages should be replaced.
528      * @return boolean true or false
529      */
530     function renamePage($from, $to, $updateWikiLinks = false)
531     {
532         if (!empty($this->readonly)) {
533             trigger_error("readonly database", E_USER_WARNING);
534             return;
535         }
536         assert(is_string($from) && $from != '');
537         assert(is_string($to) && $to != '');
538         $result = false;
539         if (method_exists($this->_backend, 'rename_page')) {
540             $oldpage = $this->getPage($from);
541             $newpage = $this->getPage($to);
542             //update all WikiLinks in existing pages
543             //non-atomic! i.e. if rename fails the links are not undone
544             if ($updateWikiLinks) {
545                 $lookbehind = "/(?<=[\W:])\Q";
546                 $lookahead = "\E(?=[\W:])/";
547                 require_once 'lib/plugin/WikiAdminSearchReplace.php';
548                 $links = $oldpage->getBackLinks();
549                 while ($linked_page = $links->next()) {
550                     WikiPlugin_WikiAdminSearchReplace::replaceHelper
551                     ($this,
552                         $linked_page->getName(),
553                         $lookbehind . $from . $lookahead, $to,
554                         true, true);
555                 }
556                 // FIXME: Disabled to avoid recursive modification when renaming
557                 // a page like 'PageFoo to 'PageFooTwo'
558                 if (0) {
559                     $links = $newpage->getBackLinks();
560                     while ($linked_page = $links->next()) {
561                         WikiPlugin_WikiAdminSearchReplace::replaceHelper
562                         ($this,
563                             $linked_page->getName(),
564                             $lookbehind . $from . $lookahead, $to,
565                             true, true);
566                     }
567                 }
568             }
569             if ($oldpage->exists() and !$newpage->exists()) {
570                 if ($result = $this->_backend->rename_page($from, $to)) {
571                     // create a RecentChanges entry with explaining summary
572                     $page = $this->getPage($to);
573                     $current = $page->getCurrentRevision();
574                     $meta = $current->_data;
575                     $version = $current->getVersion();
576                     $meta['summary'] = sprintf(_("renamed from %s"), $from);
577                     unset($meta['mtime']); // force new date
578                     $page->save($current->getPackedContent(), $version + 1, $meta);
579                 }
580             } elseif (!$oldpage->getCurrentRevision(false) and !$newpage->exists()) {
581                 // if a version 0 exists try it also.
582                 $result = $this->_backend->rename_page($from, $to);
583             }
584         } else {
585             trigger_error(_("WikiDB::renamePage() not yet implemented for this backend"),
586                 E_USER_WARNING);
587         }
588         /* Generate notification emails? */
589         if ($result and ENABLE_MAILNOTIFY and !isa($GLOBALS['request'], 'MockRequest')) {
590             $notify = $this->get('notify');
591             if (!empty($notify) and is_array($notify)) {
592                 include_once 'lib/MailNotify.php';
593                 $MailNotify = new MailNotify($from);
594                 $MailNotify->onRenamePage($this, $from, $to);
595             }
596         }
597         return $result;
598     }
599
600     /** Get timestamp when database was last modified.
601      *
602      * @return string A string consisting of two integers,
603      * separated by a space.  The first is the time in
604      * unix timestamp format, the second is a modification
605      * count for the database.
606      *
607      * The idea is that you can cast the return value to an
608      * int to get a timestamp, or you can use the string value
609      * as a good hash for the entire database.
610      */
611     function getTimestamp()
612     {
613         $ts = $this->get('_timestamp');
614         return sprintf("%d %d", $ts[0], $ts[1]);
615     }
616
617     /**
618      * Update the database timestamp.
619      *
620      */
621     function touch()
622     {
623         $ts = $this->get('_timestamp');
624         $this->set('_timestamp', array(time(), $ts[1] + 1));
625     }
626
627     /**
628      * Roughly similar to the float in phpwiki_version(). Set by action=upgrade.
629      */
630     function get_db_version()
631     {
632         return (float)$this->get('_db_version');
633     }
634
635     function set_db_version($ver)
636     {
637         return $this->set('_db_version', (float)$ver);
638     }
639
640     /**
641      * Access WikiDB global meta-data.
642      *
643      * NOTE: this is currently implemented in a hackish and
644      * not very efficient manner.
645      *
646      * @access public
647      *
648      * @param string $key Which meta data to get.
649      * Some reserved meta-data keys are:
650      * <dl>
651      * <dt>'_timestamp' <dd> Data used by getTimestamp().
652      * </dl>
653      *
654      * @return scalar The requested value, or false if the requested data
655      * is not set.
656      */
657     function get($key)
658     {
659         if (!$key || $key[0] == '%')
660             return false;
661         /*
662          * Hack Alert: We can use any page (existing or not) to store
663          * this data (as long as we always use the same one.)
664          */
665         $gd = $this->getPage('global_data');
666         $data = $gd->get('__global');
667
668         if ($data && isset($data[$key]))
669             return $data[$key];
670         else
671             return false;
672     }
673
674     /**
675      * Set global meta-data.
676      *
677      * NOTE: this is currently implemented in a hackish and
678      * not very efficient manner.
679      *
680      * @see get
681      * @access public
682      *
683      * @param string $key    Meta-data key to set.
684      * @param string $newval New value.
685      */
686     function set($key, $newval)
687     {
688         if (!empty($this->readonly)) {
689             trigger_error("readonly database", E_USER_WARNING);
690             return;
691         }
692         if (!$key || $key[0] == '%')
693             return;
694
695         $gd = $this->getPage('global_data');
696         $data = $gd->get('__global');
697         if ($data === false)
698             $data = array();
699
700         if (empty($newval))
701             unset($data[$key]);
702         else
703             $data[$key] = $newval;
704
705         $gd->set('__global', $data);
706     }
707
708     /* TODO: these are really backend methods */
709
710     // SQL result: for simple select or create/update queries
711     // returns the database specific resource type
712     function genericSqlQuery($sql, $args = false)
713     {
714         echo "<pre>", printSimpleTrace(debug_backtrace()), "</pre>\n";
715         trigger_error("no SQL database", E_USER_ERROR);
716         return false;
717     }
718
719     // SQL iter: for simple select or create/update queries
720     // returns the generic iterator object (count,next)
721     function genericSqlIter($sql, $field_list = NULL)
722     {
723         echo "<pre>", printSimpleTrace(debug_backtrace()), "</pre>\n";
724         trigger_error("no SQL database", E_USER_ERROR);
725         return false;
726     }
727
728     // see backend upstream methods
729     // ADODB adds surrounding quotes, SQL not yet!
730     function quote($s)
731     {
732         return $s;
733     }
734
735     function isOpen()
736     {
737         global $request;
738         if (!$request->_dbi) return false;
739         else return false; /* so far only needed for sql so false it.
740                             later we have to check dba also */
741     }
742
743     function getParam($param)
744     {
745         global $DBParams;
746         if (isset($DBParams[$param])) return $DBParams[$param];
747         elseif ($param == 'prefix') return ''; else return false;
748     }
749
750     function getAuthParam($param)
751     {
752         global $DBAuthParams;
753         if (isset($DBAuthParams[$param])) return $DBAuthParams[$param];
754         elseif ($param == 'USER_AUTH_ORDER') return $GLOBALS['USER_AUTH_ORDER']; elseif ($param == 'USER_AUTH_POLICY') return $GLOBALS['USER_AUTH_POLICY']; else return false;
755     }
756 }
757
758 ;
759
760
761 /**
762  * A base class which representing a wiki-page within a
763  * WikiDB.
764  *
765  * A WikiDB_Page contains a number (at least one) of
766  * WikiDB_PageRevisions.
767  */
768 class WikiDB_Page
769 {
770     function WikiDB_Page(&$wikidb, $pagename)
771     {
772         $this->_wikidb = &$wikidb;
773         $this->_pagename = $pagename;
774         if ((int)DEBUG) {
775             if (!(is_string($pagename) and $pagename != '')) {
776                 if (function_exists("xdebug_get_function_stack")) {
777                     echo "xdebug_get_function_stack(): ";
778                     var_dump(xdebug_get_function_stack());
779                 } else {
780                     printSimpleTrace(debug_backtrace());
781                 }
782                 trigger_error("empty pagename", E_USER_WARNING);
783                 return false;
784             }
785         } else {
786             assert(is_string($pagename) and $pagename != '');
787         }
788     }
789
790     /**
791      * Get the name of the wiki page.
792      *
793      * @access public
794      *
795      * @return string The page name.
796      */
797     function getName()
798     {
799         return $this->_pagename;
800     }
801
802     // To reduce the memory footprint for larger sets of pagelists,
803     // we don't cache the content (only true or false) and
804     // we purge the pagedata (_cached_html) also
805     function exists()
806     {
807         if (isset($this->_wikidb->_cache->_id_cache[$this->_pagename])) return true;
808         $current = $this->getCurrentRevision(false);
809         if (!$current) return false;
810         return !$current->hasDefaultContents();
811     }
812
813     /**
814      * Delete an old revision of a WikiDB_Page.
815      *
816      * Deletes the specified revision of the page.
817      * It is a fatal error to attempt to delete the current revision.
818      *
819      * @access public
820      *
821      * @param integer $version Which revision to delete.  (You can also
822      *  use a WikiDB_PageRevision object here.)
823      */
824     function deleteRevision($version)
825     {
826         if ($this->_wikidb->readonly) {
827             trigger_error("readonly database", E_USER_WARNING);
828             return;
829         }
830         $backend = &$this->_wikidb->_backend;
831         $cache = &$this->_wikidb->_cache;
832         $pagename = &$this->_pagename;
833
834         $version = $this->_coerce_to_version($version);
835         if ($version == 0)
836             return;
837
838         $backend->lock(array('page', 'version'));
839         $latestversion = $cache->get_latest_version($pagename);
840         if ($latestversion && ($version == $latestversion)) {
841             $backend->unlock(array('page', 'version'));
842             trigger_error(sprintf("Attempt to delete most recent revision of '%s'",
843                 $pagename), E_USER_ERROR);
844             return;
845         }
846
847         $cache->delete_versiondata($pagename, $version);
848         $backend->unlock(array('page', 'version'));
849     }
850
851     /*
852      * Delete a revision, or possibly merge it with a previous
853      * revision.
854      *
855      * The idea is this:
856      * Suppose an author make a (major) edit to a page.  Shortly
857      * after that the same author makes a minor edit (e.g. to fix
858      * spelling mistakes he just made.)
859      *
860      * Now some time later, where cleaning out old saved revisions,
861      * and would like to delete his minor revision (since there's
862      * really no point in keeping minor revisions around for a long
863      * time.)
864      *
865      * Note that the text after the minor revision probably represents
866      * what the author intended to write better than the text after
867      * the preceding major edit.
868      *
869      * So what we really want to do is merge the minor edit with the
870      * preceding edit.
871      *
872      * We will only do this when:
873      * <ul>
874      * <li>The revision being deleted is a minor one, and
875      * <li>It has the same author as the immediately preceding revision.
876      * </ul>
877      */
878     function mergeRevision($version)
879     {
880         if ($this->_wikidb->readonly) {
881             trigger_error("readonly database", E_USER_WARNING);
882             return;
883         }
884         $backend = &$this->_wikidb->_backend;
885         $cache = &$this->_wikidb->_cache;
886         $pagename = &$this->_pagename;
887
888         $version = $this->_coerce_to_version($version);
889         if ($version == 0)
890             return;
891
892         $backend->lock(array('version'));
893         $latestversion = $cache->get_latest_version($pagename);
894         if ($latestversion && $version == $latestversion) {
895             $backend->unlock(array('version'));
896             trigger_error(sprintf("Attempt to merge most recent revision of '%s'",
897                 $pagename), E_USER_ERROR);
898             return;
899         }
900
901         $versiondata = $cache->get_versiondata($pagename, $version, true);
902         if (!$versiondata) {
903             // Not there? ... we're done!
904             $backend->unlock(array('version'));
905             return;
906         }
907
908         if ($versiondata['is_minor_edit']) {
909             $previous = $backend->get_previous_version($pagename, $version);
910             if ($previous) {
911                 $prevdata = $cache->get_versiondata($pagename, $previous);
912                 if ($prevdata['author_id'] == $versiondata['author_id']) {
913                     // This is a minor revision, previous version is
914                     // by the same author. We will merge the
915                     // revisions.
916                     $cache->update_versiondata($pagename, $previous,
917                         array('%content' => $versiondata['%content'],
918                             '_supplanted' => $versiondata['_supplanted']));
919                 }
920             }
921         }
922
923         $cache->delete_versiondata($pagename, $version);
924         $backend->unlock(array('version'));
925     }
926
927
928     /**
929      * Create a new revision of a {@link WikiDB_Page}.
930      *
931      * @access public
932      *
933      * @param int $version Version number for new revision.
934      * To ensure proper serialization of edits, $version must be
935      * exactly one higher than the current latest version.
936      * (You can defeat this check by setting $version to
937      * {@link WIKIDB_FORCE_CREATE} --- not usually recommended.)
938      *
939      * @param string $content Contents of new revision.
940      *
941      * @param hash $metadata Metadata for new revision.
942      * All values in the hash should be scalars (strings or integers).
943      *
944      * @param hash $links List of linkto=>pagename, relation=>pagename which this page links to.
945      *
946      * @return WikiDB_PageRevision Returns the new WikiDB_PageRevision object. If
947      * $version was incorrect, returns false
948      */
949     function createRevision($version, &$content, $metadata, $links)
950     {
951         if ($this->_wikidb->readonly) {
952             trigger_error("readonly database", E_USER_WARNING);
953             return;
954         }
955         $backend = &$this->_wikidb->_backend;
956         $cache = &$this->_wikidb->_cache;
957         $pagename = &$this->_pagename;
958         $cache->invalidate_cache($pagename);
959
960         $backend->lock(array('version', 'page', 'recent', 'link', 'nonempty'));
961
962         $latestversion = $backend->get_latest_version($pagename);
963         $newversion = ($latestversion ? $latestversion : 0) + 1;
964         assert($newversion >= 1);
965
966         if ($version != WIKIDB_FORCE_CREATE and $version != $newversion) {
967             $backend->unlock(array('version', 'page', 'recent', 'link', 'nonempty'));
968             return false;
969         }
970
971         $data = $metadata;
972
973         foreach ($data as $key => $val) {
974             if (empty($val) || $key[0] == '_' || $key[0] == '%')
975                 unset($data[$key]);
976         }
977
978         assert(!empty($data['author']));
979         if (empty($data['author_id']))
980             @$data['author_id'] = $data['author'];
981
982         if (empty($data['mtime']))
983             $data['mtime'] = time();
984
985         if ($latestversion and $version != WIKIDB_FORCE_CREATE) {
986             // Ensure mtimes are monotonic.
987             $pdata = $cache->get_versiondata($pagename, $latestversion);
988             if ($data['mtime'] < $pdata['mtime']) {
989                 trigger_error(sprintf(_("%s: Date of new revision is %s"),
990                         $pagename, "'non-monotonic'"),
991                     E_USER_NOTICE);
992                 $data['orig_mtime'] = $data['mtime'];
993                 $data['mtime'] = $pdata['mtime'];
994             }
995
996             // FIXME: use (possibly user specified) 'mtime' time or
997             // time()?
998             $cache->update_versiondata($pagename, $latestversion,
999                 array('_supplanted' => $data['mtime']));
1000         }
1001
1002         $data['%content'] = &$content;
1003
1004         $cache->set_versiondata($pagename, $newversion, $data);
1005
1006         //$cache->update_pagedata($pagename, array(':latestversion' => $newversion,
1007         //':deleted' => empty($content)));
1008
1009         $backend->set_links($pagename, $links);
1010
1011         $backend->unlock(array('version', 'page', 'recent', 'link', 'nonempty'));
1012
1013         return new WikiDB_PageRevision($this->_wikidb, $pagename, $newversion,
1014             $data);
1015     }
1016
1017     /** A higher-level interface to createRevision.
1018      *
1019      * This takes care of computing the links, and storing
1020      * a cached version of the transformed wiki-text.
1021      *
1022      * @param string $wikitext The page content.
1023      *
1024      * @param int $version Version number for new revision.
1025      * To ensure proper serialization of edits, $version must be
1026      * exactly one higher than the current latest version.
1027      * (You can defeat this check by setting $version to
1028      * {@link WIKIDB_FORCE_CREATE} --- not usually recommended.)
1029      *
1030      * @param hash $meta Meta-data for new revision.
1031      */
1032     function save($wikitext, $version, $meta, $formatted = null)
1033     {
1034         if ($this->_wikidb->readonly) {
1035             trigger_error("readonly database", E_USER_WARNING);
1036             return;
1037         }
1038         if (is_null($formatted))
1039             $formatted = new TransformedText($this, $wikitext, $meta);
1040         $type = $formatted->getType();
1041         $meta['pagetype'] = $type->getName();
1042         $links = $formatted->getWikiPageLinks(); // linkto => relation
1043         $attributes = array();
1044         foreach ($links as $link) {
1045             if ($link['linkto'] === "" and !empty($link['relation'])) {
1046                 $attributes[$link['relation']] = $this->getAttribute($link['relation']);
1047             }
1048         }
1049         $meta['attribute'] = $attributes;
1050
1051         $backend = &$this->_wikidb->_backend;
1052         $newrevision = $this->createRevision($version, $wikitext, $meta, $links);
1053         if ($newrevision and !WIKIDB_NOCACHE_MARKUP)
1054             $this->set('_cached_html', $formatted->pack());
1055
1056         // FIXME: probably should have some global state information
1057         // in the backend to control when to optimize.
1058         //
1059         // We're doing this here rather than in createRevision because
1060         // postgresql can't optimize while locked.
1061         if (((int)DEBUG & _DEBUG_SQL)
1062             or (DATABASE_OPTIMISE_FREQUENCY > 0 and
1063                 (time() % DATABASE_OPTIMISE_FREQUENCY == 0))
1064         ) {
1065             if ($backend->optimize()) {
1066                 if ((int)DEBUG)
1067                     trigger_error(_("Optimizing database"), E_USER_NOTICE);
1068             }
1069         }
1070
1071         /* Generate notification emails? */
1072         if (ENABLE_MAILNOTIFY and isa($newrevision, 'WikiDB_PageRevision')) {
1073             // Save didn't fail because of concurrent updates.
1074             $notify = $this->_wikidb->get('notify');
1075             if (!empty($notify)
1076                 and is_array($notify)
1077                     and !isa($GLOBALS['request'], 'MockRequest')
1078             ) {
1079                 include_once 'lib/MailNotify.php';
1080                 $MailNotify = new MailNotify($newrevision->getName());
1081                 $MailNotify->onChangePage($this->_wikidb, $wikitext, $version, $meta);
1082             }
1083             $newrevision->_transformedContent = $formatted;
1084         }
1085         // more pagechange callbacks: (in a hackish manner for now)
1086         if (ENABLE_RECENTCHANGESBOX
1087             and empty($meta['is_minor_edit'])
1088                 and !in_array($GLOBALS['request']->getArg('action'),
1089                     array('loadfile', 'upgrade'))
1090         ) {
1091             require_once 'lib/WikiPlugin.php';
1092             $w = new WikiPluginLoader;
1093             $p = $w->getPlugin("RecentChangesCached", false);
1094             $p->box_update(false, $GLOBALS['request'], $this->_pagename);
1095         }
1096         return $newrevision;
1097     }
1098
1099     /**
1100      * Get the most recent revision of a page.
1101      *
1102      * @access public
1103      *
1104      * @return WikiDB_PageRevision The current WikiDB_PageRevision object.
1105      */
1106     function getCurrentRevision($need_content = true)
1107     {
1108         $backend = &$this->_wikidb->_backend;
1109         $cache = &$this->_wikidb->_cache;
1110         $pagename = &$this->_pagename;
1111
1112         // Prevent deadlock in case of memory exhausted errors
1113         // Pure selection doesn't really need locking here.
1114         //   sf.net bug#927395
1115         // I know it would be better to lock, but with lots of pages this deadlock is more
1116         // severe than occasionally get not the latest revision.
1117         // In spirit to wikiwiki: read fast, edit slower.
1118         //$backend->lock();
1119         $version = $cache->get_latest_version($pagename);
1120         // getRevision gets the content also!
1121         $revision = $this->getRevision($version, $need_content);
1122         //$backend->unlock();
1123         assert($revision);
1124         return $revision;
1125     }
1126
1127     /**
1128      * Get a specific revision of a WikiDB_Page.
1129      *
1130      * @access public
1131      *
1132      * @param integer $version Which revision to get.
1133      *
1134      * @return WikiDB_PageRevision The requested WikiDB_PageRevision object, or
1135      * false if the requested revision does not exist in the {@link WikiDB}.
1136      * Note that version zero of any page always exists.
1137      */
1138     function getRevision($version, $need_content = true)
1139     {
1140         $cache = &$this->_wikidb->_cache;
1141         $pagename = &$this->_pagename;
1142
1143         if ((!$version) or ($version == 0) or ($version == -1)) { // 0 or false
1144             return new WikiDB_PageRevision($this->_wikidb, $pagename, 0);
1145         }
1146
1147         assert($version > 0);
1148         $vdata = $cache->get_versiondata($pagename, $version, $need_content);
1149         if (!$vdata) {
1150             return new WikiDB_PageRevision($this->_wikidb, $pagename, 0);
1151         }
1152         return new WikiDB_PageRevision($this->_wikidb, $pagename, $version,
1153             $vdata);
1154     }
1155
1156     /**
1157      * Get previous page revision.
1158      *
1159      * This method find the most recent revision before a specified
1160      * version.
1161      *
1162      * @access public
1163      *
1164      * @param integer $version Find most recent revision before this version.
1165      *  You can also use a WikiDB_PageRevision object to specify the $version.
1166      *
1167      * @return WikiDB_PageRevision The requested WikiDB_PageRevision object, or false if the
1168      * requested revision does not exist in the {@link WikiDB}.  Note that
1169      * unless $version is greater than zero, a revision (perhaps version zero,
1170      * the default revision) will always be found.
1171      */
1172     function getRevisionBefore($version = false, $need_content = true)
1173     {
1174         $backend = &$this->_wikidb->_backend;
1175         $pagename = &$this->_pagename;
1176         if ($version === false)
1177             $version = $this->_wikidb->_cache->get_latest_version($pagename);
1178         else
1179             $version = $this->_coerce_to_version($version);
1180
1181         if ($version == 0)
1182             return false;
1183         //$backend->lock();
1184         $previous = $backend->get_previous_version($pagename, $version);
1185         $revision = $this->getRevision($previous, $need_content);
1186         //$backend->unlock();
1187         assert($revision);
1188         return $revision;
1189     }
1190
1191     /**
1192      * Get all revisions of the WikiDB_Page.
1193      *
1194      * This does not include the version zero (default) revision in the
1195      * returned revision set.
1196      *
1197      * @return WikiDB_PageRevisionIterator A
1198      *   WikiDB_PageRevisionIterator containing all revisions of this
1199      *   WikiDB_Page in reverse order by version number.
1200      */
1201     function getAllRevisions()
1202     {
1203         $backend = &$this->_wikidb->_backend;
1204         $revs = $backend->get_all_revisions($this->_pagename);
1205         return new WikiDB_PageRevisionIterator($this->_wikidb, $revs);
1206     }
1207
1208     /**
1209      * Find pages which link to or are linked from a page.
1210      * relations: $backend->get_links is responsible to add the relation to the pagehash
1211      * as 'linkrelation' key as pagename. See WikiDB_PageIterator::next
1212      *   if (isset($next['linkrelation']))
1213      *
1214      * @access public
1215      *
1216      * @param boolean $reversed Which links to find: true for backlinks (default).
1217      *
1218      * @return WikiDB_PageIterator A WikiDB_PageIterator containing
1219      * all matching pages.
1220      */
1221     function getLinks($reversed = true, $include_empty = false, $sortby = '',
1222                       $limit = '', $exclude = '', $want_relations = false)
1223     {
1224         $backend = &$this->_wikidb->_backend;
1225         $result = $backend->get_links($this->_pagename, $reversed,
1226             $include_empty, $sortby, $limit, $exclude,
1227             $want_relations);
1228         return new WikiDB_PageIterator($this->_wikidb, $result,
1229             array('include_empty' => $include_empty,
1230                 'sortby' => $sortby,
1231                 'limit' => $limit,
1232                 'exclude' => $exclude,
1233                 'want_relations' => $want_relations));
1234     }
1235
1236     /**
1237      * All Links from other pages to this page.
1238      */
1239     function getBackLinks($include_empty = false, $sortby = '', $limit = '', $exclude = '',
1240                           $want_relations = false)
1241     {
1242         return $this->getLinks(true, $include_empty, $sortby, $limit, $exclude);
1243     }
1244
1245     /**
1246      * Forward Links: All Links from this page to other pages.
1247      */
1248     function getPageLinks($include_empty = false, $sortby = '', $limit = '', $exclude = '',
1249                           $want_relations = false)
1250     {
1251         return $this->getLinks(false, $include_empty, $sortby, $limit, $exclude);
1252     }
1253
1254     /**
1255      * Relations: All links from this page to other pages with relation <> 0.
1256      * is_a:=page or population:=number
1257      */
1258     function getRelations($sortby = '', $limit = '', $exclude = '')
1259     {
1260         $backend = &$this->_wikidb->_backend;
1261         $result = $backend->get_links($this->_pagename, false, true,
1262             $sortby, $limit, $exclude,
1263             true);
1264         // we do not care for the linked page versiondata, just the pagename and linkrelation
1265         return new WikiDB_PageIterator($this->_wikidb, $result,
1266             array('include_empty' => true,
1267                 'sortby' => $sortby,
1268                 'limit' => $limit,
1269                 'exclude' => $exclude,
1270                 'want_relations' => true));
1271     }
1272
1273     /**
1274      * possibly faster link existance check. not yet accelerated.
1275      */
1276     function existLink($link, $reversed = false)
1277     {
1278         $backend = &$this->_wikidb->_backend;
1279         if (method_exists($backend, 'exists_link'))
1280             return $backend->exists_link($this->_pagename, $link, $reversed);
1281         //$cache = &$this->_wikidb->_cache;
1282         // TODO: check cache if it is possible
1283         $iter = $this->getLinks($reversed, false);
1284         while ($page = $iter->next()) {
1285             if ($page->getName() == $link)
1286                 return $page;
1287         }
1288         $iter->free();
1289         return false;
1290     }
1291
1292     /* Semantic relations are links with the relation pointing to another page,
1293        the so-called "RDF Triple".
1294        [San Diego] is%20a::city
1295        => "At the page San Diego there is a relation link of 'is a' to the page 'city'."
1296      */
1297
1298     /* Semantic attributes for a page.
1299        [San Diego] population:=1,305,736
1300        Attributes are links with the relation pointing to another page.
1301     */
1302
1303     /**
1304      * Access WikiDB_Page non version-specific meta-data.
1305      *
1306      * @access public
1307      *
1308      * @param string $key Which meta data to get.
1309      * Some reserved meta-data keys are:
1310      * <dl>
1311      * <dt>'date'  <dd> Created as unixtime
1312      * <dt>'locked'<dd> Is page locked? 'yes' or 'no'
1313      * <dt>'hits'  <dd> Page hit counter.
1314      * <dt>'_cached_html' <dd> Transformed CachedMarkup object, serialized + optionally gzipped.
1315      *                         In SQL stored now in an extra column.
1316      * Optional data:
1317      * <dt>'pref'  <dd> Users preferences, stored only in homepages.
1318      * <dt>'owner' <dd> Default: first author_id. We might add a group with a dot here:
1319      *                  E.g. "owner.users"
1320      * <dt>'perm'  <dd> Permission flag to authorize read/write/execution of
1321      *                  page-headers and content.
1322     + <dt>'moderation'<dd> ModeratedPage data. Handled by plugin/ModeratedPage
1323      * <dt>'rating' <dd> Page rating. Handled by plugin/RateIt
1324      * </dl>
1325      *
1326      * @return scalar The requested value, or false if the requested data
1327      * is not set.
1328      */
1329     function get($key)
1330     {
1331         $cache = &$this->_wikidb->_cache;
1332         $backend = &$this->_wikidb->_backend;
1333         if (!$key || $key[0] == '%')
1334             return false;
1335         // several new SQL backends optimize this.
1336         if (!WIKIDB_NOCACHE_MARKUP
1337             and $key == '_cached_html'
1338                 and method_exists($backend, 'get_cached_html')
1339         ) {
1340             return $backend->get_cached_html($this->_pagename);
1341         }
1342         $data = $cache->get_pagedata($this->_pagename);
1343         return isset($data[$key]) ? $data[$key] : false;
1344     }
1345
1346     /**
1347      * Get all the page meta-data as a hash.
1348      *
1349      * @return hash The page meta-data.
1350      */
1351     function getMetaData()
1352     {
1353         $cache = &$this->_wikidb->_cache;
1354         $data = $cache->get_pagedata($this->_pagename);
1355         $meta = array();
1356         foreach ($data as $key => $val) {
1357             if ( /*!empty($val) &&*/
1358                 $key[0] != '%'
1359             )
1360                 $meta[$key] = $val;
1361         }
1362         return $meta;
1363     }
1364
1365     /**
1366      * Set page meta-data.
1367      *
1368      * @see get
1369      * @access public
1370      *
1371      * @param string $key    Meta-data key to set.
1372      * @param string $newval New value.
1373      */
1374     function set($key, $newval)
1375     {
1376         $cache = &$this->_wikidb->_cache;
1377         $backend = &$this->_wikidb->_backend;
1378         $pagename = &$this->_pagename;
1379
1380         assert($key && $key[0] != '%');
1381
1382         // several new SQL backends optimize this.
1383         if (!WIKIDB_NOCACHE_MARKUP
1384             and $key == '_cached_html'
1385                 and method_exists($backend, 'set_cached_html')
1386         ) {
1387             if ($this->_wikidb->readonly) {
1388                 trigger_error("readonly database", E_USER_WARNING);
1389                 return;
1390             }
1391             return $backend->set_cached_html($pagename, $newval);
1392         }
1393
1394         $data = $cache->get_pagedata($pagename);
1395
1396         if (!empty($newval)) {
1397             if (!empty($data[$key]) && $data[$key] == $newval)
1398                 return; // values identical, skip update.
1399         } else {
1400             if (empty($data[$key]))
1401                 return; // values identical, skip update.
1402         }
1403
1404         if (isset($this->_wikidb->readonly) and ($this->_wikidb->readonly)) {
1405             trigger_error("readonly database", E_USER_WARNING);
1406             return;
1407         }
1408         $cache->update_pagedata($pagename, array($key => $newval));
1409     }
1410
1411     /**
1412      * Increase page hit count.
1413      *
1414      * FIXME: IS this needed?  Probably not.
1415      *
1416      * This is a convenience function.
1417      * <pre> $page->increaseHitCount(); </pre>
1418      * is functionally identical to
1419      * <pre> $page->set('hits',$page->get('hits')+1); </pre>
1420      * but less expensive (ignores the pagadata string)
1421      *
1422      * Note that this method may be implemented in more efficient ways
1423      * in certain backends.
1424      *
1425      * @access public
1426      */
1427     function increaseHitCount()
1428     {
1429         if ($this->_wikidb->readonly) {
1430             trigger_error("readonly database", E_USER_NOTICE);
1431             return;
1432         }
1433         if (method_exists($this->_wikidb->_backend, 'increaseHitCount'))
1434             $this->_wikidb->_backend->increaseHitCount($this->_pagename);
1435         else {
1436             @$newhits = $this->get('hits') + 1;
1437             $this->set('hits', $newhits);
1438         }
1439     }
1440
1441     /**
1442      * Return a string representation of the WikiDB_Page
1443      *
1444      * This is really only for debugging.
1445      *
1446      * @access public
1447      *
1448      * @return string Printable representation of the WikiDB_Page.
1449      */
1450     function asString()
1451     {
1452         ob_start();
1453         printf("[%s:%s\n", get_class($this), $this->getName());
1454         print_r($this->getMetaData());
1455         echo "]\n";
1456         $strval = ob_get_contents();
1457         ob_end_clean();
1458         return $strval;
1459     }
1460
1461
1462     /**
1463      * @access private
1464      * @param integer_or_object $version_or_pagerevision
1465      * Takes either the version number (and int) or a WikiDB_PageRevision
1466      * object.
1467      * @return integer The version number.
1468      */
1469     function _coerce_to_version($version_or_pagerevision)
1470     {
1471         if (method_exists($version_or_pagerevision, "getContent"))
1472             $version = $version_or_pagerevision->getVersion();
1473         else
1474             $version = (int)$version_or_pagerevision;
1475
1476         assert($version >= 0);
1477         return $version;
1478     }
1479
1480     function isUserPage($include_empty = true)
1481     {
1482         if (!$include_empty and !$this->exists()) return false;
1483         return $this->get('pref') ? true : false;
1484     }
1485
1486     // May be empty. Either the stored owner (/Chown), or the first authorized author
1487     function getOwner()
1488     {
1489         if ($owner = $this->get('owner'))
1490             return $owner;
1491         // check all revisions forwards for the first author_id
1492         $backend = &$this->_wikidb->_backend;
1493         $pagename = &$this->_pagename;
1494         $latestversion = $backend->get_latest_version($pagename);
1495         for ($v = 1; $v <= $latestversion; $v++) {
1496             $rev = $this->getRevision($v, false);
1497             if ($rev and $owner = $rev->get('author_id')) {
1498                 return $owner;
1499             }
1500         }
1501         return '';
1502     }
1503
1504     // The authenticated author of the first revision or empty if not authenticated then.
1505     function getCreator()
1506     {
1507         if ($current = $this->getRevision(1, false)) return $current->get('author_id');
1508         else return '';
1509     }
1510
1511     // The authenticated author of the current revision.
1512     function getAuthor()
1513     {
1514         if ($current = $this->getCurrentRevision(false)) return $current->get('author_id');
1515         else return '';
1516     }
1517
1518     /* Semantic Web value, not stored in the links.
1519      * todo: unify with some unit knowledge
1520      */
1521     function setAttribute($relation, $value)
1522     {
1523         $attr = $this->get('attributes');
1524         if (empty($attr))
1525             $attr = array($relation => $value);
1526         else
1527             $attr[$relation] = $value;
1528         $this->set('attributes', $attr);
1529     }
1530
1531     function getAttribute($relation)
1532     {
1533         $meta = $this->get('attributes');
1534         if (empty($meta))
1535             return '';
1536         else
1537             return $meta[$relation];
1538     }
1539
1540 }
1541
1542 ;
1543
1544 /**
1545  * This class represents a specific revision of a WikiDB_Page within
1546  * a WikiDB.
1547  *
1548  * A WikiDB_PageRevision has read-only semantics. You may only create
1549  * new revisions (and delete old ones) --- you cannot modify existing
1550  * revisions.
1551  */
1552 class WikiDB_PageRevision
1553 {
1554     //var $_transformedContent = false; // set by WikiDB_Page::save()
1555
1556     function WikiDB_PageRevision(&$wikidb, $pagename, $version,
1557                                  $versiondata = false)
1558     {
1559         $this->_wikidb = &$wikidb;
1560         $this->_pagename = $pagename;
1561         $this->_version = $version;
1562         $this->_data = $versiondata ? $versiondata : array();
1563         $this->_transformedContent = false; // set by WikiDB_Page::save()
1564     }
1565
1566     /**
1567      * Get the WikiDB_Page which this revision belongs to.
1568      *
1569      * @access public
1570      *
1571      * @return WikiDB_Page The WikiDB_Page which this revision belongs to.
1572      */
1573     function getPage()
1574     {
1575         return new WikiDB_Page($this->_wikidb, $this->_pagename);
1576     }
1577
1578     /**
1579      * Get the version number of this revision.
1580      *
1581      * @access public
1582      *
1583      * @return integer The version number of this revision.
1584      */
1585     function getVersion()
1586     {
1587         return $this->_version;
1588     }
1589
1590     /**
1591      * Determine whether this revision has defaulted content.
1592      *
1593      * The default revision (version 0) of each page, as well as any
1594      * pages which are created with empty content have their content
1595      * defaulted to something like:
1596      * <pre>
1597      *   Describe [ThisPage] here.
1598      * </pre>
1599      *
1600      * @access public
1601      *
1602      * @return boolean Returns true if the page has default content.
1603      */
1604     function hasDefaultContents()
1605     {
1606         $data = &$this->_data;
1607         if (!isset($data['%content'])) return true;
1608         if ($data['%content'] === true) return false;
1609         return $data['%content'] === false or $data['%content'] === "";
1610     }
1611
1612     /**
1613      * Get the content as an array of lines.
1614      *
1615      * @access public
1616      *
1617      * @return array An array of lines.
1618      * The lines should contain no trailing white space.
1619      */
1620     function getContent()
1621     {
1622         return explode("\n", $this->getPackedContent());
1623     }
1624
1625     /**
1626      * Get the pagename of the revision.
1627      *
1628      * @access public
1629      *
1630      * @return string pagename.
1631      */
1632     function getPageName()
1633     {
1634         return $this->_pagename;
1635     }
1636
1637     function getName()
1638     {
1639         return $this->_pagename;
1640     }
1641
1642     /**
1643      * Determine whether revision is the latest.
1644      *
1645      * @access public
1646      *
1647      * @return boolean True iff the revision is the latest (most recent) one.
1648      */
1649     function isCurrent()
1650     {
1651         if (!isset($this->_iscurrent)) {
1652             $page = $this->getPage();
1653             $current = $page->getCurrentRevision(false);
1654             $this->_iscurrent = $this->getVersion() == $current->getVersion();
1655         }
1656         return $this->_iscurrent;
1657     }
1658
1659     /**
1660      * Get the transformed content of a page.
1661      *
1662      * @param string $pagetype Override the page-type of the revision.
1663      *
1664      * @return object An XmlContent-like object containing the page transformed
1665      * contents.
1666      */
1667     function getTransformedContent($pagetype_override = false)
1668     {
1669         $backend = &$this->_wikidb->_backend;
1670
1671         if ($pagetype_override) {
1672             // Figure out the normal page-type for this page.
1673             $type = PageType::GetPageType($this->get('pagetype'));
1674             if ($type->getName() == $pagetype_override)
1675                 $pagetype_override = false; // Not really an override...
1676         }
1677
1678         if ($pagetype_override) {
1679             // Overriden page type, don't cache (or check cache).
1680             return new TransformedText($this->getPage(),
1681                 $this->getPackedContent(),
1682                 $this->getMetaData(),
1683                 $pagetype_override);
1684         }
1685
1686         $possibly_cache_results = true;
1687
1688         if (!USECACHE or WIKIDB_NOCACHE_MARKUP) {
1689             if (WIKIDB_NOCACHE_MARKUP == 'purge') {
1690                 // flush cache for this page.
1691                 $page = $this->getPage();
1692                 $page->set('_cached_html', ''); // ignored with !USECACHE
1693             }
1694             $possibly_cache_results = false;
1695         } elseif (USECACHE and !$this->_transformedContent) {
1696             //$backend->lock();
1697             if ($this->isCurrent()) {
1698                 $page = $this->getPage();
1699                 $this->_transformedContent = TransformedText::unpack($page->get('_cached_html'));
1700             } else {
1701                 $possibly_cache_results = false;
1702             }
1703             //$backend->unlock();
1704         }
1705
1706         if (!$this->_transformedContent) {
1707             $this->_transformedContent
1708                 = new TransformedText($this->getPage(),
1709                 $this->getPackedContent(),
1710                 $this->getMetaData());
1711
1712             if ($possibly_cache_results and !WIKIDB_NOCACHE_MARKUP) {
1713                 // If we're still the current version, cache the transfomed page.
1714                 //$backend->lock();
1715                 if ($this->isCurrent()) {
1716                     $page->set('_cached_html', $this->_transformedContent->pack());
1717                 }
1718                 //$backend->unlock();
1719             }
1720         }
1721
1722         return $this->_transformedContent;
1723     }
1724
1725     /**
1726      * Get the content as a string.
1727      *
1728      * @access public
1729      *
1730      * @return string The page content.
1731      * Lines are separated by new-lines.
1732      */
1733     function getPackedContent()
1734     {
1735         $data = &$this->_data;
1736
1737         if (empty($data['%content'])
1738             || (!$this->_wikidb->isWikiPage($this->_pagename)
1739                 && $this->isCurrent())
1740         ) {
1741             include_once 'lib/InlineParser.php';
1742
1743             // A feature similar to taglines at http://www.wlug.org.nz/
1744             // Lib from http://www.aasted.org/quote/
1745             if (defined('FORTUNE_DIR')
1746                 and is_dir(FORTUNE_DIR)
1747                     and in_array($GLOBALS['request']->getArg('action'),
1748                         array('create', 'edit'))
1749             ) {
1750                 include_once 'lib/fortune.php';
1751                 $fortune = new Fortune();
1752                 $quote = $fortune->quoteFromDir(FORTUNE_DIR);
1753                 if ($quote != -1)
1754                     $quote = "<verbatim>\n"
1755                         . str_replace("\n<br>", "\n", $quote)
1756                         . "</verbatim>\n\n";
1757                 else
1758                     $quote = "";
1759                 return $quote
1760                     . sprintf(_("Describe %s here."),
1761                         "[" . WikiEscape($this->_pagename) . "]");
1762             }
1763             // Replace empty content with default value.
1764             return sprintf(_("Describe %s here."),
1765                 "[" . WikiEscape($this->_pagename) . "]");
1766         }
1767
1768         // There is (non-default) content.
1769         assert($this->_version > 0);
1770
1771         if (!is_string($data['%content'])) {
1772             // Content was not provided to us at init time.
1773             // (This is allowed because for some backends, fetching
1774             // the content may be expensive, and often is not wanted
1775             // by the user.)
1776             //
1777             // In any case, now we need to get it.
1778             $data['%content'] = $this->_get_content();
1779             assert(is_string($data['%content']));
1780         }
1781
1782         return $data['%content'];
1783     }
1784
1785     function _get_content()
1786     {
1787         $cache = &$this->_wikidb->_cache;
1788         $pagename = $this->_pagename;
1789         $version = $this->_version;
1790
1791         assert($version > 0);
1792
1793         $newdata = $cache->get_versiondata($pagename, $version, true);
1794         if ($newdata) {
1795             assert(is_string($newdata['%content']));
1796             return $newdata['%content'];
1797         } else {
1798             // else revision has been deleted... What to do?
1799             return __sprintf("Oops! Revision %s of %s seems to have been deleted!",
1800                 $version, $pagename);
1801         }
1802     }
1803
1804     /**
1805      * Get meta-data for this revision.
1806      *
1807      *
1808      * @access public
1809      *
1810      * @param string $key Which meta-data to access.
1811      *
1812      * Some reserved revision meta-data keys are:
1813      * <dl>
1814      * <dt> 'mtime' <dd> Time this revision was created (seconds since midnight Jan 1, 1970.)
1815      *        The 'mtime' meta-value is normally set automatically by the database
1816      *        backend, but it may be specified explicitly when creating a new revision.
1817      * <dt> orig_mtime
1818      *  <dd> To ensure consistency of RecentChanges, the mtimes of the versions
1819      *       of a page must be monotonically increasing.  If an attempt is
1820      *       made to create a new revision with an mtime less than that of
1821      *       the preceeding revision, the new revisions timestamp is force
1822      *       to be equal to that of the preceeding revision.  In that case,
1823      *       the originally requested mtime is preserved in 'orig_mtime'.
1824      * <dt> '_supplanted' <dd> Time this revision ceased to be the most recent.
1825      *        This meta-value is <em>always</em> automatically maintained by the database
1826      *        backend.  (It is set from the 'mtime' meta-value of the superceding
1827      *        revision.)  '_supplanted' has a value of 'false' for the current revision.
1828      *
1829      * FIXME: this could be refactored:
1830      * <dt> author
1831      *  <dd> Author of the page (as he should be reported in, e.g. RecentChanges.)
1832      * <dt> author_id
1833      *  <dd> Authenticated author of a page.  This is used to identify
1834      *       the distinctness of authors when cleaning old revisions from
1835      *       the database.
1836      * <dt> 'is_minor_edit' <dd> Set if change was marked as a minor revision by the author.
1837      * <dt> 'summary' <dd> Short change summary entered by page author.
1838      * </dl>
1839      *
1840      * Meta-data keys must be valid C identifers (they have to start with a letter
1841      * or underscore, and can contain only alphanumerics and underscores.)
1842      *
1843      * @return string The requested value, or false if the requested value
1844      * is not defined.
1845      */
1846     function get($key)
1847     {
1848         if (!$key || $key[0] == '%')
1849             return false;
1850         $data = &$this->_data;
1851         return isset($data[$key]) ? $data[$key] : false;
1852     }
1853
1854     /**
1855      * Get all the revision page meta-data as a hash.
1856      *
1857      * @return hash The revision meta-data.
1858      */
1859     function getMetaData()
1860     {
1861         $meta = array();
1862         foreach ($this->_data as $key => $val) {
1863             if (!empty($val) && $key[0] != '%')
1864                 $meta[$key] = $val;
1865         }
1866         return $meta;
1867     }
1868
1869
1870     /**
1871      * Return a string representation of the revision.
1872      *
1873      * This is really only for debugging.
1874      *
1875      * @access public
1876      *
1877      * @return string Printable representation of the WikiDB_Page.
1878      */
1879     function asString()
1880     {
1881         ob_start();
1882         printf("[%s:%d\n", get_class($this), $this->get('version'));
1883         print_r($this->_data);
1884         echo $this->getPackedContent() . "\n]\n";
1885         $strval = ob_get_contents();
1886         ob_end_clean();
1887         return $strval;
1888     }
1889 }
1890
1891 ;
1892
1893
1894 /**
1895  * Class representing a sequence of WikiDB_Pages.
1896  * TODO: Enhance to php5 iterators
1897  * TODO:
1898  *   apply filters for options like 'sortby', 'limit', 'exclude'
1899  *   for simple queries like titleSearch, where the backend is not ready yet.
1900  */
1901 class WikiDB_PageIterator
1902 {
1903     function WikiDB_PageIterator(&$wikidb, &$iter, $options = false)
1904     {
1905         $this->_iter = $iter; // a WikiDB_backend_iterator
1906         $this->_wikidb = &$wikidb;
1907         $this->_options = $options;
1908     }
1909
1910     function count()
1911     {
1912         return $this->_iter->count();
1913     }
1914
1915     function limit()
1916     {
1917         return empty($this->_options['limit']) ? 0 : $this->_options['limit'];
1918     }
1919
1920     /**
1921      * Get next WikiDB_Page in sequence.
1922      *
1923      * @access public
1924      *
1925      * @return WikiDB_Page The next WikiDB_Page in the sequence.
1926      */
1927     function next()
1928     {
1929         if (!($next = $this->_iter->next())) {
1930             return false;
1931         }
1932
1933         $pagename = &$next['pagename'];
1934         if (!is_string($pagename)) { // Bug #1327912 fixed by Joachim Lous
1935             trigger_error("WikiDB_PageIterator->next pagename", E_USER_WARNING);
1936         }
1937
1938         if (!$pagename) {
1939             if (isset($next['linkrelation'])
1940                 or isset($next['pagedata']['linkrelation'])
1941             ) {
1942                 return false;
1943             }
1944         }
1945
1946         // There's always hits, but we cache only if more
1947         // (well not with file, cvs and dba)
1948         if (isset($next['pagedata']) and count($next['pagedata']) > 1) {
1949             $this->_wikidb->_cache->cache_data($next);
1950             // cache existing page id's since we iterate over all links in GleanDescription
1951             // and need them later for LinkExistingWord
1952         } elseif ($this->_options and array_key_exists('include_empty', $this->_options)
1953             and !$this->_options['include_empty'] and isset($next['id'])
1954         ) {
1955             $this->_wikidb->_cache->_id_cache[$next['pagename']] = $next['id'];
1956         }
1957         $page = new WikiDB_Page($this->_wikidb, $pagename);
1958         if (isset($next['linkrelation']))
1959             $page->set('linkrelation', $next['linkrelation']);
1960         if (isset($next['score']))
1961             $page->score = $next['score'];
1962         return $page;
1963     }
1964
1965     /**
1966      * Release resources held by this iterator.
1967      *
1968      * The iterator may not be used after free() is called.
1969      *
1970      * There is no need to call free(), if next() has returned false.
1971      * (I.e. if you iterate through all the pages in the sequence,
1972      * you do not need to call free() --- you only need to call it
1973      * if you stop before the end of the iterator is reached.)
1974      *
1975      * @access public
1976      */
1977     function free()
1978     {
1979         $this->_iter->free();
1980     }
1981
1982     function reset()
1983     {
1984         $this->_iter->reset();
1985     }
1986
1987     function asArray()
1988     {
1989         $result = array();
1990         while ($page = $this->next())
1991             $result[] = $page;
1992         $this->reset();
1993         return $result;
1994     }
1995
1996     /**
1997      * Apply filters for options like 'sortby', 'limit', 'exclude'
1998      * for simple queries like titleSearch, where the backend is not ready yet.
1999      * Since iteration is usually destructive for SQL results,
2000      * we have to generate a copy.
2001      */
2002     function applyFilters($options = false)
2003     {
2004         if (!$options) $options = $this->_options;
2005         if (isset($options['sortby'])) {
2006             $array = array();
2007             /* this is destructive */
2008             while ($page = $this->next())
2009                 $result[] = $page->getName();
2010             $this->_doSort($array, $options['sortby']);
2011         }
2012         /* the rest is not destructive.
2013          * reconstruct a new iterator
2014          */
2015         $pagenames = array();
2016         $i = 0;
2017         if (isset($options['limit']))
2018             $limit = $options['limit'];
2019         else
2020             $limit = 0;
2021         if (isset($options['exclude']))
2022             $exclude = $options['exclude'];
2023         if (is_string($exclude) and !is_array($exclude))
2024             $exclude = PageList::explodePageList($exclude, false, false, $limit);
2025         foreach ($array as $pagename) {
2026             if ($limit and $i++ > $limit)
2027                 return new WikiDB_Array_PageIterator($pagenames);
2028             if (!empty($exclude) and !in_array($pagename, $exclude))
2029                 $pagenames[] = $pagename;
2030             elseif (empty($exclude))
2031                 $pagenames[] = $pagename;
2032         }
2033         return new WikiDB_Array_PageIterator($pagenames);
2034     }
2035
2036     /* pagename only */
2037     function _doSort(&$array, $sortby)
2038     {
2039         $sortby = PageList::sortby($sortby, 'init');
2040         if ($sortby == '+pagename')
2041             sort($array, SORT_STRING);
2042         elseif ($sortby == '-pagename')
2043             rsort($array, SORT_STRING);
2044         reset($array);
2045     }
2046
2047 }
2048
2049 ;
2050
2051 /**
2052  * A class which represents a sequence of WikiDB_PageRevisions.
2053  * TODO: Enhance to php5 iterators
2054  */
2055 class WikiDB_PageRevisionIterator
2056 {
2057     function WikiDB_PageRevisionIterator(&$wikidb, &$revisions, $options = false)
2058     {
2059         $this->_revisions = $revisions;
2060         $this->_wikidb = &$wikidb;
2061         $this->_options = $options;
2062     }
2063
2064     function count()
2065     {
2066         return $this->_revisions->count();
2067     }
2068
2069     /**
2070      * Get next WikiDB_PageRevision in sequence.
2071      *
2072      * @access public
2073      *
2074      * @return WikiDB_PageRevision
2075      * The next WikiDB_PageRevision in the sequence.
2076      */
2077     function next()
2078     {
2079         if (!($next = $this->_revisions->next()))
2080             return false;
2081
2082         //$this->_wikidb->_cache->cache_data($next);
2083
2084         $pagename = $next['pagename'];
2085         $version = $next['version'];
2086         $versiondata = $next['versiondata'];
2087         if ((int)DEBUG) {
2088             if (!(is_string($pagename) and $pagename != '')) {
2089                 trigger_error("empty pagename", E_USER_WARNING);
2090                 return false;
2091             }
2092         } else assert(is_string($pagename) and $pagename != '');
2093         if ((int)DEBUG) {
2094             if (!is_array($versiondata)) {
2095                 trigger_error("empty versiondata", E_USER_WARNING);
2096                 return false;
2097             }
2098         } else assert(is_array($versiondata));
2099         if ((int)DEBUG) {
2100             if (!($version > 0)) {
2101                 trigger_error("invalid version", E_USER_WARNING);
2102                 return false;
2103             }
2104         } else assert($version > 0);
2105
2106         return new WikiDB_PageRevision($this->_wikidb, $pagename, $version,
2107             $versiondata);
2108     }
2109
2110     /**
2111      * Release resources held by this iterator.
2112      *
2113      * The iterator may not be used after free() is called.
2114      *
2115      * There is no need to call free(), if next() has returned false.
2116      * (I.e. if you iterate through all the revisions in the sequence,
2117      * you do not need to call free() --- you only need to call it
2118      * if you stop before the end of the iterator is reached.)
2119      *
2120      * @access public
2121      */
2122     function free()
2123     {
2124         $this->_revisions->free();
2125     }
2126
2127     function asArray()
2128     {
2129         $result = array();
2130         while ($rev = $this->next())
2131             $result[] = $rev;
2132         $this->free();
2133         return $result;
2134     }
2135 }
2136
2137 ;
2138
2139 /** pseudo iterator
2140  */
2141 class WikiDB_Array_PageIterator
2142 {
2143     function WikiDB_Array_PageIterator($pagenames)
2144     {
2145         global $request;
2146         $this->_dbi = $request->getDbh();
2147         $this->_pages = $pagenames;
2148         reset($this->_pages);
2149     }
2150
2151     function next()
2152     {
2153         $c = current($this->_pages);
2154         next($this->_pages);
2155         return $c !== false ? $this->_dbi->getPage($c) : false;
2156     }
2157
2158     function count()
2159     {
2160         return count($this->_pages);
2161     }
2162
2163     function reset()
2164     {
2165         reset($this->_pages);
2166     }
2167
2168     function free()
2169     {
2170     }
2171
2172     function asArray()
2173     {
2174         reset($this->_pages);
2175         return $this->_pages;
2176     }
2177 }
2178
2179 class WikiDB_Array_generic_iter
2180 {
2181     function WikiDB_Array_generic_iter($result)
2182     {
2183         // $result may be either an array or a query result
2184         if (is_array($result)) {
2185             $this->_array = $result;
2186         } elseif (is_object($result)) {
2187             $this->_array = $result->asArray();
2188         } else {
2189             $this->_array = array();
2190         }
2191         if (!empty($this->_array))
2192             reset($this->_array);
2193     }
2194
2195     function next()
2196     {
2197         $c = current($this->_array);
2198         next($this->_array);
2199         return $c !== false ? $c : false;
2200     }
2201
2202     function count()
2203     {
2204         return count($this->_array);
2205     }
2206
2207     function reset()
2208     {
2209         reset($this->_array);
2210     }
2211
2212     function free()
2213     {
2214     }
2215
2216     function asArray()
2217     {
2218         if (!empty($this->_array))
2219             reset($this->_array);
2220         return $this->_array;
2221     }
2222 }
2223
2224 /**
2225  * Data cache used by WikiDB.
2226  *
2227  * FIXME: Maybe rename this to caching_backend (or some such).
2228  *
2229  * @access private
2230  */
2231 class WikiDB_cache
2232 {
2233     // FIXME: beautify versiondata cache.  Cache only limited data?
2234
2235     function WikiDB_cache(&$backend)
2236     {
2237         $this->_backend = &$backend;
2238
2239         $this->_pagedata_cache = array();
2240         $this->_versiondata_cache = array();
2241         array_push($this->_versiondata_cache, array());
2242         $this->_glv_cache = array();
2243         $this->_id_cache = array(); // formerly ->_dbi->_iwpcache (nonempty pages => id)
2244
2245         if (isset($GLOBALS['request']->_dbi))
2246             $this->readonly = $GLOBALS['request']->_dbi->readonly;
2247     }
2248
2249     function close()
2250     {
2251         $this->_pagedata_cache = array();
2252         $this->_versiondata_cache = array();
2253         $this->_glv_cache = array();
2254         $this->_id_cache = array();
2255     }
2256
2257     function get_pagedata($pagename)
2258     {
2259         assert(is_string($pagename) && $pagename != '');
2260         if (USECACHE) {
2261             $cache = &$this->_pagedata_cache;
2262             if (!isset($cache[$pagename]) || !is_array($cache[$pagename])) {
2263                 $cache[$pagename] = $this->_backend->get_pagedata($pagename);
2264                 if (empty($cache[$pagename]))
2265                     $cache[$pagename] = array();
2266             }
2267             return $cache[$pagename];
2268         } else {
2269             return $this->_backend->get_pagedata($pagename);
2270         }
2271     }
2272
2273     function update_pagedata($pagename, $newdata)
2274     {
2275         assert(is_string($pagename) && $pagename != '');
2276         if (!empty($this->readonly)) {
2277             trigger_error("readonly database", E_USER_WARNING);
2278             return;
2279         }
2280
2281         $this->_backend->update_pagedata($pagename, $newdata);
2282
2283         if (USECACHE) {
2284             if (!empty($this->_pagedata_cache[$pagename])
2285                 and is_array($this->_pagedata_cache[$pagename])
2286             ) {
2287                 $cachedata = &$this->_pagedata_cache[$pagename];
2288                 foreach ($newdata as $key => $val)
2289                     $cachedata[$key] = $val;
2290             } else
2291                 $this->_pagedata_cache[$pagename] = $newdata;
2292         }
2293     }
2294
2295     function invalidate_cache($pagename)
2296     {
2297         unset ($this->_pagedata_cache[$pagename]);
2298         unset ($this->_versiondata_cache[$pagename]);
2299         unset ($this->_glv_cache[$pagename]);
2300         unset ($this->_id_cache[$pagename]);
2301         //unset ($this->_backend->_page_data);
2302     }
2303
2304     function delete_page($pagename)
2305     {
2306         if (!empty($this->readonly)) {
2307             trigger_error("readonly database", E_USER_WARNING);
2308             return;
2309         }
2310         $result = $this->_backend->delete_page($pagename);
2311         $this->invalidate_cache($pagename);
2312         return $result;
2313     }
2314
2315     function purge_page($pagename)
2316     {
2317         if (!empty($this->readonly)) {
2318             trigger_error("readonly database", E_USER_WARNING);
2319             return;
2320         }
2321         $result = $this->_backend->purge_page($pagename);
2322         $this->invalidate_cache($pagename);
2323         return $result;
2324     }
2325
2326     // FIXME: ugly and wrong. may overwrite full cache with partial cache
2327     function cache_data($data)
2328     {
2329         ;
2330         //if (isset($data['pagedata']))
2331         //    $this->_pagedata_cache[$data['pagename']] = $data['pagedata'];
2332     }
2333
2334     function get_versiondata($pagename, $version, $need_content = false)
2335     {
2336         //  FIXME: Seriously ugly hackage
2337         $readdata = false;
2338         if (USECACHE) { //temporary - for debugging
2339             assert(is_string($pagename) && $pagename != '');
2340             // There is a bug here somewhere which results in an assertion failure at line 105
2341             // of ArchiveCleaner.php  It goes away if we use the next line.
2342             //$need_content = true;
2343             $nc = $need_content ? '1' : '0';
2344             $cache = &$this->_versiondata_cache;
2345             if (!isset($cache[$pagename][$version][$nc])
2346                 || !(is_array($cache[$pagename]))
2347                 || !(is_array($cache[$pagename][$version]))
2348             ) {
2349                 $cache[$pagename][$version][$nc] =
2350                     $this->_backend->get_versiondata($pagename, $version, $need_content);
2351                 $readdata = true;
2352                 // If we have retrieved all data, we may as well set the cache for
2353                 // $need_content = false
2354                 if ($need_content) {
2355                     $cache[$pagename][$version]['0'] =& $cache[$pagename][$version]['1'];
2356                 }
2357             }
2358             $vdata = $cache[$pagename][$version][$nc];
2359         } else {
2360             $vdata = $this->_backend->get_versiondata($pagename, $version, $need_content);
2361             $readdata = true;
2362         }
2363         if ($readdata && is_array($vdata) && !empty($vdata['%pagedata'])) {
2364             if (empty($this->_pagedata_cache))
2365                 $this->_pagedata_cache = array();
2366             /* PHP Fatal error:  Cannot create references to/from string offsets nor overloaded objects in /var/www/html/phpwiki/lib/WikiDB.php on line 2180, referer: wiki/TitleSearch?s=and&auto_redirect=1 */
2367             $this->_pagedata_cache[$pagename] = $vdata['%pagedata'];
2368         }
2369         return $vdata;
2370     }
2371
2372     function set_versiondata($pagename, $version, $data)
2373     {
2374         //unset($this->_versiondata_cache[$pagename][$version]);
2375
2376         if (!empty($this->readonly)) {
2377             trigger_error("readonly database", E_USER_WARNING);
2378             return;
2379         }
2380         $new = $this->_backend->set_versiondata($pagename, $version, $data);
2381         // Update the cache
2382         $this->_versiondata_cache[$pagename][$version]['1'] = $data;
2383         $this->_versiondata_cache[$pagename][$version]['0'] = $data;
2384         // Is this necessary?
2385         unset($this->_glv_cache[$pagename]);
2386     }
2387
2388     function update_versiondata($pagename, $version, $data)
2389     {
2390         if (!empty($this->readonly)) {
2391             trigger_error("readonly database", E_USER_WARNING);
2392             return;
2393         }
2394         $new = $this->_backend->update_versiondata($pagename, $version, $data);
2395         // Update the cache
2396         $this->_versiondata_cache[$pagename][$version]['1'] = $data;
2397         // FIXME: hack
2398         $this->_versiondata_cache[$pagename][$version]['0'] = $data;
2399         // Is this necessary?
2400         unset($this->_glv_cache[$pagename]);
2401     }
2402
2403     function delete_versiondata($pagename, $version)
2404     {
2405         if (!empty($this->readonly)) {
2406             trigger_error("readonly database", E_USER_WARNING);
2407             return;
2408         }
2409         $new = $this->_backend->delete_versiondata($pagename, $version);
2410         if (isset($this->_versiondata_cache[$pagename][$version]))
2411             unset ($this->_versiondata_cache[$pagename][$version]);
2412         // dirty latest version cache only if latest version gets deleted
2413         if (isset($this->_glv_cache[$pagename]) and $this->_glv_cache[$pagename] == $version)
2414             unset ($this->_glv_cache[$pagename]);
2415     }
2416
2417     function get_latest_version($pagename)
2418     {
2419         if (USECACHE) {
2420             assert(is_string($pagename) && $pagename != '');
2421             $cache = &$this->_glv_cache;
2422             if (!isset($cache[$pagename])) {
2423                 $cache[$pagename] = $this->_backend->get_latest_version($pagename);
2424                 if (empty($cache[$pagename]))
2425                     $cache[$pagename] = 0;
2426             }
2427             return $cache[$pagename];
2428         } else {
2429             return $this->_backend->get_latest_version($pagename);
2430         }
2431     }
2432 }
2433
2434 ;
2435
2436 function _sql_debuglog($msg, $newline = true, $shutdown = false)
2437 {
2438     static $fp = false;
2439     static $i = 0;
2440     if (!$fp) {
2441         $stamp = strftime("%y%m%d-%H%M%S");
2442         $fp = fopen(TEMP_DIR . "/sql-$stamp.log", "a");
2443         register_shutdown_function("_sql_debuglog_shutdown_function");
2444     } elseif ($shutdown) {
2445         fclose($fp);
2446         return;
2447     }
2448     if ($newline) fputs($fp, "[$i++] $msg");
2449     else fwrite($fp, $msg);
2450 }
2451
2452 function _sql_debuglog_shutdown_function()
2453 {
2454     _sql_debuglog('', false, true);
2455 }
2456
2457 // Local Variables:
2458 // mode: php
2459 // tab-width: 8
2460 // c-basic-offset: 4
2461 // c-hanging-comment-ender-p: nil
2462 // indent-tabs-mode: nil
2463 // End: