3 * StatusNet, the distributed open-source microblogging tool
5 * Low-level generator for XML
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Evan Prodromou <evan@status.net>
25 * @author Sarven Capadisli <csarven@status.net>
26 * @copyright 2008 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
36 * Low-level generator for XML
38 * This is a thin wrapper around PHP's XMLWriter. The main
39 * advantage is the element() method, which simplifies outputting
44 * @author Evan Prodromou <evan@status.net>
45 * @author Sarven Capadisli <csarven@status.net>
46 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
47 * @link http://status.net/
55 * Wrapped XMLWriter object, which does most of the heavy lifting
64 * Initializes the wrapped XMLWriter.
66 * @param string $output URL for outputting, defaults to stdout
67 * @param boolean $indent Whether to indent output, default true
70 function __construct($output='php://output', $indent=null)
72 $this->xw = new XMLWriter();
73 $this->xw->openURI($output);
74 if(is_null($indent)) {
75 $indent = common_config('site', 'indent');
77 $this->xw->setIndent($indent);
81 * Start a new XML document
83 * @param string $doc document element
84 * @param string $public public identifier
85 * @param string $system system identifier
90 function startXML($doc=null, $public=null, $system=null)
92 $this->xw->startDocument('1.0', 'UTF-8');
94 $this->xw->writeDTD($doc, $public, $system);
99 * finish an XML document
101 * It's probably a bad idea to continue to use this object
102 * after calling endXML().
109 $this->xw->endDocument();
114 * output an XML element
116 * Utility for outputting an XML element. A convenient wrapper
117 * for a bunch of longer XMLWriter calls. This is best for
118 * when an element doesn't have any sub-elements; if that's the
119 * case, use elementStart() and elementEnd() instead.
121 * The $content element will be escaped for XML. If you need
122 * raw output, use elementStart() and elementEnd() with a call
123 * to raw() in the middle.
125 * If $attrs is a string instead of an array, it will be treated
126 * as the class attribute of the element.
128 * @param string $tag Element type or tagname
129 * @param array $attrs Array of element attributes, as
131 * @param string $content string content of the element
136 function element($tag, $attrs=null, $content=null)
138 $this->elementStart($tag, $attrs);
139 if (!is_null($content)) {
140 $this->xw->text($content);
142 $this->elementEnd($tag);
146 * output a start tag for an element
148 * Mostly used for when an element has content that's
149 * not a simple string.
151 * If $attrs is a string instead of an array, it will be treated
152 * as the class attribute of the element.
154 * @param string $tag Element type or tagname
155 * @param array $attrs Array of element attributes
160 function elementStart($tag, $attrs=null)
162 $this->xw->startElement($tag);
163 if (is_array($attrs)) {
164 foreach ($attrs as $name => $value) {
165 $this->xw->writeAttribute($name, $value);
167 } else if (is_string($attrs)) {
168 $this->xw->writeAttribute('class', $attrs);
173 * output an end tag for an element
175 * Used in conjunction with elementStart(). $tag param
176 * should match the elementStart() param.
178 * For HTML 4 compatibility, this method will force
179 * a full end element (</tag>) even if the element is
180 * empty, except for a handful of exception tagnames.
183 * @param string $tag Element type or tagname.
188 function elementEnd($tag)
190 static $empty_tag = array('base', 'meta', 'link', 'hr',
191 'br', 'param', 'img', 'area',
193 // XXX: check namespace
194 if (in_array($tag, $empty_tag)) {
195 $this->xw->endElement();
197 $this->xw->fullEndElement();
204 * Text will be escaped. If you need it not to be,
207 * @param string $txt Text to output.
214 $this->xw->text($txt);
220 * This will spit out its argument verbatim -- no escaping is
223 * @param string $xml XML to output.
230 $this->xw->writeRaw($xml);
236 * @param string $txt text of the comment
241 function comment($txt)
243 $this->xw->writeComment($txt);