blob: 6d5030888010ac5c68071073eda7add1c10d31e1 (
plain)
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
|
#!/usr/bin/perl
# Author: Arthur Xiong
# Date: 06/21/2010
# Description: Script to generate Vyatta command help strings from
# template files
# **** License ****
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# This code was originally developed by Vyatta, Inc.
# Portions created by Vyatta are Copyright (C) 2006-2010 Vyatta, Inc.
# All Rights Reserved.
#
# **** End License ****
use strict;
use warnings;
use File::Find;
my @command_line;
my $cfgdir;
my $feature_name="";
#
sub get_parameter {
open my $nd, '<', $_ or die "$_ can't be opened";
my $help_string = "";
while (<$nd>) {
next unless /^help:\s*(\S.*)$/;
$help_string .= "\|$1" if /^help:\s*(\S.*)$/;
last;
}
close $nd;
return $help_string;
}
#
# Generate command with parameter
#
sub wanted {
return unless ( $_ eq 'node.def' );
my $parameter = get_parameter($File::Find::name);
my $dir = $File::Find::dir;
return if $dir =~ /^.*\/\.\S(|-)\S*\/?.*$/;
if ( $feature_name ne "" ) {
return unless $dir =~ /^.*\/$feature_name(|\/.*)$/;
}
$dir =~ s/^.*\/(|\S*\-)(templates)(|\-(cfg|op))\///;
# $dir =~ s/\// /g;
$dir .= " " . $parameter . "\n";
push @command_line, $dir;
return 1;
}
# main program
die "Usage: helpstring.pl <path-to-template> [<feature-name>]"
unless $#ARGV == 0 or $#ARGV == 1;
$cfgdir = $ARGV[0];
$feature_name = $ARGV[1] if $#ARGV == 1;
die "$cfgdir does not exist!" unless -d $cfgdir;
# walk template file tree
find( \&wanted, $cfgdir );
print @command_line;
|