* m4/pypath.m4: New file.
* Makefile.am (SUBDIRS): Add wrap. * wrap/Makefile.am: New file. * wrap/spot.i: New file. Preliminary bindings for Python. * configure.ac: Call adl_CHECK_PYTHON and output wrap/Makefile.
This commit is contained in:
parent
16bc2c63d9
commit
e2c42a9f79
15 changed files with 141 additions and 2 deletions
9
wrap/.cvsignore
Normal file
9
wrap/.cvsignore
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
.deps
|
||||
.libs
|
||||
Makefile
|
||||
Makefile.in
|
||||
*.la
|
||||
spot.py*
|
||||
*.lo
|
||||
*.loT
|
||||
spot_wrap.cxx
|
||||
22
wrap/Makefile.am
Normal file
22
wrap/Makefile.am
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
|
||||
AM_CPPFLAGS = -I$(PYTHONINC) -I$(top_srcdir)/src
|
||||
|
||||
python_PYTHON = spot.py
|
||||
pyexec_LTLIBRARIES = _spot.la
|
||||
|
||||
_spot_la_SOURCES = spot_wrap.cxx
|
||||
_spot_la_LDFLAGS = -avoid-version -module
|
||||
_spot_la_LIBADD = \
|
||||
../src/ltlenv/libltlenv.la \
|
||||
../src/ltlparse/libltlparse.la \
|
||||
../src/ltlvisit/libltlvisit.la \
|
||||
../src/ltlast/libltlast.la
|
||||
|
||||
EXTRA_DIST = spot.i
|
||||
spot_wrap.cxx: spot.i
|
||||
swig -c++ -python -I$(top_srcdir)/src spot.i
|
||||
|
||||
spot.py: spot.i
|
||||
$(MAKE) $(AM_MAKEFLAGS) spot_wrap.cxx
|
||||
|
||||
MAINTAINERCLEANFILES = spot_wrap.cxx spot.py
|
||||
66
wrap/spot.i
Normal file
66
wrap/spot.i
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
%module spot
|
||||
|
||||
%include "std_string.i"
|
||||
%include "std_list.i"
|
||||
|
||||
%{
|
||||
#include "ltlenv/environment.hh"
|
||||
#include "ltlenv/defaultenv.hh"
|
||||
#include "ltlast/formula.hh"
|
||||
#include "ltlparse/public.hh"
|
||||
#include "ltlast/visitor.hh"
|
||||
|
||||
#include "ltlvisit/clone.hh"
|
||||
#include "ltlvisit/dotty.hh"
|
||||
#include "ltlvisit/dump.hh"
|
||||
#include "ltlvisit/equals.hh"
|
||||
#include "ltlvisit/lunabbrev.hh"
|
||||
#include "ltlvisit/tunabbrev.hh"
|
||||
#include "ltlvisit/nenoform.hh"
|
||||
#include "ltlvisit/tostring.hh"
|
||||
|
||||
using namespace spot::ltl;
|
||||
%}
|
||||
|
||||
%include "ltlenv/environment.hh"
|
||||
%include "ltlenv/defaultenv.hh"
|
||||
%include "ltlast/formula.hh"
|
||||
%include "ltlparse/public.hh"
|
||||
%include "ltlast/visitor.hh"
|
||||
|
||||
%include "ltlvisit/clone.hh"
|
||||
%include "ltlvisit/dotty.hh"
|
||||
%include "ltlvisit/dump.hh"
|
||||
%include "ltlvisit/equals.hh"
|
||||
%include "ltlvisit/lunabbrev.hh"
|
||||
%include "ltlvisit/tunabbrev.hh"
|
||||
%include "ltlvisit/nenoform.hh"
|
||||
%include "ltlvisit/tostring.hh"
|
||||
|
||||
%inline %{
|
||||
|
||||
spot::ltl::parse_error_list
|
||||
empty_parse_error_list()
|
||||
{
|
||||
parse_error_list l;
|
||||
return l;
|
||||
}
|
||||
|
||||
std::ostream&
|
||||
get_cout()
|
||||
{
|
||||
return std::cout;
|
||||
}
|
||||
|
||||
std::ostream&
|
||||
get_cerr()
|
||||
{
|
||||
return std::cerr;
|
||||
}
|
||||
|
||||
void
|
||||
print_on(std::ostream& on, const std::string& what)
|
||||
{
|
||||
on << what;
|
||||
}
|
||||
%}
|
||||
Loading…
Add table
Add a link
Reference in a new issue