Blob Blame History Raw
#!/bin/bash
#
# tuneup_doBaseActions.sh -- This function builds the list of files to
# process, determines the their extensions and performs maintainance
# tasks file by file them accordingly.
#
# Copyright (C) 2009-2011 Alain Reguera Delgado
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# 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.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.
# ----------------------------------------------------------------------
# $Id$
# ----------------------------------------------------------------------

function tuneup_doBaseActions {

    local FILE=''
    local FILES=''
    local EXTENSION=''

    # Define file extensions we'll look files for. This is, the
    # extension of files we want to perform maintainance tasks for.
    EXTENSION='(svg|xhtml|sh)'

    # Build list of files to process using action value as reference.
    FILES=$(cli_getFilesList "${ACTIONVAL}" "${FLAG_FILTER}.*\.${EXTENSION}")

    # Verify list of files.
    cli_printActionPreamble "$FILES" '' ''

    # Print separator line.
    cli_printMessage '-' 'AsSeparatorLine'

    # Process list of files and perform maintainance tasks
    # accordingly.
    for FILE in $FILES;do

        # Print action message.
        cli_printMessage $FILE 'AsTunningLine'

        if [[ $FILE =~ '\.svg$' ]];then
            ${FUNCNAM}_doSvg
        elif [[ $FILE =~ '\.xhtml$' ]];then
            ${FUNCNAM}_doXhtml
        elif [[ $FILE =~ '\.sh$' ]];then
            ${FUNCNAM}_doShell
        fi

    done

}