#!/bin/bash
#
# shell_updateTopComment.sh -- This function replaces top comment
# section inside shell scripts (*.sh) with one of many pre-defined
# templates available. Use this function to maintain shell scripts top
# comments inside repository.
#
# Copyright (C) 2009, 2010 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 shell_updateCopyright {
local TEMPLATES=''
local INSTANCE=''
local COUNT=0
local -a TITLE
local -a VALUE
local -a PATTERN
local -a PATTERN_MSG
local -a DEFAULT
local -a MARKER
# Define absolute path to template file.
TEMPLATE="/home/centos/artwork/trunk/Scripts/Bash/Functions/Shell/Config/tpl_forCopyright.sed"
# Check template file existence.
cli_checkFiles $TEMPLATE 'f'
# Define file name to template instance.
INSTANCE=$(cli_getTemporalFile $TEMPLATE)
# Define copyright information.
TITLE[0]="`gettext "Your full name"`"
TITLE[1]="`gettext "Year which you started working in"`"
TITLE[2]="`gettext "Year which you stopped working in"`"
# Define translation marker. These values are used inside
# template file.
MARKER[0]='=FULLNAME='
MARKER[1]='=YEAR1='
MARKER[2]='=YEAR2='
# Define pattern. These values are used as regular
# expression patterns for user's input further verification.
PATTERN[0]='^([[:alnum:] _-.]+)?$'
PATTERN[1]='^([[:digit:]]{4})?$'
PATTERN[2]=${PATTERN[1]}
# Define pattern message. These values are used as output
# message when user's input doesn't match the related pattern.
PATTERN_MSG[0]="`gettext "Try using alphanumeric characters."`"
PATTERN_MSG[1]="`gettext "Try using numeric characters."`"
PATTERN_MSG[2]=${PATTERN_MSG[1]}
# Define default values.
DEFAULT[0]="The CentOS Project"
DEFAULT[1]='2003'
DEFAULT[2]=$(date +%Y)
# Initialize values using user's input.
cli_printMessage "`gettext "Enter copyright information you want to apply:"`"
while [[ $COUNT -ne ${#TITLE[*]} ]];do
# Request value.
cli_printMessage "${TITLE[$COUNT]}" 'AsRequestLine'
read VALUE[$COUNT]
# Sanitate values to exclude characters that could
# introduce possible markup malformations to final SVG files.
until [[ ${VALUE[$COUNT]} =~ ${PATTERN[$COUNT]} ]];do
cli_printMessage "${PATTERN_MSG[$COUNT]}"
cli_printMessage "${TITLE[$COUNT]}" 'AsRequestLine'
read VALUE[$COUNT]
done
# Set default value to empty values.
if [[ ${VALUE[$COUNT]} == '' ]];then
VALUE[$COUNT]=${DEFAULT[$COUNT]}
fi
# Increase counter.
COUNT=$(($COUNT + 1))
done
# Create template instance.
cp $TEMPLATE $INSTANCE
# Check template instance. We cannot continue if template instance
# couldn't be created.
cli_checkFiles $INSTANCE 'f'
# Reset counter.
COUNT=0
while [[ $COUNT -ne ${#TITLE[*]} ]];do
# Apply translation marker replacement.
sed -r -i "s!${MARKER[$COUNT]}!${VALUE[$COUNT]}!g" $INSTANCE
# Increase counter.
COUNT=$(($COUNT + 1))
done
# Define short options we want to support.
local ARGSS=""
# Define long options we want to support.
local ARGSL="filter:"
# Parse arguments using getopt(1) command parser.
cli_doParseArguments
# Reset positional parameters using output from (getopt) argument
# parser.
eval set -- "$ARGUMENTS"
# Define action to take for each option passed.
while true; do
case "$1" in
--filter )
REGEX="$2"
shift 2
;;
* )
break
esac
done
# Re-define regular expression to match shell files only.
REGEX=$(echo "${REGEX}.*\.(bash|shell|sh)")
# Define list of files to process.
cli_getFilesList
# Process list of files.
for FILE in $FILES;do
# Output action message.
cli_printMessage $FILE 'AsUpdatingLine'
# Apply template instance to file.
sed -r -i -f $INSTANCE $FILE
done \
| awk -f /home/centos/artwork/trunk/Scripts/Bash/Styles/output_forTwoColumns.awk
# Remove template instance.
cli_checkFiles "${INSTANCE}" 'f'
rm $INSTANCE
# Check repository changes and ask you to commit them up to
# central repository.
cli_commitRepoChanges
}