This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/python/swig/yapi.py

120 lines
3.1 KiB
Python
Raw Normal View History

2017-05-02 03:34:56 +01:00
import yap
2017-05-02 07:38:23 +01:00
import os.path
2017-05-02 03:34:56 +01:00
import sys
# debugging support.
2017-05-19 09:56:37 +01:00
# import pdb
2017-05-02 07:38:23 +01:00
from collections import namedtuple
yap_lib_path = os.path.dirname(__file__)
use_module = namedtuple( 'use_module', 'file')
bindvars = namedtuple( 'bindvars', 'list')
library = namedtuple( 'library', 'list')
v = namedtuple( '_', 'slot')
2017-05-19 09:56:37 +01:00
yap_query = namedtuple( 'yap_query', 'query owner')
2017-05-02 07:38:23 +01:00
def numbervars( engine, l ):
2017-05-14 11:36:09 +01:00
rc = engine.fun(bindvars(l))
o = []
for i in rc:
if i[0] == "=":
o = o + [i[1]]
else:
o = o +[i]
return o
2017-05-02 03:34:56 +01:00
def answer(q):
try:
return q.next()
except Exception as e:
print(e.args[1])
return False
#
2017-05-02 07:38:23 +01:00
# construct a query from a one-line string
2017-05-02 03:34:56 +01:00
# q is opaque to Python
2017-05-19 09:56:37 +01:00
if g0:
q = g0
else:
q = engine.run_query(s)
2017-05-02 03:34:56 +01:00
# vs is the list of variables
# you can print it out, the left-side is the variable name,
# the right side wraps a handle to a variable
2017-05-02 07:38:23 +01:00
# pdb.set_trace()
2017-05-19 09:56:37 +01:00
# #pdb.set_trace()
2017-05-02 03:34:56 +01:00
# atom match either symbols, or if no symbol exists, sttrings, In this case
# variable names should match strings
2017-05-02 07:38:23 +01:00
#for eq in vs:
# if not isinstance(eq[0],str):
# print( "Error: Variable Name matches a Python Symbol")
# return
2017-05-19 09:56:37 +01:00
# ask = True
2017-05-02 03:34:56 +01:00
# launch the query
while answer(q):
# deterministic = one solution
if q.deterministic():
# done
q.close()
2017-05-19 09:56:37 +01:00
return True, True
2017-05-02 03:34:56 +01:00
if ask:
s = input("more(;), all(*), no(\\n), python(#) ?").lstrip()
if s.startswith(';') or s.startswith('y'):
continue
elif s.startswith('#'):
try:
exec(s.lstrip('#'))
except:
raise
elif s.startswith('*') or s.startswith('a'):
ask = False
continue
else:
break
print("No (more) answers")
q.close()
return
2017-05-14 11:36:09 +01:00
def boot_yap(**kwargs):
2017-05-08 18:51:29 +01:00
yap_lib_path = os.path.dirname(__file__)
2017-05-02 07:38:23 +01:00
args = yap.YAPEngineArgs()
2017-05-08 18:51:29 +01:00
args.setYapShareDir(os.path.join(yap_lib_path,"prolog"))
2017-05-02 07:38:23 +01:00
args.setYapLibDir(yap_lib_path)
2017-05-14 11:36:09 +01:00
args.setSavedState(os.path.join(yap_lib_path,"startup.yss"))
2017-05-08 18:51:29 +01:00
engine = yap.YAPEngine(args)
engine.goal( use_module(library('yapi') ) )
2017-05-14 11:36:09 +01:00
return engine
def live(**kwargs):
boot_yap(**kwargs)
2017-05-02 03:34:56 +01:00
loop = True
while loop:
try:
s = input("?- ")
if not s:
loop = False
2017-05-08 18:51:29 +01:00
else:
query_prolog(engine, s)
2017-05-02 03:34:56 +01:00
except SyntaxError as err:
print("Syntax Error error: {0}".format(err))
except EOFError:
return
except RuntimeError as err:
print("YAP Execution Error: {0}".format(err))
except ValueError:
print("Could not convert data to an integer.")
except:
print("Unexpected error:", sys.exc_info()[0])
raise
engine.close()
#
# initialize engine
# engine = yap.YAPEngine();
# engine = yap.YAPEngine(yap.YAPParams());
2017-05-08 18:51:29 +01:00
#
#
if __name__ == "__main__":
live()