310 lines
9.2 KiB
Python
310 lines
9.2 KiB
Python
#!@PYTHON@
|
|
# -*- mode: python; coding: iso-8859-1 -*-
|
|
# Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
|
|
# département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
|
# et Marie Curie.
|
|
#
|
|
# This file is part of Spot, a model checking library.
|
|
#
|
|
# Spot is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Spot is distributed in the hope that it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|
# License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Spot; see the file COPYING. If not, write to the Free
|
|
# Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
# 02111-1307, USA.
|
|
|
|
import sys
|
|
import os
|
|
import cgi
|
|
import cgitb; cgitb.enable()
|
|
|
|
sys.path.insert(0, '@pythondir@')
|
|
# Directory for temporary files (images and other auxiliary files).
|
|
imgdir = 'spotimg'
|
|
|
|
# Cleanup stale files from our image directory.
|
|
os.system('find ' + imgdir + ' -type f -amin +10 -print | xargs rm -f')
|
|
|
|
myself = os.environ['SCRIPT_NAME'];
|
|
form = cgi.FieldStorage()
|
|
filled = form.has_key('formula')
|
|
# FIXME: This assumes Apache.
|
|
uid = os.environ['UNIQUE_ID'];
|
|
imgprefix = imgdir + '/' + uid
|
|
|
|
def escaped_print_dot(dict, what):
|
|
print '<pre>'; sys.stdout.flush()
|
|
s = spot.ostringstream()
|
|
spot.bdd_print_dot(s, dict, what)
|
|
print cgi.escape(s.str())
|
|
del s
|
|
print '</pre>'; sys.stdout.flush()
|
|
|
|
def escaped_print_set(dict, what):
|
|
print '<pre>'; sys.stdout.flush()
|
|
s = spot.ostringstream()
|
|
spot.bdd_print_set(s, dict, what)
|
|
print cgi.escape(s.str())
|
|
del s
|
|
print '</pre>'; sys.stdout.flush()
|
|
|
|
def print_stats(automaton):
|
|
stats = spot.stats_reachable(automaton)
|
|
print "<p>", stats.states,
|
|
if stats.states == 1:
|
|
print " state,",
|
|
else:
|
|
print " states,",
|
|
print stats.transitions,
|
|
if stats.transitions == 1:
|
|
print " transition",
|
|
else:
|
|
print " transitions",
|
|
print "</p>"
|
|
sys.stdout.flush()
|
|
|
|
def render_dot(basename):
|
|
os.spawnlp(os.P_WAIT, 'dot', 'dot', '-Tgif', '-Gsize=14,14', '-o',
|
|
basename + '.gif', basename + '.dot')
|
|
os.spawnlp(os.P_WAIT, 'convert', 'convert',
|
|
basename + '.gif', basename + '.png')
|
|
print '<img src="' + basename + '.png">'
|
|
|
|
def render_automaton(basename, automata):
|
|
outfile = spot.ofstream(basename + '.dot')
|
|
spot.dotty_reachable(outfile, automata)
|
|
del outfile
|
|
render_dot(basename)
|
|
|
|
def render_bdd(basename, dictionary, bdd):
|
|
outfile = spot.ofstream(basename + '.dot')
|
|
spot.bdd_print_dot(outfile, dictionary, bdd)
|
|
del outfile
|
|
render_dot(basename)
|
|
|
|
|
|
print "Content-Type: text/html"
|
|
print
|
|
|
|
os.close(sys.stderr.fileno())
|
|
os.dup2(sys.stdout.fileno(), sys.stderr.fileno())
|
|
|
|
import spot
|
|
|
|
print "<TITLE>LTL-to-Büchi test</TITLE>"
|
|
print "<H1>Input</H1>"
|
|
|
|
formula = form.getfirst('formula', '')
|
|
|
|
options = [
|
|
('show_parse', 'show traces during parsing', 0),
|
|
('show_formula_dot', 'print the formula as .dot', 0),
|
|
('show_formula_gif', 'draw the formula', 0),
|
|
('show_automaton_dot', 'print Büchi automaton as .dot', 0),
|
|
('show_automaton_gif', 'draw Büchi automaton', 1),
|
|
('show_degen_dot', 'print degeneralized Büchi automaton as .dot', 0),
|
|
('show_degen_gif', 'draw degeneralized Büchi automaton', 0),
|
|
('show_dictionnay', 'print BDD dictionary', 0),
|
|
('show_relation_dot', 'print the transition relation as .dot', 0),
|
|
('show_relation_set', 'print the transition relation as a BDD set', 0),
|
|
('show_relation_gif', 'draw the transition relation', 0),
|
|
('show_acceptance_dot', 'print the acceptance relation as .dot' , 0),
|
|
('show_acceptance_set', 'print the acceptance relation as a BDD set', 0),
|
|
('show_acceptance_gif', 'draw the acceptance relation', 0),
|
|
('show_lbtt', 'convert automaton for LBTT', 0),
|
|
]
|
|
|
|
default_translator = 'trans_fm';
|
|
translators = [
|
|
('trans_fm', 'Convreur/FM'),
|
|
('trans_lacim', 'Convreur/LaCIM'),
|
|
]
|
|
|
|
print """<FORM action="%s" method="post"><P>
|
|
Formula to translate: <INPUT type="text" name="formula" value="%s"><BR>
|
|
Translator:<TABLE><TR><TD>""" % (myself, formula)
|
|
|
|
|
|
trans = form.getfirst("trans", default_translator)
|
|
for opt, desc, in translators:
|
|
if trans == opt:
|
|
str = "checked"
|
|
else:
|
|
str = ""
|
|
globals()[opt] = str
|
|
print '<INPUT type="radio" name="trans" value="%s" %s>%s<br>' % (opt, str,
|
|
desc)
|
|
|
|
print """</TD></TR></TABLE>
|
|
Options:<TABLE><TR><TD>"""
|
|
|
|
for opt, desc, arg, in options:
|
|
if formula:
|
|
val = int(form.getfirst(opt, 0))
|
|
else:
|
|
val = arg
|
|
if val:
|
|
str = "checked"
|
|
else:
|
|
str = ""
|
|
globals()[opt] = val
|
|
print '<INPUT type="checkbox" name="%s" value="1" %s>%s<br>' % (opt, str,
|
|
desc)
|
|
print '</TD></TR></TABLE><INPUT type="submit" value="Send"></FORM>'
|
|
|
|
if not filled:
|
|
sys.exit(0)
|
|
|
|
print "<hr><H1>Output</H1>"
|
|
|
|
env = spot.default_environment.instance()
|
|
|
|
print "<H2>LTL Formula</H2>"
|
|
|
|
if show_parse: print '<pre>'
|
|
sys.stdout.flush()
|
|
sys.stderr.flush()
|
|
|
|
pel = spot.empty_parse_error_list()
|
|
f = spot.parse(formula, pel, env, show_parse)
|
|
if show_parse: print '</pre>'
|
|
|
|
print '<font color="red"><pre>'
|
|
err = spot.format_parse_errors(spot.get_cout(), formula, pel)
|
|
print '</pre></font>'
|
|
|
|
if not f:
|
|
print '<p><b>Aborting...</b></p>'
|
|
sys.exit(0)
|
|
if err:
|
|
print '<p><b>Continuing anyway...</b></p>'
|
|
|
|
print "<p>Formula is<code>", f, "</code></p>"
|
|
|
|
if show_formula_dot:
|
|
print '<pre>'; sys.stdout.flush()
|
|
s = spot.ostringstream()
|
|
spot.dotty(s, f)
|
|
print cgi.escape(s.str())
|
|
del s
|
|
print '</pre>'; sys.stdout.flush()
|
|
if show_formula_gif:
|
|
outfile = spot.ofstream(imgprefix + '-f.dot')
|
|
spot.dotty(outfile, f)
|
|
del outfile
|
|
os.spawnlp(os.P_WAIT, 'dot', 'dot', '-Tgif', '-Gsize=14,14', '-o',
|
|
imgprefix + '-f.gif', imgprefix + '-f.dot')
|
|
os.spawnlp(os.P_WAIT, 'convert', 'convert',
|
|
imgprefix + '-f.gif', imgprefix + '-f.png')
|
|
print '<img src="' + imgprefix + '-f.png">'
|
|
|
|
|
|
print '<H2>Automaton</H2>'
|
|
|
|
dict = spot.bdd_dict()
|
|
|
|
print '<p>Building automaton...',
|
|
sys.stdout.flush()
|
|
|
|
if trans_lacim:
|
|
automaton = spot.ltl_to_tgba_lacim(f, dict)
|
|
elif trans_fm:
|
|
automaton = spot.ltl_to_tgba_fm(f, dict)
|
|
|
|
print 'done.</p>'
|
|
sys.stdout.flush()
|
|
|
|
print_stats(automaton)
|
|
|
|
if show_automaton_dot:
|
|
print '<pre>'; sys.stdout.flush()
|
|
s = spot.ostringstream()
|
|
spot.dotty_reachable(s, automaton)
|
|
print cgi.escape(s.str())
|
|
del s
|
|
print '</pre>'; sys.stdout.flush()
|
|
|
|
if show_automaton_gif:
|
|
render_automaton(imgprefix + '-a', automaton)
|
|
|
|
if show_degen_dot or show_degen_gif:
|
|
print '<H3>Degeneralized automaton</H3>'
|
|
degen = spot.tgba_tba_proxy(automaton)
|
|
print_stats(degen)
|
|
if show_degen_dot:
|
|
print '<pre>'; sys.stdout.flush()
|
|
s = spot.ostringstream()
|
|
spot.dotty_reachable(s, degen)
|
|
print cgi.escape(s.str())
|
|
del s
|
|
print '</pre>'; sys.stdout.flush()
|
|
if show_degen_gif:
|
|
render_automaton(imgprefix + '-d', degen)
|
|
else:
|
|
degen = 0
|
|
|
|
if show_dictionnay:
|
|
print '<H3>BDD dictionary</H3>'
|
|
print '<pre>'
|
|
sys.stdout.flush()
|
|
automaton.get_dict().dump(spot.get_cout())
|
|
print '</pre>'
|
|
|
|
if (type(automaton) == spot.tgba_bdd_concretePtr
|
|
and (show_relation_dot or show_relation_set or show_relation_gif)):
|
|
print '<H3>Transition relation</H3>'
|
|
if show_relation_dot:
|
|
escaped_print_dot(automaton.get_dict(),
|
|
automaton.get_core_data().relation)
|
|
if show_relation_set:
|
|
escaped_print_set(automaton.get_dict(),
|
|
automaton.get_core_data().relation)
|
|
if show_relation_gif:
|
|
render_bdd(imgprefix + '-b', automaton.get_dict(),
|
|
automaton.get_core_data().relation)
|
|
|
|
if (type(automaton) == spot.tgba_bdd_concretePtr
|
|
and (show_acceptance_dot or show_acceptance_set or show_acceptance_gif)):
|
|
print '<H3>Acceptance relation</H3>'
|
|
if show_acceptance_dot:
|
|
escaped_print_dot(automaton.get_dict(),
|
|
automaton.get_core_data().acceptance_conditions)
|
|
if show_acceptance_set:
|
|
escaped_print_set(automaton.get_dict(),
|
|
automaton.get_core_data().acceptance_conditions)
|
|
if show_acceptance_gif:
|
|
render_bdd(imgprefix + '-c', automaton.get_dict(),
|
|
automaton.get_core_data().acceptance_conditions)
|
|
|
|
if show_lbtt:
|
|
print '<H3>LBTT conversion</H3>'
|
|
if degen:
|
|
print '<H4>Conversion of the generalized automaton</H4>'
|
|
print '<pre>'
|
|
sys.stdout.flush()
|
|
spot.lbtt_reachable(spot.get_cout(), automaton)
|
|
print '</pre>'
|
|
if degen:
|
|
print '<H4>Conversion of the degeneralized automaton</H4>'
|
|
print '<pre>'
|
|
sys.stdout.flush()
|
|
spot.lbtt_reachable(spot.get_cout(), degen)
|
|
print '</pre>'
|
|
|
|
sys.stdout.flush()
|
|
|
|
spot.destroy(f)
|
|
# Make sure degen is cleared before automaton.
|
|
del degen
|
|
del automaton
|
|
|
|
print '<hr>'
|
|
print 'ltl2tgba.py @PACKAGE_VERSION@; Spot', spot.version()
|