forked from francisco-monserrat/tree2set
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tree2set.pl
executable file
·165 lines (144 loc) · 3.98 KB
/
tree2set.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
#!/usr/bin/perl -w
#
# Conversor de configuraciones de Juniper de forma arbolea a lineas "SET"
#
# FJMC 2011/08/31
use strict ;
use Getopt::Long;
my $PROGRAM_NAME="tree2set.pl" ;
my $version =2 ;
my $debug= 0 ;
my $help ;
my $ver ;
my $annotate =0 ;
my $nocom = 0 ;
sub debug {
my $i ;
if ($debug) {
foreach $i (@_) { print STDERR "DEBUG:$i" ; }
}
}
sub usage {
print "$PROGRAM_NAME $version < configuracion_JunOS\n\n" ;
print "Convierte una configuración \"normal/arborea\" de JunOS en formato set\n" ;
print "--help|ayuda : Muestra esta informacion\n" ;
print "--version : Version del programa\n";
print "--debug : modo de depuración\n" ;
print "--nocom : Quita los comentarios /*...*/ de las lineas set\n" ;
print "--annotate : Quita los comentarios /*...*/ de las lineas set y pone al final el texto la secuencia de comandos\n" ;
exit 0 ;
}
sub version {
print "$PROGRAM_NAME $version\n" ; exit ;
}
my $res= GetOptions (
"ayuda|help" =>\$help ,
"version" => \$ver ,
"debug!" => \$debug,
"annotate" =>\$annotate,
"nocom" => \$nocom
) ;
if ($help) { usage() ; }
if ($ver) { version() ; }
sub remove_somments {
my $linea = $_[0] ;
if (( $nocom ==1) || ($annotate) ==1) {
debug "linea antes $linea" ;
$linea =~ /(.*)\/\*.*\*\/(.*)/$1$2/ ;
debug "linea despues $linea" ;
}
return ($linea) ;
}
my @tokens ;
my @pila ;
my $comment="" ;
my $texto="" ;
my $sucio=0 ;
my $intxt=0 ;
my $txt ;
my $com_mode ;
my $ntc ;
push @pila, "0" ;
while (my $linea= <STDIN>) {
chomp $linea ;
$com_mode = 0 ;
$ntc=0 ;
debug "Parting linea : $linea\n" ;
debug "estado : num elemntos " . scalar @tokens . " , tokens = @tokens, pila=@pila\n" ;
my @tmp = split /\s+/, $linea ;
for (my $tk =0 ; $tk !=@tmp ; $tk ++) {
next if ($com_mode ==1) ;
my $tok = $tmp[$tk] ;
next if (($tok =~ /\s+/ ) || ($tok eq "")) ;
if ($tok eq "{") {
next if ($com_mode ==1) ;
my $num = @tokens ;
# elsif ( ($linea =~ /\s+family\s+iso\s+\{/) || ($linea =~ /\s+family\s+ine.*\s\{/) ) { $num=$num-1 ; }
push @pila, $num ;
debug "Found { apilado $num tokens = @tokens \n" ;
next ;
}
elsif ($tok =~ /.*;/) {
next if ($com_mode ==1) ;
debug "Found ;\n" ;
$tok =~ s/;//g ;
if ($intxt==1) { $tok = $txt . $tok ; $intxt=0 ; $txt="" ; }
push @tokens, $tok ;
$texto= "set " ;
for (my $j=0 ; $j != @tokens ; $j++ ) { $texto .= $tokens[$j] . " " ;}
$sucio =0 ;
print remove_comments ($texto) . "\n" ;
# Limpiamos la pila
my $l= @pila ;
my $num=0 ;
if ($l > 0 ) { $num = pop @pila ; push @pila, $num ; } else {$num=0 ; }
my $numelem= @tokens ;
for (my $j = $numelem ; $j!= $num ; $j-- ) { my $nada= pop @tokens ; }
debug "Estado: tokens= @tokens, pila=@pila \n";
$ntc=1 ;
next ;
}
elsif ($tok eq "}") {
next if ($com_mode ==1) ;
my $num= pop @pila ;
if ($sucio == 1) {
$texto="(sucio)set " ;
for (my $j=0 ; $j != @tokens ; $j++ ) { $texto .= $tokens[$j] . " " ;}
debug "$texto\n" ;
}
$sucio=0 ;
# my $numelem= @tokens ;
# for (my $j = $numelem+1 ; $j!= $num ; $j-- ) { my $nada= pop @tokens ; }
# $numelem = @tokens ;
my $numelem = pop @pila ;
push @pila, $numelem ;
while ( scalar (@tokens) > $numelem ) { my $nada= pop @tokens ; }
debug "found } nuevo nivel = " . scalar @tokens . ", tokens =@tokens, pila =@pila\n" ;
next ;
}
elsif ( $tok =~ /#/) {
debug "comentario \n" ;
$com_mode=1 ;
next ;
}
elsif ( $tok =~ /.*".*/) {
next if ($com_mode == 1) ;
# descripciones, etc
debug "Econtrado texto, intxt=$intxt\n" ;
$txt .= $tok ;
if ($intxt=="0") { $intxt=1 ; }
else { $intxt=0 ; push @tokens, $txt ; $txt="" ;}
next ;
}
else {
if ($com_mode != 1 ) {
if ($intxt==0 ) {
push @tokens, $tok ;
my $numelem= @tokens ;
debug "Apilamos token $tok , num elementos= $numelem tokens = @tokens , pila = @pila\n" ;
}
else { $txt.= $tok ;}
}
}
}
}