Improve overview and experiment naming
[khatus.git] / v2 / src / awk / exe / parse_mpd_status_currentsong.awk
diff --git a/v2/src/awk/exe/parse_mpd_status_currentsong.awk b/v2/src/awk/exe/parse_mpd_status_currentsong.awk
deleted file mode 100644 (file)
index c29f5fa..0000000
+++ /dev/null
@@ -1,81 +0,0 @@
-# Msg separator
-/^OK/ {msg_count++; next}
-
-# Msg content
-/^[a-zA-Z-]+: / {
-    key = $1
-    val = $0
-    sub(".*" key " *", "", val)
-    sub(":$", "", key)
-    key = tolower(key)
-    # Note that we expect a particular order of response messages (also
-    # reflected in the name of this script file): "status" THEN "currentsong"
-         if (msg_count == 1) {status[key]      = val}
-    else if (msg_count == 2) {currentsong[key] = val}
-    else {
-        printf("Unexpected msg_count in mpd response: %d\n", msg_count) \
-            > "/dev/stderr"
-        exit 1
-    }
-    next
-}
-
-END {
-    name  = currentsong["name"]
-    title = currentsong["title"]
-    file  = currentsong["file"]
-
-    if (name) {
-        song = name
-    } else if (title) {
-        song = title
-    } else if (file) {
-        last = split(file, parts, "/")
-        song = parts[last]
-    } else {
-        song = "?"
-    }
-
-    format_time(status["time"], time)
-    output["play_time_minimal_units"] = time["minimal_units"]
-    output["play_time_percentage"]    = time["percentage"]
-    output["state"]                   = status["state"]
-    output["song"]                    = song
-    for (key in output) {
-        print(key, output[key])
-    }
-}
-
-function format_time(time_str, time_arr,    \
-    \
-    time_str_parts,
-    seconds_current,
-    seconds_total,
-    hours,
-    secs_beyond_hours,
-    mins,
-    secs,
-    time_percentage \
-) {
-    split(time_str, time_str_parts, ":")
-    seconds_current = time_str_parts[1]
-    seconds_total   = time_str_parts[2]
-
-    hours = int(seconds_current / 60 / 60);
-    secs_beyond_hours = seconds_current - (hours * 60 * 60);
-    mins = int(secs_beyond_hours / 60);
-    secs = secs_beyond_hours - (mins * 60);
-
-    if (hours > 0) {
-        time_arr["minimal_units"] = sprintf("%d:%.2d:%.2d", hours, mins, secs)
-    } else {
-        time_arr["minimal_units"] = sprintf("%.2d:%.2d", mins, secs)
-    }
-
-    if (seconds_total > 0) {
-        time_percentage = (seconds_current / seconds_total) * 100
-        time_arr["percentage"] = sprintf("%d%%", time_percentage)
-    } else {
-        time_arr["percentage"] = "~"
-    }
-}
This page took 0.030867 seconds and 4 git commands to generate.