Admin/MacOS/App1/script
author paulson
Mon, 06 Aug 2012 15:01:15 +0100
changeset 48695 b5d7a35bdd6a
parent 48631 81c81f13d152
child 50792 b7e38c13d87b
permissions -rw-r--r--
switching from Emacs.app to Aquamacs.app
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
29136
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
     1
#!/bin/bash
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
     2
#
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
     3
# Author: Makarius
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
     4
#
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
     5
# Isabelle application wrapper
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
     6
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
     7
THIS="$(cd "$(dirname "$0")"; pwd)"
29149
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
     8
THIS_APP="$(cd "$THIS/../.."; pwd)"
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
     9
SUPER_APP="$(cd "$THIS/../../.."; pwd)"
29136
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
    10
29173
c14c9a41f1ac PATH: /opt/local/bin is back again (required for latex etc.);
wenzelm
parents: 29149
diff changeset
    11
c14c9a41f1ac PATH: /opt/local/bin is back again (required for latex etc.);
wenzelm
parents: 29149
diff changeset
    12
# sane environment defaults
41643
10b0d338d99e default UTF-8 locale, to work with funny base directory (e.g. Chinese);
wenzelm
parents: 41642
diff changeset
    13
29136
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
    14
cd "$HOME"
44985
272e8e4e4fc7 imitate Apple in setting initial shell PATH -- especially relevant for MacTeX, MacPorts etc.;
wenzelm
parents: 44948
diff changeset
    15
if [ -x /usr/libexec/path_helper ]; then
272e8e4e4fc7 imitate Apple in setting initial shell PATH -- especially relevant for MacTeX, MacPorts etc.;
wenzelm
parents: 44948
diff changeset
    16
  eval $(/usr/libexec/path_helper -s)
272e8e4e4fc7 imitate Apple in setting initial shell PATH -- especially relevant for MacTeX, MacPorts etc.;
wenzelm
parents: 44948
diff changeset
    17
fi
29136
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
    18
41643
10b0d338d99e default UTF-8 locale, to work with funny base directory (e.g. Chinese);
wenzelm
parents: 41642
diff changeset
    19
[ -z "$LANG" ] && export LANG=en_US.UTF-8
10b0d338d99e default UTF-8 locale, to work with funny base directory (e.g. Chinese);
wenzelm
parents: 41642
diff changeset
    20
29136
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
    21
29149
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    22
# settings support
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    23
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    24
function choosefrom ()
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    25
{
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    26
  local RESULT=""
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    27
  local FILE=""
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    28
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    29
  for FILE in "$@"
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    30
  do
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    31
    [ -z "$RESULT" -a -e "$FILE" ] && RESULT="$FILE"
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    32
  done
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    33
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    34
  [ -z "$RESULT" ] && RESULT="$FILE"
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    35
  echo "$RESULT"
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    36
}
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    37
29136
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
    38
29149
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    39
# Isabelle
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    40
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    41
ISABELLE_TOOL="$(choosefrom \
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    42
  "$THIS/Isabelle/bin/isabelle" \
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    43
  "$SUPER_APP/Isabelle/bin/isabelle" \
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    44
  "$HOME/bin/isabelle" \
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    45
  isabelle)"
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    46
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    47
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    48
# Proof General / Emacs
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    49
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    50
PROOFGENERAL_EMACS="$(choosefrom \
48695
b5d7a35bdd6a switching from Emacs.app to Aquamacs.app
paulson
parents: 48631
diff changeset
    51
  "$THIS/Aquamacs.app/Contents/MacOS/Aquamacs" \
b5d7a35bdd6a switching from Emacs.app to Aquamacs.app
paulson
parents: 48631
diff changeset
    52
  "$SUPER_APP/Aquamacs.app/Contents/MacOS/Aquamacs" \
b5d7a35bdd6a switching from Emacs.app to Aquamacs.app
paulson
parents: 48631
diff changeset
    53
  /Applications/Aquamacs.app/Contents/MacOS/Aquamacs \
29149
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    54
  "")"
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    55
33912
a5e6e849a0d8 allow spaces within PROOFGENERAL_EMACS;
wenzelm
parents: 31924
diff changeset
    56
declare -a EMACS_OPTIONS=()
29149
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    57
if [ -n "$PROOFGENERAL_EMACS" ]; then
33912
a5e6e849a0d8 allow spaces within PROOFGENERAL_EMACS;
wenzelm
parents: 31924
diff changeset
    58
  EMACS_OPTIONS=(-p "$PROOFGENERAL_EMACS")
