rust-core_io/functions.sh

90 lines
1.8 KiB
Bash
Raw Normal View History

2016-11-03 13:00:47 +08:00
#!/bin/bash
git_file_exists() {
[ "$(git ls-tree --name-only $IO_COMMIT -- $1)" = "$1" ]
}
git_extract() {
slashes=${1//[^\/]/}
git archive $IO_COMMIT $1|tar xf - -C src/$IO_COMMIT --strip-components=${#slashes}
}
git_commits_ordered() {
2016-11-03 13:40:29 +08:00
format="$1"
2016-11-03 13:00:47 +08:00
shift
if [ $# -ge 1 ]; then
2016-11-03 13:40:29 +08:00
git log --topo-order --no-walk=sorted --date=iso-local --pretty=format:"$format" "$@"
2016-11-03 13:00:47 +08:00
fi
echo
}
echo_lines() {
for i in "$@"; do
echo $i
done
}
get_io_commits() {
for COMPILER_COMMIT in $COMPILER_COMMITS; do
IO_COMMIT=$(git log -n1 --pretty=format:%H $COMPILER_COMMIT -- src/libstd/io)
if ! grep -q $COMPILER_COMMIT mapping.rs; then
echo "-Mapping(\"$COMPILER_COMMIT\",\"$IO_COMMIT\")" >> mapping.rs
fi
echo $IO_COMMIT
done
}
get_patch_commits() {
2019-05-01 09:55:16 +08:00
find $PATCH_DIR -type f -print0|xargs -0 -n 1 basename|cut -d. -f1
2016-11-03 13:00:47 +08:00
}
prepare_version() {
mkdir src/$IO_COMMIT
git_extract src/libstd/io/
2018-03-09 07:04:56 +08:00
if git_file_exists src/libcore/slice/memchr.rs; then
true
elif git_file_exists src/libstd/sys_common/memchr.rs; then
git_extract src/libstd/sys_common/memchr.rs
elif git_file_exists src/libstd/sys/common/memchr.rs; then
2016-11-03 13:00:47 +08:00
git_extract src/libstd/sys/common/memchr.rs
else
git_extract src/libstd/memchr.rs
fi
rm -f src/$IO_COMMIT/stdio.rs src/$IO_COMMIT/lazy.rs
}
bold_arrow() {
2018-12-17 07:30:27 +08:00
echo -ne '\033[1;36m==> \033[0m'
2016-11-03 13:00:47 +08:00
}
custom_bashrc() {
echo '
if [ -f ~/.bashrc ]; then . ~/.bashrc; fi
try_patch() {
patch -p1 < ../../patches/$1.patch
}
'
}
2016-11-03 13:00:47 +08:00
bash_diff_loop() {
bash --rcfile <(custom_bashrc) <> /dev/stderr
2016-11-03 13:00:47 +08:00
while git diff --exit-code > /dev/null; do
bold_arrow; echo "$1"
while true; do
bold_arrow; echo -n "(T)ry again or (A)bort? "
read answer <> /dev/stderr
case "$answer" in
[tT])
break
;;
[aA])
bold_arrow; echo "Aborting..."
exit 1
;;
esac
done
bash <> /dev/stderr
done
}