1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
|
/* Ciao Prolog Common Foreign Language Interface.
Copyright (C) 2001-2010 Roberto Bagnara <bagnara@cs.unipr.it>
Copyright (C) 2010-2016 BUGSENG srl (http://bugseng.com)
This file is part of the Parma Polyhedra Library (PPL).
The PPL 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 3 of the License, or (at your
option) any later version.
The PPL 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 this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307, USA.
For the most up-to-date information see the Parma Polyhedra Library
site: http://bugseng.com/products/ppl/ . */
#ifndef PCFLI_ciao_cfli_hh
#define PCFLI_ciao_cfli_hh 1
#include <ciao_prolog.h>
#include <cassert>
#include <sstream>
typedef ciao_term Prolog_term_ref;
typedef const char* Prolog_atom;
typedef ciao_bool Prolog_foreign_return_type;
const Prolog_foreign_return_type PROLOG_SUCCESS = 1;
const Prolog_foreign_return_type PROLOG_FAILURE = 0;
/*!
Return a new term reference.
*/
inline Prolog_term_ref
Prolog_new_term_ref() {
return 0;
}
/*!
Make \p t be a reference to the same term referenced by \p u,
i.e., assign \p u to \p t.
*/
inline int
Prolog_put_term(Prolog_term_ref& t, Prolog_term_ref u) {
t = u;
return 1;
}
/*!
Assign to \p t a Prolog integer with value \p l.
*/
inline int
Prolog_put_long(Prolog_term_ref& t, long l) {
t = ciao_integer(l);
return 1;
}
/*!
Assign to \p t a Prolog integer with value \p ul.
*/
inline int
Prolog_put_ulong(Prolog_term_ref& t, unsigned long ul) {
if (ul < INT_MAX)
t = ciao_integer(ul);
else {
std::ostringstream s;
s << ul;
std::string str = s.str();
// TODO: remove the const_cast when the Ciao people fix ciao_prolog.h.
t = ciao_put_number_chars(const_cast<char*>(str.c_str()));
}
return 1;
}
/*!
Assign to \p t an atom whose name is given
by the null-terminated string \p s.
*/
inline int
Prolog_put_atom_chars(Prolog_term_ref& t, const char* s) {
t = ciao_atom(s);
return 1;
}
/*!
Assign to \p t the Prolog atom \p a.
*/
inline int
Prolog_put_atom(Prolog_term_ref& t, Prolog_atom a) {
t = ciao_atom(a);
return 1;
}
/*!
Assign to \p t a term representing the address contained in \p p.
*/
inline int
Prolog_put_address(Prolog_term_ref& t, void* p) {
t = ciao_pointer_to_address(ciao_implicit_state, p);
return 1;
}
/*!
Return an atom whose name is given by the null-terminated string \p s.
*/
inline Prolog_atom
Prolog_atom_from_string(const char* s) {
return ciao_atom_name(ciao_atom(s));
}
/*!
Assign to \p t a compound term whose principal functor is \p f
of arity 1 with argument \p a1.
*/
inline int
Prolog_construct_compound(Prolog_term_ref& t, Prolog_atom f,
Prolog_term_ref a1) {
Prolog_term_ref args[1];
args[0] = a1;
t = ciao_structure_a(f, 1, args);
return 1;
}
/*!
Assign to \p t a compound term whose principal functor is \p f
of arity 2 with arguments \p a1 and \p a2.
*/
inline int
Prolog_construct_compound(Prolog_term_ref& t, Prolog_atom f,
Prolog_term_ref a1, Prolog_term_ref a2) {
Prolog_term_ref args[2];
args[0] = a1;
args[1] = a2;
t = ciao_structure_a(f, 2, args);
return 1;
}
/*!
Assign to \p t a compound term whose principal functor is \p f
of arity 3 with arguments \p a1, \p a2 and \p a3.
*/
inline int
Prolog_construct_compound(Prolog_term_ref& t, Prolog_atom f,
Prolog_term_ref a1, Prolog_term_ref a2,
Prolog_term_ref a3) {
Prolog_term_ref args[3];
args[0] = a1;
args[1] = a2;
args[2] = a3;
t = ciao_structure_a(f, 3, args);
return 1;
}
/*!
Assign to \p t a compound term whose principal functor is \p f
of arity 4 with arguments \p a1, \p a2, \p a3 and \p a4.
*/
inline int
Prolog_construct_compound(Prolog_term_ref& t, Prolog_atom f,
Prolog_term_ref a1, Prolog_term_ref a2,
Prolog_term_ref a3, Prolog_term_ref a4) {
Prolog_term_ref args[4];
args[0] = a1;
args[1] = a2;
args[2] = a3;
args[3] = a4;
t = ciao_structure_a(f, 4, args);
return 1;
}
/*!
Assign to \p c a Prolog list whose head is \p h and tail is \p t.
*/
inline int
Prolog_construct_cons(Prolog_term_ref& c,
Prolog_term_ref h, Prolog_term_ref t) {
c = ciao_list(h, t);
return 1;
}
/*!
Raise a Prolog exception with \p t as the exception term.
*/
inline void
Prolog_raise_exception(Prolog_term_ref t) {
ciao_raise_exception(t);
}
/*!
Return true if \p t is a Prolog variable, false otherwise.
*/
inline int
Prolog_is_variable(Prolog_term_ref t) {
return ciao_is_variable(t);
}
/*!
Return true if \p t is a Prolog atom, false otherwise.
*/
inline int
Prolog_is_atom(Prolog_term_ref t) {
return ciao_is_atom(t);
}
/*!
Return true if \p t is a Prolog integer, false otherwise.
*/
inline int
Prolog_is_integer(Prolog_term_ref t) {
return ciao_is_integer(t);
}
/*!
Return true if \p t is the representation of an address, false otherwise.
*/
inline int
Prolog_is_address(Prolog_term_ref t) {
return ciao_is_address(ciao_implicit_state, t);
}
/*!
Return true if \p t is a Prolog compound term, false otherwise.
*/
inline int
Prolog_is_compound(Prolog_term_ref t) {
return ciao_is_structure(t);
}
/*!
Return true if \p t is a Prolog cons (list constructor), false otherwise.
*/
inline int
Prolog_is_cons(Prolog_term_ref t) {
return ciao_is_list(t);
}
/*!
Assuming \p t is a Prolog integer, return true if its value fits
in a long, in which case the value is assigned to \p v,
return false otherwise. The behavior is undefined if \p t is
not a Prolog integer.
*/
inline int
Prolog_get_long(Prolog_term_ref t, long* lp) {
assert(ciao_is_integer(t));
if (ciao_fits_in_int(t)) {
*lp = ciao_to_integer(t);
return 1;
}
else {
char* s = ciao_get_number_chars(t);
mpz_class n(s);
ciao_free(s);
if (!n.fits_slong_p())
return 0;
else {
*lp = n.get_si();
return 1;
}
}
}
/*!
If \p t is the Prolog representation for a memory address, return
true and store that address into \p v; return false otherwise.
The behavior is undefined if \p t is not an address.
*/
inline int
Prolog_get_address(Prolog_term_ref t, void** vpp) {
assert(Prolog_is_address(t));
*vpp = ciao_address_to_pointer(ciao_implicit_state, t);
return 1;
}
/*!
If \p t is a Prolog atom, return true and store its name into \p name.
The behavior is undefined if \p t is not a Prolog atom.
*/
inline int
Prolog_get_atom_name(Prolog_term_ref t, Prolog_atom* ap) {
assert(Prolog_is_atom(t));
*ap = ciao_atom_name(t);
return 1;
}
/*!
If \p t is a Prolog compound term, return true and store its name
and arity into \p name and \p arity, respectively.
The behavior is undefined if \p t is not a Prolog compound term.
*/
inline int
Prolog_get_compound_name_arity(Prolog_term_ref t, Prolog_atom* ap, size_t* ip) {
assert(Prolog_is_compound(t));
*ap = ciao_structure_name(t);
*ip = ciao_structure_arity(t);
return 1;
}
/*!
If \p t is a Prolog compound term and \p i is a positive integer
less than or equal to its arity, return true and assign to \p a the
i-th (principal) argument of \p t.
The behavior is undefined if \p t is not a Prolog compound term.
*/
inline int
Prolog_get_arg(int i, Prolog_term_ref t, Prolog_term_ref& a) {
assert(Prolog_is_compound(t));
a = ciao_structure_arg(t, i);
return 1;
}
/*!
If \p c is a Prolog cons (list constructor), assign its head and
tail to \p h and \p t, respectively.
The behavior is undefined if \p c is not a Prolog cons.
*/
inline int
Prolog_get_cons(Prolog_term_ref c, Prolog_term_ref& h, Prolog_term_ref& t) {
assert(Prolog_is_cons(c));
h = ciao_list_head(c);
t = ciao_list_tail(c);
return 1;
}
/*!
Unify the terms referenced by \p t and \p u and return true
if the unification is successful; return false otherwise.
*/
inline int
Prolog_unify(Prolog_term_ref t, Prolog_term_ref u) {
return ciao_unify(t, u);
}
#endif // !defined(PCFLI_ciao_cfli_hh)
|