Blame Automation/Modules/centos-art.sh-help/Texinfo/texinfo_checkEntrySrcDst.sh

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# texinfo_checkEntrySrcDst.sh -- This function standardizes
Alain Reguera Delgado 8f60cb
# verification actions of source and target locations for tasks like
Alain Reguera Delgado 8f60cb
# copying and renaming.
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 texinfo_checkEntrySrcDst {
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Initialize entry source absolute path.
Alain Reguera Delgado 8f60cb
    local MANUAL_ENTRY_SRC="$1"
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Initialize entry target absolute path.
Alain Reguera Delgado 8f60cb
    local MANUAL_ENTRY_DST="$2"
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Verify existence of source location.
Alain Reguera Delgado 8f60cb
    if [[ ! -a ${MANUAL_ENTRY_SRC} ]];then
Alain Reguera Delgado 8f60cb
        cli_printMessage "`gettext "The source location doesn't exist."`" --as-error-line
Alain Reguera Delgado 8f60cb
    fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Verify source and target locations to be sure they are different
Alain Reguera Delgado 8f60cb
    # one another. We cannot copy a source location to itself.
Alain Reguera Delgado 8f60cb
    if [[ $MANUAL_ENTRY_SRC == $MANUAL_ENTRY_DST ]];then
Alain Reguera Delgado 8f60cb
        cli_printMessage "`gettext "The source and target locations cannot be the same."`" --as-error-line
Alain Reguera Delgado 8f60cb
    fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Verify source location to be sure it is under version control
Alain Reguera Delgado 8f60cb
    # and there isn't pending change to be committed first.
Alain Reguera Delgado 8f60cb
    cli_checkFiles ${MANUAL_ENTRY_SRC} --is-versioned
Alain Reguera Delgado 8f60cb
    if [[ $(cli_runFnEnvironment vcs --status ${MANUAL_ENTRY_SRC}) != '' ]];then
Alain Reguera Delgado 8f60cb
        cli_printMessage "`gettext "The source location has pending changes."`" --as-error-line
Alain Reguera Delgado 8f60cb
    fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Verify target directory where the source will be duplicated in.
Alain Reguera Delgado 8f60cb
    # The target directory must exist before copying the source
Alain Reguera Delgado 8f60cb
    # location into it. If it doesn't exist, use subversion to create
Alain Reguera Delgado 8f60cb
    # it it.
Alain Reguera Delgado 8f60cb
    if [[ ! -d $(dirname ${MANUAL_ENTRY_DST}) ]];then
Alain Reguera Delgado 8f60cb
        cli_runFnEnvironment vcs --mkdir $(dirname ${MANUAL_ENTRY_DST})
Alain Reguera Delgado 8f60cb
    fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Verify existence of target location.
Alain Reguera Delgado 8f60cb
    if [[ -a ${MANUAL_ENTRY_DST} ]];then
Alain Reguera Delgado 8f60cb
        cli_printMessage "`gettext "The target location already exists."`" --as-error-line
Alain Reguera Delgado 8f60cb
    fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
}