Blame Automation/centos-art.sh-mods/Render/Svg/svg_doLastCommand.sh

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# svg_doLastCommand.sh -- This function standardizes the way
Alain Reguera Delgado 8f60cb
# last-rendition commands are applied to base-rendition and
Alain Reguera Delgado 8f60cb
# post-rendition outputs.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# Copyright (C) 2009-2013 The CentOS Project
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# This program is free software; you can redistribute it and/or modify
Alain Reguera Delgado 8f60cb
# it under the terms of the GNU General Public License as published by
Alain Reguera Delgado 8f60cb
# the Free Software Foundation; either version 2 of the License, or (at
Alain Reguera Delgado 8f60cb
# your option) any later version.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# This program is distributed in the hope that it will be useful, but
Alain Reguera Delgado 8f60cb
# WITHOUT ANY WARRANTY; without even the implied warranty of
Alain Reguera Delgado 8f60cb
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Alain Reguera Delgado 8f60cb
# General Public License for more details.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# You should have received a copy of the GNU General Public License
Alain Reguera Delgado 8f60cb
# along with this program; if not, write to the Free Software
Alain Reguera Delgado 8f60cb
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# ----------------------------------------------------------------------
Alain Reguera Delgado 8f60cb
# $Id$
Alain Reguera Delgado 8f60cb
# ----------------------------------------------------------------------
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
function svg_doLastCommand {
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Define the file extensions. This value is a regular expression
Alain Reguera Delgado 8f60cb
    # pattern which must match the file extensions that last-rendition
Alain Reguera Delgado 8f60cb
    # actions will be applied to.
Alain Reguera Delgado 8f60cb
    local EXTENSION=$(render_getConfigOption "$ACTION" '2')
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Define the command string that will be evaluated as
Alain Reguera Delgado 8f60cb
    # last-rendition action. Only commands that perform in-place
Alain Reguera Delgado 8f60cb
    # modifications can be passed here.
Alain Reguera Delgado 8f60cb
    local COMMAND=$(render_getConfigOption "$ACTION" '3-')
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Define the list of files to process. This value contain all the
Alain Reguera Delgado 8f60cb
    # files in the output directory which extension match the
Alain Reguera Delgado 8f60cb
    # extension pattern previously defined.
Alain Reguera Delgado 8f60cb
    local FILE=''
Alain Reguera Delgado 8f60cb
    local FILES=$(cli_getFilesList $OUTPUT --pattern="^.+\.${EXTENSION}$")
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    for FILE in $FILES;do
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Identify file before processing it. Only formats recognized
Alain Reguera Delgado 8f60cb
        # by ImageMagick are supported. In case the file isn't
Alain Reguera Delgado 8f60cb
        # supported by ImageMagick, continue with the next file in the
Alain Reguera Delgado 8f60cb
        # list.
Alain Reguera Delgado 8f60cb
        identify -quiet ${FILE} > /dev/null
Alain Reguera Delgado 8f60cb
        if [[ $? -ne 0 ]];then
Alain Reguera Delgado 8f60cb
            continue
Alain Reguera Delgado 8f60cb
        fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Print action message.
Alain Reguera Delgado 8f60cb
        cli_printMessage "${FILE}" --as-updating-line
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Execute mogrify action on all files inside the same
Alain Reguera Delgado 8f60cb
        # directory structure.
Alain Reguera Delgado 8f60cb
        eval ${COMMAND} ${FILE}
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Be sure the command was executed correctly. Otherwise stop
Alain Reguera Delgado 8f60cb
        # script execution.
Alain Reguera Delgado 8f60cb
        if [[ $? -ne 0 ]];then
Alain Reguera Delgado 8f60cb
            exit
Alain Reguera Delgado 8f60cb
        fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    done
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
}