remove colon-escape hacks

This commit is contained in:
Jorge Morante 2016-05-06 00:25:54 +02:00
parent ff14308500
commit 3fdd1c3690
1 changed files with 9 additions and 22 deletions

View File

@ -1,11 +1,14 @@
#!/usr/bin/env bash
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
COLON_ESCAPE_SEQUENCE="!!!!COLON!!!!"
MATCH_PARSER="\([0-9]\+\):\(.*\)"
HINTS=(p o i u l k j t r e wj wt wr we ww wq wf wd ws wa qp qo qi qu ql qk qj qt qr qe qw qq qf qd qs qa fp fo fi fu fl fk fj ft fr fe fw fq ff fd fs fa dp do di du dl dk dj dt dr de dw dq df dd ds da sp so si su sl sk sj st sr se sw sq sf sd ss sa ap ao ai au al ak aj at ar ae aw aq af ad as aa)
match_lookup_table=''
declare -A match_lookup_table
function get_hint() {
echo "${HINTS[$1]}"
}
@ -14,22 +17,9 @@ function highlight() {
printf "\033[1;33m%s\033[0m" "$1"
}
function escape_colons(){
echo $1 | sed "s/:/$COLON_ESCAPE_SEQUENCE/${2:-g}"
}
function unescape_colons(){
echo $1 | sed "s/$COLON_ESCAPE_SEQUENCE/:/${2:-g}"
}
function escape_match() {
# escapes all colons except the first one
unescape_colons "$(escape_colons "$1")" "1"
}
function lookup_match() {
local input=$1
unescape_colons $(echo -e "$match_lookup_table" | grep -i "^$input:" | cut -f2 -d:)
echo ${match_lookup_table[$input]}
}
lines=''
@ -49,14 +39,11 @@ i=0
OLDIFS=$IFS
IFS=$(echo -en "\n\b") # wtf bash?
for match in $matches ; do
#TODO improve escape/unscape hackery here
match=$(escape_match "$match")
hint=$(get_hint $i)
linenumber=$(echo $match | cut -f1 -d:)
escaped_text=$(echo $match | cut -f2 -d:)
unescaped_text=$(unescape_colons $escaped_text)
output=$(echo -ne "$output" | sed "${linenumber}s!${unescaped_text//!/\\!}!$(highlight ${unescaped_text//!/\\!}) $(highlight "[${hint//!/\\!}]")!g")
match_lookup_table="$match_lookup_table\n$hint:$escaped_text"
linenumber=$(echo $match | sed "s/$MATCH_PARSER/\1/")
text=$(echo $match | sed "s/$MATCH_PARSER/\2/")
output=$(echo -ne "$output" | sed "${linenumber}s!${text//!/\\!}!$(highlight ${text//!/\\!}) $(highlight "[${hint//!/\\!}]")!g")
match_lookup_table[$hint]=$text
i=$((i + 1))
done
IFS=$OLDIFS