forked from OpenSCAP/openscap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xmldiff.pl
executable file
·590 lines (474 loc) · 15.9 KB
/
xmldiff.pl
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
#!/usr/bin/perl -w
#
# This is a modification of XML-SemanticDiff
# ------------------------------------------
#
# Semantically compare two XML files for equivalence. This is done while
# ignoring whitespace variations in the text as well as several
# permutations in the order of the tags.
#
# For original XML-SemanticDiff please see:
#
# Search CPAN
# http://search.cpan.org/dist/XML-SemanticDiff
#
# CPAN Request Tracker:
# http://rt.cpan.org/NoAuth/Bugs.html?Dist=XML-SemanticDiff
#
# AnnoCPAN, annotated CPAN documentation:
# http://annocpan.org/dist/XML-SemanticDiff
#
# CPAN Ratings:
# http://cpanratings.perl.org/d/XML-SemanticDiff
#
# COPYRIGHT AND LICENCE
#
# Copyright (c) 2000 Kip Hampton. All rights reserved. This program is
# free software; you can redistribute it and/or modify it under the same terms
# as Perl itself.
#
# openscap changes:
# 1) mpreisle - removed Digest::MD5 and Encode dependencies at the expense of performance
package SemanticDiff;
use strict;
use warnings;
use XML::Parser;
sub new {
my ($proto, %args) = @_;
my $class = ref($proto) || $proto;
my $self = \%args;
bless ($self, $class);
return $self;
}
sub _is_file
{
my ($self, $specifier) = @_;
return $specifier !~ /\n/g && -f $specifier;
}
sub _get_pathfinder_obj {
my $self = shift;
return SemanticDiff::PathFinder::Obj->new();
}
sub read_xml {
my $self = shift;
my ($xml_specifier) = @_;
if (ref($xml_specifier) eq 'HASH')
{
return $xml_specifier;
}
else
{
$self->{path_finder_obj} = $self->_get_pathfinder_obj();
my $p = XML::Parser->new(
Style => 'Stream',
Pkg => 'SemanticDiff::PathFinder',
'Non-Expat-Options' => $self,
Namespaces => 1
);
my $ret =
$self->_is_file($xml_specifier)
? $p->parsefile($xml_specifier)
: $p->parse($xml_specifier)
;
$self->{path_finder_obj} = undef;
return $ret;
}
}
sub _same_namespace
{
my ($self, $to, $from) = @_;
my $t_e = exists($to->{NamespaceURI});
my $f_e = exists($from->{NamespaceURI});
if (!$t_e && !$f_e)
{
return 1;
}
elsif ($t_e && $f_e)
{
return ($to->{NamespaceURI} eq $from->{NamespaceURI});
}
else
{
return 0;
}
}
sub _match_xpath {
my $self = shift;
my ($xpath, $flat_name) = @_;
my @x_way = split /\//, $xpath;
my @f_way = split /\//, $flat_name;
for my $i (0..$#x_way) {
$x_way[$i]=~s/.*?://g;
}
for my $i (0..$#f_way) {
$f_way[$i]=~s/\[.*?\]$//g;
}
return 0 if $#x_way > $#f_way;
for my $i (0..$#x_way) {
if ($x_way[$i] ne $f_way[$i]) {
return 0;
}
}
return 1;
}
sub compare {
my $self = shift;
my ($from_xml, $to_xml) = @_;
my $from_doc = $self->read_xml($from_xml);
my $to_doc = $self->read_xml($to_xml);
my @warnings = ();
my $handler = $self->{diffhandler} || SemanticDiff::BasicHandler->new(%$self);
if (defined $self->{ignorexpath}) {
my $ignore = $self->{ignorexpath};
for my $path (@$ignore) {
for my $ref ($from_doc, $to_doc) {
for my $key (keys %$ref) {
if ($self->_match_xpath($path, $key)) {
delete $ref->{$key};
}
}
}
}
}
push (@warnings, $handler->init($self)) if $handler->can('init');
foreach my $element (sort keys (%$from_doc)) {
if (defined $to_doc->{$element}) {
unless ($from_doc->{$element}->{TextChecksum} eq $to_doc->{$element}->{TextChecksum}) {
push (@warnings, $handler->element_value($element,
$to_doc->{$element},
$from_doc->{$element}))
if $handler->can('element_value');
}
unless ($self->_same_namespace($from_doc->{$element},$to_doc->{$element})) {
push (@warnings, $handler->namespace_uri($element,
$to_doc->{$element},
$from_doc->{$element}))
if $handler->can('namespace_uri');
}
foreach my $attr (keys(%{$from_doc->{$element}->{Attributes}})) {
if (defined ($to_doc->{$element}->{Attributes}->{$attr})) {
if ($to_doc->{$element}->{Attributes}->{$attr} ne $from_doc->{$element}->{Attributes}->{$attr}){
push (@warnings, $handler->attribute_value($attr,
$element,
$to_doc->{$element},
$from_doc->{$element}))
if $handler->can('attribute_value');
}
delete $to_doc->{$element}->{Attributes}->{$attr};
}
else {
push (@warnings, $handler->missing_attribute($attr,
$element,
$to_doc->{$element},
$from_doc->{$element}))
if $handler->can('missing_attribute');
}
}
foreach my $leftover (keys(%{$to_doc->{$element}->{Attributes}})) {
push (@warnings, $handler->rogue_attribute($leftover,
$element,
$to_doc->{$element},
$from_doc->{$element}))
if $handler->can('rogue_attribute');
}
delete $to_doc->{$element};
}
else {
push (@warnings, $handler->missing_element($element, $from_doc->{$element}))
if $handler->can('missing_element');
}
}
foreach my $leftover ( keys (%$to_doc) ) {
push (@warnings, $handler->rogue_element($leftover, $to_doc->{$leftover}))
if $handler->can('rogue_element');
}
push (@warnings, $handler->final($self)) if $handler->can('final');
return @warnings;
}
package SemanticDiff::BasicHandler;
use strict;
use warnings;
sub new {
my ($proto, %args) = @_;
my $class = ref($proto) || $proto;
my $self = \%args;
bless ($self, $class);
return $self;
}
sub rogue_element {
my $self = shift;
my ($element, $properties) = @_;
my ($element_name, $parent) = parent_and_name($element);
my $info = {context => $parent,
message => "Rogue element '$element_name' in element '$parent'."};
if ($self->{keeplinenums}) {
$info->{startline} = $properties->{TagStart};
$info->{endline} = $properties->{TagEnd};
}
if ($self->{keepdata}) {
$info->{new_value} = $properties->{CData};
}
return $info;
}
sub missing_element {
my $self = shift;
my ($element, $properties) = @_;
my ($element_name, $parent) = parent_and_name($element);
my $info = {context => $parent,
message => "Child element '$element_name' missing from element '$parent'."};
if ($self->{keeplinenums}) {
$info->{startline} = $properties->{TagStart};
$info->{endline} = $properties->{TagEnd};
}
if ($self->{keepdata}) {
$info->{old_value} = $properties->{CData};
}
return $info;
}
sub element_value {
my $self = shift;
my ($element, $new_properties, $old_properties) = @_;
my ($element_name, $parent) = parent_and_name($element);
my $info = {context => $element,
message => "Character differences in element '$element_name'."};
if ($self->{keeplinenums}) {
$info->{startline} = $new_properties->{TagStart};
$info->{endline} = $new_properties->{TagEnd};
}
if ($self->{keepdata}) {
$info->{old_value} = $old_properties->{CData};
$info->{new_value} = $new_properties->{CData};
}
return $info;
}
sub rogue_attribute {
my $self = shift;
my ($attr, $element, $properties) = @_;
my ($element_name, $parent) = parent_and_name($element);
my $info = {context => $element,
message => "Rogue attribute '$attr' in element '$element_name'."};
if ($self->{keeplinenums}) {
$info->{startline} = $properties->{TagStart};
$info->{endline} = $properties->{TagEnd};
}
if ($self->{keepdata}) {
$info->{new_value} = $properties->{Attributes}->{$attr};
}
return $info;
}
sub missing_attribute {
my $self = shift;
my ($attr, $element, $new_properties, $old_properties) = @_;
my ($element_name, $parent) = parent_and_name($element);
my $info = {context => $element,
message => "Attribute '$attr' missing from element '$element_name'."};
if ($self->{keeplinenums}) {
$info->{startline} = $new_properties->{TagStart};
$info->{endline} = $new_properties->{TagEnd};
}
if ($self->{keepdata}) {
$info->{old_value} = $old_properties->{Attributes}->{$attr};
}
return $info;
}
sub attribute_value {
my $self = shift;
my ($attr, $element, $new_properties, $old_properties) = @_;
my ($element_name, $parent) = parent_and_name($element);
my $info = {context => $element,
message => "Attribute '$attr' has different value in element '$element_name'."};
if ($self->{keeplinenums}) {
$info->{startline} = $new_properties->{TagStart};
$info->{endline} = $new_properties->{TagEnd};
}
if ($self->{keepdata}) {
$info->{old_value} = $old_properties->{Attributes}->{$attr};
$info->{new_value} = $new_properties->{Attributes}->{$attr};
}
return $info;
}
sub namespace_uri {
my $self = shift;
my ($element, $new_properties, $old_properties) = @_;
my ($element_name, $parent) = parent_and_name($element);
my $info = {context => $element,
message => "Element '$element_name' within different namespace."};
if ($self->{keeplinenums}) {
$info->{startline} = $new_properties->{TagStart};
$info->{endline} = $new_properties->{TagEnd};
}
if ($self->{keepdata}) {
$info->{old_value} = $old_properties->{NamspaceURI};
$info->{new_value} = $new_properties->{NamspaceURI};
}
return $info;
}
sub parent_and_name {
my $element = shift;
my @steps = split('/', $element);
my $element_name = pop (@steps);
my $parent = join '/', @steps;
$element_name =~ s/\[\d+\]$//;
return ($element_name, $parent);
}
package SemanticDiff::PathFinder;
foreach my $func (qw(StartTag EndTag Text StartDocument EndDocument PI))
{
no strict 'refs';
*{__PACKAGE__.'::'.$func} = sub {
my $expat = shift;
return $expat->{'Non-Expat-Options'}->{path_finder_obj}->$func(
$expat, @_
);
};
}
package SemanticDiff::PathFinder::Obj;
use strict;
foreach my $accessor (qw(descendents char_accumulator doc
opts xml_context PI_position_index))
{
no strict 'refs';
*{__PACKAGE__.'::'.$accessor} = sub {
my $self = shift;
if (@_)
{
$self->{$accessor} = shift;
}
return $self->{$accessor};
};
}
sub new {
my $class = shift;
my $self = {};
bless $self, $class;
$self->_init(@_);
return $self;
}
sub _init {
return 0;
}
sub StartTag {
my ($self, $expat, $element) = @_;
my %attrs = %_;
my @context = $expat->context;
my $context_length = scalar (@context);
my $parent = $context[$context_length -1];
push (@{$self->descendents()->{$parent}}, $element) if $parent;
my $last_ctx_elem = $self->xml_context()->[-1] || { position_index => {}};
push @{$self->xml_context()},
{
element => "$element",
'index' => ++$last_ctx_elem->{position_index}->{"$element"},
position_index => {},
};
my $test_context;
$test_context = $self->_calc_test_context();
$self->doc()->{$test_context} =
{
NamespaceURI => ($expat->namespace($element) || ""),
Attributes => \%attrs,
($self->opts()->{keeplinenums}
? ( TagStart => $expat->current_line)
: ()
),
};
}
sub _calc_test_context
{
my $self = shift;
return
join("",
map { "/". $_->{'element'} . "[" . $_->{'index'} . "]" }
@{$self->xml_context()}
);
}
sub EndTag {
my ($self, $expat, $element) = @_;
my @context = $expat->context;
my $test_context = $self->_calc_test_context();
my $text;
if ( defined( $self->char_accumulator()->{$element} )) {
$text = $self->char_accumulator()->{$element};
delete $self->char_accumulator()->{$element};
}
$text ||= 'o';
# The following used to set TextChecksum to md5_base64 of utf8 encoded $text
# for performance reasons. Since we don't care about performance so much
# and want to avoid dependencies we just compare text character by character.
$self->doc()->{"$test_context"}->{TextChecksum} = $text;
if ($self->opts()->{keepdata}) {
$self->doc()->{"$test_context"}->{CData} = $text;
}
if (defined ( $self->descendents()->{$element})) {
my $seen = {};
foreach my $child (@{$self->descendents()->{$element}}) {
next if $seen->{$child};
$seen->{$child}++;
}
}
$self->doc()->{"$test_context"}->{TagEnd} = $expat->current_line if $self->opts()->{keeplinenums};
pop(@{$self->xml_context()});
}
sub Text {
my $self = shift;
my $expat = shift;
my $element = $expat->current_element;
my $char = $_;
$char =~ s/^\s*//;
$char =~ s/\s*$//;
$char =~ s/\s+/ /g;
$self->char_accumulator()->{$element} .= $char if $char;
}
sub StartDocument {
my $self = shift;
my $expat = shift;
$self->doc({});
$self->descendents({});
$self->char_accumulator({});
$self->opts($expat->{'Non-Expat-Options'});
$self->xml_context([]);
$self->PI_position_index({});
}
sub EndDocument {
my $self = shift;
return $self->doc();
}
sub PI {
my ($self, $expat, $target, $data) = @_;
my $attrs = {};
$self->PI_position_index()->{$target}++;
foreach my $pair (split /\s+/, $data) {
$attrs->{$1} = $2 if $pair =~ /^(.+?)=["'](.+?)["']$/;
}
my $slug = '?' . $target . '[' . $self->PI_position_index()->{$target} . ']';
$self->doc()->{$slug} =
{
Attributes => ($attrs || {}),
TextChecksum => "1",
NamespaceURI => "",
( $self->opts()->{keeplinenums}
? (
TagStart => $expat->current_line(),
TagEnd => $expat->current_line(),
)
: ()
),
};
}
1;
sub usage {
die "usage: $0 one.xml two.xml \n";
}
use strict;
my $diff = SemanticDiff->new(keeplinenums => 1);
my ($file1, $file2) = @ARGV;
usage() unless defined $file1 and defined $file2;
my $ret_val = 2;
eval {
my @diffs = $diff->compare($file1, $file2);
foreach my $change (@diffs) {
print STDERR "$change->{message} ($change->{startline} <> $change->{endline})\n";
}
$ret_val = (scalar @diffs) == 0 ? 0 : 1;
}; warn $@ if $@;
exit $ret_val;