zsync 的 zenity 脚本

zsync 的 zenity 脚本

有人可以为 zsync 制作一个简单的 zenity 脚本,该脚本只需获取要同步的文件和 zsync 文件的位置并显示进度吗?

答案1

zsync 的解析输出非常糟糕。如果你尝试这样做,那你一定是疯了。

话虽如此,我显然是疯了。

#!/bin/bash

url=$1
seedfile=$2

tempdir=$(mktemp -d)
msgfile=$tempdir/message
trap 'rm -rf "$tempdir"' EXIT

down_filter() {
    local message line percent speed
    echo "Downloading zsync file" > "$msgfile"
    read -r -n1 _
    while read -r line; do
        if [[ $line = [-#]* ]]; then
            read -r _ percent speed <<< "$line"
            echo "#$(<"$msgfile")\n$speed"
            if (( ${percent%%.*} < 100 )); then
                echo "$percent"
            else
                echo "99.9%"
            fi
        fi
    done < <(awk 'BEGIN{RS="[\r\n]"} {print;fflush()}')
}

seed_filter() {
    local message file count size point
    while read -r -d '*' line; do
        file=${line%:*}
        message+="\n$file"
        echo "$message" > "$msgfile"
        file=${file#reading seed file }
        count=1
        size=$(( $(wc -c < "$file") / 1000000 + 1 ))
        echo "#$message"
        while read -r -n1 point; do
            [[ $point = '*' ]] || break
            ((count++))
            echo "$(( 100 * count / size ))%"
        done
        read -r message;
        echo "$message" > "$msgfile"
    done
}

if [[ -z $url ]]; then
    url=$(zenity --entry \
                 --title=zsync \
                 --text="Enter URL to zsync file" \
                 --width=500 \
                 --height=100 \
    ) || exit
fi

if [[ -z $seedfile || ! -e $seedfile ]]; then
    seedfile=$(zenity --file-selection \
                      --title="zsync $url" \
                      --text="Choose a seed-file" \
    )
fi

{ 
    zsync ${seedfile:+-i "$seedfile"} "$url" \
          > >(down_filter >&3) 2> >(seed_filter >&3)
} 3> >(zenity --progress \
              --title="zsync $url" \
              --width=500 \
              --height=100 \
)

该脚本有很多缺陷。新版本中 zsync 输出的任何细微变化都可能破坏它。(仅针对 Ubuntu 10.04 的 zsync v0.6.1 进行了测试)。出于某些奇怪的原因,它会将部分进度输出到 stdout,将部分进度输出到 stderr,这使得解析起来更加困难。

此外,它不会处理文件名中的某些奇怪字符,例如\*换行符。

预计会有错误;我还没有真正进行过太多测试。

无论如何,我以前从未听说过 zsync。这是一款很棒的工具,所以至少谢谢你让我知道它。:)

截图: 在此处输入图片描述 在此处输入图片描述

相关内容