MDL-62781 question/privacy: fix tests with CodeRunner is installed
[moodle.git] / lib / xmlize.php
blob78cf82b2a873f9334e725d1cd609fb6140f2f3a0
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Code for parsing xml files.
20 * Handles functionality for:
22 * Import of xml files in questionbank and course import.
23 * Can handle xml files larger than 10MB through chunking the input file.
24 * Replaces the original xmlize by Hans Anderson, {@link http://www.hansanderson.com/contact/}
25 * with equal interface.
27 * @package core
28 * @subpackage lib
29 * @copyright Kilian Singer
30 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
33 /**
34 * Exception thrown when there is an error parsing an XML file.
36 * @copyright 2010 The Open University
37 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
40 defined('MOODLE_INTERNAL') || die();
42 class xml_format_exception extends moodle_exception {
43 /** @var string */
44 public $errorstring;
45 /** @var int */
46 public $line;
47 /** @var char */
48 public $char;
49 /**
50 * Constructor function
52 * @param string $errorstring Errorstring
53 * @param int $line Linenumber
54 * @param char $char Errorcharacter
55 * @param string $link Link
57 public function __construct($errorstring, $line, $char, $link = '') {
58 $this->errorstring = $errorstring;
59 $this->line = $line;
60 $this->char = $char;
62 $a = new stdClass();
63 $a->errorstring = $errorstring;
64 $a->errorline = $line;
65 $a->errorchar = $char;
66 parent::__construct('errorparsingxml', 'error', $link, $a);
70 /**
71 * Class for parsing xml files.
73 * Handles functionality for:
75 * Import of xml files in questionbank and course import.
76 * Can handle xml files larger than 10MB through chunking the input file.
77 * Uses a similar interface to the original version xmlize() by Hans Anderson.
79 * @package core
80 * @subpackage lib
81 * @copyright Kilian Singer
82 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
84 class core_xml_parser {
85 /** @var array resulting $xml tree */
86 private $xml;
87 /** @var array stores references to constructed $xml tree */
88 private $current;
89 /** @var int tores the level in the XML tree */
90 private $level;
91 /**
92 * Is called when tags are opened.
94 * Note: Used by xml element handler as callback.
96 * @author Kilian Singer
97 * @param resource $parser The XML parser resource.
98 * @param string $name The XML source to parse.
99 * @param array $attrs Stores attributes of XML tag.
101 private function startelement($parser, $name, $attrs) {
102 $current = &$this->current;
103 $level = &$this->level;
104 if (!empty($name)) {
105 if ($level == 0) {
106 $current[$level][$name] = array();
107 $current[$level][$name]["@"] = $attrs; // Attribute.
108 $current[$level][$name]["#"] = array(); // Other tags.
109 $current[$level + 1] = & $current[$level][$name]["#"];
110 $level++;
111 } else {
112 if (empty($current[$level][$name])) {
113 $current[$level][$name] = array();
115 $siz = count($current[$level][$name]);
116 if (!empty($attrs)) {
117 $current[$level][$name][$siz]["@"] = $attrs; // Attribute.
119 $current[$level][$name][$siz]["#"] = array(); // Other tags.
120 $current[$level + 1] = & $current[$level][$name][$siz]["#"];
121 $level++;
127 * Is called when tags are closed.
129 * Note: Used by xml element handler as callback.
131 * @author Kilian Singer
132 * @param resource $parser The XML parser resource.
133 * @param string $name The XML source to parse.
135 private function endelement($parser, $name) {
136 $current = &$this->current;
137 $level = &$this->level;
138 if (!empty($name)) {
139 if (empty($current[$level])) {
140 $current[$level] = '';
141 } else if (array_key_exists(0, $current[$level])) {
142 if (count($current[$level]) == 1) {
143 $current[$level] = $current[$level][0]; // We remove array index if we only have a single entry.
147 $level--;
151 * Is called for text between the start and the end of tags.
153 * Note: Used by xml element handler as callback.
155 * @author Kilian Singer
156 * @param resource $parser The XML parser resource.
157 * @param string $data The XML source to parse.
159 private function characterdata($parser, $data) {
160 $current = &$this->current;
161 $level = &$this->level;
162 if (($data == "0") || (!empty($data) && trim($data) != "")) {
163 $siz = count($current[$level]);
164 if ($siz == 0) {
165 $current[$level][0] = $data;
166 } else {
167 $key = max(array_keys($current[$level]));
168 if (is_int($key)) {
169 end($current[$level]);
170 if (is_int(key($current[$level]))) { // If last index is nummeric we have CDATA and concat.
171 $current[$level][$key] = $current[$level][$key] . $data;
172 } else {
173 $current[$level][$key + 1] = $data; // Otherwise we make a new key.
175 } else {
176 $current[$level][0] = $data;
183 * Parses XML string.
185 * Note: Interface is kept equal to previous version.
187 * @author Kilian Singer
188 * @param string $data the XML source to parse.
189 * @param int $whitespace If set to 1 allows the parser to skip "space" characters in xml document. Default is 1
190 * @param string $encoding Specify an OUTPUT encoding. If not specified, it defaults to UTF-8.
191 * @param bool $reporterrors if set to true, then a {@link xml_format_exception}
192 * exception will be thrown if the XML is not well-formed. Otherwise errors are ignored.
193 * @return array representation of the parsed XML.
195 public function parse($data, $whitespace = 1, $encoding = 'UTF-8', $reporterrors = false) {
196 $data = trim($data);
197 $this->xml = array();
198 $this->current = array();
199 $this->level = 0;
200 $this->current[0] = & $this->xml;
201 $parser = xml_parser_create($encoding);
202 xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, 0);
203 xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, $whitespace);
204 xml_set_element_handler($parser, [$this, "startelement"], [$this, "endelement"]);
205 xml_set_character_data_handler($parser, [$this, "characterdata"]);
206 // Start parsing an xml document.
207 for ($i = 0; $i < strlen($data); $i += 4096) {
208 if (!xml_parse($parser, substr($data, $i, 4096))) {
209 break;
212 if ($reporterrors) {
213 $errorcode = xml_get_error_code($parser);
214 if ($errorcode) {
215 $exception = new xml_format_exception(xml_error_string($errorcode),
216 xml_get_current_line_number($parser),
217 xml_get_current_column_number($parser));
218 xml_parser_free($parser);
219 throw $exception;
222 xml_parser_free($parser); // Deletes the parser.
223 if (empty($this->xml)) { // XML file is invalid or empty, return false.
224 return false;
226 return $this->xml;
231 * XML parsing function calles into class.
233 * Note: Used by xml element handler as callback.
235 * @param string $data the XML source to parse.
236 * @param int $whitespace If set to 1 allows the parser to skip "space" characters in xml document. Default is 1
237 * @param string $encoding Specify an OUTPUT encoding. If not specified, it defaults to UTF-8.
238 * @param bool $reporterrors if set to true, then a {@link xml_format_exception}
239 * exception will be thrown if the XML is not well-formed. Otherwise errors are ignored.
240 * @return array representation of the parsed XML.
242 function xmlize($data, $whitespace = 1, $encoding = 'UTF-8', $reporterrors = false) {
243 $hxml = new core_xml_parser();
244 return $hxml->parse($data, $whitespace, $encoding, $reporterrors);