]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/CachedMarkup.php
Big changes to allow caching of marked up page text.
[SourceForge/phpwiki.git] / lib / CachedMarkup.php
1 <?php rcs_id('$Id: CachedMarkup.php,v 1.1 2003-02-21 04:06:45 dairiki Exp $');
2 /* Copyright (C) 2002, Geoffrey T. Dairiki <dairiki@dairiki.org>
3  *
4  * This file is part of PhpWiki.
5  * 
6  * PhpWiki is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  * 
11  * PhpWiki is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License
17  * along with PhpWiki; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 class CacheableMarkup extends XmlContent {
22
23     function CacheableMarkup($content, $basepage) {
24         $this->_basepage = $basepage;
25         $this->_buf = '';
26         $this->_content = array();
27         $this->_append($content);
28         if ($this->_buf)
29             $this->_content[] = $this->_buf;
30         unset($this->_buf);
31     }
32
33     function pack() {
34         if (function_exists('gzcompress'))
35             return gzcompress(serialize($this), 9);
36         return serialize($this);
37
38         // FIXME: probably should implement some sort of "compression"
39         //   when no gzcompress is available.
40     }
41
42     function unpack($packed) {
43         if (!$packed)
44             return false;
45
46         if (function_exists('gzcompress')) {
47             // ZLIB format has a five bit checksum in it's header.
48             // Lets check for sanity.
49             if ((ord($packed[0]) * 256 + ord($packed[1])) % 31 == 0) {
50                 // Looks like ZLIB.
51                 return unserialize(gzuncompress($packed));
52             }
53         }
54         if (substr($packed,0,2) == "O:") {
55             // Looks like a serialized object
56             return unserialize($packed);
57         }
58         trigger_error("Can't unpack bad cached markup", E_USER_WARNING);
59         return false;
60     }
61     
62     /** Get names of wikipages linked to.
63      *
64      * @return array
65      * A list of wiki page names (strings).
66      */
67     function getWikiPageLinks() {
68         $links = array();
69         foreach ($this->_content as $link) {
70             if (! isa($link, 'Cached_WikiLink'))
71                 continue;
72             $pagename = $link->getPagename($this->_basepage);
73             $links[$pagename] = 1;
74         }
75         return array_keys($links);
76     }
77
78     /** Get link info.
79      *
80      * This is here to support the XML-RPC listLinks() method.
81      *
82      * @return array
83      * Returns an array of hashes.
84      */
85     function getLinkInfo() {
86         $link = array();
87         foreach ($this->_content as $link) {
88             if (! isa($link, 'Cached_Link'))
89                 continue;
90             $info = $link->getLinkInfo($this->_basepage);
91             $links[$info->href] = $info;
92         }
93         return array_values($links);
94     }
95             
96     function _append($item) {
97         if (is_array($item)) {
98             foreach ($item as $subitem)
99                 $this->_append($subitem);
100         }
101         elseif (!is_object($item)) {
102             $this->_buf .= $this->_quote((string) $item);
103         }
104         elseif (isa($item, 'Cached_DynamicContent')) {
105             if ($this->_buf) {
106                 $this->_content[] = $this->_buf;
107                 $this->_buf = '';
108             }
109             $this->_content[] = $item;
110         }
111         elseif (isa($item, 'XmlElement')) {
112             if ($item->isEmpty()) {
113                 $this->_buf .= $item->emptyTag();
114             }
115             else {
116                 $this->_buf .= $item->startTag();
117                 foreach ($item->getContent() as $subitem)
118                     $this->_append($subitem);
119                 $this->_buf .= "</$item->_tag>";
120             }
121             if (!$item->isInlineElement())
122                 $this->_buf .= "\n";
123         }
124         elseif (isa($item, 'XmlContent')) {
125             foreach ($item->getContent() as $item)
126                 $this->_append($item);
127         }
128         elseif (method_exists($item, 'asxml')) {
129             $this->_buf .= $item->asXML();
130         }
131         elseif (method_exists($item, 'asstring')) {
132             $this->_buf .= $this->_quote($item->asString());
133         }
134         else {
135             $this->_buf .= sprintf("==Object(%s)==", get_class($item));
136         }
137     }
138
139     function asXML () {
140         $xml = '';
141         $basepage = $this->_basepage;
142         
143         foreach ($this->_content as $item) {
144             if (is_string($item)) {
145                 $xml .= $item;
146             }
147             elseif (is_subclass_of($item, 'cached_dynamiccontent')) {
148                 $val = $item->expand($basepage);
149                 $xml .= $val->asXML();
150             }
151             else {
152                 $xml .= $item->asXML();
153             }
154         }
155         return $xml;
156     }
157
158     function printXML () {
159         $basepage = $this->_basepage;
160
161         foreach ($this->_content as $item) {
162             if (is_string($item)) {
163                 print $item;
164             }
165             elseif (is_subclass_of($item, 'cached_dynamiccontent')) {
166                 $val = $item->expand($basepage);
167                 $val->printXML();
168             }
169             else {
170                 $item->printXML();
171             }
172         }
173     }
174 }       
175
176 /**
177  * The base class for all dynamic content.
178  *
179  * Dynamic content is anything that can change even when the original
180  * wiki-text from which it was parsed is unchanged.
181  */
182 class Cached_DynamicContent {
183
184     function cache(&$cache) {
185         $cache[] = $this;
186     }
187
188     function expand($basepage) {
189         trigger_error("Pure virtual", E_USER_ERROR);
190     }
191 }
192
193 class XmlRpc_LinkInfo {
194     function XmlRpc_LinkInfo($page, $type, $href) {
195         $this->page = $page;
196         $this->type = $type;
197         $this->href = $href;
198     }
199 }
200
201 class Cached_Link extends Cached_DynamicContent {
202
203     function isInlineElement() {
204         return true;
205     }
206
207     /** Get link info (for XML-RPC support)
208      *
209      * This is here to support the XML-RPC listLinks method.
210      * (See http://www.ecyrd.com/JSPWiki/Wiki.jsp?page=WikiRPCInterface)
211      */
212     function getLinkInfo($basepage) {
213         return new XmlRpc_LinkInfo($this->_getName($basepage),
214                                    $this->_getType(),
215                                    $this->_getURL($basepage));
216     }
217     
218     function _getURL($basepage) {
219         return $this->_url;
220     }
221 }
222
223 class Cached_WikiLink extends Cached_Link {
224
225     function Cached_WikiLink ($page, $label = false, $anchor = false) {
226         $this->_page = $page;
227         if ($anchor)
228             $this->_anchor = $anchor;
229         if ($label and $label != $page)
230             $this->_label = $label;
231     }
232
233     function _getType() {
234         return 'internal';
235     }
236     
237     function getPagename($basepage) {
238         $page = $this->_page;
239         if (empty($page) or $page[0] == SUBPAGE_SEPARATOR)
240             $page = $basepage . $page;
241         return $page;
242     }
243
244     function _getName($basepage) {
245         return $this->getPagename($basepage);
246     }
247
248     function _getURL($basepage) {
249         return WikiURL($this->getPagename($basepage), false, 'abs_url');
250     }
251
252     function expand($basepage) {
253         $label = isset($this->_label) ? $this->_label : false;
254         $anchor = isset($this->_anchor) ? (string)$this->_anchor : '';
255         $page = new WikiPageName($this->_page, $basepage, $anchor);
256         return WikiLink($page, 'auto', $label);
257     }
258 }
259
260 class Cached_WikiLinkIfKnown extends Cached_WikiLink
261 {
262     function Cached_WikiLinkIfKnown ($moniker) {
263         $this->_page = $moniker;
264     }
265
266     function expand($basepage) {
267         return WikiLink($this->_page, 'if_known');
268     }
269 }    
270     
271 class Cached_ExternalLink extends Cached_Link {
272
273     function Cached_ExternalLink($url, $label=false) {
274         $this->_url = $url;
275         if ($label && $label != $url)
276             $this->_label = $label;
277     }
278
279     function _getType() {
280         return 'external';
281     }
282     
283     function _getName($basepage) {
284         $label = isset($this->_label) ? $this->_label : false;
285         return ($label and is_string($label)) ? $label : $this->_url;
286     }
287
288     function expand($basepage) {
289         $label = isset($this->_label) ? $this->_label : false;
290         return LinkURL($this->_url, $label);
291     }
292 }
293
294 class Cached_InterwikiLink extends Cached_ExternalLink {
295     
296     function Cached_InterwikiLink($link, $label=false) {
297         $this->_link = $link;
298         if ($label)
299             $this->_label = $label;
300     }
301
302     function _getName($basepage) {
303         $label = isset($this->_label) ? $this->_label : false;
304         return ($label and is_string($label)) ? $label : $link;
305     }
306     
307     function _getURL($basepage) {
308         $link = $this->expand($basepage);
309         return $link->getAttr('href');
310     }
311
312     function expand($basepage) {
313         include_once('lib/interwiki.php');
314         $intermap = InterWikiMap::GetMap($GLOBALS['request']);
315         $label = isset($this->_label) ? $this->_label : false;
316         return $intermap->link($this->_link, $label);
317     }
318 }
319
320
321
322 class Cached_PluginInvocation extends Cached_DynamicContent {
323     function Cached_PluginInvocation ($pi) {
324         $this->_pi = $pi;
325     }
326
327     function setTightness($top, $bottom) {
328         $this->_tightenable = 0;
329         if ($top) $this->_tightenable |= 1;
330         if ($bottom) $this->_tightenable |= 2;
331     }
332     
333     function isInlineElement() {
334         return false;
335     }
336
337     function expand($basepage) {
338         static $loader = false;
339
340         if (!$loader) {
341             include_once('lib/WikiPlugin.php');
342             $loader = new WikiPluginLoader;
343         }
344
345         $xml = HTML::div(array('class' => 'plugin'),
346                          $loader->expandPI($this->_pi, $GLOBALS['request']));
347         
348         if (isset($this->_tightenable)) {
349             $xml->setInClass('tightenable');
350             $xml->setInClass('top', ($this->_tightenable & 1) != 0);
351             $xml->setInClass('bottom', ($this->_tightenable & 2) != 0);
352         }
353
354         return $xml;
355     }
356 }
357
358 // (c-file-style: "gnu")
359 // Local Variables:
360 // mode: php
361 // tab-width: 8
362 // c-basic-offset: 4
363 // c-hanging-comment-ender-p: nil
364 // indent-tabs-mode: nil
365 // End:   
366 ?>