src/Tools/qed.cc
changeset 813 4a266c3d4cc0
child 902 cc80f53b28c6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/Tools/qed.cc	Tue Dec 20 13:24:04 1994 +0100
@@ -0,0 +1,138 @@
+// Little utility to convert result() -> qed ... in Isabelle's files
+// Written in 1994 by Carsten Clasohm (clasohm@informatik.tu-muenchen.de)
+
+#define LIN_LEN   1000		// maximal length of lines in sourcefile
+
+#include <iostream.h>
+#include <fstream.h>
+#include <string.h>
+#include <assert.h>
+#include <stdio.h>
+#include <unistd.h>
+#include <ctype.h>
+
+main(int argc, char *argv[])
+{
+    char l[LIN_LEN];
+    int lines = 0;
+
+    // Open input and output files
+    ifstream in(argv[1]);
+    ofstream out(argv[2]);
+
+    if (in.bad() || out.bad())
+    {
+        cerr << "qed version 1.00, Written in 1994 by Carsten Clasohm"
+                "(clasohm@informatik.tu-muenchen.de)\n\n";
+	cerr << "Usage: qed <infile> <outfile>\n";
+	exit(1);
+    }
+
+#ifdef DEBUG
+    cerr << "Processing file " << argv[1] << '\n';
+#endif
+
+    // Process each line separatly
+    in.getline(l, LIN_LEN);
+    while (!in.eof())
+    {
+	char *rPos;
+	char *valPos;
+	char *eqPos;
+	char *tmp;
+
+	if ((rPos = strstr(l, "result()")) && (!isalpha(*(rPos-1)))
+	    && (valPos = strstr(l, "val ")) && (eqPos = strstr(l, "=")))
+	{                            // does line contain "result()" and "val"?
+	    char name[LIN_LEN];
+
+	    assert(eqPos-(valPos+4) > 0);
+	    strncpy(name, valPos+4, eqPos-(valPos+4));
+	    name[eqPos-(valPos+4)] = 0;
+	    if (!isalpha(name[eqPos-(valPos+4)-1]))
+	        name[eqPos-(valPos+4)-1] = 0;
+#ifdef DEBUG
+	    cerr << "Found result: \"" << name << "\"\n";
+#endif
+	    char prefix[LIN_LEN];
+	    char arg[LIN_LEN];
+
+	    if ((rPos - eqPos < 5) && (rPos == strstr(l, "result();")))
+	    {                                              // replace by "qed"?
+		strncpy(prefix, l, valPos-l);
+		prefix[valPos-l] = 0;
+		out << prefix << "qed \"" << name << "\";" << '\n';
+	    }
+	    else				         // replace by bind_thm
+	    {                                           
+		int d = (*(eqPos+1) == ' ') ? 2 : 1;
+		strcpy(arg, eqPos+d);
+		arg[strlen(arg)-1] = 0;
+		strcpy(prefix, l);
+		prefix[valPos-l] = 0;
+		out << prefix << "bind_thm(\"" << name << "\", "
+		    << arg << ");\n";
+	    }
+	}
+	else if ((rPos = strstr(l, "prove_goal")) 
+		 && (!isalpha(*(rPos-1))) 
+		 && (!isalpha(*(rPos+10)) || (*(rPos+10) == 'w'))
+		 && (valPos = strstr(l, "val ")) 
+		 && (eqPos = strstr(l, "="))
+                 && (rPos - eqPos < 5))
+	{                                    // replace prove_goal by qed_goal?
+	    char name[LIN_LEN];
+
+	    assert(eqPos-(valPos+4) > 0);
+	    strncpy(name, valPos+4, eqPos-(valPos+4));
+	    name[eqPos-(valPos+4)] = 0;
+	    if (!isalpha(name[eqPos-(valPos+4)-1]))
+	        name[eqPos-(valPos+4)-1] = 0;
+#ifdef DEBUG
+	    cerr << "Found prove_goal: \"" << name << "\"\n";
+#endif
+	    char prefix[LIN_LEN];
+	    char arg[LIN_LEN];
+
+	    strncpy(prefix, l, valPos-l);
+	    prefix[valPos-l] = 0;
+	    out << prefix << "qed_goal" << ((*(rPos+10) == 'w') ? "w " : " ")
+		<< '\"' << name << '\"' << strchr(rPos, ' ') << '\n';
+	}
+	else if ((rPos = strstr(l, "standard"))
+		 && (!isalpha(*(rPos-1))) 
+		 && (!isalpha(*(rPos+8))) 
+		 && (valPos = strstr(l, "val ")) 
+		 && (eqPos = strstr(l, "="))
+                 && (rPos - eqPos < 5)
+                 && (l[strlen(l)-1] == ';'))
+	{                                                   // insert bind_thm?
+	    char name[LIN_LEN];
+
+	    assert(eqPos-(valPos+4) > 0);
+	    strncpy(name, valPos+4, eqPos-(valPos+4));
+	    name[eqPos-(valPos+4)] = 0;
+	    if (!isalpha(name[eqPos-(valPos+4)-1]))
+	        name[eqPos-(valPos+4)-1] = 0;
+#ifdef DEBUG
+	    cerr << "Found standard: \"" << name << "\"\n";
+#endif
+	    char prefix[LIN_LEN];
+	    char arg[LIN_LEN];
+
+	    strncpy(prefix, l, valPos-l);
+	    prefix[valPos-l] = 0;
+	    strcpy(l+strlen(l)-1, ");");        // insert ")" before line's ';'
+	    out << prefix << "bind_thm (\"" << name << "\","
+	        << strchr(rPos, ' ') << '\n';
+	}
+	else                                           // output line unchanged
+	    out << l << '\n';
+	in.getline(l, LIN_LEN);
+    }
+    in.close();
+    out.close();
+#ifdef DEBUG
+    cerr << "Done\n";
+#endif
+}