-
Notifications
You must be signed in to change notification settings - Fork 10
/
SwiPrologEngine.cpp
366 lines (306 loc) · 9.93 KB
/
SwiPrologEngine.cpp
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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
/* Part of SWI-Prolog interface to Qt
Author: Carlo Capelli
E-mail: cc.carlo.cap@gmail.com
Copyright (c) 2013, Carlo Capelli
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
#include "SwiPrologEngine.h"
#include "PREDICATE.h"
#include "ConsoleEdit.h"
#include "do_events.h"
#include <QtDebug>
#include <QApplication>
#include <signal.h>
#include <QTimer>
/** singleton handling - process main engine
*/
SwiPrologEngine *SwiPrologEngine::spe;
/** enforce singleton handling
*/
SwiPrologEngine::SwiPrologEngine(ConsoleEdit *target, QObject *parent)
: QThread(parent),
FlushOutputEvents(target),
argc(-1)
{
Q_ASSERT(spe == 0);
spe = this;
}
/** enforce proper termination sequence
*/
SwiPrologEngine::~SwiPrologEngine() {
Q_ASSERT(spe == 0);
}
/** check stream property
*/
bool SwiPrologEngine::is_tty(const FlushOutputEvents *f) { Q_UNUSED(f)
// qDebug() << CVP(Suser_input) << "tty" << (PL_ttymode(Suser_input) == PL_RAWTTY);
return PL_ttymode(Suser_input) == PL_RAWTTY;
}
/** background thread setup
*/
void SwiPrologEngine::start(int argc, char **argv) {
this->argv = new char*[this->argc = argc];
for (int a = 0; a < argc; ++a)
strcpy(this->argv[a] = new char[strlen(argv[a]) + 1], argv[a]);
QThread::start();
}
/** from console front end: user - or a equivalent actor - has input s
*/
void SwiPrologEngine::user_input(QString s) {
QMutexLocker lk(&sync);
buffer = s.toUtf8();
}
/** fill the buffer
*/
ssize_t SwiPrologEngine::_read_(void *handle, char *buf, size_t bufsize) {
Q_UNUSED(handle);
Q_ASSERT(spe);
return spe->_read_(buf, bufsize);
}
/** background read & query loop
*/
ssize_t SwiPrologEngine::_read_(char *buf, size_t bufsize) {
if ( buffer.isEmpty() )
emit user_prompt(PL_thread_self(), is_tty(this));
for ( ; ; ) {
{ QMutexLocker lk(&sync);
if (!spe) // terminated
return 0;
if (!queries.empty())
serve_query(queries.takeFirst());
uint n = buffer.length();
if (n > 0) {
uint l = bufsize < n ? bufsize : n;
memcpy(buf, buffer, l);
buffer.remove(0, l);
return l;
}
if (target->status == ConsoleEdit::eof) {
target->status = ConsoleEdit::running;
return 0;
}
}
if (PL_handle_signals() < 0)
return -1;
msleep(100);
}
}
/** async query interface served from same thread
*/
void SwiPrologEngine::serve_query(query p) {
Q_ASSERT(!p.is_script);
QString n = p.name, t = p.text;
try {
if (n.isEmpty()) {
PlQuery q("call", PlTermv(PlCompound(std::string(t.toUtf8()), PlEncoding::UTF8)));
//PlQuery q("call", PlTermv(PlCompound(t.toStdWString().data())));
int occurrences = 0;
while (q.next_solution())
emit query_result(t, ++occurrences);
emit query_complete(t, occurrences);
}
else {
PlQuery q(A(n).as_string(), "call", PlTermv(PlCompound(std::string(t.toUtf8()), PlEncoding::UTF8)));
//PlQuery q(A(n), "call", PlTermv(PlCompound(t.toStdWString().data())));
int occurrences = 0;
while (q.next_solution())
emit query_result(t, ++occurrences);
emit query_complete(t, occurrences);
}
}
catch(const PlException& ex) {
qDebug() << t << CCP(ex);
emit query_exception(n, CCP(ex));
}
}
/** empty the buffer
*/
ssize_t SwiPrologEngine::_write_(void *handle, char *buf, size_t bufsize) {
Q_UNUSED(handle);
if (spe) { // not terminated?
emit spe->user_output(QString::fromUtf8(buf, bufsize));
if (spe->target->status == ConsoleEdit::running)
spe->flush();
}
return bufsize;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
The role of this function is to stop changing the encoding of the plwin
output. We must return -1 for SIO_SETENCODING for this. As we do not
implement any of the other control operations we simply return -1 for
all commands we may be requested to handle.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
int SwiPrologEngine::_control_(void *handle, int cmd, void *closure)
{ Q_UNUSED(handle);
Q_UNUSED(cmd);
Q_UNUSED(closure);
return -1;
}
int SwiPrologEngine::halt_engine(int status, void*data)
{ Q_UNUSED(data);
qDebug() << "halt_engine" << status;
QCoreApplication::quit();
msleep(5000);
return 0;
}
static IOFUNCTIONS pq_functions;
void SwiPrologEngine::run() {
pq_functions = *Sinput->functions;
pq_functions.read = _read_;
pq_functions.write = _write_;
// pq_functions.close = _close_; /* JW: might be needed. See pl-ntmain.c */
pq_functions.control = _control_;
Sinput->functions = &pq_functions;
Soutput->functions = &pq_functions;
Serror->functions = &pq_functions;
Sinput->flags |= SIO_ISATTY;
Soutput->flags |= SIO_ISATTY;
Serror->flags |= SIO_ISATTY;
Sinput->encoding = ENC_UTF8; /* is this correct? */
Soutput->encoding = ENC_UTF8;
Serror->encoding = ENC_UTF8;
Sinput->flags &= ~SIO_FILE;
Soutput->flags &= ~SIO_FILE;
Serror->flags &= ~SIO_FILE;
Sinput->fileno = -1;
Soutput->fileno = -1;
Serror->fileno = -1;
PL_set_prolog_flag("console_menu", PL_BOOL|FF_READONLY, TRUE);
PL_set_prolog_flag("console_menu_version", PL_ATOM|FF_READONLY, "qt");
PL_set_prolog_flag("xpce_threaded", PL_BOOL, TRUE);
PL_set_prolog_flag("readline", PL_ATOM|FF_READONLY, "swipl_win");
// force usage of fixed ANSI ESC sequence for help console output
PL_set_prolog_flag("help_pager", PL_BOOL, FALSE);
target->add_thread(1);
PL_exit_hook(halt_engine, NULL);
PL_initialise(argc, argv);
// use as initialized flag
argc = 0;
/*
PL_toplevel();
// keep arguments valid while running
for (int a = 0; a < argc; ++a)
delete [] argv[a];
delete [] argv;
spe = 0;
*/
{ PlTerm_var color_term;
if (PlCall("current_prolog_flag", PlTermv(PlTerm_atom("color_term"), color_term)) &&
color_term.as_string() == "false")
target->color_term = false;
}
for ( ; ; ) {
int status = PL_toplevel() ? 0 : 1;
qDebug() << "PL_halt" << status;
PL_halt(status);
}
}
/** push an unnamed query, thus unlocking the execution polling loop
*/
void SwiPrologEngine::query_run(QString text) {
QMutexLocker lk(&sync);
queries.append(query {false, "", text});
}
/** push a named query, thus unlocking the execution polling loop
*/
void SwiPrologEngine::query_run(QString module, QString text) {
QMutexLocker lk(&sync);
queries.append(query {false, module, text});
}
/** allows to run a delayed script from resource at startup
*/
void SwiPrologEngine::script_run(QString name, QString text) {
queries.append(query {true, name, text});
QTimer::singleShot(100, this, SLOT(awake()));
}
void SwiPrologEngine::awake() {
Q_ASSERT(queries.count() == 1);
query p = queries.takeFirst();
Q_ASSERT(!p.name.isEmpty());
in_thread I;
if (!I.named_load(p.name, p.text))
qDebug() << "awake failed";
}
/** Create a Prolog thread for the GUI thread, so we can call Prolog
goals. These engines are created to deal with call-backs from the
gui and destroyed after the callback has finished. This is used only
if the thread associated to the current tab is not running a query.
*/
SwiPrologEngine::in_thread::in_thread()
: frame(0)
{
PL_thread_attr_t attr;
while (!spe)
msleep(100);
while (!spe->isRunning())
msleep(100);
while (spe->argc)
msleep(100);
memset(&attr, 0, sizeof(attr));
attr.flags = PL_THREAD_NO_DEBUG;
attr.alias = (char*)"__gui";
int id = PL_thread_attach_engine(&attr);
Q_ASSERT(id >= 0); /* JW: Should throw exception */
frame = new PlFrame;
}
SwiPrologEngine::in_thread::~in_thread() {
delete frame;
PL_thread_destroy_engine();
}
/** run script <t>, named <n> in current thread
*/
bool SwiPrologEngine::in_thread::named_load(QString n, QString t, bool silent) {
try {
PlTerm_var cs, s, opts;
if ( PlCall("atom_codes", PlTermv(PlTerm_atom(A(t)), cs)) &&
PlCall("open_chars_stream", PlTermv(cs, s))) {
PlTerm_tail l(opts);
PlCheckFail(l.append(PlCompound("stream", PlTermv(s))));
if (silent)
PlCheckFail(l.append(PlCompound("silent", PlTermv(A("true")))));
PlCheckFail(l.close());
bool rc = PlCall("load_files", PlTermv(PlTerm_atom(A(n)), opts));
PlCall("close", PlTermv(s));
return rc;
}
}
catch(const PlException& ex) {
qDebug() << CCP(ex);
}
return false;
}
/** handle application quit request in thread that started PL_toplevel
* logic moved here from pqMainWindow
*/
bool SwiPrologEngine::quit_request() {
qDebug() << "quit_request; spe = " << spe;
/*
if (spe)
spe->query_run("halt");
else
PL_halt(0);
return false;
*/
return true;
}