Blame Automation/Modules/Vcs/Subversion/subversion_getRepoStatus.sh

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# subversion_getRepoStatus.sh -- This function requests the working
Alain Reguera Delgado 8f60cb
# copy using the svn status command and returns the first character in
Alain Reguera Delgado 8f60cb
# the output line, as described in svn help status, for the LOCATION
Alain Reguera Delgado 8f60cb
# specified. Use this function to perform verifications based a
Alain Reguera Delgado 8f60cb
# repository LOCATION status. 
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 subversion_getRepoStatus {
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    local LOCATION=$(cli_checkRepoDirSource "$1")
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Verify source location absolute path. It should point either to
Alain Reguera Delgado 8f60cb
    # existent files or directories both under version control inside
Alain Reguera Delgado 8f60cb
    # the working copy.  Otherwise, if it doesn't point to an existent
Alain Reguera Delgado 8f60cb
    # file under version control, finish the script execution with an
Alain Reguera Delgado 8f60cb
    # error message.
Alain Reguera Delgado 8f60cb
    cli_checkFiles ${LOCATION} -e --is-versioned
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Define regular expression pattern to retrieve first column,
Alain Reguera Delgado 8f60cb
    # returned by subversion status command. This column is one
Alain Reguera Delgado 8f60cb
    # character column as describes `svn help status' command.
Alain Reguera Delgado 8f60cb
    local PATTERN='^( |A|C|D|I|M|R|X|!|~).+$'
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Output specific state of location using subversion `status'
Alain Reguera Delgado 8f60cb
    # command.
Alain Reguera Delgado 8f60cb
    ${COMMAND} status "$LOCATION" -N --quiet | sed -r "s/${PATTERN}/\1/"
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
}