summarylogtreecommitdiffstats
path: root/idos-timetable-browser.sh
diff options
context:
space:
mode:
authorfelics@felics-tablet2016-05-19 19:32:34 +0200
committerfelics@felics-tablet2016-05-19 19:32:34 +0200
commit21bfe682085f483064c673b05cf4040e64e64a37 (patch)
tree970f05a555d50426416ecd31e6da5d9c1084d3c7 /idos-timetable-browser.sh
downloadaur-21bfe682085f483064c673b05cf4040e64e64a37.tar.gz
Initial commit. And updated wrapper script.
Diffstat (limited to 'idos-timetable-browser.sh')
-rwxr-xr-xidos-timetable-browser.sh140
1 files changed, 140 insertions, 0 deletions
diff --git a/idos-timetable-browser.sh b/idos-timetable-browser.sh
new file mode 100755
index 000000000000..7ab17aa9e497
--- /dev/null
+++ b/idos-timetable-browser.sh
@@ -0,0 +1,140 @@
+#!/bin/bash
+
+### Wrapper for the windows-software "IDOS timetable browser".
+# This wrapper does start the software with 'wine' from the correct
+# directory (where it can find it's .dll files), and does some
+# command line argument reformatting so that filenames can be
+# specified both absolutely and relatively to the directory the user
+# starts this wrapper from.
+
+
+
+### Global variables:
+
+# Where this wrapper is started from:
+_cwd="$(pwd)"
+
+# Where the software is installed:
+_installdir="/opt/idos-timetable"
+
+# What the executable of the software is:
+_executable="${_installdir}/TT.exe"
+
+# Print some debug messages? Can be controlled via environment; if not
+# specified in the environment, set it here:
+if [ -z "${DEBUG}" ]; then
+ DEBUG="true"
+fi
+
+
+
+### Some helper functions:
+
+debug() {
+ case "${DEBUG}" in
+ "1"|[yY][eE][sS]|[tT][rR][uU][eE])
+ echo "$@" > /dev/stderr
+ ;;
+ esac
+}
+
+rebase_absolute_path() {
+ # Arguments:
+ # $1: The new base path (assumed to be absolute and not containing double-'/'),
+ # $2: The absolute path which should be made a relative path based on $1 (needs to be an absolute path).
+ _newbase="$1"
+ _oldpath="$2"
+
+ _depth_new="$(echo "${_newbase}" | tr -d '\n' | tr '/' '\n' | wc -l)" # Get the depth of $_newbase.
+ _updir_string=''
+ for i in $(seq 1 "${_depth_new}"); do # Put as much '../' into a string in order to reach / from $_newbase
+ _updir_string="../${_updir_string}"
+ done
+ _updir_string="$(echo "${_updir_string}" | head -c-2)" # Remove the trailing '/'.
+
+ _newpath="${_updir_string}${_oldpath}"
+
+ echo "${_newpath}"
+}
+
+rebase_relative_path() {
+ # Arguments:
+ # $1: Old base path (assumed to be absolute and not containing double-'/'),
+ # $2: New base path (assumed to be absolute and not containing double-'/'),
+ # $3: Relative path based on $1 to be rebased to $2.
+ _oldbase="$1"
+ _newbase="$2"
+ _oldpath="$3"
+
+ echo "$(rebase_absolute_path "${_newbase}" "${_oldbase}/${_oldpath}")"
+}
+
+
+
+### Do some option parsing:
+# * Convert "-h", "-help" or "--help" to "/?",
+# * convert pathnames to relative ones with regard to $_installdir,
+# which is necessary since
+# - the windows software would treat absolute pathnames, in the
+# Unix-world starting with '/', as options to the software,
+# - relative pathnames specified by the user need to be relative
+# with regard to the directory the software is run from. (We need
+# to change the directory so the software can find necessary
+# .dll files.)
+
+# First, copy the positional parameters into a new (modifiable) array;
+# with indices numbered in the same way as the positional paramaters
+# (exept that we won't have 0):
+
+argsnew=()
+
+for j in $(seq "$(($#-1))" -1 0); do
+ i="$(($#-$j))"
+ argsnew[$i]="${BASH_ARGV[$j]}"
+done
+
+# Now, parse the positional arguments. The software understands the
+# following arguments:
+# - Filenames to *.tt-files: Timetable files to use.
+# - /?: Help on arguments.
+# - /W:[CATZ], /L:*, /D:*, /C, /P, /I, /X:[23], /M:B, /O, /1, /2:*, /Z:*
+#
+# So, we will go as follows:
+# - Convert any '-h', '-help' or '--help' to '/?,
+# - If we encounter anything that does not begin with '/' or is not
+# '-h', '-help' or '--help', assume that it is a filename relative
+# to the directory $_cwd, and make it a filename relative to the
+# directory $_installdir.
+# - If we encounter something which mathes any of the options above,
+# leave it as it is,
+# - Assume that the rest is an absolute filename, and make it a
+# filename relative to the directory $_installdir.
+
+for i in $(seq 1 "$#"); do
+ case "${argsnew[$i]}" in
+ "-h"|"-help"|"--help")
+ argsnew[$i]="/?"
+ ;;
+ [^/]*)
+ argsnew[$i]="$(rebase_relative_path "${_cwd}" "${_installdir}" "${argsnew[$i]}")"
+ ;;
+ "/?"|"/W:"[CATZ]|"/L:"*|"/D:"*|"/C"|"/P"|"/I"|"/X:"[23]|"/M:B"|"/O"|"/1"|"/2:"*|"/Z:"*)
+ true
+ ;;
+ *)
+ # Now, everything left is assumed to be an absolute filename.
+ argsnew[$i]="$(rebase_absolute_path "${_installdir}" "${argsnew[$i]}")"
+ ;;
+ esac
+done
+
+
+
+### Launch the software with the parsed and maybe reformatted arguments:
+
+cd "${_installdir}"
+
+debug "DEBUG: We are running from the directory: '$(pwd)'."
+debug "DEBUG: Executing the following command: 'wine ${_executable} ${argsnew[@]}'."
+
+wine "${_executable}" "${argsnew[@]}"