Script 'scheduler': get out array 'info_array'.
This commit is contained in:
parent
19b85b5256
commit
6cdfaaa268
164
schedule
164
schedule
@ -8,9 +8,6 @@ TOURNAMENT=2014/1-tabiyas
|
|||||||
# Version information
|
# Version information
|
||||||
VERSION="0.1"
|
VERSION="0.1"
|
||||||
|
|
||||||
# *FIXME* Withdrew players should be taken from the main config
|
|
||||||
WITHDREW_PLS="trex6"
|
|
||||||
|
|
||||||
argv0=${0##*/}
|
argv0=${0##*/}
|
||||||
|
|
||||||
usage() {
|
usage() {
|
||||||
@ -31,8 +28,7 @@ Usage: $argv0 [options] [tours]
|
|||||||
|
|
||||||
Options:
|
Options:
|
||||||
-a List accomplished games too
|
-a List accomplished games too
|
||||||
-p PLAYER Only PLAYER's games are listed; this supports globs
|
-p PLAYER Show game if PLAYER is a part of a player's name
|
||||||
inside PLAYER for player matching
|
|
||||||
-f FORMAT Specify the output format; FORMAT is \`term'
|
-f FORMAT Specify the output format; FORMAT is \`term'
|
||||||
(default), \`html', or \`lor'
|
(default), \`html', or \`lor'
|
||||||
-l Add the URL link to game (if accomplished)
|
-l Add the URL link to game (if accomplished)
|
||||||
@ -45,12 +41,8 @@ version() {
|
|||||||
echo "${argv0}-${VERSION}"
|
echo "${argv0}-${VERSION}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Variables
|
|
||||||
date_re="([0-9?]{2})\\.([0-9?]{2})\\.([0-9?]{4})"
|
|
||||||
res_re="(0|1|0\\.5):(0|1|0\\.5)"
|
|
||||||
|
|
||||||
show_tour_sequence() {
|
show_tour_sequence() {
|
||||||
local sequence info_array
|
local sequence
|
||||||
|
|
||||||
# Generate the sequence of tours to search in
|
# Generate the sequence of tours to search in
|
||||||
if [[ -z "$@" ]]; then
|
if [[ -z "$@" ]]; then
|
||||||
@ -61,14 +53,46 @@ show_tour_sequence() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
for tour in $sequence; do
|
for tour in $sequence; do
|
||||||
|
local info_url="${BASEURL}/tours/${tour}/tour_info"
|
||||||
|
|
||||||
|
# *NOTE* The incorporation of a newline at the end of
|
||||||
|
# 'tour_info' (--write-out '\n') is important and allows one
|
||||||
|
# to read the last line with no trailing '\n'
|
||||||
|
local tour_info="$(curl -q --fail --silent --write-out '\n' $info_url)"
|
||||||
|
|
||||||
# Produce output only if 'tour_info' exists
|
# Produce output only if 'tour_info' exists
|
||||||
if fetch_info_array "$tour"; then
|
if [[ -n "$tour_info" ]]; then
|
||||||
for ((i=5; i<${#info_array[@]}; ++i)); do
|
local tour_num date_beg date_end
|
||||||
if keep_info_line "${info_array[$i]}"; then
|
local white black result game_date game_url
|
||||||
show_tour_info
|
# Lines with game info
|
||||||
break
|
local output_lines=""
|
||||||
|
|
||||||
|
while read line; do
|
||||||
|
get_tour_num "$line" && continue
|
||||||
|
get_tour_dates "$line" && continue
|
||||||
|
|
||||||
|
# Keep game info if needed, and store it in variables
|
||||||
|
# 'while', 'black', 'result', and 'game_date'
|
||||||
|
if keep_game_info "$line"; then
|
||||||
|
# Fix result
|
||||||
|
case "$result" in
|
||||||
|
1:0) result="1-0" ;;
|
||||||
|
0:1) result="0-1" ;;
|
||||||
|
0.5:0.5) result="1/2" ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Store the link to game in 'game_url'
|
||||||
|
game_url=""
|
||||||
|
if $SHOW_LINK; then
|
||||||
|
[[ -n "$result" ]] && store_game_url
|
||||||
|
fi
|
||||||
|
|
||||||
|
output_lines+="${white} ${black} ${result} ${game_url}\n"
|
||||||
fi
|
fi
|
||||||
done
|
done <<< "$tour_info"
|
||||||
|
|
||||||
|
[[ -n "$output_lines" ]] && eval "info_output_$FORMAT \"${output_lines}\""
|
||||||
|
|
||||||
else
|
else
|
||||||
# If the tour numbers were not passed as arguments, exit
|
# If the tour numbers were not passed as arguments, exit
|
||||||
# once the first non-existing 'tour_info' is reached
|
# once the first non-existing 'tour_info' is reached
|
||||||
@ -77,36 +101,46 @@ show_tour_sequence() {
|
|||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
fetch_info_array() {
|
get_tour_num() {
|
||||||
local url="${BASEURL}/tours/${1}/tour_info"
|
if [[ "$1" =~ "Тур №"([0-9]+) ]]; then
|
||||||
|
tour_num="${BASH_REMATCH[1]}"
|
||||||
# Store 'tour_info' in an array of lines.
|
return 0
|
||||||
# *NOTE* The incorporation of a newline at the end of 'tour_info'
|
else
|
||||||
# (--write-out '\n') is important and allows one to read the last
|
return 1
|
||||||
# line with no trailing '\n'
|
fi
|
||||||
info_array=()
|
|
||||||
while read line; do
|
|
||||||
info_array+=("$line")
|
|
||||||
done <<< "$(curl -q --fail --silent --write-out '\n' $url)"
|
|
||||||
|
|
||||||
return `[[ -n $info_array ]]`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
keep_info_line() {
|
get_tour_dates() {
|
||||||
|
local date_re="[0-9?]{2}\\.[0-9?]{2}\\.[0-9?]{4}"
|
||||||
|
|
||||||
|
if [[ "$1" =~ "Время проведения:"' '*($date_re)' '*[-—]' '*($date_re) ]]; then
|
||||||
|
date_beg="${BASH_REMATCH[1]}" date_end="${BASH_REMATCH[2]}"
|
||||||
|
# Use short dates
|
||||||
|
date_beg="${date_beg:0:5}" date_end="${date_end:0:5}"
|
||||||
|
return 0
|
||||||
|
else
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
keep_game_info() {
|
||||||
|
local date_re="([0-9?]{2})\\.([0-9?]{2})\\.([0-9?]{4})"
|
||||||
|
local res_re="(0|1|0\\.5):(0|1|0\\.5)"
|
||||||
local line="$1" keep=1
|
local line="$1" keep=1
|
||||||
|
|
||||||
if $SHOW_ALL; then
|
if [[ "$line" =~ ($date_re)' '*[-—]' '*([^' ']+)' '*($res_re)?' '*([^' ']+) ]]; then
|
||||||
keep=0
|
white="${BASH_REMATCH[5]}"
|
||||||
else
|
black="${BASH_REMATCH[9]}"
|
||||||
# Keep line if the game is not finished
|
result="${BASH_REMATCH[6]}"
|
||||||
if [[ -z $(egrep "$res_re" <<< "$line") ]]; then
|
game_date="${BASH_REMATCH[4]}-${BASH_REMATCH[3]}-${BASH_REMATCH[2]}"
|
||||||
if [[ -z "$PLAYER" ]]; then
|
|
||||||
keep=0
|
|
||||||
|
|
||||||
# In addition, if the player was passed as an argument,
|
# If the player was passed as an argument, check if it is his game or not
|
||||||
# check if it is his game or not
|
if [[ -z "$PLAYER" || "$white" =~ "$PLAYER" || "$black" =~ "$PLAYER" ]]; then
|
||||||
elif [[ -n $(grep -o "$PLAYER" <<< "$line") ]]; then
|
if $SHOW_ALL; then
|
||||||
keep=0
|
keep=0
|
||||||
|
else
|
||||||
|
# Keep line if the game is not finished
|
||||||
|
[[ -z "$result" ]] && keep=0
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
@ -114,55 +148,17 @@ keep_info_line() {
|
|||||||
return $keep
|
return $keep
|
||||||
}
|
}
|
||||||
|
|
||||||
show_tour_info() {
|
|
||||||
[[ "${info_array[0]}" =~ "Тур №"([0-9]+) ]]
|
|
||||||
local tour_num="${BASH_REMATCH[1]}"
|
|
||||||
|
|
||||||
[[ "${info_array[3]}" =~ ($date_re)" "*[-—]" "*($date_re) ]]
|
|
||||||
local date_beg="${BASH_REMATCH[1]}" date_end="${BASH_REMATCH[5]}"
|
|
||||||
# Use short dates
|
|
||||||
date_beg="${date_beg:0:5}"; date_end="${date_end:0:5}"
|
|
||||||
|
|
||||||
# Lines with game info
|
|
||||||
local output_lines=""
|
|
||||||
for ((i=5; i<${#info_array[@]}; ++i)); do
|
|
||||||
local line="${info_array[$i]}"
|
|
||||||
|
|
||||||
if keep_info_line "$line"; then
|
|
||||||
[[ "$line" =~ ($date_re)" "*[-—]" "*([^" "]+)" "*($res_re)?" "*([^" "]+) ]]
|
|
||||||
local white="${BASH_REMATCH[5]}" black="${BASH_REMATCH[9]}" result="" url=""
|
|
||||||
local game_date="${BASH_REMATCH[4]}-${BASH_REMATCH[3]}-${BASH_REMATCH[2]}"
|
|
||||||
case "${BASH_REMATCH[6]}" in
|
|
||||||
1:0) result="1-0";;
|
|
||||||
0:1) result="0-1";;
|
|
||||||
0.5:0.5) result="1/2";;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Store the link of game in variable '$url'
|
|
||||||
if $SHOW_LINK; then
|
|
||||||
if [[ ! "$WITHDREW_PLS" =~ (^|' '+)("${white}"|"${black}")($|' '+) ]]; then
|
|
||||||
[[ -n "$result" ]] && store_game_url
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
output_lines+="${white} ${black} ${result} ${url}\n"
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
eval "info_output_$FORMAT \"${output_lines}\""
|
|
||||||
}
|
|
||||||
|
|
||||||
store_game_url() {
|
store_game_url() {
|
||||||
local tour=$(printf "%02g" "$tour_num")
|
local tour=$(printf "%02g" "$tour_num")
|
||||||
local game_dir="${game_date}-${white}-vs-${black}"
|
local game_dir="${game_date}-${white}-vs-${black}"
|
||||||
local game_url="${BASEURL}/tours/${tour}/${game_dir}/1.pgn"
|
local pgn_url="${BASEURL}/tours/${tour}/${game_dir}/1.pgn"
|
||||||
|
|
||||||
while read line; do
|
while read line; do
|
||||||
# Search for an URL inside PGN file
|
# Search for a URL inside PGN file
|
||||||
[[ "$line" =~ "[Site \""([a-z]+:[^"\""]+)"\"]" ]]
|
[[ "$line" =~ "[Site \""([a-z]+:[^\"]+)"\"]" ]]
|
||||||
url="${BASH_REMATCH[1]}"
|
game_url="${BASH_REMATCH[1]}"
|
||||||
[[ -n "$url" ]] && break
|
[[ -n "$game_url" ]] && break
|
||||||
done <<< "$(curl -q --fail --silent $game_url)"
|
done <<< "$(curl -q --fail --silent $pgn_url)"
|
||||||
}
|
}
|
||||||
|
|
||||||
info_output_term() {
|
info_output_term() {
|
||||||
|
Loading…
Reference in New Issue
Block a user