OSDN Git Service

merge.sh: Add files, add revision option, handle middle dot.
[pf3gnuchains/gcc-fork.git] / libgo / merge.sh
1 #!/bin/sh
2
3 # Copyright 2009 The Go Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style
5 # license that can be found in the LICENSE file.
6
7 # This script merges changes from the master copy of the Go library
8 # into the libgo library.  This does the easy stuff; the hard stuff is
9 # left to the user.
10
11 # The file MERGE should hold the Mercurial revision number of the last
12 # revision which was merged into these sources.  Given that, and given
13 # the current sources, we can run the usual diff3 algorithm to merge
14 # all changes into our sources.
15
16 set -e
17
18 TMPDIR=${TMPDIR:-/tmp}
19
20 OLDDIR=${TMPDIR}/libgo-merge-old
21 NEWDIR=${TMPDIR}/libgo-merge-new
22
23 if ! test -f MERGE; then
24   echo 1>&2 "merge.sh: must be run in libgo source directory"
25   exit 1
26 fi
27
28 rev=weekly
29 case $# in
30 1) ;;
31 2) rev=$2 ;;
32 *)
33   echo 1>&2 "merge.sh: Usage: merge.sh mercurial-repository [revision]"
34   exit 1
35   ;;
36 esac
37
38 repository=$1
39
40 old_rev=`sed 1q MERGE`
41
42 rm -rf ${OLDDIR}
43 hg clone -r ${old_rev} ${repository} ${OLDDIR}
44
45 rm -rf ${NEWDIR}
46 hg clone -u ${rev} ${repository} ${NEWDIR}
47
48 new_rev=`cd ${NEWDIR} && hg log -r ${rev} | sed 1q | sed -e 's/.*://'`
49
50 merge() {
51   name=$1
52   old=$2
53   new=$3
54   libgo=$4
55   if ! test -f ${new}; then
56     # The file does not exist in the new version.
57     if ! test -f ${old}; then
58       echo 1>&2 "merge.sh internal error no files $old $new"
59       exit 1
60     fi
61     if ! test -f ${libgo}; then
62       # File removed in new version and libgo.
63       :;
64     else
65       echo "merge.sh: ${name}: REMOVED"
66       rm -f ${libgo}
67       hg rm ${libgo}
68     fi
69   elif test -f ${old}; then
70     # The file exists in the old version.
71     if ! test -f ${libgo}; then
72       echo "merge.sh: $name: skipping: exists in old and new hg, but not in libgo"
73       continue
74     fi
75     if cmp -s ${old} ${libgo}; then
76       # The libgo file is unchanged from the old version.
77       if cmp -s ${new} ${libgo}; then
78         # File is unchanged from old to new version.
79         continue
80       fi
81       # Update file in libgo.
82       echo "merge.sh: $name: updating"
83       cp ${new} ${libgo}
84     else
85       # The libgo file has local changes.
86       set +e
87       diff3 -m -E ${libgo} ${old} ${new} > ${libgo}.tmp
88       status=$?
89       set -e
90       case $status in
91       0)
92         echo "merge.sh: $name: updating"
93         mv ${libgo}.tmp ${libgo}
94         ;;
95       1)
96         echo "merge.sh: $name: CONFLICTS"
97         mv ${libgo}.tmp ${libgo}
98         hg resolve -u ${libgo}
99         ;;
100       *)
101         echo 1>&2 "merge.sh: $name: diff3 failure"
102         exit 1
103         ;;
104       esac
105     fi
106   else
107     # The file does not exist in the old version.
108     if test -f ${libgo}; then
109       if ! cmp -s ${new} ${libgo}; then
110         echo 1>&2 "merge.sh: $name: IN NEW AND LIBGO BUT NOT OLD"
111       fi
112     else
113       echo "merge.sh: $name: NEW"
114       dir=`dirname ${libgo}`
115       if ! test -d ${dir}; then
116         mkdir -p ${dir}
117       fi
118       cp ${new} ${libgo}
119       hg add ${libgo}
120     fi
121   fi
122 }
123
124 (cd ${NEWDIR}/src/pkg && find . -name '*.go' -print) | while read f; do
125   if test `dirname $f` = "./syscall"; then
126     continue
127   fi
128   oldfile=${OLDDIR}/src/pkg/$f
129   newfile=${NEWDIR}/src/pkg/$f
130   libgofile=go/$f
131   merge $f ${oldfile} ${newfile} ${libgofile}
132 done
133
134 (cd ${NEWDIR}/src/pkg && find . -name testdata -print) | while read d; do
135   oldtd=${OLDDIR}/src/pkg/$d
136   newtd=${NEWDIR}/src/pkg/$d
137   libgotd=go/$d
138   if ! test -d ${oldtd}; then
139     continue
140   fi
141   (cd ${oldtd} && hg status -A .) | while read f; do
142     if test "`basename $f`" = ".hgignore"; then
143       continue
144     fi
145     f=`echo $f | sed -e 's/^..//'`
146     name=$d/$f
147     oldfile=${oldtd}/$f
148     newfile=${newtd}/$f
149     libgofile=${libgotd}/$f
150     merge ${name} ${oldfile} ${newfile} ${libgofile}
151   done
152 done
153
154 runtime="chan.c cpuprof.c goc2c.c lock_futex.c lock_sema.c mcache.c mcentral.c mfinal.c mfixalloc.c mgc0.c mheap.c msize.c proc.c runtime.c runtime.h malloc.h malloc.goc mprof.goc runtime1.goc sema.goc sigqueue.goc string.goc"
155 for f in $runtime; do
156   oldfile=${OLDDIR}/src/pkg/runtime/$f
157   if test -f ${oldfile}; then
158     sed -e 's/·/_/g' < ${oldfile} > ${oldfile}.tmp
159     oldfile=${oldfile}.tmp
160     newfile=${NEWDIR}/src/pkg/runtime/$f
161     sed -e 's/·/_/g' < ${newfile} > ${newfile}.tmp
162     newfile=${newfile}.tmp
163     libgofile=runtime/$f
164     merge $f ${oldfile} ${newfile} ${libgofile}
165   fi
166 done
167
168 runtime2="linux/thread.c thread-linux.c linux/mem.c mem.c"
169 echo $runtime2 | while read from; do
170   read to
171   oldfile=${OLDDIR}/src/pkg/runtime/$from
172   if test -f ${oldfile}; then
173     sed -e 's/·/_/g' < ${oldfile} > ${oldfile}.tmp
174     oldfile=${oldfile}.tmp
175     newfile=${NEWDIR}/src/pkg/runtime/$from
176     sed -e 's/·/_/g' < ${newfile} > ${newfile}.tmp
177     newfile=${newfile}.tmp
178     libgofile=runtime/$to
179     merge $f ${oldfile} ${newfile} ${libgofile}
180   fi
181 done
182
183 (cd ${OLDDIR}/src/pkg && find . -name '*.go' -print) | while read f; do
184   oldfile=${OLDDIR}/src/pkg/$f
185   newfile=${NEWDIR}/src/pkg/$f
186   libgofile=go/$f
187   if test -f ${newfile}; then
188     continue
189   fi
190   if ! test -f ${libgofile}; then
191     continue
192   fi
193   echo "merge.sh: ${libgofile}: REMOVED"
194   rm -f ${libgofile}
195   hg rm ${libgofile}
196 done
197
198 (echo ${new_rev}; sed -ne '2,$p' MERGE) > MERGE.tmp
199 mv MERGE.tmp MERGE