]> git.openstreetmap.org Git - rails.git/commitdiff
Don't use Data::Walk and instead construct a flattened list of hash
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Mon, 22 Jun 2009 16:05:28 +0000 (16:05 +0000)
committerÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Mon, 22 Jun 2009 16:05:28 +0000 (16:05 +0000)
values using a custom recursive walker (stolen from yaml2po).

This makes reading the output a whole lot easier.

script/locale/diff

index 1bb07d8189905ce00290a294376a32df67fa7b50..d38f1c505167a023e2357a69b8479b22b4f6dd99 100755 (executable)
@@ -2,7 +2,6 @@
 use strict;
 use warnings;
 use YAML::Syck qw(LoadFile);
-use Data::Walk;
 use Test::Differences;
 use Pod::Usage ();
 use Getopt::Long ();
@@ -57,31 +56,46 @@ my ($from, $to) = @ARGV;
 my $from_data = LoadFile($from);
 my $to_data   = LoadFile($to);
 
-# Normalize the two to have the same root element
-my ($from_key) = keys %$from_data;
-$from_data = $from_data->{$from_key};
-
-my ($to_key) = keys %$to_data;
-$to_data = $to_data->{$to_key};
+my $from_parsed = { iterate($from_data->{basename($from)}) };
+my $to_parsed = { iterate($to_data->{basename($to)}) };
 
 # Delete hash values
-walkdepth \&delete_hash_values, $_ for $from_data, $to_data;
+#walkdepth \&delete_hash_values, $_ for $from_data, $to_data;
 
 # Hack around Test::Differences wanting a Test::* module loaded
 $INC{"Test.pm"} = 1;
 sub Test::ok { print shift }
 
 # Diff the tree
-eq_or_diff($from_data, $to_data);
+eq_or_diff([ sort keys %$from_parsed ], [ sort keys %$to_parsed ]);
 
-sub delete_hash_values
-{
-    return unless defined $Data::Walk::type and $Data::Walk::type eq 'HASH';
+exit 0;
 
-    # We totally need Perl 6's $OUTER::_ to make this prettier
-    my $hash = $_;
+sub iterate
+{
+    my ($hash, @path) = @_;
+    my @ret;
+        
+    while (my ($k, $v) = each %$hash)
+    {
+        if (ref $v eq 'HASH')
+        {
+             push @ret => iterate($v, @path, $k);
+        }
+        else
+        {
+            push @ret => join(".",@path, $k), $v;
+        }
+    }
+
+    return @ret;
+}
 
-    @$hash{grep { not ref $hash->{$_} } keys %$hash} = ();
+sub basename
+{
+    my $name = shift;
+    $name =~ s[\..*?$][];
+    $name;
 }
 
 sub help