scripts/unify-sources.sh
author Peter Kovacs <kpeter@inf.elte.hu>
Tue, 28 Oct 2008 18:33:51 +0100
changeset 355 956a29f30887
parent 343 2f5c0c42a5cd
child 411 c5f010a5647a
permissions -rwxr-xr-x
Improve the migration script and guide (#166)

- Safer replacement of 'graph' and 'edge'.
- Fix the erroneous renaming of [Gg]raphToEps.
- Fixes and improvements in the migration guide.
alpar@38
     1
#!/bin/bash
alpar@38
     2
alpar@38
     3
YEAR=`date +2003-%Y`
alpar@38
     4
HGROOT=`hg root`
alpar@38
     5
deba@336
     6
# file enumaration modes
deba@336
     7
deba@336
     8
function all_files() {
deba@336
     9
    hg status -a -m -c |
deba@336
    10
    cut -d ' ' -f 2 | grep -E '(\.(cc|h|dox)$|Makefile\.am$)' |
deba@336
    11
    while read file; do echo $HGROOT/$file; done
deba@336
    12
}
deba@336
    13
deba@336
    14
function modified_files() {
deba@336
    15
    hg status -a -m |
deba@336
    16
    cut -d ' ' -f 2 | grep -E  '(\.(cc|h|dox)$|Makefile\.am$)' |
deba@336
    17
    while read file; do echo $HGROOT/$file; done
deba@336
    18
}
deba@336
    19
deba@336
    20
function changed_files() {
deba@336
    21
    {
deba@336
    22
        if [ -n "$HG_PARENT1" ]
deba@336
    23
        then
deba@336
    24
            hg status --rev $HG_PARENT1:$HG_NODE -a -m
deba@336
    25
        fi
deba@336
    26
        if [ -n "$HG_PARENT2" ]
deba@336
    27
        then
deba@336
    28
            hg status --rev $HG_PARENT2:$HG_NODE -a -m
deba@336
    29
        fi
deba@336
    30
    } | cut -d ' ' -f 2 | grep -E '(\.(cc|h|dox)$|Makefile\.am$)' | 
deba@336
    31
    sort | uniq |
deba@336
    32
    while read file; do echo $HGROOT/$file; done
deba@336
    33
}
deba@336
    34
deba@336
    35
function given_files() {
deba@336
    36
    for file in $GIVEN_FILES
deba@336
    37
    do
deba@336
    38
	echo $file
deba@336
    39
    done
deba@336
    40
}
deba@336
    41
deba@336
    42
# actions
deba@336
    43
deba@336
    44
function update_action() {
deba@336
    45
    if ! diff -q $1 $2 >/dev/null
deba@336
    46
    then
deba@336
    47
	echo -n " [$3 updated]"
deba@336
    48
	rm $2
deba@336
    49
	mv $1 $2
deba@336
    50
	CHANGED=YES
deba@336
    51
    fi
deba@336
    52
}
deba@336
    53
deba@336
    54
function update_warning() {
deba@336
    55
    echo -n " [$2 warning]"
deba@336
    56
    WARNED=YES
deba@336
    57
}
deba@336
    58
deba@336
    59
function update_init() {
deba@336
    60
    echo Update source files...
deba@336
    61
    TOTAL_FILES=0
deba@336
    62
    CHANGED_FILES=0
deba@336
    63
    WARNED_FILES=0
deba@336
    64
}
deba@336
    65
deba@336
    66
function update_done() {
deba@336
    67
    echo $CHANGED_FILES out of $TOTAL_FILES files has been changed.
alpar@337
    68
    echo $WARNED_FILES out of $TOTAL_FILES files triggered warnings.
deba@336
    69
}
deba@336
    70
deba@336
    71
function update_begin() {
deba@336
    72
    ((TOTAL_FILES++))
deba@336
    73
    CHANGED=NO
deba@336
    74
    WARNED=NO
deba@336
    75
}
deba@336
    76
deba@336
    77
function update_end() {
deba@336
    78
    if [ $CHANGED == YES ]
deba@336
    79
    then
deba@336
    80
	((++CHANGED_FILES))
deba@336
    81
    fi
deba@336
    82
    if [ $WARNED == YES ]
deba@336
    83
    then
deba@336
    84
	((++WARNED_FILES))
deba@336
    85
    fi
deba@336
    86
}
deba@336
    87
deba@336
    88
function check_action() {
kpeter@353
    89
    if [ "$3" == 'tabs' ]
kpeter@353
    90
    then
kpeter@353
    91
        PATTERN=$(echo -e '\t')
kpeter@353
    92
    elif [ "$3" == 'trailing spaces' ]
kpeter@353
    93
    then
kpeter@353
    94
        PATTERN='\ +$'
kpeter@353
    95
    else
kpeter@353
    96
        PATTERN='*'
kpeter@353
    97
    fi
kpeter@353
    98
deba@336
    99
    if ! diff -q $1 $2 >/dev/null
deba@336
   100
    then
kpeter@353
   101
        if [ "$PATTERN" == '*' ]
kpeter@353
   102
        then
kpeter@353
   103
            diff $1 $2 | grep '^[0-9]' | sed "s|^\(.*\)c.*$|$2:\1: check failed: $3|g" |
kpeter@353
   104
              sed "s/:\([0-9]*\),\([0-9]*\):\(.*\)$/:\1:\3 (until line \2)/g"
kpeter@353
   105
        else
kpeter@353
   106
            grep -n -E "$PATTERN" $2 | sed "s|^\([0-9]*\):.*$|$2:\1: check failed: $3|g"
kpeter@353
   107
        fi
kpeter@353
   108
        FAILED=YES
deba@336
   109
    fi
deba@336
   110
}
deba@336
   111
deba@336
   112
function check_warning() {
kpeter@341
   113
    if [ "$2" == 'long lines' ]
kpeter@341
   114
    then
kpeter@353
   115
        grep -n -E '.{81,}' $1 | sed "s|^\([0-9]*\):.*$|$1:\1: warning: $2|g"
kpeter@341
   116
    else
kpeter@353
   117
        echo "$1: warning: $2"
kpeter@341
   118
    fi
deba@336
   119
    WARNED=YES
deba@336
   120
}
deba@336
   121
deba@336
   122
function check_init() {
deba@336
   123
    echo Check source files...
deba@336
   124
    FAILED_FILES=0
deba@336
   125
    WARNED_FILES=0
deba@336
   126
    TOTAL_FILES=0
deba@336
   127
}
deba@336
   128
deba@336
   129
function check_done() {
deba@336
   130
    echo $FAILED_FILES out of $TOTAL_FILES files has been failed.
alpar@337
   131
    echo $WARNED_FILES out of $TOTAL_FILES files triggered warnings.
deba@336
   132
deba@336
   133
    if [ $FAILED_FILES -gt 0 ]
deba@336
   134
    then
deba@336
   135
	return 1
deba@336
   136
    elif [ $WARNED_FILES -gt 0 ]
deba@336
   137
    then
deba@336
   138
	if [ "$WARNING" == 'INTERACTIVE' ]
deba@336
   139
	then
alpar@337
   140
	    echo -n "Are the files with warnings acceptable? (yes/no) "
deba@336
   141
	    while read answer
deba@336
   142
	    do
deba@336
   143
		if [ "$answer" == 'yes' ]
deba@336
   144
		then
deba@336
   145
		    return 0
deba@336
   146
		elif [ "$answer" == 'no' ]
deba@336
   147
		then
deba@336
   148
		    return 1
deba@336
   149
		fi
alpar@337
   150
		echo -n "Are the files with warnings acceptable? (yes/no) "
deba@336
   151
	    done
deba@336
   152
	elif [ "$WARNING" == 'WERROR' ]
deba@336
   153
	then
deba@336
   154
	    return 1
deba@336
   155
	fi
deba@336
   156
    fi
deba@336
   157
}
deba@336
   158
deba@336
   159
function check_begin() {
deba@336
   160
    ((TOTAL_FILES++))
deba@336
   161
    FAILED=NO
deba@336
   162
    WARNED=NO
deba@336
   163
}
deba@336
   164
deba@336
   165
function check_end() {
deba@336
   166
    if [ $FAILED == YES ]
deba@336
   167
    then
deba@336
   168
	((++FAILED_FILES))
deba@336
   169
    fi
deba@336
   170
    if [ $WARNED == YES ]
deba@336
   171
    then
deba@336
   172
	((++WARNED_FILES))
deba@336
   173
    fi
deba@336
   174
}
deba@336
   175
deba@336
   176
deba@336
   177
deba@336
   178
# checks
deba@336
   179
deba@336
   180
function header_check() {
deba@336
   181
    if echo $1 | grep -q -E 'Makefile\.am$'
deba@336
   182
    then
deba@336
   183
	return
deba@336
   184
    fi
deba@336
   185
alpar@38
   186
    TMP_FILE=`mktemp`
alpar@38
   187
alpar@208
   188
    (echo "/* -*- mode: C++; indent-tabs-mode: nil; -*-
alpar@38
   189
 *
alpar@208
   190
 * This file is a part of LEMON, a generic C++ optimization library.
alpar@38
   191
 *
alpar@38
   192
 * Copyright (C) "$YEAR"
alpar@38
   193
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
alpar@38
   194
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
alpar@38
   195
 *
alpar@38
   196
 * Permission to use, modify and distribute this software is granted
alpar@38
   197
 * provided that this copyright notice appears in all copies. For
alpar@38
   198
 * precise terms see the accompanying LICENSE file.
alpar@38
   199
 *
alpar@38
   200
 * This software is provided \"AS IS\" with no warranty of any kind,
alpar@38
   201
 * express or implied, and with no claim as to its suitability for any
alpar@38
   202
 * purpose.
alpar@38
   203
 *
alpar@38
   204
 */
alpar@38
   205
"
deba@336
   206
    awk 'BEGIN { pm=0; }
alpar@38
   207
     pm==3 { print }
alpar@38
   208
     /\/\* / && pm==0 { pm=1;}
alpar@38
   209
     /[^:blank:]/ && (pm==0 || pm==2) { pm=3; print;}
alpar@38
   210
     /\*\// && pm==1 { pm=2;}
alpar@38
   211
    ' $1
deba@336
   212
    ) >$TMP_FILE
alpar@208
   213
deba@336
   214
    "$ACTION"_action "$TMP_FILE" "$1" header
alpar@38
   215
}
alpar@38
   216
deba@336
   217
function tabs_check() {
deba@336
   218
    if echo $1 | grep -q -v -E 'Makefile\.am$'
deba@336
   219
    then
deba@336
   220
        OLD_PATTERN=$(echo -e '\t')
deba@336
   221
        NEW_PATTERN='        '
deba@336
   222
    else
deba@336
   223
        OLD_PATTERN='        '
deba@336
   224
        NEW_PATTERN=$(echo -e '\t')
deba@336
   225
    fi
alpar@208
   226
    TMP_FILE=`mktemp`
deba@336
   227
    cat $1 | sed -e "s/$OLD_PATTERN/$NEW_PATTERN/g" >$TMP_FILE
alpar@38
   228
deba@336
   229
    "$ACTION"_action "$TMP_FILE" "$1" 'tabs'
alpar@208
   230
}
alpar@208
   231
deba@336
   232
function spaces_check() {
alpar@208
   233
    TMP_FILE=`mktemp`
deba@336
   234
    cat $1 | sed -e 's/ \+$//g' >$TMP_FILE
alpar@208
   235
kpeter@340
   236
    "$ACTION"_action "$TMP_FILE" "$1" 'trailing spaces'
alpar@208
   237
}
alpar@208
   238
deba@336
   239
function long_lines_check() {
deba@336
   240
    if cat $1 | grep -q -E '.{81,}'
alpar@208
   241
    then
deba@336
   242
	"$ACTION"_warning $1 'long lines'
alpar@208
   243
    fi
alpar@208
   244
}
alpar@208
   245
deba@336
   246
# process the file
deba@336
   247
deba@336
   248
function process_file() {
kpeter@353
   249
    if [ "$ACTION" == 'update' ]
kpeter@353
   250
    then
kpeter@353
   251
        echo -n "    $ACTION $1..."
kpeter@353
   252
    else
kpeter@353
   253
        echo "	  $ACTION $1..."
kpeter@353
   254
    fi
deba@336
   255
deba@336
   256
    CHECKING="header tabs spaces long_lines"
deba@336
   257
deba@336
   258
    "$ACTION"_begin $1
deba@336
   259
    for check in $CHECKING
alpar@38
   260
    do
deba@336
   261
	"$check"_check $1
alpar@38
   262
    done
deba@336
   263
    "$ACTION"_end $1
kpeter@353
   264
    if [ "$ACTION" == 'update' ]
kpeter@353
   265
    then
kpeter@353
   266
        echo
kpeter@353
   267
    fi
deba@336
   268
}
deba@336
   269
deba@336
   270
function process_all {
deba@336
   271
    "$ACTION"_init
deba@336
   272
    while read file
alpar@38
   273
    do
deba@336
   274
	process_file $file
deba@336
   275
    done < <($FILES)
deba@336
   276
    "$ACTION"_done
deba@336
   277
}
deba@336
   278
deba@336
   279
while [ $# -gt 0 ]
deba@336
   280
do
deba@336
   281
    
deba@336
   282
    if [ "$1" == '--help' ] || [ "$1" == '-h' ]
deba@336
   283
    then
deba@336
   284
	echo -n \
deba@336
   285
"Usage:
deba@336
   286
  $0 [OPTIONS] [files]
deba@336
   287
Options:
deba@336
   288
  --dry-run|-n
alpar@337
   289
     Check the files, but do not modify them.
deba@336
   290
  --interactive|-i
alpar@337
   291
     If --dry-run is specified and the checker emits warnings,
alpar@337
   292
     then the user is asked if the warnings should be considered
alpar@337
   293
     errors.
deba@336
   294
  --werror|-w
alpar@337
   295
     Make all warnings into errors.
deba@336
   296
  --all|-a
kpeter@340
   297
     Check all source files in the repository.
deba@336
   298
  --modified|-m
alpar@337
   299
     Check only the modified (and new) source files. This option is
alpar@337
   300
     useful to check the modification before making a commit.
deba@336
   301
  --changed|-c
deba@336
   302
     Check only the changed source files compared to the parent(s) of
alpar@337
   303
     the current hg node.  This option is useful as hg hook script.
alpar@337
   304
     To automatically check all your changes before making a commit,
alpar@337
   305
     add the following section to the appropriate .hg/hgrc file.
deba@336
   306
deba@336
   307
       [hooks]
deba@336
   308
       pretxncommit.checksources = scripts/unify-sources.sh -c -n -i
deba@336
   309
deba@336
   310
  --help|-h
deba@336
   311
     Print this help message.
deba@336
   312
  files
kpeter@340
   313
     The files to check/unify. If no file names are given, the modified
kpeter@340
   314
     source files will be checked/unified (just like using the
kpeter@340
   315
     --modified|-m option).
deba@336
   316
"
deba@336
   317
        exit 0
deba@336
   318
    elif [ "$1" == '--dry-run' ] || [ "$1" == '-n' ]
deba@336
   319
    then
kpeter@340
   320
	[ -n "$ACTION" ] && echo "Conflicting action options" >&2 && exit 1
deba@336
   321
	ACTION=check
deba@336
   322
    elif [ "$1" == "--all" ] || [ "$1" == '-a' ]
deba@336
   323
    then
kpeter@340
   324
	[ -n "$FILES" ] && echo "Conflicting target options" >&2 && exit 1
deba@336
   325
	FILES=all_files
deba@336
   326
    elif [ "$1" == "--changed" ] || [ "$1" == '-c' ]
deba@336
   327
    then
kpeter@340
   328
	[ -n "$FILES" ] && echo "Conflicting target options" >&2 && exit 1
deba@336
   329
	FILES=changed_files
deba@336
   330
    elif [ "$1" == "--modified" ] || [ "$1" == '-m' ]
deba@336
   331
    then
kpeter@340
   332
	[ -n "$FILES" ] && echo "Conflicting target options" >&2 && exit 1
deba@336
   333
	FILES=modified_files
deba@336
   334
    elif [ "$1" == "--interactive" ] || [ "$1" == "-i" ]
deba@336
   335
    then
kpeter@340
   336
	[ -n "$WARNING" ] && echo "Conflicting warning options" >&2 && exit 1
deba@336
   337
	WARNING='INTERACTIVE'
deba@336
   338
    elif [ "$1" == "--werror" ] || [ "$1" == "-w" ]
deba@336
   339
    then
kpeter@340
   340
	[ -n "$WARNING" ] && echo "Conflicting warning options" >&2 && exit 1
deba@336
   341
	WARNING='WERROR'
kpeter@340
   342
    elif [ $(echo x$1 | cut -c 2) == '-' ]
deba@336
   343
    then
deba@336
   344
	echo "Invalid option $1" >&2 && exit 1
deba@336
   345
    else
deba@336
   346
	[ -n "$FILES" ] && echo "Invalid option $1" >&2 && exit 1
deba@336
   347
	GIVEN_FILES=$@
deba@336
   348
	FILES=given_files
deba@336
   349
	break
deba@336
   350
    fi
deba@336
   351
    
deba@336
   352
    shift
deba@336
   353
done
deba@336
   354
deba@336
   355
if [ -z $FILES ]
deba@336
   356
then
deba@336
   357
    FILES=modified_files
alpar@38
   358
fi
deba@336
   359
deba@336
   360
if [ -z $ACTION ]
deba@336
   361
then
deba@336
   362
    ACTION=update
alpar@208
   363
fi
deba@336
   364
deba@336
   365
process_all