tools/lemon-0.x-to-1.x.sh
author Peter Kovacs <kpeter@inf.elte.hu>
Tue, 28 Oct 2008 18:33:51 +0100
changeset 343 956a29f30887
parent 323 94b832d461f7
child 344 236b1902e5cc
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.
     1 #!/bin/bash
     2 
     3 set -e
     4 
     5 if [ $# -eq 0 -o x$1 = "x-h" -o x$1 = "x-help" -o x$1 = "x--help" ]; then
     6     echo "Usage:"
     7     echo "  $0 source-file(s)"
     8     exit
     9 fi
    10 
    11 for i in $@
    12 do
    13     echo Update $i...
    14     TMP=`mktemp`
    15     sed -e "s/undirected graph/_gr_aph_label_/g"\
    16         -e "s/undirected edge/_ed_ge_label_/g"\
    17         -e "s/UGraph/_Gr_aph_label_/g"\
    18         -e "s/u[Gg]raph/_gr_aph_label_/g"\
    19         -e "s/\<Graph\>/_Digr_aph_label_/g"\
    20         -e "s/\<graph\>/_digr_aph_label_/g"\
    21         -e "s/\<Graphs\>/_Digr_aph_label_s/g"\
    22         -e "s/\<graphs\>/_digr_aph_label_s/g"\
    23         -e "s/_Graph/__Gr_aph_label_/g"\
    24         -e "s/\([Gg]\)raph\([a-z_]\)/_\1r_aph_label_\2/g"\
    25         -e "s/\([a-z_]\)graph/\1_gr_aph_label_/g"\
    26         -e "s/Graph/_Digr_aph_label_/g"\
    27         -e "s/graph/_digr_aph_label_/g"\
    28         -e "s/UEdge/_Ed_ge_label_/g"\
    29         -e "s/u[Ee]dge/_ed_ge_label_/g"\
    30         -e "s/IncEdgeIt/_In_cEd_geIt_label_/g"\
    31         -e "s/\<Edge\>/_Ar_c_label_/g"\
    32         -e "s/\<edge\>/_ar_c_label_/g"\
    33         -e "s/\<Edges\>/_Ar_c_label_s/g"\
    34         -e "s/\<edges\>/_ar_c_label_s/g"\
    35         -e "s/_Edge/__Ed_ge_label_/g"\
    36         -e "s/Edge\([a-z_]\)/_Ed_ge_label_\1/g"\
    37         -e "s/edge\([a-z_]\)/_ed_ge_label_\1/g"\
    38         -e "s/\([a-z_]\)edge/\1_ed_ge_label_/g"\
    39         -e "s/Edge/_Ar_c_label_/g"\
    40         -e "s/edge/_ar_c_label_/g"\
    41         -e "s/A[Nn]ode/_Re_d_label_/g"\
    42         -e "s/B[Nn]ode/_Blu_e_label_/g"\
    43         -e "s/A-[Nn]ode/_Re_d_label_/g"\
    44         -e "s/B-[Nn]ode/_Blu_e_label_/g"\
    45         -e "s/a[Nn]ode/_re_d_label_/g"\
    46         -e "s/b[Nn]ode/_blu_e_label_/g"\
    47         -e "s/_Digr_aph_label_/Digraph/g"\
    48         -e "s/_digr_aph_label_/digraph/g"\
    49         -e "s/_Gr_aph_label_/Graph/g"\
    50         -e "s/_gr_aph_label_/graph/g"\
    51         -e "s/_Ar_c_label_/Arc/g"\
    52         -e "s/_ar_c_label_/arc/g"\
    53         -e "s/_Ed_ge_label_/Edge/g"\
    54         -e "s/_ed_ge_label_/edge/g"\
    55         -e "s/_In_cEd_geIt_label_/IncEdgeIt/g"\
    56         -e "s/_Re_d_label_/Red/g"\
    57         -e "s/_Blu_e_label_/Blue/g"\
    58         -e "s/_re_d_label_/red/g"\
    59         -e "s/_blu_e_label_/blue/g"\
    60         -e "s/DigraphToEps/GraphToEps/g"\
    61         -e "s/digraphToEps/graphToEps/g"\
    62         -e "s/\<DefPredMap\>/SetPredMap/g"\
    63         -e "s/\<DefDistMap\>/SetDistMap/g"\
    64         -e "s/\<DefReachedMap\>/SetReachedMap/g"\
    65         -e "s/\<DefProcessedMap\>/SetProcessedMap/g"\
    66         -e "s/\<DefHeap\>/SetHeap/g"\
    67         -e "s/\<DefStandardHeap\>/SetStandradHeap/g"\
    68         -e "s/\<DefOperationTraits\>/SetOperationTraits/g"\
    69         -e "s/\<DefProcessedMapToBeDefaultMap\>/SetStandardProcessedMap/g"\
    70         -e "s/\<copyGraph\>/graphCopy/g"\
    71         -e "s/\<copyDigraph\>/digraphCopy/g"\
    72         -e "s/\<IntegerMap\>/RangeMap/g"\
    73         -e "s/\<integerMap\>/rangeMap/g"\
    74         -e "s/\<\([sS]\)tdMap\>/\1parseMap/g"\
    75         -e "s/\<\([Ff]\)unctorMap\>/\1unctorToMap/g"\
    76         -e "s/\<\([Mm]\)apFunctor\>/\1apToFunctor/g"\
    77         -e "s/\<\([Ff]\)orkWriteMap\>/\1orkMap/g"\
    78         -e "s/\<StoreBoolMap\>/LoggerBoolMap/g"\
    79         -e "s/\<storeBoolMap\>/loggerBoolMap/g"\
    80         -e "s/\<BoundingBox\>/Box/g"\
    81     <$i > $TMP
    82     mv $TMP $i
    83 done