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
|
package Entity;
use strict;
use warnings;
use XML::Parser;
use Data::Dumper;
use File::Find;
my $vfsroot = '../../../binaries/data/mods';
sub get_filename
{
my ($vfspath) = @_;
my $fn = "$vfsroot/public/simulation/templates/$vfspath.xml";
return $fn;
}
sub get_file
{
my ($vfspath) = @_;
my $fn = get_filename($vfspath);
open my $f, $fn or die "Error loading $fn: $!";
local $/;
return <$f>;
}
sub trim
{
my ($t) = @_;
return '' if not defined $t;
$t =~ /^\s*(.*?)\s*$/s;
return $1;
}
sub load_xml
{
my ($vfspath, $file) = @_;
my $root = {};
my @stack = ($root);
my $p = new XML::Parser(Handlers => {
Start => sub {
my ($e, $n, %a) = @_;
my $t = {};
die "Duplicate child node '$n'" if exists $stack[-1]{$n};
$stack[-1]{$n} = $t;
for (keys %a) {
$t->{'@'.$_}{' content'} = trim($a{$_});
}
push @stack, $t;
},
End => sub {
my ($e, $n) = @_;
$stack[-1]{' content'} = trim($stack[-1]{' content'});
pop @stack;
},
Char => sub {
my ($e, $str) = @_;
$stack[-1]{' content'} .= $str;
},
});
eval {
$p->parse($file);
};
if ($@) {
die "Error parsing $vfspath: $@";
}
return $root;
}
sub apply_layer
{
my ($base, $new) = @_;
if ($new->{'@datatype'} and $new->{'@datatype'}{' content'} eq 'tokens') {
my @old = split /\s+/, ($base->{' content'} || '');
my @new = split /\s+/, ($new->{' content'} || '');
my @t = @old;
for my $n (@new) {
if ($n =~ /^-(.*)/) {
@t = grep $_ ne $1, @t;
} else {
push @t, $n if not grep $_ eq $n, @t;
}
}
$base->{' content'} = join ' ', @t;
} else {
$base->{' content'} = $new->{' content'};
}
for my $k (grep $_ ne ' content', keys %$new) {
if ($new->{$k}{'@disable'}) {
delete $base->{$k};
} else {
if ($new->{$k}{'@replace'}) {
delete $base->{$k};
}
$base->{$k} ||= {};
apply_layer($base->{$k}, $new->{$k});
delete $base->{$k}{'@replace'};
}
}
}
sub load_inherited
{
my ($vfspath) = @_;
my $layer = load_xml($vfspath, get_file($vfspath));
if ($layer->{Entity}{'@parent'}) {
my $parent = load_inherited($layer->{Entity}{'@parent'}{' content'});
apply_layer($parent->{Entity}, $layer->{Entity});
return $parent;
} else {
return $layer;
}
}
sub find_entities
{
my @files;
my $find_process = sub {
return $File::Find::prune = 1 if $_ eq '.svn';
my $n = $File::Find::name;
return if /~$/;
return unless -f $_;
$n =~ s~\Q$vfsroot\E/public/simulation/templates/~~;
$n =~ s/\.xml$//;
push @files, $n;
};
find({ wanted => $find_process }, "$vfsroot/public/simulation/templates");
return @files;
}
|