Menu

[r5201]: / trunk / etc / inc / xmlparse.inc  Maximize  Restore  History

Download this file

254 lines (209 with data), 7.8 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<?php
/*
xmlparse.inc
functions to parse/dump configuration files in XML format
part of FreeNAS (http://freenas.org)
Copyright (C) 2005-2009 Olivier Cochard-Labbe <olivier@freenas.org>.
All rights reserved.
Based on m0n0wall (http://m0n0.ch/wall)
Copyright (C) 2003-2006 Manuel Kasper <mk@neon1.net>.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
/* tags that are always to be handled as lists */
/* This are TAGS that can be multiple in the XML config file */
$listtags = explode(" ", "dnsserver winsserver disk vdisk diskr sharetosync " .
"encryption-algorithm-option hash-algorithm-option hosts onetoone hidemount " .
"staticmap route pipe queue shellcmd cacert earlyshellcmd user group " .
"servernat nfsnetworks passthrumac allowedip mount vlan domainoverrides " .
"minute hour day month weekday content rsyncclient rsynclocal package " .
"ipv6dnsserver share auxparam extent device target storage group job report " .
"cmd module selftest url param lagg laggport vdevice pool dataset rule " .
"portalgroup portal initiatorgroup iginitiatorname ignetmask authgroup " .
"agauth pgigmap agmap lunmap");
function startElement($parser, $name, $attrs) {
global $depth, $curpath, $config, $havedata, $listtags;
array_push($curpath, strtolower($name));
$ptr =& $config;
foreach ($curpath as $path) {
$ptr =& $ptr[$path];
}
/* is it an element that belongs to a list? */
if (in_array(strtolower($name), $listtags)) {
/* is there an array already? */
if (!is_array($ptr)) {
/* make an array */
$ptr = array();
}
array_push($curpath, count($ptr));
} else if (isset($ptr)) {
/* multiple entries not allowed for this element, bail out */
die(sprintf("XML error: %s at line %d cannot occur more than once\n",
$name,
xml_get_current_line_number($parser)));
}
$depth++;
$havedata = $depth;
}
function endElement($parser, $name) {
global $depth, $curpath, $config, $havedata, $listtags;
if ($havedata == $depth) {
$ptr =& $config;
foreach ($curpath as $path) {
$ptr =& $ptr[$path];
}
$ptr = "";
}
array_pop($curpath);
if (in_array(strtolower($name), $listtags))
array_pop($curpath);
$depth--;
}
function cData($parser, $data) {
global $depth, $curpath, $config, $havedata;
$data = trim($data, "\t\n\r");
if ($data != "") {
$ptr =& $config;
foreach ($curpath as $path) {
$ptr =& $ptr[$path];
}
if (is_string($ptr)) {
$ptr .= $data;
} else {
if (trim($data, " ") != "") {
$ptr = $data;
$havedata++;
}
}
}
}
function parse_xml_config($cffile, $rootobj) {
global $depth, $curpath, $config, $havedata, $listtags;
$config = array();
$curpath = array();
$depth = 0;
$havedata = 0;
$encoding = "UTF-8"; // PHP default
// Create XML parser and initialize handler.
$xml_parser = xml_parser_create();
xml_set_element_handler($xml_parser, "startElement", "endElement");
xml_set_character_data_handler($xml_parser, "cdata");
// Read configuration file.
$data = file_get_contents($cffile);
if (FALSE === $data)
die("Error: could not open XML input\n");
// Detect and set output character encoding. Default output encoding is UTF-8
if (preg_match('/<?xml.*encoding=[\'"](.*?)[\'"].*?>/m', $data, $m)) {
$encoding = strtoupper($m[1]);
xml_parser_set_option($xml_parser, XML_OPTION_TARGET_ENCODING, $encoding);
}
// Parse configuration.
if (!xml_parse($xml_parser, $data)) {
die(sprintf("XML error: %s at line %d\n",
xml_error_string(xml_get_error_code($xml_parser)),
xml_get_current_line_number($xml_parser)));
}
xml_parser_free($xml_parser);
if (!$config[$rootobj]) {
die("XML error: no $rootobj object found!\n");
}
// Remember encoding
$config[$rootobj]['encoding'] = $encoding;
return $config[$rootobj];
}
// Dump configuration.
// $arr - Array to be dumped
// $indent - Number of indent
// $in_charset - The input charset, e.g. ISO-8859-1
// $out_charset - The output charset, e.g. UTF-8
// A charset conversion may appear when switching from a ISO-8859-1 language
// (e.g. English) to a UTF-8 one (e.g. French). If this is not done
// we will get an parser error.
function dump_xml_config_sub($arr, $indent, $in_charset, $out_charset) {
global $listtags;
$xmlconfig = "";
foreach ($arr as $ent => $val) {
if (is_array($val)) {
/* is it just a list of multiple values? */
if (in_array(strtolower($ent), $listtags)) {
foreach ($val as $cval) {
if (is_array($cval)) {
$xmlconfig .= str_repeat("\t", $indent);
$xmlconfig .= "<$ent>\n";
$xmlconfig .= dump_xml_config_sub($cval, $indent + 1, $in_charset, $out_charset);
$xmlconfig .= str_repeat("\t", $indent);
$xmlconfig .= "</$ent>\n";
} else {
$xmlconfig .= str_repeat("\t", $indent);
if ((is_bool($cval) && ($cval == true)) ||
($cval === ""))
$xmlconfig .= "<$ent/>\n";
else if (!is_bool($cval))
$xmlconfig .= "<$ent>" . htmlspecialchars(iconv($in_charset, $out_charset, $cval)) . "</$ent>\n";
}
}
} else {
/* it's an array */
$xmlconfig .= str_repeat("\t", $indent);
$xmlconfig .= "<$ent>\n";
$xmlconfig .= dump_xml_config_sub($val, $indent + 1, $in_charset, $out_charset);
$xmlconfig .= str_repeat("\t", $indent);
$xmlconfig .= "</$ent>\n";
}
} else {
if ((is_bool($val) && ($val == true)) || ($val === "")) {
$xmlconfig .= str_repeat("\t", $indent);
$xmlconfig .= "<$ent/>\n";
} else if (!is_bool($val)) {
$xmlconfig .= str_repeat("\t", $indent);
$xmlconfig .= "<$ent>" . htmlspecialchars(iconv($in_charset, $out_charset, $val)) . "</$ent>\n";
}
}
}
return $xmlconfig;
}
function dump_xml_config($arr, $rootobj, $encoding) {
// Set in/out encoding
$in_charset = $arr['encoding'];
$out_charset = $encoding;
// Do not dump temporary encoding attribute
unset($arr['encoding']);
$xmlconfig = "<?xml version=\"1.0\" encoding=\"{$encoding}\"?>\n";
$xmlconfig .= "<$rootobj>\n";
$xmlconfig .= dump_xml_config_sub($arr, 1, $in_charset, $out_charset);
$xmlconfig .= "</$rootobj>\n";
return $xmlconfig;
}
/**
* Validate the configuration xml file.
* @param[in] cffile Path to the file to validate.
* @param[in] rootobj The name of the root object.
* @return TRUE if valid, otherwise FALSE.
*/
function validate_xml_config($cffile, $rootobj) {
// Parse the configuration
$xmlconfig = parse_xml_config($cffile, $rootobj);
// Due the configuration file does not have a DTD, we can only do some
// simple checks, e.g. if version is set.
if (!isset($xmlconfig['version']))
return FALSE;
// Add more checks, or implement a DTD...
return TRUE;
}
?>
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.