src/HOL/Tools/ATP/watcher.ML
author aspinall
Fri, 30 Sep 2005 18:18:34 +0200
changeset 17740 fc385ce6187d
parent 17716 89932e53f31d
child 17746 af59c748371d
permissions -rw-r--r--
Add icon for interface.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15789
4cb16144c81b added hearder lines and deleted some redundant material
paulson
parents: 15787
diff changeset
     1
(*  Title:      Watcher.ML
4cb16144c81b added hearder lines and deleted some redundant material
paulson
parents: 15787
diff changeset
     2
    ID:         $Id$
4cb16144c81b added hearder lines and deleted some redundant material
paulson
parents: 15787
diff changeset
     3
    Author:     Claire Quigley
4cb16144c81b added hearder lines and deleted some redundant material
paulson
parents: 15787
diff changeset
     4
    Copyright   2004  University of Cambridge
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
     5
 *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
     6
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
     7
 (***************************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
     8
 (*  The watcher process starts a resolution process when it receives a     *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
     9
(*  message from Isabelle                                                  *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    10
(*  Signals Isabelle, puts output of child into pipe to Isabelle,          *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    11
(*  and removes dead processes.  Also possible to kill all the resolution  *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    12
(*  processes currently running.                                           *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    13
(*  Hardwired version of where to pick up the tptp files for the moment    *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    14
(***************************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    15
17305
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
    16
signature WATCHER =
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
    17
sig
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
    18
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
    19
(*  Send request to Watcher for multiple spasses to be called for filenames in arg       *)
17568
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
    20
(* callResProvers (outstreamtoWatcher, prover name,prover-command, (settings,file) list *)
17305
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
    21
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
    22
val callResProvers :
17422
3b237822985d massive tidy-up and simplification
paulson
parents: 17317
diff changeset
    23
    TextIO.outstream * (string*string*string*string*string) list 
17305
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
    24
    -> unit
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
    25
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
    26
(* Send message to watcher to kill currently running resolution provers *)
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
    27
val callSlayer : TextIO.outstream -> unit
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
    28
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
    29
(* Start a watcher and set up signal handlers             *)
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
    30
val createWatcher : 
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
    31
    thm * (ResClause.clause * thm) Array.array -> 
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
    32
    TextIO.instream * TextIO.outstream * Posix.Process.pid
17305
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
    33
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
    34
(* Kill watcher process                                   *)
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
    35
val killWatcher : Posix.Process.pid -> unit
17488
67376a311a2b further simplification of the Isabelle-ATP linkup
paulson
parents: 17484
diff changeset
    36
val killWatcher' : int -> unit
17305
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
    37
end
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
    38
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
    39
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    40
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    41
structure Watcher: WATCHER =
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
    42
struct
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    43
17488
67376a311a2b further simplification of the Isabelle-ATP linkup
paulson
parents: 17484
diff changeset
    44
open Recon_Transfer
16805
fadf80952202 open ReconPrelim Recon_Transfer;
wenzelm
parents: 16767
diff changeset
    45
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    46
val goals_being_watched = ref 0;
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    47
17583
c272b91b619f removal of "sleep" to stop looping in Poly/ML, and replacement of funny codes by tracing statements
paulson
parents: 17568
diff changeset
    48
val trace_path = Path.basic "watcher_trace";
c272b91b619f removal of "sleep" to stop looping in Poly/ML, and replacement of funny codes by tracing statements
paulson
parents: 17568
diff changeset
    49
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
    50
fun trace s = if !Output.show_debug_msgs then File.append (File.tmp_path trace_path) s 
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
    51
              else ();
17583
c272b91b619f removal of "sleep" to stop looping in Poly/ML, and replacement of funny codes by tracing statements
paulson
parents: 17568
diff changeset
    52
16039
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    53
(*  The result of calling createWatcher  *)
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    54
datatype proc = PROC of {
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    55
        pid : Posix.Process.pid,
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    56
        instr : TextIO.instream,
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    57
        outstr : TextIO.outstream
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    58
      };
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    59
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    60
(*  The result of calling executeToList  *)
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    61
datatype cmdproc = CMDPROC of {
17568
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
    62
        prover: string,       (* Name of the resolution prover used, e.g. Vampire*)
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
    63
        cmd:  string,         (* The file containing the goal for res prover to prove *)     
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
    64
        goalstring: string,   (* string representation of subgoal*) 
16039
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    65
        proc_handle : (TextIO.instream,TextIO.outstream) Unix.proc,
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    66
        instr : TextIO.instream,   (*  Input stream to child process *)
17568
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
    67
        outstr : TextIO.outstream};  (*  Output stream from child process *)
16039
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    68
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    69
type signal = Posix.Signal.signal
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    70
datatype exit_status = datatype Posix.Process.exit_status
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    71
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    72
val fromStatus = Posix.Process.fromStatus
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    73
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    74
fun reap(pid, instr, outstr) =
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
    75
  let val u = TextIO.closeIn instr;
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
    76
      val u = TextIO.closeOut outstr;
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
    77
      val (_, status) = Posix.Process.waitpid(Posix.Process.W_CHILD pid, [])
17568
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
    78
  in status end
16039
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    79
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    80
fun fdReader (name : string, fd : Posix.IO.file_desc) =
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    81
	  Posix.IO.mkTextReader {initBlkMode = true,name = name,fd = fd };
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    82
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    83
fun fdWriter (name, fd) =
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    84
          Posix.IO.mkTextWriter {
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    85
	      appendMode = false,
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    86
              initBlkMode = true,
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    87
              name = name,  
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    88
              chunkSize=4096,
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
    89
              fd = fd};
16039
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    90
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    91
fun openOutFD (name, fd) =
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    92
	  TextIO.mkOutstream (
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    93
	    TextIO.StreamIO.mkOutstream (
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    94
	      fdWriter (name, fd), IO.BLOCK_BUF));
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    95
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    96
fun openInFD (name, fd) =
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    97
	  TextIO.mkInstream (
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    98
	    TextIO.StreamIO.mkInstream (
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    99
	      fdReader (name, fd), ""));
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   100
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   101
fun childInfo (PROC{pid,instr,outstr }) = (pid,(instr,outstr));
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   102
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   103
fun cmdstreamsOf (CMDPROC{instr,outstr,...}) = (instr, outstr);
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   104
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   105
fun cmdInStream (CMDPROC{instr,outstr,...}) = instr;
16039
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   106
17422
3b237822985d massive tidy-up and simplification
paulson
parents: 17317
diff changeset
   107
fun cmdchildInfo (CMDPROC{prover,cmd,proc_handle,goalstring,instr,outstr}) = 
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   108
  (prover,(cmd, (instr,outstr)));
16039
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   109
17422
3b237822985d massive tidy-up and simplification
paulson
parents: 17317
diff changeset
   110
fun cmdchildHandle (CMDPROC{prover,cmd,goalstring,proc_handle,instr,outstr})  = 
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   111
  proc_handle;
16039
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   112
17422
3b237822985d massive tidy-up and simplification
paulson
parents: 17317
diff changeset
   113
fun cmdProver (CMDPROC{prover,cmd,goalstring,proc_handle,instr,outstr})  =
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   114
  prover;
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   115
17422
3b237822985d massive tidy-up and simplification
paulson
parents: 17317
diff changeset
   116
fun cmdGoal (CMDPROC{prover,cmd,goalstring,proc_handle,instr,outstr})  =
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   117
  goalstring;
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   118
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   119
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   120
(*    gets individual args from instream and concatenates them into a list      *)
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   121
fun getArgs (fromParentStr, toParentStr, ys) =  
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   122
  let val thisLine = TextIO.input fromParentStr
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   123
  in ys@[thisLine] end
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   124
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   125
                            
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   126
(*  Send request to Watcher for a vampire to be called for filename in arg      *)
17568
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   127
                   
17231
f42bc4f7afdf tidying up the Isabelle/ATP interface
paulson
parents: 17216
diff changeset
   128
fun callResProver (toWatcherStr,  arg) = 
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   129
      (TextIO.output (toWatcherStr, arg^"\n"); 
17231
f42bc4f7afdf tidying up the Isabelle/ATP interface
paulson
parents: 17216
diff changeset
   130
       TextIO.flushOut toWatcherStr)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   131
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   132
(*****************************************************************************************)
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   133
(*  Send request to Watcher for multiple provers to be called for filenames in arg       *)
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   134
(*  need to do the dfg stuff in the watcher, not here! send over the clasimp and stuff files too*)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   135
(*****************************************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   136
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   137
    
17305
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
   138
(*Uses the $-character to separate items sent to watcher*)
16475
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   139
fun callResProvers (toWatcherStr,  []) = 
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   140
      (TextIO.output (toWatcherStr, "End of calls\n");  TextIO.flushOut toWatcherStr)
16475
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   141
|   callResProvers (toWatcherStr,
17422
3b237822985d massive tidy-up and simplification
paulson
parents: 17317
diff changeset
   142
                    (prover,goalstring, proverCmd,settings, 
3b237822985d massive tidy-up and simplification
paulson
parents: 17317
diff changeset
   143
                     probfile)  ::  args) =
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   144
      let val _ = trace (space_implode "\n" 
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   145
		         (["\ncallResProvers:",prover,goalstring,proverCmd,settings,
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   146
			  probfile]))
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   147
      in TextIO.output (toWatcherStr,    
17422
3b237822985d massive tidy-up and simplification
paulson
parents: 17317
diff changeset
   148
            (prover^"$"^goalstring^"$"^proverCmd^"$"^
3b237822985d massive tidy-up and simplification
paulson
parents: 17317
diff changeset
   149
             settings^"$"^probfile^"\n"));
16475
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   150
         goals_being_watched := (!goals_being_watched) + 1;
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   151
	 TextIO.flushOut toWatcherStr;
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   152
	 callResProvers (toWatcherStr,args)
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   153
      end   
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   154
                                                
17305
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
   155
                                    
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   156
 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   157
(**************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   158
(* Send message to watcher to kill currently running vampires *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   159
(**************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   160
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   161
fun callSlayer toWatcherStr = (TextIO.output (toWatcherStr, "Kill vampires\n"); 
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   162
                            TextIO.flushOut toWatcherStr)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   163
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   164
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   165
(**************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   166
(* Remove \n token from a vampire goal filename and extract   *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   167
(* prover, proverCmd, settings and file from input string     *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   168
(**************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   169
17305
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
   170
val remove_newlines = String.translate (fn c => if c = #"\n" then "" else str c);
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   171
17305
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
   172
fun getCmd cmdStr = 
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   173
  let val [prover,goalstring,proverCmd,settingstr,probfile] = 
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   174
            String.tokens (fn c => c = #"$") (remove_newlines cmdStr)
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   175
      val settings = String.tokens (fn c => c = #"%") settingstr
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   176
      val _ = trace ("getCmd: " ^ cmdStr ^
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   177
		    "\nprover" ^ prover ^ " goalstr:  "^goalstring^
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   178
		    "\nprovercmd: " ^ proverCmd^
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   179
		    "\nprob  " ^ probfile ^ "\n\n")
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   180
  in (prover,goalstring, proverCmd, settings, probfile) end
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   181
                      
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   182
(**************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   183
(* Get commands from Isabelle                                 *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   184
(**************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   185
fun getCmds (toParentStr,fromParentStr, cmdList) = 
16475
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   186
  let val thisLine = TextIO.inputLine fromParentStr 
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   187
      val _ = trace("\nGot command from parent: " ^ thisLine)
16475
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   188
  in
17568
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   189
     if thisLine = "End of calls\n" orelse thisLine = "" then cmdList
17422
3b237822985d massive tidy-up and simplification
paulson
parents: 17317
diff changeset
   190
     else if thisLine = "Kill children\n"
17568
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   191
     then (TextIO.output (toParentStr,thisLine ); 
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   192
	   TextIO.flushOut toParentStr;
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   193
	   (("","","Kill children",[],"")::cmdList)  )
17422
3b237822985d massive tidy-up and simplification
paulson
parents: 17317
diff changeset
   194
     else let val thisCmd = getCmd thisLine 
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   195
	   in getCmds (toParentStr, fromParentStr, thisCmd::cmdList) end
16475
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   196
  end
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   197
	    
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   198
                                                                  
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   199
(**************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   200
(*  Get Io-descriptor for polling of an input stream          *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   201
(**************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   202
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   203
fun getInIoDesc someInstr = 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   204
    let val (rd, buf) = TextIO.StreamIO.getReader(TextIO.getInstream someInstr)
15702
2677db44c795 new signalling primmitives for sml/nj compatibility
paulson
parents: 15684
diff changeset
   205
        val _ = TextIO.output (TextIO.stdOut, buf)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   206
        val ioDesc = 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   207
	    case rd
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   208
	      of TextPrimIO.RD{ioDesc = SOME iod, ...} =>SOME iod
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   209
	       | _ => NONE
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   210
     in (* since getting the reader will have terminated the stream, we need
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   211
	 * to build a new stream. *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   212
	TextIO.setInstream(someInstr, TextIO.StreamIO.mkInstream(rd, buf));
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   213
	ioDesc
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   214
    end
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   215
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   216
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   217
(*************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   218
(*  Set up a Watcher Process         *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   219
(*************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   220
17422
3b237822985d massive tidy-up and simplification
paulson
parents: 17317
diff changeset
   221
fun getProofCmd (a,c,d,e,f) = d
3b237822985d massive tidy-up and simplification
paulson
parents: 17317
diff changeset
   222
17716
89932e53f31d moved concat_with_and to watcher.ML
paulson
parents: 17690
diff changeset
   223
(* for tracing: encloses each string element in brackets. *)
89932e53f31d moved concat_with_and to watcher.ML
paulson
parents: 17690
diff changeset
   224
val concat_with_and = space_implode " & " o map (enclose "(" ")");
89932e53f31d moved concat_with_and to watcher.ML
paulson
parents: 17690
diff changeset
   225
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   226
fun prems_string_of th =
17716
89932e53f31d moved concat_with_and to watcher.ML
paulson
parents: 17690
diff changeset
   227
  concat_with_and (map (Sign.string_of_term (sign_of_thm th)) (prems_of th))
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   228
17525
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17502
diff changeset
   229
fun killChild proc = (Unix.kill(proc, Posix.Signal.kill); Unix.reap proc);
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17502
diff changeset
   230
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17502
diff changeset
   231
fun killChildren procs = List.app (ignore o killChild) procs;
17502
8836793df947 further tidying; killing of old Watcher loops
paulson
parents: 17488
diff changeset
   232
17568
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   233
 (*************************************************************)
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   234
 (* take an instream and poll its underlying reader for input *)
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   235
 (*************************************************************)
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   236
 
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   237
 fun pollParentInput (fromParentIOD, fromParentStr, toParentStr) = 
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   238
   case OS.IO.pollDesc fromParentIOD of
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   239
      SOME pd =>
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   240
	 (case OS.IO.poll ([OS.IO.pollIn pd], SOME (Time.fromSeconds 2)) of
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   241
	      [] => NONE
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   242
	    | pd''::_ => if OS.IO.isIn pd''
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   243
	 	         then SOME (getCmds (toParentStr, fromParentStr, []))
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   244
	 	         else NONE)
17568
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   245
   | NONE => NONE;
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   246
17583
c272b91b619f removal of "sleep" to stop looping in Poly/ML, and replacement of funny codes by tracing statements
paulson
parents: 17568
diff changeset
   247
(*get the number of the subgoal from the filename: the last digit string*)
c272b91b619f removal of "sleep" to stop looping in Poly/ML, and replacement of funny codes by tracing statements
paulson
parents: 17568
diff changeset
   248
fun number_from_filename s =
c272b91b619f removal of "sleep" to stop looping in Poly/ML, and replacement of funny codes by tracing statements
paulson
parents: 17568
diff changeset
   249
  case String.tokens (not o Char.isDigit) s of
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   250
      [] => (trace "\nWatcher could not read subgoal nunber!!"; raise ERROR)
17583
c272b91b619f removal of "sleep" to stop looping in Poly/ML, and replacement of funny codes by tracing statements
paulson
parents: 17568
diff changeset
   251
    | numbers => valOf (Int.fromString (List.last numbers));
c272b91b619f removal of "sleep" to stop looping in Poly/ML, and replacement of funny codes by tracing statements
paulson
parents: 17568
diff changeset
   252
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   253
fun setupWatcher (thm,clause_arr) = 
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   254
  let
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   255
    (** pipes for communication between parent and watcher **)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   256
    val p1 = Posix.IO.pipe ()
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   257
    val p2 = Posix.IO.pipe ()
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   258
    fun closep () = 
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   259
	 (Posix.IO.close (#outfd p1); 
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   260
	  Posix.IO.close (#infd p1);
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   261
	  Posix.IO.close (#outfd p2); 
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   262
	  Posix.IO.close (#infd p2))
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   263
    (***********************************************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   264
    (****** fork a watcher process and get it set up and going *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   265
    (***********************************************************)
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   266
    fun startWatcher procList =
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   267
     (case  Posix.Process.fork() (***************************************)
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   268
      of SOME pid =>  pid           (* parent - i.e. main Isabelle process *)
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   269
				    (***************************************)
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   270
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   271
				      (*************************)
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   272
       | NONE => let                  (* child - i.e. watcher  *)
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   273
	  val oldchildin = #infd p1   (*************************)
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   274
	  val fromParent = Posix.FileSys.wordToFD 0w0
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   275
	  val oldchildout = #outfd p2
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   276
	  val toParent = Posix.FileSys.wordToFD 0w1
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   277
	  val fromParentIOD = Posix.FileSys.fdToIOD fromParent
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   278
	  val fromParentStr = openInFD ("_exec_in_parent", fromParent)
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   279
	  val toParentStr = openOutFD ("_exec_out_parent", toParent)
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   280
	  val _ = debug ("subgoals forked to startWatcher: "^ prems_string_of thm);
17568
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   281
	 
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   282
	  fun pollChildInput fromStr = 
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   283
	     case getInIoDesc fromStr of
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   284
	       SOME iod => 
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   285
		 (case OS.IO.pollDesc iod of
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   286
		    SOME pd =>
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   287
			let val pd' = OS.IO.pollIn pd
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   288
			in
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   289
			  case OS.IO.poll ([pd'], SOME (Time.fromSeconds 2)) of
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   290
			      [] => false
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   291
			    | pd''::_ => OS.IO.isIn pd''
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   292
			end
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   293
		   | NONE => false)
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   294
	     | NONE => false
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   295
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   296
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   297
	  (* Check all ATP processes currently running for output                 *)
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   298
	  fun checkChildren ([], toParentStr) = []  (* no children to check *)
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   299
	  |   checkChildren (childProc::otherChildren, toParentStr) = 
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   300
	       let val _ = trace ("\nIn check child, length of queue:"^
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   301
			          Int.toString (length (childProc::otherChildren)))
17568
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   302
		   val (childInput,childOutput) = cmdstreamsOf childProc
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   303
		   val child_handle = cmdchildHandle childProc
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   304
		   (* childCmd is the file that the problem is in *)
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   305
		   val childCmd = fst(snd (cmdchildInfo childProc))
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   306
		   val _ = trace ("\nchildCmd = " ^ childCmd)
17583
c272b91b619f removal of "sleep" to stop looping in Poly/ML, and replacement of funny codes by tracing statements
paulson
parents: 17568
diff changeset
   307
		   val sg_num = number_from_filename childCmd
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   308
		   val childIncoming = pollChildInput childInput
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   309
		   val parentID = Posix.ProcEnv.getppid()
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   310
		   val prover = cmdProver childProc
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   311
		   val prems_string = prems_string_of thm
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   312
		   val goalstring = cmdGoal childProc							
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   313
	       in 
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   314
		 trace("\nsubgoals forked to checkChildren: " ^ goalstring);
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   315
		 if childIncoming
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   316
		 then 
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   317
		   (* check here for prover label on child*)
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   318
		   let val _ = trace ("\nInput available from child: " ^
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   319
				      childCmd ^ 
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   320
				      "\ngoalstring is " ^ goalstring ^ "\n\n")
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   321
		       val childDone = (case prover of
17488
67376a311a2b further simplification of the Isabelle-ATP linkup
paulson
parents: 17484
diff changeset
   322
			   "vampire" => AtpCommunication.checkVampProofFound(childInput, toParentStr, parentID,goalstring, childCmd, clause_arr)  
67376a311a2b further simplification of the Isabelle-ATP linkup
paulson
parents: 17484
diff changeset
   323
			    | "E" => AtpCommunication.checkEProofFound(childInput, toParentStr, parentID,goalstring, childCmd, clause_arr)             
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   324
			  |"spass" => AtpCommunication.checkSpassProofFound(childInput, toParentStr, parentID,goalstring, childCmd, thm, sg_num,clause_arr)  )
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   325
		    in
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   326
		     if childDone
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   327
		     then (* child has found a proof and transferred it *)
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   328
			(* Remove this child and go on to check others*)
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   329
			(Unix.reap child_handle;
17716
89932e53f31d moved concat_with_and to watcher.ML
paulson
parents: 17690
diff changeset
   330
			 OS.FileSys.remove childCmd;
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   331
			 checkChildren(otherChildren, toParentStr))
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   332
		     else (* Keep this child and go on to check others  *)
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   333
		       childProc :: checkChildren (otherChildren, toParentStr)
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   334
		  end
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   335
		else (trace "\nNo child output";
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   336
		      childProc::(checkChildren (otherChildren, toParentStr)))
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   337
	       end
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   338
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   339
	
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   340
     (********************************************************************)                  
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   341
     (* call resolution processes                                        *)
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   342
     (* settings should be a list of strings                             *)
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   343
     (* e.g. ["-t 300", "-m 100000"]         (TextIO.input instr)^                            *)
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   344
     (* takes list of (string, string, string list, string)list proclist *)
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   345
     (********************************************************************)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   346
16039
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   347
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   348
(*** add subgoal id num to this *)
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   349
	fun execCmds  [] procList = procList
17422
3b237822985d massive tidy-up and simplification
paulson
parents: 17317
diff changeset
   350
	|   execCmds  ((prover, goalstring,proverCmd,settings,file)::cmds) procList  =
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   351
	      let val _ = trace 
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   352
	                    (space_implode "\n" 
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   353
	                      (["\nAbout to execute command for goal:",
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   354
	                        goalstring, proverCmd] @ settings @
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   355
	                       [file, Date.toString(Date.fromTimeLocal(Time.now()))]))
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   356
	          val childhandle:(TextIO.instream,TextIO.outstream) Unix.proc  = 
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   357
		       (Unix.execute(proverCmd, (settings@[file])))
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   358
		  val (instr, outstr) = Unix.streamsOf childhandle
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   359
		  val newProcList = (CMDPROC{
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   360
				       prover = prover,
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   361
				       cmd = file,
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   362
				       goalstring = goalstring,
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   363
				       proc_handle = childhandle,
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   364
				       instr = instr,
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   365
				       outstr = outstr }) :: procList
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   366
     
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   367
		  val _ = trace ("\nFinished at " ^
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   368
			         Date.toString(Date.fromTimeLocal(Time.now())))
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   369
	      in execCmds cmds newProcList end
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   370
16039
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   371
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   372
     (****************************************)                  
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   373
     (* call resolution processes remotely   *)
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   374
     (* settings should be a list of strings *)
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   375
     (* e.g. ["-t300", "-m100000"]         *)
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   376
     (****************************************)
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   377
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   378
      (*  fun execRemoteCmds  [] procList = procList
17422
3b237822985d massive tidy-up and simplification
paulson
parents: 17317
diff changeset
   379
	|   execRemoteCmds ((prover, goalstring,proverCmd ,settings,file)::cmds) procList  =  
3b237822985d massive tidy-up and simplification
paulson
parents: 17317
diff changeset
   380
	      let val  newProcList =  mySshExecuteToList ("/usr/bin/ssh",([prover,goalstring,"-t", "shep"]@[proverCmd]@settings@[file]), procList)
3b237822985d massive tidy-up and simplification
paulson
parents: 17317
diff changeset
   381
		  in
3b237822985d massive tidy-up and simplification
paulson
parents: 17317
diff changeset
   382
		       execRemoteCmds  cmds newProcList
3b237822985d massive tidy-up and simplification
paulson
parents: 17317
diff changeset
   383
		  end
16039
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   384
*)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   385
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   386
     (**********************************************)                  
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   387
     (* Watcher Loop                               *)
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   388
     (**********************************************)
17583
c272b91b619f removal of "sleep" to stop looping in Poly/ML, and replacement of funny codes by tracing statements
paulson
parents: 17568
diff changeset
   389
         val iterations_left = ref 500;  (*don't let it run forever*)
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   390
17568
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   391
	 fun keepWatching (procList) = 
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   392
	   let fun loop procList =  
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   393
		let val _ = trace ("\nCalling pollParentInput: " ^ 
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   394
			           Int.toString (!iterations_left));
17568
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   395
		    val cmdsFromIsa = pollParentInput 
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   396
		                       (fromParentIOD, fromParentStr, toParentStr)
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   397
		in 
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   398
		   OS.Process.sleep (Time.fromMilliseconds 100);
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   399
		   iterations_left := !iterations_left - 1;
17568
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   400
		   if !iterations_left <= 0 
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   401
		   then 
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   402
		    (trace "\nTimeout: Killing proof processes";
17568
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   403
	             TextIO.output(toParentStr, "Timeout: Killing proof processes!\n");
17502
8836793df947 further tidying; killing of old Watcher loops
paulson
parents: 17488
diff changeset
   404
		     TextIO.flushOut toParentStr;
17583
c272b91b619f removal of "sleep" to stop looping in Poly/ML, and replacement of funny codes by tracing statements
paulson
parents: 17568
diff changeset
   405
		     killChildren (map cmdchildHandle procList);
c272b91b619f removal of "sleep" to stop looping in Poly/ML, and replacement of funny codes by tracing statements
paulson
parents: 17568
diff changeset
   406
		     exit 0)
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   407
		   else if isSome cmdsFromIsa
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   408
		   then (*  deal with input from Isabelle *)
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   409
		     if getProofCmd(hd(valOf cmdsFromIsa)) = "Kill children" 
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   410
		     then 
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   411
		       let val child_handles = map cmdchildHandle procList 
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   412
		       in
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   413
			  killChildren child_handles;
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   414
			  loop []
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   415
		       end
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   416
		     else
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   417
		       if length procList < 5     (********************)
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   418
		       then                        (* Execute locally  *)
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   419
			 let 
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   420
			   val newProcList = execCmds (valOf cmdsFromIsa) procList
17568
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   421
			   val _ = Posix.ProcEnv.getppid()
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   422
			   val _ = trace "\nJust execed a child"
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   423
			   val newProcList' = checkChildren (newProcList, toParentStr) 
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   424
			 in
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   425
			   trace ("\nOff to keep watching: " ^ 
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   426
			          Int.toString (!iterations_left));
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   427
			   loop newProcList'
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   428
			 end
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   429
		       else  (* Execute remotely              *)
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   430
			     (* (actually not remote for now )*)
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   431
			 let 
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   432
			   val newProcList = execCmds (valOf cmdsFromIsa) procList
17568
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   433
			   val _ = Posix.ProcEnv.getppid()
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   434
			   val newProcList' =checkChildren (newProcList, toParentStr) 
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   435
			 in
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   436
			   loop newProcList'
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   437
			 end
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   438
		   else (* No new input from Isabelle *)
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   439
		     let val newProcList = checkChildren (procList, toParentStr)
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   440
		     in
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   441
		       trace ("\nNo new input, still watching: " ^ 
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   442
			      Int.toString (!iterations_left));
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   443
		       loop newProcList
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   444
		     end
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   445
		 end
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   446
	   in  
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   447
	       loop procList
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   448
	   end
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   449
	   
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   450
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   451
	   in
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   452
	    (***************************)
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   453
	    (*** Sort out pipes ********)
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   454
	    (***************************)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   455
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   456
	     Posix.IO.close (#outfd p1);
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   457
	     Posix.IO.close (#infd p2);
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   458
	     Posix.IO.dup2{old = oldchildin, new = fromParent};
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   459
	     Posix.IO.close oldchildin;
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   460
	     Posix.IO.dup2{old = oldchildout, new = toParent};
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   461
	     Posix.IO.close oldchildout;
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   462
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   463
	     (***************************)
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   464
	     (* start the watcher loop  *)
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   465
	     (***************************)
17568
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   466
	     keepWatching (procList);
17234
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   467
	     (****************************************************************************)
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   468
(* fake return value - actually want the watcher to loop until killed *)
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   469
	     (****************************************************************************)
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   470
	     Posix.Process.wordToPid 0w0
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   471
	   end);
12a9393c5d77 further tidying up of Isabelle-ATP link
paulson
parents: 17231
diff changeset
   472
     (* end case *)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   473
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   474
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   475
    val _ = TextIO.flushOut TextIO.stdOut
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   476
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   477
    (*******************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   478
    (***  set watcher going ********)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   479
    (*******************************)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   480
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   481
    val procList = []
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17315
diff changeset
   482
    val pid = startWatcher procList
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   483
    (**************************************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   484
    (* communication streams to watcher               *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   485
    (**************************************************)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   486
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   487
    val instr = openInFD ("_exec_in", #infd p2)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   488
    val outstr = openOutFD ("_exec_out", #outfd p1)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   489
    
17568
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   490
  in
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   491
   (*******************************)
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   492
   (* close the child-side fds    *)
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   493
   (*******************************)
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   494
    Posix.IO.close (#outfd p2);
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   495
    Posix.IO.close (#infd p1);
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   496
    (* set the fds close on exec *)
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   497
    Posix.IO.setfd (#infd p2, Posix.IO.FD.flags [Posix.IO.FD.cloexec]);
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   498
    Posix.IO.setfd (#outfd p1, Posix.IO.FD.flags [Posix.IO.FD.cloexec]);
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   499
     
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   500
   (*******************************)
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   501
   (* return value                *)
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   502
   (*******************************)
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   503
    PROC{pid = pid, instr = instr, outstr = outstr}
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   504
  end;
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   505
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   506
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   507
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   508
(**********************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   509
(* Start a watcher and set up signal handlers             *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   510
(**********************************************************)
16039
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   511
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   512
fun killWatcher pid = Posix.Process.kill(Posix.Process.K_PROC pid, Posix.Signal.kill);
16039
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   513
17488
67376a311a2b further simplification of the Isabelle-ATP linkup
paulson
parents: 17484
diff changeset
   514
val killWatcher' = killWatcher o ResLib.pidOfInt;
67376a311a2b further simplification of the Isabelle-ATP linkup
paulson
parents: 17484
diff changeset
   515
16039
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   516
fun reapWatcher(pid, instr, outstr) =
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   517
  (TextIO.closeIn instr; TextIO.closeOut outstr;
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   518
   Posix.Process.waitpid(Posix.Process.W_CHILD pid, []); ())
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   519
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   520
fun createWatcher (thm, clause_arr) =
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   521
 let val (childpid,(childin,childout)) = childInfo (setupWatcher(thm,clause_arr))
17435
0eed5a1c00c1 PARTIAL conversion to Vampire8
paulson
parents: 17422
diff changeset
   522
     fun decr_watched() =
17502
8836793df947 further tidying; killing of old Watcher loops
paulson
parents: 17488
diff changeset
   523
	  (goals_being_watched := !goals_being_watched - 1;
17435
0eed5a1c00c1 PARTIAL conversion to Vampire8
paulson
parents: 17422
diff changeset
   524
	   if !goals_being_watched = 0
0eed5a1c00c1 PARTIAL conversion to Vampire8
paulson
parents: 17422
diff changeset
   525
	   then 
17716
89932e53f31d moved concat_with_and to watcher.ML
paulson
parents: 17690
diff changeset
   526
	     (debug ("\nReaping a watcher, childpid = "^
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   527
		     LargeWord.toString (Posix.Process.pidToWord childpid));
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   528
	      killWatcher childpid; reapWatcher (childpid,childin, childout))
17435
0eed5a1c00c1 PARTIAL conversion to Vampire8
paulson
parents: 17422
diff changeset
   529
	    else ())
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   530
     val _ = debug ("subgoals forked to createWatcher: "^ prems_string_of thm);
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   531
     fun proofHandler n = 
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   532
       let val outcome = TextIO.inputLine childin
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   533
	   val goalstring = TextIO.inputLine childin
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   534
	   val _ = debug ("In signal handler. outcome = \"" ^ outcome ^ 
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   535
		        "\"\ngoalstring = " ^ goalstring ^
17568
e93f7510e1e1 trying to limit the looping
paulson
parents: 17525
diff changeset
   536
		        "\ngoals_being_watched: "^  Int.toString (!goals_being_watched))
17502
8836793df947 further tidying; killing of old Watcher loops
paulson
parents: 17488
diff changeset
   537
       in 
8836793df947 further tidying; killing of old Watcher loops
paulson
parents: 17488
diff changeset
   538
	 if String.isPrefix "[" outcome (*indicates a proof reconstruction*)
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   539
	 then (priority (Recon_Transfer.apply_res_thm outcome goalstring);
17435
0eed5a1c00c1 PARTIAL conversion to Vampire8
paulson
parents: 17422
diff changeset
   540
	       decr_watched())
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   541
	 else if String.isPrefix "Invalid" outcome
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   542
	 then (priority (goalstring ^ "is not provable");
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   543
	       decr_watched())
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   544
	 else if String.isPrefix "Failure" outcome
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   545
	 then (priority (goalstring ^ "proof attempt failed");
17435
0eed5a1c00c1 PARTIAL conversion to Vampire8
paulson
parents: 17422
diff changeset
   546
	       decr_watched()) 
17216
df66d8feec63 improved formatting
paulson
parents: 17150
diff changeset
   547
	(* print out a list of rules used from clasimpset*)
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   548
	 else if String.isPrefix "Success" outcome
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   549
	 then (priority (goalstring^outcome);
17435
0eed5a1c00c1 PARTIAL conversion to Vampire8
paulson
parents: 17422
diff changeset
   550
	       decr_watched())
17216
df66d8feec63 improved formatting
paulson
parents: 17150
diff changeset
   551
	  (* if proof translation failed *)
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   552
	 else if String.isPrefix "Translation failed" outcome
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   553
	 then (priority (goalstring ^ outcome);
17435
0eed5a1c00c1 PARTIAL conversion to Vampire8
paulson
parents: 17422
diff changeset
   554
	       decr_watched())
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17583
diff changeset
   555
	 else (priority "System error in proof handler";
17435
0eed5a1c00c1 PARTIAL conversion to Vampire8
paulson
parents: 17422
diff changeset
   556
	       decr_watched())
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   557
       end
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   558
 in IsaSignal.signal (IsaSignal.usr2, IsaSignal.SIG_HANDLE proofHandler);
17216
df66d8feec63 improved formatting
paulson
parents: 17150
diff changeset
   559
    (childin, childout, childpid)
df66d8feec63 improved formatting
paulson
parents: 17150
diff changeset
   560
  end
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   561
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   562
end (* structure Watcher *)