241e2a0f1be5f39093c916515594bedf33c98bc7
[feisty_meow.git] / scripts / core / launch_feisty_meow.sh
1 #!/bin/bash
2
3 ##############
4
5 # Fred Hamster's Feisty Meow Concerns Ltd. Startup Profile.
6 #
7 # This file is useful within .profile or other initialization scripts.
8 #
9 # Author: Chris Koeritz
10
11 ##############
12
13 # DEBUG_FEISTY_MEOW: if this variable is non-empty, then it causes the feisty meow
14 # scripts to print more diagnostic information when they run.  not all
15 # scripts support this, but the core ones do.
16
17 #export DEBUG_FEISTY_MEOW=true
18
19 ##############
20
21 # this script cannot handle figuring out where it lives, so approaches that
22 # get the WORKDIR will fail.  this is a consequence of this always being used
23 # in bash's 'source' directive, which does not pass the script name as
24 # argument 0.  instead, we just check for the bad condition of a malconfigured
25 # script system and try to repair it.
26
27 # we start out thinking things are good.
28 NO_REPAIRS_NEEDED=true
29
30 # check if any crucial folder is hosed.  we will torch the existing config
31 # to the extent we can.
32 if [ ! -d "$FEISTY_MEOW_APEX" ]; then
33   # flag some problems.
34   unset NO_REPAIRS_NEEDED
35   # wipe out the offending variable(s).
36   unset FEISTY_MEOW_SCRIPTS FEISTY_MEOW_APEX
37   # clean out any unfortunate wrongness that may exist in our generated areas.
38   if [ -d "$FEISTY_MEOW_LOADING_DOCK" ]; then \rm -rf "$FEISTY_MEOW_LOADING_DOCK"; fi
39   if [ -d "$FEISTY_MEOW_GENERATED_STORE" ]; then \rm -rf "$FEISTY_MEOW_GENERATED_STORE"; fi
40   # also wipe any values from the variables pointing at generated stuff.
41   unset FEISTY_MEOW_LOADING_DOCK FEISTY_MEOW_GENERATED_STORE
42   echo "
43
44 The feisty meow configuration is damaged somehow.  Please change to the
45 directory where it is stored, e.g.:
46
47   cd /opt/feistymeow.org/feisty_meow
48
49 and run this command (the whole unwieldy multiple line chunk inside the bars):
50
51
52 ##############
53   exec bash -i 3<<EOF 4<&0 <&3
54     echo -e '\n\n^^^ errors above here indicate potential problems in .bashrc ^^^';
55     export FEISTY_MEOW_APEX=\"\$(pwd)\"; export FEISTY_MEOW_SCRIPTS=\$FEISTY_MEOW_APEX/scripts;
56     export FEISTY_MEOW_SHOW_LAUNCH_GREETING=yes;
57     /bin/bash \$(pwd)/scripts/core/reconfigure_feisty_meow.sh;
58     source \$(pwd)/scripts/core/launch_feisty_meow.sh; exec 3>&- <&4
59 EOF
60 ##############
61
62
63 This code snippet assumes that the .bashrc file could still need editing to
64 fix an erroneous FEISTY_MEOW_APEX variable, so we skip it above when bash
65 runs.  Check \$HOME/.bashrc to see if a change there will fix the problem.
66
67 "
68 else
69   # apex is good, so let's make the scripts good too.
70   if [ ! -d "$FEISTY_MEOW_SCRIPTS" ]; then
71     export FEISTY_MEOW_SCRIPTS="$FEISTY_MEOW_APEX/scripts"
72   fi
73   # check again to test our belief system...
74   if [ ! -d "$FEISTY_MEOW_SCRIPTS" ]; then
75     unset NO_REPAIRS_NEEDED
76     echo -e "The feisty meow scripts cannot be found under the current top:\n  FEISTY_MEOW_APEX=$FEISTY_MEOW_APEX"
77   fi
78 fi
79
80 #; /bin/bash -i --norc --noprofile\" > \$HOME/fm-fix 
81 #; exec /bin/bash -i --norc --noprofile -c 'bash \$HOME/fm-fix ; echo hello ; read line'
82 #--norc --noprofile 
83 #; source \$FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh
84
85 if [ "$NO_REPAIRS_NEEDED" == "true" ]; then
86
87   # we believe it's safe to run through the rest of this script.
88
89   ##############
90   
91   # some preconditions we want to establish before loading anything...
92   
93   # make sure that aliases can be used in non-interactive shells.
94   shopt -s expand_aliases
95   
96   # patch the user variable if we were launched by one of our cron jobs.
97   if [ -z "$USER" -a ! -z "$CRONUSER" ]; then
98     export USER="$CRONUSER"
99   fi
100   
101   ##############
102   
103   export ERROR_OCCURRED=
104     # there have been no errors to start with, at least.  we will set this
105     # to non-empty if something bad happens.
106   
107   if [ -z "$FEISTY_MEOW_LOADING_DOCK" ]; then
108     # FEISTY_MEOW_LOADING_DOCK is where the generated files are located.
109     # this is our single entry point we can use without knowing any variables
110     # yet in the initialization process.
111     export FEISTY_MEOW_LOADING_DOCK="$HOME/.zz_feisty_loading"
112   #hmmm: the above is kind of a constant.  that's not so great.
113   
114     # make sure our main variables are established.
115     FEISTY_MEOW_VARIABLES_LOADING_FILE="$FEISTY_MEOW_LOADING_DOCK/fmc_variables.sh"
116     if [ ! -f "$FEISTY_MEOW_VARIABLES_LOADING_FILE" ]; then
117       echo -e "\
118   
119   The feisty meow scripts need initialization via the bootstrap process.  For\n\
120   example, if the feisty meow folder lives in '$DEFAULT_FEISTYMEOW_ORG_DIR', then this\n\
121   command bootstraps feisty meow:\n\
122   \n\
123     bash $example_dir/feisty_meow/scripts/core/reconfigure_feisty_meow.sh\n\
124   \n\
125   \n"
126       ERROR_OCCURRED=true
127     fi
128   
129     ##############
130   
131     if [ -z "$ERROR_OCCURRED" ]; then
132   
133       # pull in our generated variables that are the minimal set we need to find
134       # the rest of our resources.
135       source "$FEISTY_MEOW_VARIABLES_LOADING_FILE"
136   
137       # Set up the temporary directory.
138       source "$FEISTY_MEOW_SCRIPTS/core/create_tempdir.sh"
139     fi
140   
141   fi
142
143   ##############
144
145   if [ -z "$ERROR_OCCURRED" ]; then
146
147     # load the larger body of standard feisty meow variables into the environment.
148     # we actually want this to always run also; it will decide what variables need
149     # to be set again.
150     source "$FEISTY_MEOW_SCRIPTS/core/variables.sh"
151
152     ##############
153
154     # include helpful functions.  we do this every time rather than making it part
155     # of variable initialization, because functions cannot be exported to
156     # sub-shells in bash.
157     source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
158
159     # load some helper methods for the terminal which we'll use below.
160     source "$FEISTY_MEOW_SCRIPTS/tty/terminal_titler.sh"
161
162     ##############
163
164     # check hash table before searching path.
165     shopt -s checkhash
166     # don't check path for sourced files.
167     shopt -u sourcepath
168     # ignore duplicate lines.
169     HISTCONTROL=ignoredups
170     # append to the history file.
171     shopt -s histappend
172     # automatically update window size if needed.
173     shopt -s checkwinsize
174
175     ##############
176
177     # make history writes immediate to avoid losing history if bash is zapped.
178     echo $PROMPT_COMMAND | grep -q history
179     if [ $? -ne 0 ]; then
180       # we only change the prompt command if we think it hasn't already been done.
181       export PROMPT_COMMAND="history -a;$PROMPT_COMMAND"
182     fi
183
184     ##############
185
186     # perform the bulkier parts of the initialization process.
187
188     if [ ! -z "$DEBUG_FEISTY_MEOW" ]; then echo "heavyweight init begins..."; fi
189
190     # set up the aliases for the shell, but only if they are not already set.
191     type CORE_ALIASES_LOADED &>/dev/null
192     if [ $? -ne 0 ]; then
193       if [ ! -z "$DEBUG_FEISTY_MEOW" ]; then
194         echo "the aliases were missing, now they are being added..."
195       fi
196       source "$FEISTY_MEOW_LOADING_DOCK/fmc_core_and_custom_aliases.sh"
197     fi
198
199     #echo before the new labelling, terminal titles have:
200     #show_terminal_titles
201
202     # a minor tickle of the title of the terminal, unless we already have some history.
203     label_terminal_with_info
204
205     if [ ! -z "$DEBUG_FEISTY_MEOW" ]; then echo "heavyweight init is done."; fi
206
207     if [ -z "$ERROR_OCCURRED" ]; then
208       # set a sentinel variable to say we loaded the feisty meow environment.
209       export FEISTY_MEOW_SCRIPTS_LOADED=true
210     fi
211
212   fi  # no error occurred.
213
214   if [ ! -z "$FEISTY_MEOW_SHOW_LAUNCH_GREETING" ]; then
215     echo
216     echo
217     echo "welcome to the feisty meow zone of peace, one of many refuges in the uncountably"
218     echo "infinite multiverses that are hypothetically possible."
219     echo
220     echo
221     unset FEISTY_MEOW_SHOW_LAUNCH_GREETING
222   fi
223
224 fi # "$NO_REPAIRS_NEEDED" was == "true" 
225