]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/WikiDB/backend/dbaBase.php
Jeff's hacks II.
[SourceForge/phpwiki.git] / lib / WikiDB / backend / dbaBase.php
1 <?php rcs_id('$Id: dbaBase.php,v 1.1 2001-09-18 19:16:23 dairiki Exp $');
2
3 require_once('lib/WikiDB/backend.php');
4
5 // FIXME:padding of data?  Is it needed?  dba_optimize() seems to do a good
6 // job at packing 'gdbm' (and 'db2') databases.
7
8 /*
9  * Tables:
10  *
11  *  page:
12  *   Index: pagename
13  *  Values: latestversion . ':' . flags . ':' serialized hash of page meta data
14  *           Currently flags = 1 if latest version has empty content.
15  *
16  *  version
17  *   Index: version:pagename
18  *   Value: serialized hash of revision meta data, including:
19  *          + quasi-meta-data %content
20  *
21  *  links
22  *   index: 'o' . pagename
23  *   value: serialized list of pages (names) which pagename links to.
24  *   index: 'i' . pagename
25  *   value: serialized list of pages which link to pagename
26  *
27  *  TODO:
28  *
29  *  Don't keep tables locked the whole time?
30  *
31  *  index table with:
32  *   list of pagenames for get_all_pages
33  *   mostpopular list?
34  *   RecentChanges support: 
35  *     lists of most recent edits (major, minor, either).
36  *   
37  *
38  *  Separate hit table, so we don't have to update the whole page entry
39  *  each time we get a hit.  (Maybe not so important though...).
40  */     
41
42 require_once('lib/DbaPartition.php');
43
44 class WikiDB_backend_dbaBase
45 extends WikiDB_backend
46 {
47     function WikiDB_backend_dbaBase (&$dba) {
48         $this->_db = &$dba;
49         // FIXME: page and version tables should be in their own files, probably.
50         // We'll pack them all in one for now (testing).
51         $this->_pagedb = new DbaPartition($dba, 'p');
52         $this->_versiondb = new DbaPartition($dba, 'v');
53         $linkdbpart = new DbaPartition($dba, 'l');
54         $this->_linkdb = new WikiDB_backend_dbaBase_linktable($linkdbpart);
55         $this->_dbdb = new DbaPartition($dba, 'd');
56     }
57
58     function close() {
59         $this->_db->close();
60     }
61
62     function optimize() {
63         $this->_db->optimize();
64     }
65
66     function sync() {
67         $this->_db->sync();
68     }
69
70     function rebuild() {
71         $this->_linkdb->rebuild();
72         $this->optimize();
73     }
74     
75     function check() {
76         return $this->_linkdb->check();
77     }
78
79     function get_pagedata($pagename) {
80         $result = $this->_pagedb->get($pagename);
81         if (!$result)
82             return false;
83         list(,,$packed) = explode(':', $result, 3);
84         $data = unserialize($packed);
85         return $data;
86     }
87
88             
89     function update_pagedata($pagename, $newdata) {
90         $result = $this->_pagedb->get($pagename);
91         if ($result) {
92             list($latestversion,$flags,$data) = explode(':', $result, 3);
93             $data = unserialize($data);
94         }
95         else {
96             $latestversion = $flags = 0;
97             $data = array();
98         }
99         
100         foreach ($newdata as $key => $val) {
101             if (empty($val))
102                 unset($data[$key]);
103             else
104                 $data[$key] = $val;
105         }
106         $this->_pagedb->set($pagename,
107                             (int)$latestversion . ':'
108                             . (int)$flags . ':'
109                             . serialize($data));
110     }
111
112     function get_latest_version($pagename) {
113         return (int) $this->_pagedb->get($pagename);
114     }
115
116     function get_previous_version($pagename, $version) {
117         $versdb = &$this->_versiondb;
118
119         while (--$version > 0) {
120             if ($versdb->exists($version . ":$pagename"))
121                 return $version;
122         }
123         return false;
124     }
125         
126     function get_versiondata($pagename, $version, $want_content = false) {
127         $data = $this->_versiondb->get((int)$version . ":$pagename");
128         return $data ? unserialize($data) : false;
129     }
130         
131     /**
132      * Delete page from the database.
133      */
134     function delete_page($pagename) {
135         $pagedb = &$this->_pagedb;
136         $versdb = &$this->_versiondb;
137
138         $version = $this->get_latest_version($pagename);
139         while ($version > 0) {
140             $versdb->set($version-- . ":$pagename", false);
141         }
142         $pagedb->set($pagename, false);
143     }
144             
145     /**
146      * Delete an old revision of a page.
147      */
148     function delete_versiondata($pagename, $version) {
149         $versdb = &$this->_versiondb;
150
151         $latest = $this->get_latest_version($pagename);
152
153         assert($version > 0);
154         assert($version <= $latest);
155         
156         $versdb->set((int)$version . ":$pagename", false);
157
158         if ($version == $latest) {
159             $previous = $this->get_previous_version($version);
160             if ($previous> 0) {
161                 $pvdata = $this->get_versiondata($pagename, $previous);
162                 $is_empty = empty($pvdata['%content']);
163             }
164             else
165                 $is_empty = true;
166             $this->_update_latest_version($pagename, $previous, $is_empty);
167         }
168     }
169
170     /**
171      * Create a new revision of a page.
172      */
173     function set_versiondata($pagename, $version, $data) {
174         $versdb = &$this->_versiondb;
175
176         $versdb->set((int)$version . ":$pagename", serialize($data));
177         if ($version > $this->get_latest_version($pagename))
178             $this->_update_latest_version($pagename, $version, empty($data['%content']));
179     }
180
181     function _update_latest_version($pagename, $latest, $flags) {
182         $pagedb = &$this->_pagedb;
183
184         $pdata = $pagedb->get($pagename);
185         if ($pdata)
186             list(,,$pagedata) = explode(':',$pdata,3);
187         else
188             $pagedata = serialize(array());
189         
190         $pagedb->set($pagename, (int)$latest . ':' . (int)$flags . ":$pagedata");
191     }
192
193     function get_all_pages($include_deleted = false) {
194         $pagedb = &$this->_pagedb;
195
196         $pages = array();
197         for ($page = $pagedb->firstkey(); $page!== false; $page = $pagedb->nextkey()) {
198             if (!$page) {
199                 assert(!empty($page));
200                 continue;
201             }
202             
203             if (!$include_deleted) {
204                 list($latestversion,$flags,) = explode(':', $pagedb->get($page), 3);
205                 if ($latestversion == 0 || $flags != 0)
206                     continue;   // current content is empty 
207             }
208             $pages[] = $page;
209         }
210         usort($pages, 'WikiDB_backend_dbaBase_sortbypagename');
211         return new WikiDB_backend_dbaBase_pageiter($this, $pages);
212     }
213
214     function set_links($pagename, $links) {
215         $this->_linkdb->set_links($pagename, $links);
216     }
217     
218
219     function get_links($pagename, $reversed = true) {
220         /*
221         if ($reversed) {
222             include_once('lib/WikiDB/backend/dumb/BackLinkIter.php');
223             $pages = $this->get_all_pages();
224             return new WikiDB_backend_dumb_BackLinkIter($this, $pages, $pagename);
225         }
226         */
227         $links = $this->_linkdb->get_links($pagename, $reversed);
228         return new WikiDB_backend_dbaBase_pageiter($this, $links);
229     }
230 };
231
232 function WikiDB_backend_dbaBase_sortbypagename ($a, $b) {
233     $aname = $a['pagename'];
234     $bname = $b['pagename'];
235     return strcasecmp($aname, $bname);
236 }
237
238
239 class WikiDB_backend_dbaBase_pageiter
240 extends WikiDB_backend_iterator
241 {
242     function WikiDB_backend_dbaBase_pageiter(&$backend, &$pages) {
243         $this->_backend = $backend;
244         $this->_pages = $pages ? $pages : array();
245     }
246
247     function next() {
248         if ( ! ($next = array_shift($this->_pages)) )
249             return false;
250         return array('pagename' => $next);
251     }
252             
253     function free() {
254         $this->_pages = array();
255     }
256 };
257
258 class WikiDB_backend_dbaBase_linktable 
259 {
260     function WikiDB_backend_dbaBase_linktable(&$dba) {
261         $this->_db = &$dba;
262     }
263
264     //FIXME: try stroring link lists as hashes rather than arrays.
265     // (backlink deletion would be faster.)
266     
267     function get_links($page, $reversed = true) {
268         return $this->_get_links($reversed ? 'i' : 'o', $page);
269     }
270     
271     function set_links($page, $newlinks) {
272
273         $oldlinks = $this->_get_links('o', $page);
274
275         if (!is_array($newlinks)) {
276             assert(empty($newlinks));
277             $newlinks = array();
278         }
279         else {
280             $newlinks = array_unique($newlinks);
281         }
282         sort($newlinks);
283         $this->_set_links('o', $page, $newlinks);
284
285         reset($newlinks);
286         reset($oldlinks);
287         $new = current($newlinks);
288         $old = current($oldlinks);
289         while ($new !== false || $old !== false) {
290             if ($old === false || ($new !== false && $new < $old)) {
291                 // $new is a new link (not in $oldlinks).
292                 $this->_add_backlink($new, $page);
293                 $new = next($newlinks);
294             }
295             elseif ($new === false || $old < $new) {
296                 // $old is a obsolete link (not in $newlinks).
297                 $this->_delete_backlink($old, $page);
298                 $old = next($oldlinks);
299             }
300             else {
301                 // Unchanged link (in both $newlist and $oldlinks).
302                 assert($new == $old);
303                 $new = next($newlinks);
304                 $old = next($oldlinks);
305             }
306         }
307     }
308
309     /**
310      * Rebuild the back-link index.
311      *
312      * This should never be needed, but if the database gets hosed for some reason,
313      * this should put it back into a consistent state.
314      *
315      * We assume the forward links in the our table are correct, and recalculate
316      * all the backlinks appropriately.
317      */
318     function rebuild () {
319         $db = &$this->_db;
320
321         // Delete the backlink tables, make a list of page names.
322         $okeys = array();
323         $ikeys = array();
324         for ($key = $db->firstkey(); $key; $key = $db->nextkey()) {
325             if ($key[0] == 'i')
326                 $ikeys[] = $key;
327             elseif ($key[0] == 'o')
328                 $okeys[] = $key;
329             else {
330                 trigger_error("Bad key in linktable: '$key'", E_USER_WARNING);
331                 $ikeys[] = $key;
332             }
333         }
334         foreach ($ikeys as $key) {
335             $db->delete($key);
336         }
337         foreach ($okeys as $key) {
338             $page = substr($key,1);
339             $links = $this->_get_links('o', $page);
340             $db->delete($key);
341             $this->set_links($page, $links);
342         }
343     }
344
345     function check() {
346         $db = &$this->_db;
347
348         // FIXME: check for sortedness and uniqueness in links lists.
349
350         for ($key = $db->firstkey(); $key; $key = $db->nextkey()) {
351             if (strlen($key) < 1 || ($key[0] != 'i' && $key[0] != 'o')) {
352                 $errs[] = "Bad key '$key' in table";
353                 continue;
354             }
355             $page = substr($key, 1);
356             if ($key[0] == 'o') {
357                 // Forward links.
358                 foreach($this->_get_links('o', $page) as $link) {
359                     if (!$this->_has_link('i', $link, $page))
360                         $errs[] = "backlink entry missing for link '$page'->'$link'";
361                 }
362             }
363             else {
364                 assert($key[0] == 'i');
365                 // Backlinks.
366                 foreach($this->_get_links('i', $page) as $link) {
367                     if (!$this->_has_link('o', $link, $page))
368                         $errs[] = "link entry missing for backlink '$page'<-'$link'";
369                 }
370             }
371         }
372
373         return isset($errs) ? $errs : false;
374     }
375     
376         
377     function _add_backlink($page, $linkedfrom) {
378         $backlinks = $this->_get_links('i', $page);
379         $backlinks[] = $linkedfrom;
380         sort($backlinks);
381         $this->_set_links('i', $page, $backlinks);
382     }
383     
384     function _delete_backlink($page, $linkedfrom) {
385         $backlinks = $this->_get_links('i', $page);
386         foreach ($backlinks as $key => $backlink) {
387             if ($backlink == $linkedfrom)
388                 unset($backlinks[$key]);
389         }
390         $this->_set_links('i', $page, $backlinks);
391     }
392     
393     function _has_link($which, $page, $link) {
394         $links = $this->_get_links($which, $page);
395         foreach($links as $l) {
396             if ($l == $link)
397                 return true;
398         }
399         return false;
400     }
401     
402     function _get_links($which, $page) {
403         $data = $this->_db->get($which . $page);
404         return $data ? unserialize($data) : array();
405     }
406
407     function _set_links($which, $page, &$links) {
408         $key = $which . $page;
409         if ($links)
410             $this->_db->set($key, serialize($links));
411         else
412             $this->_db->set($key, false);
413     }
414 }
415
416 // (c-file-style: "gnu")
417 // Local Variables:
418 // mode: php
419 // tab-width: 8
420 // c-basic-offset: 4
421 // c-hanging-comment-ender-p: nil
422 // indent-tabs-mode: nil
423 // End:   
424 ?>