29136
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
    59
fi
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
    60
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
    61
29149
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
    62
# run interface with error feedback
29136
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
    63
44881
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    64
ISABELLE_INTERFACE_CHOICE="$("$ISABELLE_TOOL" getenv -b ISABELLE_INTERFACE_CHOICE)"
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    65
if [ "$ISABELLE_INTERFACE_CHOICE" != emacs -a "$ISABELLE_INTERFACE_CHOICE" != jedit ]
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    66
then
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    67
  declare -a CHOICE
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    68
  CHOICE=($("$THIS/CocoaDialog.app/Contents/MacOS/CocoaDialog" dropdown \
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    69
    --title Isabelle \
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    70
    --text "Which Isabelle interface?" \
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    71
    --items "Emacs / Proof General" "Isabelle/jEdit PIDE" \
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    72
    --button2 "OK, do not ask again" --button1 "OK"))
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    73
  if [ "${CHOICE[1]}" = 0 ]; then
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    74
    ISABELLE_INTERFACE_CHOICE=emacs
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    75
  else
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    76
    ISABELLE_INTERFACE_CHOICE=jedit
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    77
  fi
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    78
  if [ "${CHOICE[0]}" = 2 ]; then
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    79
    ISABELLE_HOME_USER="$("$ISABELLE_TOOL" getenv -b ISABELLE_HOME_USER)"
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    80
    mkdir -p "$ISABELLE_HOME_USER/etc"
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    81
    ( echo; echo "ISABELLE_INTERFACE_CHOICE=$ISABELLE_INTERFACE_CHOICE"; ) \
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    82
      >> "$ISABELLE_HOME_USER/etc/settings"
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    83
    "$THIS/CocoaDialog.app/Contents/MacOS/CocoaDialog" ok-msgbox \
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    84
      --title Isabelle \
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    85
      --text Note \
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    86
      --informative-text "ISABELLE_INTERFACE_CHOICE stored in $ISABELLE_HOME_USER/etc/settings" \
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    87
      --no-cancel
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    88
  fi
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    89
fi
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    90
29136
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
    91
OUTPUT="/tmp/isabelle$$.out"
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
    92
44881
ca2f585d1ebe persistent ISABELLE_INTERFACE_CHOICE;
wenzelm
parents: 44880
diff changeset
    93
if [ "$ISABELLE_INTERFACE_CHOICE" = emacs ]; then
44880
9fb612890ad9 explicit choice of interface;
wenzelm
parents: 41644
diff changeset
    94
  ( "$ISABELLE_TOOL" emacs "${EMACS_OPTIONS[@]}" "$@" ) > "$OUTPUT" 2>&1
9fb612890ad9 explicit choice of interface;
wenzelm
parents: 41644
diff changeset
    95
  RC=$?
9fb612890ad9 explicit choice of interface;
wenzelm
parents: 41644
diff changeset
    96
else
45095
bf7a8906c0cb retain output, which is required for non-existent JRE, for example (cf. b455e4f42c04);
wenzelm
parents: 44985
diff changeset
    97
  ( "$ISABELLE_TOOL" jedit "$@" ) > "$OUTPUT" 2>&1
44880
9fb612890ad9 explicit choice of interface;
wenzelm
parents: 41644
diff changeset
    98
  RC=$?
9fb612890ad9 explicit choice of interface;
wenzelm
parents: 41644
diff changeset
    99
fi
29136
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
   100
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
   101
if [ "$RC" != 0 ]; then
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
   102
  echo >> "$OUTPUT"
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
   103
  echo "Return code: $RC" >> "$OUTPUT"
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
   104
fi
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
   105
29149
eae45c2a6811 more sophisticated MacOS interface script (mostly for Carbon Emacs);
wenzelm
parents: 29136
diff changeset
   106
if [ $(stat -f "%z" "$OUTPUT") != 0 ]; then
29136
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
   107
  "$THIS/CocoaDialog.app/Contents/MacOS/CocoaDialog" textbox \
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
   108
    --title "Isabelle" \
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
   109
    --informative-text "Isabelle output" \
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
   110
    --text-from-file "$OUTPUT" \
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
   111
    --button1 "OK"
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
   112
fi
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
   113
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
   114
rm -f "$OUTPUT"
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
   115
de5b29c25af9 basic setup for MacOS application bundle;
wenzelm
parents:
diff changeset
   116
exit "$RC"