# HG changeset patch # User Gernot Schulz # Date 1447152466 -3600 # Node ID bef9105f2d28bbde7765567b19c664e3e0dce4a0 # Parent a957a56bb6941aa4dd08e7629e221cbf9b6b453e# Parent c3955e5cf3b34aa6263f14fe9c638f1ea10a4674 Merge dashboardctl repository diff -r a957a56bb694 -r bef9105f2d28 contrib/dashboardctl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contrib/dashboardctl Tue Nov 10 11:47:46 2015 +0100 @@ -0,0 +1,138 @@ +#!/usr/bin/env sh + +# ------------------------------------------------------------------- +# Copyright (C) 2015 by Intevation GmbH +# Author(s): +# Gernot Schulz + +export DISPLAY=":0.0" + +OLDDB=/home/pi/incoming_dbs/tech_intern.db +NEWDB=/home/pi/incoming_dbs/tech_intern.db.new + +BOTTLEDASH_PID="$HOME/bottledash.pid" +BOTTLEDASH_LOG="$HOME/bottledash.log" +CHROMIUM_PID="$HOME/chromium.pid" +CHROMIUM_LOG="$HOME/chromium.log" + +usage () { +cat << EOF +Usage: $0 [COMMAND] + +Commands: + --start Start Bottledash and the dashboard/browser + --stop Stop Bottledash and the dashboard/browser + --reload Restart Bottledash and reload the dashboard/browser + --smart-reload If a new DB is available, restart Bottledash and reload + the dashboard/browser + --restart-bd Restart Bottledash + --reload-browser Reload dashboard/browser + --check-db Check if a new DB is available + -h, --help This help +EOF +} + +start_bottledash () { + # taken from start-bottledash-hohup + nohup python3 /home/pi/bottledash/dash.py 2>&1 > $BOTTLEDASH_LOG & + echo $! > $BOTTLEDASH_PID + sleep 10 +} + +stop_bottledash () { + if [ -f "$BOTTLEDASH_PID" ]; then + kill $(cat "$BOTTLEDASH_PID") && rm "$BOTTLEDASH_PID" + fi +} + +start_chromium () { + # taken from show-dashboard + rm -R $HOME/.cache/chromium/Default/Cache/ + DISPLAY=:0.0 nohup chromium --new --noerrdialogs --kiosk \ + http://localhost:8080 2>&1 > $CHROMIUM_LOG & + echo $! > $CHROMIUM_PID +} + + +stop_chromium () { + if [ -f "$CHROMIUM_PID" ]; then + kill $(cat "$CHROMIUM_PID") && rm "$CHROMIUM_PID" + fi +} + +xdo_reload_chromium () { + # Start Chromium if necessary + if [ -f "$BOTTLEDASH_PID" ] && [ -d /proc/$(cat "$CHROMIUM_PID") ]; then + # Send F5 to Chromium + WID=$(xdotool search --onlyvisible --class chromium | head -1) + xdotool windowactivate ${WID} + xdotool key F5 + else + start_chromium + fi +} + +check_new_db () { + if [ ! -f "$NEWDB" ]; then + echo 0 ; return + fi + OLDSIZE=$(md5sum $OLDDB | awk '{print $1}') + NEWSIZE=$(md5sum $NEWDB | awk '{print $1}') + if [ "$OLDSIZE" != "$NEWSIZE" ]; then + echo 1 + else + echo 0 + fi +} + +update_db () { + if [ $(check_new_db) -eq 1 ]; then + mv "$NEWDB" "$OLDDB" + fi +} + +case $1 in + '--start') + start_bottledash + start_chromium + ;; + '--stop') + stop_bottledash + stop_chromium + ;; + '--restart-bd') + stop_bottledash + start_bottledash + ;; + '--reload-browser') + xdo_reload_chromium + ;; + '--reload') + stop_bottledash + start_bottledash + xdo_reload_chromium + ;; + '--check-db') + check_new_db + ;; + '--smart-reload') + if [ $(check_new_db) -eq 1 ]; then + update_db + stop_bottledash + start_bottledash + sleep 10 + xdo_reload_chromium + fi + ;; + '-h'|'--help') + usage + exit 0 + ;; + *) + echo "ERROR: unknown command: $1" >&2 + usage + exit 2 + ;; +esac + +# vim: set ft=sh ts=4 sw=4 expandtab :