extract.pl
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:5k
源码类别:

网络

开发平台:

Unix_Linux

  1. #! /usr/bin/perl
  2. ##
  3. ## Virtual terminal interface shell command extractor.
  4. ## Copyright (C) 2000 Kunihiro Ishiguro
  5. ## 
  6. ## This file is part of GNU Zebra.
  7. ## 
  8. ## GNU Zebra is free software; you can redistribute it and/or modify it
  9. ## under the terms of the GNU General Public License as published by the
  10. ## Free Software Foundation; either version 2, or (at your option) any
  11. ## later version.
  12. ## 
  13. ## GNU Zebra is distributed in the hope that it will be useful, but
  14. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16. ## General Public License for more details.
  17. ## 
  18. ## You should have received a copy of the GNU General Public License
  19. ## along with GNU Zebra; see the file COPYING.  If not, write to the Free
  20. ## Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  21. ## 02111-1307, USA.  
  22. ##
  23. print <<EOF;
  24. #include <zebra.h>
  25. #include "command.h"
  26. #include "vtysh.h"
  27. EOF
  28. $ignore{'"interface IFNAME"'} = "ignore";
  29. $ignore{'"ip vrf NAME"'} = "ignore";
  30. $ignore{'"router rip"'} = "ignore";
  31. $ignore{'"router ripng"'} = "ignore";
  32. $ignore{'"router ospf"'} = "ignore";
  33. $ignore{'"router ospf <0-65535>"'} = "ignore";
  34. $ignore{'"router ospf6"'} = "ignore";
  35. $ignore{'"router bgp <1-65535>"'} = "ignore";
  36. $ignore{'"router bgp <1-65535> view WORD"'} = "ignore";
  37. $ignore{'"address-family ipv4"'} = "ignore";
  38. $ignore{'"address-family ipv4 (unicast|multicast)"'} = "ignore";
  39. $ignore{'"address-family ipv6"'} = "ignore";
  40. $ignore{'"address-family ipv6 unicast"'} = "ignore";
  41. $ignore{'"address-family vpnv4"'} = "ignore";
  42. $ignore{'"address-family vpnv4 unicast"'} = "ignore";
  43. $ignore{'"address-family ipv4 vrf NAME"'} = "ignore";
  44. $ignore{'"exit-address-family"'} = "ignore";
  45. $ignore{'"key chain WORD"'} = "ignore";
  46. $ignore{'"key <0-2147483647>"'} = "ignore";
  47. $ignore{'"route-map WORD (deny|permit) <1-65535>"'} = "ignore";
  48. $ignore{'"show route-map"'} = "ignore";
  49. foreach (@ARGV) {
  50.     $file = $_;
  51.     open (FH, "cpp -DHAVE_CONFIG_H -DVTYSH_EXTRACT_PL -I. -I.. -I../lib $file |");
  52.     local $/; undef $/;
  53.     $line = <FH>;
  54.     close (FH);
  55.     @defun = ($line =~ /(?:DEFUN|ALIAS)s*((.+?));?s?s?n/sg);
  56.     @install = ($line =~ /install_element (s*[0-9A-Z_]+,s*&[^;]*;s*n/sg);
  57.     # DEFUN process
  58.     foreach (@defun) {
  59. my (@defun_array);
  60. @defun_array = split (/,/);
  61. $defun_array[0] = '';
  62. # Actual input command string.
  63. $str = "$defun_array[2]";
  64. $str =~ s/^s+//g;
  65. $str =~ s/s+$//g;
  66. # Get VTY command structure.  This is needed for searching
  67. # install_element() command.
  68. $cmd = "$defun_array[1]";
  69. $cmd =~ s/^s+//g;
  70. $cmd =~ s/s+$//g;
  71.         # $protocol is VTYSH_PROTO format for redirection of user input
  72.      if ($file =~ /lib/) {
  73.            if ($file =~ /keychain.c/) {
  74.               $protocol = "VTYSH_RIPD";
  75.            }
  76.            if ($file =~ /routemap.c/) {
  77.               $protocol = "VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD";
  78.            }
  79.            if ($file =~ /filter.c/) {
  80.               if ($defun_array[1] =~ m/ipv6/) {
  81.                  $protocol = "VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD";
  82.       } else {
  83.                  $protocol = "VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD";
  84.               }
  85.            }
  86.            if ($file =~ /plist.c/) {
  87.       if ($defun_array[1] =~ m/ipv6/) {
  88.                  $protocol = "VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD";
  89.               } else {
  90.                  $protocol = "VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD";
  91.               }
  92.            }
  93.            if ($file =~ /distribute.c/) {
  94.               if ($defun_array[1] =~ m/ipv6/) {
  95.                  $protocol = "VTYSH_RIPNGD";
  96.               } else {
  97.                  $protocol = "VTYSH_RIPD";
  98.               }
  99.            }
  100.         } else {
  101.            ($protocol) = ($file =~ //([a-z0-9]+)/);
  102.            $protocol = "VTYSH_" . uc $protocol;
  103.         }
  104. # Append _vtysh to structure then build DEFUN again
  105. $defun_array[1] = $cmd . "_vtysh";
  106. $defun_body = join (", ", @defun_array);
  107. # $cmd -> $str hash for lookup
  108. $cmd2str{$cmd} = $str;
  109. $cmd2defun{$cmd} = $defun_body;
  110. $cmd2proto{$cmd} = $protocol;
  111.     }
  112.     # install_element() process
  113.     foreach (@install) {
  114. my (@element_array);
  115. @element_array = split (/,/);
  116. # Install node
  117. $enode = $element_array[0];
  118. $enode =~ s/^s+//g;
  119. $enode =~ s/s+$//g;
  120. ($enode) = ($enode =~ /([0-9A-Z_]+)$/);
  121. # VTY command structure.
  122. ($ecmd) = ($element_array[1] =~ /&([^)]+)/);
  123. $ecmd =~ s/^s+//g;
  124. $ecmd =~ s/s+$//g;
  125. # Register $ecmd
  126. if (defined ($cmd2str{$ecmd})
  127.     && ! defined ($ignore{$cmd2str{$ecmd}})) {
  128.     my ($key);
  129.     $key = $enode . "," . $cmd2str{$ecmd};
  130.     $ocmd{$key} = $ecmd;
  131.     $odefun{$key} = $cmd2defun{$ecmd};
  132.     push (@{$oproto{$key}}, $cmd2proto{$ecmd});
  133. }
  134.     }
  135. }
  136. # Check finaly alive $cmd;
  137. foreach (keys %odefun) {
  138.     my ($node, $str) = (split (/,/));
  139.     my ($cmd) = $ocmd{$_};
  140.     $live{$cmd} = $_;
  141. }
  142. # Output DEFSH
  143. foreach (keys %live) {
  144.     my ($proto);
  145.     my ($key);
  146.     $key = $live{$_};
  147.     $proto = join ("|", @{$oproto{$key}});
  148.     printf "DEFSH ($proto$odefun{$key})nn";
  149. }
  150. # Output install_element
  151. print <<EOF;
  152. void
  153. vtysh_init_cmd ()
  154. {
  155. EOF
  156. foreach (keys %odefun) {
  157.     my ($node, $str) = (split (/,/));
  158.     $cmd = $ocmd{$_};
  159.     $cmd =~ s/_cmd/_cmd_vtysh/;
  160.     printf "  install_element ($node, &$cmd);n";
  161. }
  162. print <<EOF
  163. }
  164. EOF