53 lines
1.3 KiB
Plaintext
53 lines
1.3 KiB
Plaintext
#!/bin/ash
|
|
# shellcheck shell=ash
|
|
#
|
|
ERROR_LOG="/recalbox/share/system/logs/savesync-error.log"
|
|
|
|
# --- Logger Function ---
|
|
log() {
|
|
local timestamp
|
|
local level="$1"
|
|
local msg="$2"
|
|
mkdir -p "$(dirname \"$ERROR_LOG\")"
|
|
timestamp=$(date '+%Y-%m-%d %H:%M:%S')
|
|
local log_line="[$timestamp] [$level] $msg"
|
|
|
|
if [ "$level" = "ERROR" ]; then
|
|
printf "%s\n" "$log_line" >> "$ERROR_LOG"
|
|
fi
|
|
|
|
mosquitto_pub -h 127.0.0.1 -p 1883 -t /Recalbox/EmulationStation/Event "SaveLog=${log_line}"
|
|
|
|
# printf "%s\n" "$log_line" >> "$LOG_FILE" 2>/dev/null
|
|
[ "$DEBUG_MODE" -eq 1 ] && printf "%s\n" "$log_line"
|
|
}
|
|
|
|
eventfile="/tmp/es_state.inf"
|
|
|
|
# 1. Check if the file exists and is not empty
|
|
if [ ! -s "$eventfile" ]; then
|
|
log "ERROR" "$eventfile is missing or empty."
|
|
exit 1
|
|
fi
|
|
|
|
# 2. Read the payload safely
|
|
PAYLOAD=$(cat "$eventfile")
|
|
|
|
# 3. Publish (using double quotes to handle spaces/newlines in the file)
|
|
mosquitto_pub -h 127.0.0.1 -p 1883 -t /Recalbox/EmulationStation/Event "$PAYLOAD"
|
|
|
|
# 4. Optional: check if the publish succeeded
|
|
if [ $? -eq 0 ]; then
|
|
log "INFO" "Successfully published event."
|
|
else
|
|
log "ERROR" "Failed to connect to mosquitto broker."
|
|
exit 1
|
|
fi
|
|
|
|
mosquitto_sub -h 127.0.0.1 -p 1883 -t /Recalbox/EmulationStation/Event | while IFS="=" read -r key value
|
|
do
|
|
case "$key" in
|
|
"SaveSync") exit "$value" ;;
|
|
esac
|
|
done
|