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/CXX/yapq.hh

124 lines
3.7 KiB
C++
Raw Normal View History

2015-02-09 01:52:10 +00:00
#ifndef YAPQ_HH
#define YAPQ_HH 1
/**
Queries and engines
*/
/**
* @brief Queries
*
* interface to a YAP Query;
* uses an SWI-like status info internally.
*/
2015-04-13 13:28:17 +01:00
class YAPQuery: public YAPPredicate, open_query_struct {
2015-06-18 00:52:31 +01:00
Term vnames;
2015-04-13 13:28:17 +01:00
YAPTerm goal;
Term t;
void initOpenQ();
void initQuery( Term t );
void initQuery( YAPTerm ts[], arity_t arity );
2015-02-09 01:52:10 +00:00
public:
/// main constructor, uses a predicate and an array of terms
///
/// It is given a YAPPredicate _p_ , and an array of terms that must have at least
/// the same arity as the functor.
YAPQuery(YAPPredicate p, YAPTerm t[]);
/// full constructor,
///
/// It is given a functor, module, and an array of terms that must have at least
/// the same arity as the functor.
YAPQuery(YAPFunctor f, YAPTerm mod, YAPTerm t[]);
/// functor/term constructor,
///
/// It is given a functor, and an array of terms that must have at least
/// the same arity as the functor. Works within the current module.
YAPQuery(YAPFunctor f, YAPTerm t[]);
/// string constructor without varnames
///
/// It is given a string, calls the parser and obtains a Prolog term that should be a callable
2015-04-13 13:28:17 +01:00
/// goal.
inline YAPQuery(const char *s): YAPPredicate(s, t, vnames)
2015-02-09 01:52:10 +00:00
{
2015-04-13 13:28:17 +01:00
initQuery( t );
};
2015-02-09 01:52:10 +00:00
/// set flags for query execution, currently only for exception handling
void setFlag(int flag) {q_flags |= flag; }
/// reset flags for query execution, currently only for exception handling
void resetFlag(int flag) {q_flags &= ~flag; }
2015-06-18 00:52:31 +01:00
///`b first query
2015-02-09 01:52:10 +00:00
///
/// actually implemented by calling the next();
inline bool first() { return next(); }
/// ask for the next solution of the current query
/// same call for every solution
bool next();
/// represent the top-goal
2015-04-13 13:28:17 +01:00
const char *text();
2015-02-09 01:52:10 +00:00
/// remove alternatives in the current search space, and finish the current query
void cut();
/// finish the current query: undo all bindings.
void close();
/// query variables.
YAPListTerm namedVars();
};
// Java support
/// This class implements a callback Prolog-side. It will be inherited by the Java or Python
/// class that actually implements the callback.
class YAPCallback {
public:
2015-04-13 13:28:17 +01:00
virtual ~YAPCallback() { }
virtual void run() { LOG("callback"); }
2015-02-09 01:52:10 +00:00
virtual void run(char *s) { }
};
/**
* @brief YAP Engine: takes care of the execution environment
where we can go executing goals.
*
*
*/
class YAPEngine {
private:
YAPCallback *_callback;
YAP_init_args init_args;
YAPError yerror;
public:
YAPEngine(char *savedState = (char *)NULL,
size_t stackSize = 0,
size_t trailSize = 0,
size_t maxStackSize = 0,
size_t maxTrailSize = 0,
char *libDir = (char *)NULL,
char *bootFile = (char *)NULL,
char *goal = (char *)NULL,
char *topLevel = (char *)NULL,
bool script = FALSE,
bool fastBoot = FALSE,
YAPCallback *callback=(YAPCallback *)NULL); /// construct a new engine, including aaccess to callbacks
2015-07-06 12:01:55 +01:00
/// kill engine
2015-02-09 01:52:10 +00:00
~YAPEngine() { delYAPCallback(); }
/// remove current callback
void delYAPCallback() { _callback = 0; }
/// set a new callback
void setYAPCallback(YAPCallback *cb) { delYAPCallback(); _callback = cb; }
/// execute the callback.
2015-03-23 07:26:03 +00:00
////void run() { if (_callback) _callback->run(); }
2015-02-09 01:52:10 +00:00
/// execute the callback with a text argument.
void run( char *s) { if (_callback) _callback->run(s); }
/// execute the callback with a text argument.
2015-07-06 12:01:55 +01:00
YAPError hasError( ) { return yerror.get(); }
2015-02-09 01:52:10 +00:00
/// build a query on the engine
2015-04-13 13:28:17 +01:00
YAPQuery *query( const char *s ) {
return new YAPQuery( s );
2015-04-13 13:28:17 +01:00
};
2015-02-09 01:52:10 +00:00
/// current module for the engine
YAPModule currentModule( ) { return YAPModule( ) ; }
};
#endif /* YAPQ_HH */