src/HOL/Tools/Mirabelle/lib/Tools/mirabelle
author boehmes
Fri, 21 Aug 2009 13:21:19 +0200
changeset 32385 594890623c46
parent 32383 521065a499c6
child 32397 1899b8c47961
permissions -rwxr-xr-x
split actions from Mirabelle core (Mirabelle may thus be applied to basic theories in HOL)

#!/usr/bin/env bash
#
# Author: Sascha Boehme
#
# DESCRIPTION: testing tool for automated proof tools


PRG="$(basename "$0")"

function action_names() {
  TOOLS="$MIRABELLE_HOME/Tools/mirabelle_*.ML"
  ACTION_NAMES=`find $TOOLS | sed 's/.*mirabelle_\(.*\)\.ML/\1/'`
}

function usage() {
  out="$MIRABELLE_OUTPUT_PATH"
  timeout="$MIRABELLE_TIMEOUT"
  action_names
  echo
  echo "Usage: isabelle $PRG [OPTIONS] ACTIONS FILES"
  echo
  echo "  Options are:"
  echo "    -L LOGIC     parent logic to use (default $ISABELLE_LOGIC)"
  echo "    -T THEORY    parent theory to use (default $MIRABELLE_THEORY)"
  echo "    -O DIR       output directory for test data (default $out)"
  echo "    -v           be verbose"
  echo "    -t TIMEOUT   timeout for each action in seconds (default $timeout)"
  echo
  echo "  Apply the given actions (i.e., automated proof tools)"
  echo "  at all proof steps in the given theory files."
  echo
  echo "  ACTIONS is a colon-separated list of actions, where each action is"
  echo "  either NAME or NAME[KEY=VALUE,...,KEY=VALUE]. Available actions are:"
  for NAME in $ACTION_NAMES
  do
    echo "    $NAME"
  done
  echo
  echo "  FILES is a space-separated list of theory files, where each file is"
  echo "  either NAME.thy or NAME.thy[START:END] and START and END are numbers"
  echo "  indicating the range the given actions are to be applied."
  echo
  exit 1
}


## process command line

# options

while getopts "L:T:O:vt:" OPT
do
  case "$OPT" in
    L)
      MIRABELLE_LOGIC="$OPTARG"
      ;;
    T)
      MIRABELLE_THEORY="$OPTARG"
      ;;
    O)
      MIRABELLE_OUTPUT_PATH="$OPTARG"
      ;;
    v)
      MIRABELLE_VERBOSE=true
      ;;
    t)
      MIRABELLE_TIMEOUT="$OPTARG"
      ;;
    \?)
      usage
      ;;
  esac
done

shift $(($OPTIND - 1))

ACTIONS="$1"

shift


# setup

mkdir -p $MIRABELLE_OUTPUT_PATH


## main

for FILE in "$@"
do
  perl -w $MIRABELLE_HOME/lib/scripts/mirabelle.pl $ACTIONS "$FILE"
done