Blame Functions/cli_getFunctions.sh

4c79b5
#!/bin/bash
4c79b5
#
79b380
# cli_getFunctions.sh -- This function loads funtionalities supported by
4c79b5
# centos-art.sh script.
4c79b5
#
59a114
# Copyright (C) 2009-2011 Alain Reguera Delgado
4c79b5
# 
7cd8e9
# This program is free software; you can redistribute it and/or
7cd8e9
# modify it under the terms of the GNU General Public License as
7cd8e9
# published by the Free Software Foundation; either version 2 of the
7cd8e9
# License, or (at your option) any later version.
4c79b5
# 
4c79b5
# This program is distributed in the hope that it will be useful, but
4c79b5
# WITHOUT ANY WARRANTY; without even the implied warranty of
4c79b5
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
4c79b5
# General Public License for more details.
4c79b5
#
4c79b5
# You should have received a copy of the GNU General Public License
4c79b5
# along with this program; if not, write to the Free Software
4c79b5
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
4c79b5
# USA.
4c79b5
# 
4c79b5
# ----------------------------------------------------------------------
418249
# $Id$
4c79b5
# ----------------------------------------------------------------------
4c79b5
79b380
function cli_getFunctions {
4c79b5
4c79b5
    # Define variables as local to avoid conflicts outside.
94d85d
    local FUNCNAMCALL=''
335e02
    local FUNCFILES=''
4c79b5
4c79b5
    # Build action-specifc script file list.
335e02
    FUNCFILES=$(ls ${FUNCDIR}/${FUNCDIRNAM}/${FUNCNAM}*.sh)
4c79b5
335e02
    for FILE in $FUNCFILES;do
4c79b5
4c79b5
        if [[ -x ${FILE} ]];then
4c79b5
4c79b5
            # Initialize action-specific functions.
4c79b5
            . $FILE
4c79b5
4c79b5
            # Export action-specific functions to current shell script
4c79b5
            # environment.
94d85d
            FUNCNAMCALL=$(grep '^function ' $FILE | cut -d' ' -f2)
94d85d
            export -f $FUNCNAMCALL
4c79b5
4c79b5
        else
4c79b5
335e02
            cli_printMessage "`eval_gettext "The \\\$FILE hasn't execution rights."`" 'AsErrorLine'
1f1b3c
            cli_printMessage "$(caller)" "AsToKnowMoreLine"
4c79b5
4c79b5
        fi
4c79b5
4c79b5
    done
4c79b5
4c79b5
    # Execute action passed to centos-art.sh script.
20d2d8
    if [[ $FUNCNAM != '' ]];then
20d2d8
        eval $FUNCNAM
20d2d8
    fi
4c79b5
4c79b5
}