-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsimplexml_tree.php
More file actions
278 lines (241 loc) · 8.76 KB
/
simplexml_tree.php
File metadata and controls
278 lines (241 loc) · 8.76 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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<?php
/**
* Output a tree-view of the node or list of nodes referenced by a particular SimpleXML object
* Unlike simplexml_dump(), this processes the entire XML tree recursively, while attempting
* to be more concise and readable than the XML itself.
* Additionally, the output format is designed as a hint of the syntax needed to traverse the object.
*
* @param SimpleXMLElement $sxml The object to inspect
* @param boolean $include_string_content Default false. If true, will summarise textual content,
* as well as child elements and attribute names
* @param boolean $return Default false. If true, return the "dumped" info rather than echoing it
* @return null|string Nothing, or output, depending on $return param
*
* @author Rowan Collins
* @see https://github.com/IMSoP/simplexml_debug
* @license None. Do what you like with it, but please give me credit if you like it. :)
* Equally, no warranty: don't blame me if your aircraft or nuclear power plant fails because of this code!
*/
function simplexml_tree(SimpleXMLElement $sxml, $include_string_content=false, $return=false)
{
$indent = "\t";
$content_extract_size = 15;
// Get all the namespaces declared at the *root* of this document
// All the items we're looking at are in the same document, so we only need do this once
$doc_ns = $sxml->getDocNamespaces(false);
$dump = '';
// Note that the header is added at the end, so we can add stats
// The initial object passed in may be a single node or a list of nodes, so we need an outer loop first
// Note that for a single node, foreach($node) acts like foreach($node->children())
// Numeric array indexes, however, operate consistently: $node[0] just returns the node
$root_item_index = 0;
while ( isset($sxml[$root_item_index]) )
{
$root_item = $sxml[$root_item_index];
// The DOM exposes information which SimpleXML doesn't make easy to find
// Note that this is not an expensive conversion, as we are only swapping PHP wrappers around an existing LibXML resource
$dom_item = dom_import_simplexml($root_item);
// To what namespace does this element or attribute belong?
$ns_prefix = $dom_item->prefix;
// Special case if the root is actually an attribute
// It's surprisingly hard to find something which behaves consistently differently for an attribute and an element within SimpleXML
if ( $dom_item instanceOf DOMAttr )
{
if ( $ns_prefix )
{
$dump .= $ns_prefix . ':';
}
$dump .= $root_item->getName() . '="' . (string)$root_item . '"' . PHP_EOL;
}
else
{
// Display the root node as a numeric key reference, plus a hint as to its tag name
// e.g. '[42] // <Answer>'
if ( $ns_prefix )
{
$root_node_name = $ns_prefix . ':' . $root_item->getName();
}
else
{
$root_node_name = $root_item->getName();
}
$dump .= "[$root_item_index] // <$root_node_name>" . PHP_EOL;
// This function is effectively recursing depth-first through the tree,
// but this is managed manually using a stack rather than actual recursion
// Each item on the stack is of the form array(int $depth, SimpleXMLElement $element, string $header_row)
$dump .= _simplexml_tree_recursively_process_node(
$root_item, 1,
$include_string_content, $indent, $content_extract_size
);
}
$root_item_index++;
}
// Add on the header line, with the total number of items output
$dump = 'SimpleXML object (' . $root_item_index . ' item' . ($root_item_index > 1 ? 's' : '') . ')' . PHP_EOL . $dump;
if ( $return )
{
return $dump;
}
else
{
echo $dump;
}
}
/**
* "Private" function to perform the recursive part of simplexml_tree()
* Do not call this function directly or rely on its function signature remaining stable
*/
function _simplexml_tree_recursively_process_node($item, $depth, $include_string_content, $indent, $content_extract_size)
{
$dump = '';
if ( $include_string_content )
{
// Show a chunk of the beginning of the content string, collapsing whitespace HTML-style
$string_content = (string)$item;
$string_extract = preg_replace('/\s+/', ' ', trim($string_content));
if ( strlen($string_extract) > $content_extract_size )
{
$string_extract = substr($string_extract, 0, $content_extract_size)
. '...';
}
if ( strlen($string_content) > 0 )
{
$dump .= str_repeat($indent, $depth)
. '(string) '
. "'$string_extract'"
. ' (' . strlen($string_content) . ' chars)'
. PHP_EOL;
}
}
// The DOM exposes information which SimpleXML doesn't make easy to find
// Note that this is not an expensive conversion, as we are only swapping PHP wrappers around an existing LibXML resource
$dom_item = dom_import_simplexml($item);
// To what namespace does this element or attribute belong?
// For top-level elements, cheat, and say they're in the null namespace, to force a ->children() call
if ( $depth == 1 )
{
$item_ns_prefix = '';
$item_ns_uri = null;
}
else
{
$item_ns_prefix = $dom_item->prefix;
$item_ns_uri = $dom_item->namespaceURI;
}
// This returns all namespaces used by this node and all its descendants,
// whether declared in this node, in its ancestors, or in its descendants
$all_ns = $item->getNamespaces(true);
$has_default_namespace = isset($all_ns['']);
// If the default namespace is never declared, we need to add a dummy entry for it
// We also need to handle the odd fact that attributes are never assigned to the default namespace
// The spec basically leaves their meaning undefined: https://www.w3.org/TR/xml-names/#defaulting
if ( ! in_array(null, $all_ns, true) )
{
$all_ns[] = null;
}
// Prioritise "current" namespace by merging into onto the beginning of the list
// (it will be added to the beginning and the duplicate entry dropped)
$all_ns = array_unique(array_merge(
array($item_ns_uri),
$all_ns
));
foreach ( $all_ns as $ns_uri )
{
$children = $item->children($ns_uri);
$attributes = $item->attributes($ns_uri);
// Don't show children(null) if we have a default namespace defined
if ( $has_default_namespace && $ns_uri === null )
{
$children = array();
}
// If things are in the current namespace, display them a bit differently
$is_current_namespace = ( $ns_uri == $item_ns_uri );
$force_attribute_namespace = ($ns_uri === null && $item_ns_uri !== null);
$ns_uri_quoted = (strlen($ns_uri) == 0 ? 'null' : "'$ns_uri'");
if ( count($attributes) > 0 )
{
if ( ! $is_current_namespace || $force_attribute_namespace )
{
$dump .= str_repeat($indent, $depth)
. "->attributes($ns_uri_quoted)" . PHP_EOL;
}
foreach ( $attributes as $sx_attribute )
{
// Output the attribute
if ( $is_current_namespace && ! $force_attribute_namespace )
{
// In current namespace
// e.g. ['attribName']
$dump .= str_repeat($indent, $depth)
. "['" . $sx_attribute->getName() . "']"
. PHP_EOL;
$string_display_depth = $depth+1;
}
else
{
// After a call to ->attributes()
// e.g. ->attribName
$dump .= str_repeat($indent, $depth+1)
. '->' . $sx_attribute->getName()
. PHP_EOL;
$string_display_depth = $depth+2;
}
if ( $include_string_content )
{
// Show a chunk of the beginning of the content string, collapsing whitespace HTML-style
$string_content = (string)$sx_attribute;
$string_extract = preg_replace('/\s+/', ' ', trim($string_content));
if ( strlen($string_extract) > $content_extract_size )
{
$string_extract = substr($string_extract, 0, $content_extract_size)
. '...';
}
$dump .= str_repeat($indent, $string_display_depth)
. '(string) '
. "'$string_extract'"
. ' (' . strlen($string_content) . ' chars)'
. PHP_EOL;
}
}
}
if ( count($children) > 0 )
{
if ( $is_current_namespace )
{
$display_depth = $depth;
}
else
{
$dump .= str_repeat($indent, $depth)
. "->children($ns_uri_quoted)" . PHP_EOL;
$display_depth = $depth + 1;
}
// Recurse through the children with headers showing how to access them
$child_names = array();
foreach ( $children as $sx_child )
{
// Below is a rather clunky way of saying $child_names[ $sx_child->getName() ]++;
// which avoids Notices about unset array keys
$child_node_name = $sx_child->getName();
if ( array_key_exists($child_node_name, $child_names) )
{
$child_names[$child_node_name]++;
}
else
{
$child_names[$child_node_name] = 1;
}
// e.g. ->Foo[0]
$dump .= str_repeat($indent, $display_depth)
. '->' . $sx_child->getName()
. '[' . ($child_names[$child_node_name]-1) . ']'
. PHP_EOL;
$dump .= _simplexml_tree_recursively_process_node(
$sx_child, $display_depth+1,
$include_string_content, $indent, $content_extract_size
);
}
}
}
return $dump;
}