Blame SOURCES/xml2lst.pl

a67d56
#!/usr/bin/perl
a67d56
a67d56
# converts the <rules>.xml file to the old format <rules>.lst file
a67d56
#
a67d56
# Usage:
a67d56
#
a67d56
# perl xml2lst.pl < filename.xml > filename.lst
a67d56
#
a67d56
# author Ivan Pascal
a67d56
# modified by Vitezslav Crhonek
a67d56
a67d56
$doc = new_document( 0, '');
a67d56
parse('', $doc);
a67d56
a67d56
($reg)   = node_by_name($doc, '/xkbConfigRegistry');
a67d56
@models  = node_by_name($reg, 'modelList/model/configItem');
a67d56
@layouts = node_by_name($reg, 'layoutList/layout/configItem');
a67d56
@options = node_by_name($reg, 'optionList/group/configItem');
a67d56
a67d56
for $i (@layouts) {
a67d56
   ($name) = node_by_name($i, 'name');
a67d56
   @variants = node_by_name($i, '../variantList/variant/configItem');
a67d56
   for $v (@variants) {
a67d56
      ($variant) = node_by_name($v, 'name');
a67d56
      printf("%s %s\n", text_child($name), text_child($variant));
a67d56
   }
a67d56
}
a67d56
a67d56
sub with_attribute {
a67d56
    local ($nodelist, $attrexpr) = @_;
a67d56
    local ($attr, $value) = split (/=/, $attrexpr);
a67d56
    local ($node, $attrvalue);
a67d56
    if (defined $value && $value ne '') {
a67d56
        $value =~ s/"//g;
a67d56
        foreach $node (@{$nodelist}) {
a67d56
           $attrvalue = node_attribute($node, $attr); 
a67d56
           if (defined $attrvalue && $attrvalue eq $value) {
a67d56
               return $node;
a67d56
           }
a67d56
        }
a67d56
    } else {
a67d56
        foreach $node (@{$nodelist}) {
a67d56
           if (! defined node_attribute($node, $attr)) {
a67d56
               return $node;
a67d56
           }
a67d56
        }
a67d56
    }
a67d56
    undef;
a67d56
}
a67d56
a67d56
# Subroutines
a67d56
a67d56
sub parse {
a67d56
   local $intag = 0;
a67d56
   my (@node_stack, $parent);
a67d56
   $parent = @_[1];
a67d56
   local ($tag, $text);
a67d56
a67d56
   while (<>) {
a67d56
      chomp;
a67d56
      @str = split /([<>])/;
a67d56
      shift @str if ($str[0] eq '' || $str[0] =~ /^[ \t]*$/);
a67d56
a67d56
      while (scalar @str) {
a67d56
         $token = shift @str;
a67d56
         if ($token eq '<') {
a67d56
            $intag = 1;
a67d56
            if (defined $text) {
a67d56
               add_text_node($parent, $text);
a67d56
               undef $text;
a67d56
            }
a67d56
         } elsif ($token eq '>') {
a67d56
            $intag = 0;
a67d56
            if ($tag =~ /^\/(.*)/) { # close tag
a67d56
               $parent = pop @node_stack;
a67d56
            } elsif ($tag =~ /^([^\/]*)\/$/) {
a67d56
               empty_tag($parent, $1);
a67d56
            } else {
a67d56
               if (defined ($node = open_tag($parent, $tag))) {
a67d56
                  push @node_stack, $parent;
a67d56
                  $parent = $node;
a67d56
               }
a67d56
            }
a67d56
            undef $tag;
a67d56
         } else {
a67d56
            if ($intag == 1) {
a67d56
               if (defined $tag) {
a67d56
                  $tag .= ' '. $token;
a67d56
               } else {
a67d56
                  $tag = $token;
a67d56
               }
a67d56
            } else {
a67d56
               if (defined $text) {
a67d56
                  $text .= "\n" . $token;
a67d56
               } else {
a67d56
                  $text = $token;
a67d56
               }
a67d56
            }
a67d56
         }
a67d56
      }
a67d56
   }
a67d56
}
a67d56
a67d56
sub new_document {
a67d56
   $doc = new_node( 0, '', 'DOCUMENT');
a67d56
   $doc->{CHILDREN} = [];
a67d56
   return $doc;
a67d56
}
a67d56
a67d56
sub new_node {
a67d56
  local ($parent_node, $tag, $type) = @_;
a67d56
a67d56
  my %node;
a67d56
  $node{PARENT} = $parent_node;
a67d56
  $node{TYPE} = $type;
a67d56
a67d56
  if ($type eq 'COMMENT' || $type eq 'TEXT') {
a67d56
     $node{TEXT} = $tag;
a67d56
     $node{NAME} = $type;
a67d56
     return \%node;
a67d56
  }
a67d56
a67d56
  local ($tname, $attr) = split(' ', $tag, 2);
a67d56
  $node{NAME} = $tname;
a67d56
a67d56
  if (defined $attr && $attr ne '') {
a67d56
     my %attr_table;
a67d56
     local @attr_list = split ( /"/, $attr);
a67d56
     local ($name, $value);
a67d56
     while (scalar @attr_list) {
a67d56
        $name = shift @attr_list;
a67d56
        $name =~ s/[ =]//g;
a67d56
        next if ($name eq '');
a67d56
        $value =  shift @attr_list;
a67d56
        $attr_table{$name} =$value;
a67d56
     }
a67d56
     $node{ATTRIBUTES} = \%attr_table;
a67d56
  }
a67d56
  return \%node;
a67d56
}
a67d56
a67d56
sub add_node {
a67d56
  local ($parent_node, $node) = @_;
a67d56
  push @{$parent_node->{CHILDREN}}, $node;
a67d56
a67d56
  local $tname = $node->{NAME};
a67d56
  if (defined $parent_node->{$tname}) {
a67d56
      push @{$parent_node->{$tname}}, $node
a67d56
  } else {
a67d56
      $parent_node->{$tname} = [ $node ];
a67d56
  }
a67d56
}
a67d56
a67d56
sub empty_tag {
a67d56
   local ($parent_node, $tag) = @_;
a67d56
   local $node = new_node($parent_node, $tag, 'EMPTY');
a67d56
   add_node($parent_node, $node);
a67d56
}
a67d56
a67d56
sub open_tag {
a67d56
   local ($parent_node, $tag) = @_;
a67d56
   local $node;
a67d56
a67d56
   if ($tag =~ /^\?.*/ || $tag =~ /^\!.*/) {
a67d56
      $node = new_node($parent_node, $tag, 'COMMENT');
a67d56
      add_node($parent_node, $node);
a67d56
      undef; return;
a67d56
   } else {
a67d56
      $node = new_node($parent_node, $tag, 'NODE');
a67d56
      $node->{CHILDREN} = [];
a67d56
      add_node($parent_node, $node);
a67d56
      return $node;
a67d56
   }
a67d56
}
a67d56
a67d56
sub add_text_node {
a67d56
   local ($parent_node, $text) = @_;
a67d56
   local $node = new_node($parent_node, $text, 'TEXT');
a67d56
   add_node($parent_node, $node);
a67d56
}
a67d56
a67d56
sub node_by_name {
a67d56
   local ($node, $name) = @_;
a67d56
   local ($tagname, $path) = split(/\//, $name, 2);
a67d56
a67d56
   my @nodelist;
a67d56
a67d56
   if ($tagname eq '') {
a67d56
      while ($node->{PARENT} != 0) {
a67d56
         $node = $node->{PARENT};
a67d56
      }
a67d56
      sublist_by_name($node, $path, \@nodelist);
a67d56
   } else {
a67d56
      sublist_by_name($node, $name, \@nodelist);
a67d56
   }
a67d56
   return @nodelist;
a67d56
}
a67d56
a67d56
sub sublist_by_name {
a67d56
   local ($node, $name, $res) = @_;
a67d56
   local ($tagname, $path) = split(/\//, $name, 2);
a67d56
a67d56
   if (! defined $path) {
a67d56
       push @{$res}, (@{$node->{$tagname}});
a67d56
       return;
a67d56
   }
a67d56
a67d56
   if ($tagname eq '..' && $node->{PARENT} != 0) {
a67d56
      $node = $node->{PARENT};
a67d56
      sublist_by_name($node, $path, $res);
a67d56
   } else {
a67d56
      local $n;
a67d56
      for $n (@{$node->{$tagname}}) {
a67d56
         sublist_by_name($n, $path, $res);
a67d56
      }
a67d56
   }
a67d56
}
a67d56
a67d56
sub node_attribute {
a67d56
    local $node = @_[0];
a67d56
    if (defined $node->{ATTRIBUTES}) {
a67d56
       return $node->{ATTRIBUTES}{@_[1]};
a67d56
    }
a67d56
    undef;
a67d56
}
a67d56
a67d56
sub text_child {
a67d56
    local ($node) = @_;
a67d56
    local ($child) = node_by_name($node, 'TEXT');
a67d56
    return $child->{TEXT};
a67d56
}