tasty changes for going live
[feisty_meow.git] / scripts / core / generate_aliases.pl
1 #!/usr/bin/perl
2
3 ##############
4 #
5 #  Name   : generate_aliases
6 #  Author : Chris Koeritz
7 #  Rights : Copyright (C) 1996-$now by Author
8 #
9 #  Purpose:
10 #
11 #    This script generates feisty meow script alias files.  Alias files
12 #  contain a list of definitions for command aliases that are written in the
13 #  specified shell dialect (such as bash or perl) and which are additionally
14 #  tailored for the operating system to be used.
15 #
16 ##############
17 #  This program is free software; you can redistribute it and/or modify it
18 #  under the terms of the GNU General Public License as published by the Free
19 #  Software Foundation; either version 2 of the License or (at your option)
20 #  any later version.  See: "http://www.gruntose.com/Info/GNU/GPL.html" for a
21 #  version of the License.  Please send any updates to "fred@gruntose.com".
22 ##############
23
24 require "filename_helper.pl";
25
26 use Env qw(FEISTY_MEOW_BINARIES BUILD_TOP FEISTY_MEOW_APEX FEISTY_MEOW_LOADING_DOCK FEISTY_MEOW_SCRIPTS DEBUG_FEISTY_MEOW );
27
28 # given a possible aliasable filename, this will decide whether to create a perl
29 # or bash alias for it.  it needs the filename of the possible alias and the
30 # directory where that file resides.
31 sub make_alias {
32   local($file, $dir) = @_;
33   if ($file =~ /\.[pP][lL]$/) { 
34     local($aliasname) = $file; $aliasname =~ s/\.[Pp][lL]$//;
35     &make_perl_alias($aliasname, "$dir");
36   } elsif ($file =~ /\.[sS][hH]$/) { 
37     local($aliasname) = $file; $aliasname =~ s/\.[Ss][Hh]$//;
38     &make_bash_alias($aliasname, "$dir");
39   }
40 }
41
42 # makes an alias for a bash script given the alias name.
43 sub make_bash_alias {
44   local($aliasname) = shift(@_);
45   local($full_alias) = $aliasname;
46   $aliasname =~ s/^.*\/([^\/]*)/\1/;
47 #print "alias became $aliasname\n";
48   local($source_dir) = shift(@_);
49 #print "bash alias is $aliasname, dir is $source_dir\n";
50   print she "define_yeti_alias $aliasname=\"bash $source_dir/$full_alias.sh\"\n";
51 }
52
53 # makes an alias for a perl script given the alias name.
54 sub make_perl_alias {
55   local($aliasname) = shift(@_);
56   local($full_alias) = $aliasname;
57   $aliasname =~ s/^.*\/([^\/]*)/\1/;
58 #print "alias became $aliasname\n";
59   local($source_dir) = shift(@_);
60 #print "perl alias is $aliasname, dir is $source_dir\n";
61   print she "define_yeti_alias $aliasname=\"perl $source_dir/$full_alias.pl\"\n";
62 }
63
64 ##############
65
66 # The "common.alias" file is used in the generated aliases file as a base
67 # set of generally useful aliases.  We also add aliases for any script files
68 # (perl, bash, python, etc) that we find in the feisty meow script hierarchy.
69 # Any *.alias files found in the $FEISTY_MEOW_LOADING_DOCK/custom folder are
70 # loaded also.
71 sub rebuild_script_aliases {
72
73   if (length($DEBUG_FEISTY_MEOW)) {
74     print "rebuilding generated aliases file...\n";
75   }
76
77   # create our generated shells directory if it's not already.
78   if ( ! -d $FEISTY_MEOW_LOADING_DOCK ) {
79     mkdir $FEISTY_MEOW_LOADING_DOCK;
80     if (length($DEBUG_FEISTY_MEOW)) {
81       print "made FEISTY_MEOW_LOADING_DOCK at '$FEISTY_MEOW_LOADING_DOCK'\n";
82     }
83   }
84
85   # test if we can use color in ls...
86 #  $test_color=` ls --help 2>&1 | grep -i color `;
87
88   # this is an array of files from which to draw alias definitions.
89   @ALIAS_DEFINITION_FILES = ("$FEISTY_MEOW_SCRIPTS/core/common.alias");
90
91   # if custom aliases files exist, add them to the list.
92   foreach $i (&glob_list("$FEISTY_MEOW_LOADING_DOCK/custom/*.alias")) {
93     if (-f $i) { push(@ALIAS_DEFINITION_FILES, $i); }
94   }
95   if (length($DEBUG_FEISTY_MEOW)) {
96     print "using these alias files:\n";
97     foreach $i (@ALIAS_DEFINITION_FILES) {
98       local $base_of_dir = &basename(&dirname($i));
99       local $basename = &basename($i);
100       print "  $base_of_dir/$basename\n";
101     }
102   }
103
104   # write the aliases for sh and bash scripts.
105
106   local $GENERATED_ALIAS_FILE = "$FEISTY_MEOW_LOADING_DOCK/fmc_core_and_custom_aliases.sh";
107   if (length($DEBUG_FEISTY_MEOW)) {
108     print "writing generated aliases in $GENERATED_ALIAS_FILE...\n";
109   }
110
111 #hmmm: perhaps a good place for a function to create the header,
112 #      given the appropriate comment code.
113
114   open GENOUT, ">$GENERATED_ALIAS_FILE" or die "cannot open $GENERATED_ALIAS_FILE";
115
116   print GENOUT "##\n";
117   print GENOUT "## generated file: $GENERATED_ALIAS_FILE\n";
118   print GENOUT "## please do not edit.\n";
119   print GENOUT "##\n";
120
121 #  if (length($test_color)) {
122 #    print GENOUT "export color_add='--color=auto'\n";
123 #  } else {
124 #    print GENOUT "export color_add=\n";
125 #  }
126
127   # plow in the full set of aliases into the file.
128   foreach $i (@ALIAS_DEFINITION_FILES) {
129     open CURR_ALIASER, "<$i" or die "cannot open current alias file $i";
130     foreach $line (<CURR_ALIASER>) {
131       print GENOUT "$line";
132     }
133   }
134
135   close GENOUT;
136
137   if (length($DEBUG_FEISTY_MEOW)) {
138     print("done rebuilding generated aliases file.\n");
139   }
140 }
141
142 ##############
143
144 # make sure we know where to store the files we're creating.
145 if ( ! length("$FEISTY_MEOW_LOADING_DOCK") ) {
146   print "\
147 The FEISTY_MEOW_LOADING_DOCK variable is not defined.  This must point to\
148 the location where the generated scripts are stored.  You may still need to\
149 configure the feisty meow script system with something like:\
150   bash /opt/feistymeow.org/feisty_meow/scripts/core/reconfigure_feisty_meow.sh\
151 Please see http://feistymeow.org for more details.\n";
152   exit 1;
153 #really need to use better exit codes.
154 }
155
156 $FEISTY_MEOW_LOADING_DOCK =~ s/\\/\//g;
157 $FEISTY_MEOW_SCRIPTS =~ s/\\/\//g;
158 $FEISTY_MEOW_APEX =~ s/\\/\//g;
159
160 # create our generated shells directory if it's not already there.
161 if (! -d $FEISTY_MEOW_LOADING_DOCK) {
162   mkdir $FEISTY_MEOW_LOADING_DOCK;
163 }
164
165 ##############
166
167 # set the executable bit for binaries for just this current user.
168 if (-d $FEISTY_MEOW_BINARIES) {
169   system("chmod -R u+x \"$FEISTY_MEOW_BINARIES\"/*");
170 }
171
172 # generate the first set of alias files that are defined in the core
173 # and custom scripts directories.
174 &rebuild_script_aliases;
175
176 # trash the old versions.
177 unlink("$FEISTY_MEOW_LOADING_DOCK/fmc_aliases_for_scripts.sh");
178
179 if (length($DEBUG_FEISTY_MEOW)) {
180   printf "writing $FEISTY_MEOW_LOADING_DOCK/fmc_aliases_for_scripts.sh...\n";
181 }
182
183 # open the alias files to be created.
184 open(she, ">> $FEISTY_MEOW_LOADING_DOCK/fmc_aliases_for_scripts.sh");
185
186 # find the list of files in the scripts directory.
187 @shell_files = (find_files(recursive_find_directories("$FEISTY_MEOW_SCRIPTS")),
188     find_files(recursive_find_directories("$FEISTY_MEOW_LOADING_DOCK/custom/scripts")));
189
190 #printf "found all these files in main script dirs:\n";
191 #printf "  @shell_files\n";
192
193 # construct aliases for items in the scripts directory.
194 foreach $file (@shell_files) {
195   # test to see what type of item we got.
196   if ($file =~ '^\.$'
197       || $file =~ '^\.\.$'
198       || $file =~ '^.svn$'
199       || $file =~ '^.git$'
200       || $file =~ /\/\.$/
201       || $file =~ /\/\.\.$/
202       || $file =~ /\/\.svn$/
203       || $file =~ /\/\.git$/
204       || $file =~ /\/customize\/[a-zA-Z0-9_]+\/[a-zA-Z0-9_.]+$/
205 #hmmm: would be nice to have this name in a symbol somewhere instead of having "customize" everywhere.
206       ) {
207     # just skip this item; it's a special directory or a file we don't want to include.
208 #    print "skipping name: $file\n";
209   } else {
210      &make_alias($file, "");
211   }
212 }
213
214 close(she);
215
216 1;