1:- encoding(utf8).
36
37:- module(pengines,
38 [ pengine_create/1, 39 pengine_ask/3, 40 pengine_next/2, 41 pengine_stop/2, 42 pengine_event/2, 43 pengine_input/2, 44 pengine_output/1, 45 pengine_respond/3, 46 pengine_debug/2, 47 pengine_self/1, 48 pengine_pull_response/2, 49 pengine_destroy/1, 50 pengine_destroy/2, 51 pengine_abort/1, 52 pengine_application/1, 53 current_pengine_application/1, 54 pengine_property/2, 55 pengine_user/1, 56 pengine_event_loop/2, 57 pengine_rpc/2, 58 pengine_rpc/3 59 ]). 60
69
70:- use_module(library(http/http_dispatch)). 71:- use_module(library(http/http_parameters)). 72:- use_module(library(http/http_client)). 73:- use_module(library(http/http_json)). 74:- use_module(library(http/http_open)). 75:- use_module(library(http/http_stream)). 76:- use_module(library(http/http_wrapper)). 77:- use_module(library(http/http_cors)). 78:- use_module(library(thread_pool)). 79:- use_module(library(broadcast)). 80:- use_module(library(uri)). 81:- use_module(library(filesex)). 82:- use_module(library(time)). 83:- use_module(library(lists)). 84:- use_module(library(charsio)). 85:- use_module(library(apply)). 86:- use_module(library(aggregate)). 87:- use_module(library(option)). 88:- use_module(library(settings)). 89:- use_module(library(debug)). 90:- use_module(library(error)). 91:- use_module(library(sandbox)). 92:- use_module(library(modules)). 93:- use_module(library(term_to_json)). 94:- if(exists_source(library(uuid))). 95:- use_module(library(uuid)). 96:- endif. 97
98
99:- meta_predicate
100 pengine_create(:),
101 pengine_rpc(+, +, :),
102 pengine_event_loop(1, +). 103
104:- multifile
105 write_result/3, 106 event_to_json/3, 107 prepare_module/3, 108 prepare_goal/3, 109 authentication_hook/3, 110 not_sandboxed/2. 111
112:- predicate_options(pengine_create/1, 1,
113 [ id(-atom),
114 alias(atom),
115 application(atom),
116 destroy(boolean),
117 server(atom),
118 ask(compound),
119 template(compound),
120 chunk(integer),
121 bindings(list),
122 src_list(list),
123 src_text(any), 124 src_url(atom),
125 src_predicates(list)
126 ]). 127:- predicate_options(pengine_ask/3, 3,
128 [ template(any),
129 chunk(integer),
130 bindings(list)
131 ]). 132:- predicate_options(pengine_next/2, 2,
133 [ chunk(integer),
134 pass_to(pengine_send/3, 3)
135 ]). 136:- predicate_options(pengine_stop/2, 2,
137 [ pass_to(pengine_send/3, 3)
138 ]). 139:- predicate_options(pengine_respond/3, 2,
140 [ pass_to(pengine_send/3, 3)
141 ]). 142:- predicate_options(pengine_rpc/3, 3,
143 [ chunk(integer),
144 pass_to(pengine_create/1, 1)
145 ]). 146:- predicate_options(pengine_send/3, 3,
147 [ delay(number)
148 ]). 149:- predicate_options(pengine_event/2, 2,
150 [ pass_to(thread_get_message/3, 3)
151 ]). 152:- predicate_options(pengine_pull_response/2, 2,
153 [ pass_to(http_open/3, 3)
154 ]). 155:- predicate_options(pengine_event_loop/2, 2,
156 []). 157
159:- debug(pengine(debug)). 160
161goal_expansion(random_delay, Expanded) :-
162 ( debugging(pengine(delay))
163 -> Expanded = do_random_delay
164 ; Expanded = true
165 ).
166
167do_random_delay :-
168 Delay is random(20)/1000,
169 sleep(Delay).
170
171:- meta_predicate 172 solve(+, ?, 0, +),
173 findnsols_no_empty(+, ?, 0, -),
174 pengine_event_loop(+, 1, +). 175
227
228
229pengine_create(M:Options0) :-
230 translate_local_sources(Options0, Options, M),
231 ( select_option(server(BaseURL), Options, RestOptions)
232 -> remote_pengine_create(BaseURL, RestOptions)
233 ; local_pengine_create(Options)
234 ).
235
247
248translate_local_sources(OptionsIn, Options, Module) :-
249 translate_local_sources(OptionsIn, Sources, Options2, Module),
250 ( Sources == []
251 -> Options = Options2
252 ; Sources = [Source]
253 -> Options = [src_text(Source)|Options2]
254 ; atomics_to_string(Sources, Source)
255 -> Options = [src_text(Source)|Options2]
256 ).
257
258translate_local_sources([], [], [], _).
259translate_local_sources([H0|T], [S0|S], Options, M) :-
260 nonvar(H0),
261 translate_local_source(H0, S0, M),
262 !,
263 translate_local_sources(T, S, Options, M).
264translate_local_sources([H|T0], S, [H|T], M) :-
265 translate_local_sources(T0, S, T, M).
266
267translate_local_source(src_predicates(PIs), Source, M) :-
268 must_be(list, PIs),
269 with_output_to(string(Source),
270 maplist(listing(M), PIs)).
271translate_local_source(src_list(Terms), Source, _) :-
272 must_be(list, Terms),
273 with_output_to(string(Source),
274 forall(member(Term, Terms),
275 format('~k .~n', [Term]))).
276translate_local_source(src_text(Source), Source, _).
277
278listing(M, PI) :-
279 listing(M:PI).
280
285
286pengine_send(Target, Event) :-
287 pengine_send(Target, Event, []).
288
289
301
302pengine_send(Target, Event, Options) :-
303 must_be(atom, Target),
304 pengine_send2(Target, Event, Options).
305
306pengine_send2(self, Event, Options) :-
307 !,
308 thread_self(Queue),
309 delay_message(queue(Queue), Event, Options).
310pengine_send2(Name, Event, Options) :-
311 child(Name, Target),
312 !,
313 delay_message(pengine(Target), Event, Options).
314pengine_send2(Target, Event, Options) :-
315 delay_message(pengine(Target), Event, Options).
316
317delay_message(Target, Event, Options) :-
318 option(delay(Delay), Options),
319 !,
320 alarm(Delay,
321 send_message(Target, Event, Options),
322 _AlarmID,
323 [remove(true)]).
324delay_message(Target, Event, Options) :-
325 random_delay,
326 send_message(Target, Event, Options).
327
328send_message(queue(Queue), Event, _) :-
329 thread_send_message(Queue, pengine_request(Event)).
330send_message(pengine(Pengine), Event, Options) :-
331 ( pengine_remote(Pengine, Server)
332 -> remote_pengine_send(Server, Pengine, Event, Options)
333 ; pengine_thread(Pengine, Thread)
334 -> thread_send_message(Thread, pengine_request(Event))
335 ; existence_error(pengine, Pengine)
336 ).
337
342
343pengine_request(Request) :-
344 pengine_self(Self),
345 get_pengine_application(Self, Application),
346 setting(Application:idle_limit, IdleLimit),
347 thread_self(Me),
348 ( thread_get_message(Me, pengine_request(Request), [timeout(IdleLimit)])
349 -> true
350 ; Request = destroy
351 ).
352
353
363
364pengine_reply(Event) :-
365 pengine_parent(Queue),
366 pengine_reply(Queue, Event).
367
368pengine_reply(_Queue, _Event0) :-
369 nb_current(pengine_idle_limit_exceeded, true),
370 !.
371pengine_reply(Queue, Event0) :-
372 arg(1, Event0, ID),
373 wrap_first_answer(ID, Event0, Event),
374 random_delay,
375 debug(pengine(event), 'Reply to ~p: ~p', [Queue, Event]),
376 ( pengine_self(ID)
377 -> get_pengine_application(ID, Application),
378 setting(Application:idle_limit, IdleLimit),
379 debug(pengine(reply), 'Sending ~p, timout: ~q', [Event, IdleLimit]),
380 ( thread_send_message(Queue, pengine_event(ID, Event),
381 [ timeout(IdleLimit)
382 ])
383 -> true
384 ; thread_self(Me),
385 debug(pengine(reply), 'pengine_reply: timeout for ~q (thread ~q)',
386 [ID, Me]),
387 nb_setval(pengine_idle_limit_exceeded, true),
388 thread_detach(Me),
389 abort
390 )
391 ; thread_send_message(Queue, pengine_event(ID, Event))
392 ).
393
394wrap_first_answer(ID, Event0, CreateEvent) :-
395 wrap_first_answer_in_create_event(CreateEvent, [answer(Event0)]),
396 arg(1, CreateEvent, ID),
397 !,
398 retract(wrap_first_answer_in_create_event(CreateEvent, [answer(Event0)])).
399wrap_first_answer(_ID, Event, Event).
400
401
402empty_queue :-
403 pengine_parent(Queue),
404 empty_queue(Queue, 0, Discarded),
405 debug(pengine(abort), 'Abort: discarded ~D messages', [Discarded]).
406
407empty_queue(Queue, C0, C) :-
408 thread_get_message(Queue, _Term, [timeout(0)]),
409 !,
410 C1 is C0+1,
411 empty_queue(Queue, C1, C).
412empty_queue(_, C, C).
413
414
476
477pengine_ask(ID, Query, Options) :-
478 partition(pengine_ask_option, Options, AskOptions, SendOptions),
479 pengine_send(ID, ask(Query, AskOptions), SendOptions).
480
481
482pengine_ask_option(template(_)).
483pengine_ask_option(chunk(_)).
484pengine_ask_option(bindings(_)).
485pengine_ask_option(breakpoints(_)).
486
487
528
529pengine_next(ID, Options) :-
530 select_option(chunk(Count), Options, Options1),
531 !,
532 pengine_send(ID, next(Count), Options1).
533pengine_next(ID, Options) :-
534 pengine_send(ID, next, Options).
535
536
549
550pengine_stop(ID, Options) :- pengine_send(ID, stop, Options).
551
552
560
561pengine_abort(Name) :-
562 ( child(Name, Pengine)
563 -> true
564 ; Pengine = Name
565 ),
566 ( pengine_remote(Pengine, Server)
567 -> remote_pengine_abort(Server, Pengine, [])
568 ; pengine_thread(Pengine, Thread),
569 debug(pengine(abort), 'Signalling thread ~p', [Thread]),
570 catch(thread_signal(Thread, throw(abort_query)), _, true)
571 ).
572
573
580
581pengine_destroy(ID) :-
582 pengine_destroy(ID, []).
583
584pengine_destroy(Name, Options) :-
585 ( child(Name, ID)
586 -> true
587 ; ID = Name
588 ),
589 option(force(true), Options),
590 !,
591 ( pengine_thread(ID, Thread)
592 -> catch(thread_signal(Thread, abort),
593 error(existence_error(thread, _), _), true)
594 ; true
595 ).
596pengine_destroy(ID, _) :-
597 catch(pengine_send(ID, destroy),
598 error(existence_error(pengine, ID), _),
599 retractall(child(_,ID))).
600
601
604
613
614:- dynamic
615 current_pengine/6, 616 pengine_queue/4, 617 output_queue/3, 618 pengine_user/2, 619 pengine_data/2. 620:- volatile
621 current_pengine/6,
622 pengine_queue/4,
623 output_queue/3,
624 pengine_user/2,
625 pengine_data/2. 626
627:- thread_local
628 child/2. 629
633
634pengine_register_local(Id, Thread, Queue, URL, Application, Destroy) :-
635 asserta(current_pengine(Id, Queue, Thread, URL, Application, Destroy)).
636
637pengine_register_remote(Id, URL, Application, Destroy) :-
638 thread_self(Queue),
639 asserta(current_pengine(Id, Queue, 0, URL, Application, Destroy)).
640
646
647pengine_unregister(Id) :-
648 thread_self(Me),
649 ( current_pengine(Id, Queue, Me, http, _, _)
650 -> with_mutex(pengine, sync_destroy_queue_from_pengine(Id, Queue))
651 ; true
652 ),
653 retractall(current_pengine(Id, _, Me, _, _, _)),
654 retractall(pengine_user(Id, _)),
655 retractall(pengine_data(Id, _)).
656
657pengine_unregister_remote(Id) :-
658 retractall(current_pengine(Id, _Parent, 0, _, _, _)).
659
663
664pengine_self(Id) :-
665 thread_self(Thread),
666 current_pengine(Id, _Parent, Thread, _URL, _Application, _Destroy).
667
668pengine_parent(Parent) :-
669 nb_getval(pengine_parent, Parent).
670
671pengine_thread(Pengine, Thread) :-
672 current_pengine(Pengine, _Parent, Thread, _URL, _Application, _Destroy),
673 Thread \== 0,
674 !.
675
676pengine_remote(Pengine, URL) :-
677 current_pengine(Pengine, _Parent, 0, URL, _Application, _Destroy).
678
679get_pengine_application(Pengine, Application) :-
680 current_pengine(Pengine, _Parent, _, _URL, Application, _Destroy),
681 !.
682
683get_pengine_module(Pengine, Pengine).
684
685:- if(current_predicate(uuid/2)). 686pengine_uuid(Id) :-
687 uuid(Id, [version(4)]). 688:- else. 689:- use_module(library(random)). 690pengine_uuid(Id) :-
691 Max is 1<<128,
692 random_between(0, Max, Num),
693 atom_number(Id, Num).
694:- endif. 695
709
710pengine_application(Application) :-
711 throw(error(context_error(nodirective,
712 pengine_application(Application)), _)).
713
714:- multifile
715 system:term_expansion/2,
716 current_application/1. 717
723
724current_pengine_application(Application) :-
725 current_application(Application).
726
727
729
730:- setting(thread_pool_size, integer, 100,
731 'Maximum number of pengines this application can run.'). 732:- setting(thread_pool_stacks, list(compound), [],
733 'Maximum stack sizes for pengines this application can run.'). 734:- setting(slave_limit, integer, 3,
735 'Maximum number of slave pengines a master pengine can create.'). 736:- setting(time_limit, number, 300,
737 'Maximum time to wait for output'). 738:- setting(idle_limit, number, 300,
739 'Pengine auto-destroys when idle for this time'). 740:- setting(safe_goal_limit, number, 10,
741 'Maximum time to try proving safity of the goal'). 742:- setting(program_space, integer, 100_000_000,
743 'Maximum memory used by predicates'). 744:- setting(allow_from, list(atom), [*],
745 'IP addresses from which remotes are allowed to connect'). 746:- setting(deny_from, list(atom), [],
747 'IP addresses from which remotes are NOT allowed to connect'). 748:- setting(debug_info, boolean, false,
749 'Keep information to support source-level debugging'). 750
751
752system:term_expansion((:- pengine_application(Application)), Expanded) :-
753 must_be(atom, Application),
754 ( module_property(Application, file(_))
755 -> permission_error(create, pengine_application, Application)
756 ; true
757 ),
758 expand_term((:- setting(Application:thread_pool_size, integer,
759 setting(pengines:thread_pool_size),
760 'Maximum number of pengines this \c
761 application can run.')),
762 ThreadPoolSizeSetting),
763 expand_term((:- setting(Application:thread_pool_stacks, list(compound),
764 setting(pengines:thread_pool_stacks),
765 'Maximum stack sizes for pengines \c
766 this application can run.')),
767 ThreadPoolStacksSetting),
768 expand_term((:- setting(Application:slave_limit, integer,
769 setting(pengines:slave_limit),
770 'Maximum number of local slave pengines \c
771 a master pengine can create.')),
772 SlaveLimitSetting),
773 expand_term((:- setting(Application:time_limit, number,
774 setting(pengines:time_limit),
775 'Maximum time to wait for output')),
776 TimeLimitSetting),
777 expand_term((:- setting(Application:idle_limit, number,
778 setting(pengines:idle_limit),
779 'Pengine auto-destroys when idle for this time')),
780 IdleLimitSetting),
781 expand_term((:- setting(Application:safe_goal_limit, number,
782 setting(pengines:safe_goal_limit),
783 'Maximum time to try proving safity of the goal')),
784 SafeGoalLimitSetting),
785 expand_term((:- setting(Application:program_space, integer,
786 setting(pengines:program_space),
787 'Maximum memory used by predicates')),
788 ProgramSpaceSetting),
789 expand_term((:- setting(Application:allow_from, list(atom),
790 setting(pengines:allow_from),
791 'IP addresses from which remotes are allowed \c
792 to connect')),
793 AllowFromSetting),
794 expand_term((:- setting(Application:deny_from, list(atom),
795 setting(pengines:deny_from),
796 'IP addresses from which remotes are NOT \c
797 allowed to connect')),
798 DenyFromSetting),
799 expand_term((:- setting(Application:debug_info, boolean,
800 setting(pengines:debug_info),
801 'Keep information to support source-level \c
802 debugging')),
803 DebugInfoSetting),
804 flatten([ pengines:current_application(Application),
805 ThreadPoolSizeSetting,
806 ThreadPoolStacksSetting,
807 SlaveLimitSetting,
808 TimeLimitSetting,
809 IdleLimitSetting,
810 SafeGoalLimitSetting,
811 ProgramSpaceSetting,
812 AllowFromSetting,
813 DenyFromSetting,
814 DebugInfoSetting
815 ], Expanded).
816
818
819:- pengine_application(pengine_sandbox). 820
821
852
853
854pengine_property(Id, Prop) :-
855 nonvar(Id), nonvar(Prop),
856 pengine_property2(Id, Prop),
857 !.
858pengine_property(Id, Prop) :-
859 pengine_property2(Id, Prop).
860
861pengine_property2(Id, self(Id)) :-
862 current_pengine(Id, _Parent, _Thread, _URL, _Application, _Destroy).
863pengine_property2(Id, module(Id)) :-
864 current_pengine(Id, _Parent, _Thread, _URL, _Application, _Destroy).
865pengine_property2(Id, alias(Alias)) :-
866 child(Alias, Id),
867 Alias \== Id.
868pengine_property2(Id, thread(Thread)) :-
869 current_pengine(Id, _Parent, Thread, _URL, _Application, _Destroy),
870 Thread \== 0.
871pengine_property2(Id, remote(Server)) :-
872 current_pengine(Id, _Parent, 0, Server, _Application, _Destroy).
873pengine_property2(Id, application(Application)) :-
874 current_pengine(Id, _Parent, _Thread, _Server, Application, _Destroy).
875pengine_property2(Id, destroy(Destroy)) :-
876 current_pengine(Id, _Parent, _Thread, _Server, _Application, Destroy).
877pengine_property2(Id, parent(Parent)) :-
878 current_pengine(Id, Parent, _Thread, _URL, _Application, _Destroy).
879pengine_property2(Id, source(SourceID, Source)) :-
880 pengine_data(Id, source(SourceID, Source)).
881
886
887pengine_output(Term) :-
888 pengine_self(Me),
889 pengine_reply(output(Me, Term)).
890
891
903
904pengine_debug(Format, Args) :-
905 pengine_parent(Queue),
906 pengine_self(Self),
907 catch(safe_goal(format(atom(_), Format, Args)), E, true),
908 ( var(E)
909 -> format(atom(Message), Format, Args)
910 ; message_to_string(E, Message)
911 ),
912 pengine_reply(Queue, debug(Self, Message)).
913
914
917
926
927local_pengine_create(Options) :-
928 thread_self(Self),
929 option(application(Application), Options, pengine_sandbox),
930 create(Self, Child, Options, local, Application),
931 option(alias(Name), Options, Child),
932 assert(child(Name, Child)).
933
934
938
939thread_pool:create_pool(Application) :-
940 current_application(Application),
941 setting(Application:thread_pool_size, Size),
942 setting(Application:thread_pool_stacks, Stacks),
943 thread_pool_create(Application, Size, Stacks).
944
952
953create(Queue, Child, Options, local, Application) :-
954 !,
955 pengine_child_id(Child),
956 create0(Queue, Child, Options, local, Application).
957create(Queue, Child, Options, URL, Application) :-
958 pengine_child_id(Child),
959 catch(create0(Queue, Child, Options, URL, Application),
960 Error,
961 create_error(Queue, Child, Error)).
962
963pengine_child_id(Child) :-
964 ( nonvar(Child)
965 -> true
966 ; pengine_uuid(Child)
967 ).
968
969create_error(Queue, Child, Error) :-
970 pengine_reply(Queue, error(Child, Error)).
971
972create0(Queue, Child, Options, URL, Application) :-
973 ( current_application(Application)
974 -> true
975 ; existence_error(pengine_application, Application)
976 ),
977 ( URL \== http 978 979 -> aggregate_all(count, child(_,_), Count),
980 setting(Application:slave_limit, Max),
981 ( Count >= Max
982 -> throw(error(resource_error(max_pengines), _))
983 ; true
984 )
985 ; true
986 ),
987 partition(pengine_create_option, Options, PengineOptions, RestOptions),
988 thread_create_in_pool(
989 Application,
990 pengine_main(Queue, PengineOptions, Application), ChildThread,
991 [ at_exit(pengine_done)
992 | RestOptions
993 ]),
994 option(destroy(Destroy), PengineOptions, true),
995 pengine_register_local(Child, ChildThread, Queue, URL, Application, Destroy),
996 thread_send_message(ChildThread, pengine_registered(Child)),
997 ( option(id(Id), Options)
998 -> Id = Child
999 ; true
1000 ).
1001
1002pengine_create_option(src_text(_)).
1003pengine_create_option(src_url(_)).
1004pengine_create_option(application(_)).
1005pengine_create_option(destroy(_)).
1006pengine_create_option(ask(_)).
1007pengine_create_option(template(_)).
1008pengine_create_option(bindings(_)).
1009pengine_create_option(chunk(_)).
1010pengine_create_option(alias(_)).
1011pengine_create_option(user(_)).
1012
1013
1018
1019:- public
1020 pengine_done/0. 1021
1022pengine_done :-
1023 thread_self(Me),
1024 ( thread_property(Me, status(exception('$aborted')))
1025 -> pengine_self(Pengine),
1026 pengine_reply(destroy(Pengine, abort(Pengine))),
1027 thread_detach(Me)
1028 ; true
1029 ),
1030 forall(child(_Name, Child),
1031 pengine_destroy(Child)),
1032 pengine_self(Id),
1033 pengine_unregister(Id).
1034
1035
1040
1041:- thread_local wrap_first_answer_in_create_event/2. 1042
1043:- meta_predicate
1044 pengine_prepare_source(:, +). 1045
1046pengine_main(Parent, Options, Application) :-
1047 fix_streams,
1048 thread_get_message(pengine_registered(Self)),
1049 nb_setval(pengine_parent, Parent),
1050 pengine_register_user(Options),
1051 catch(in_temporary_module(
1052 Self,
1053 pengine_prepare_source(Application, Options),
1054 pengine_create_and_loop(Self, Application, Options)),
1055 prepare_source_failed,
1056 pengine_terminate(Self)).
1057
1058pengine_create_and_loop(Self, Application, Options) :-
1059 setting(Application:slave_limit, SlaveLimit),
1060 CreateEvent = create(Self, [slave_limit(SlaveLimit)|Extra]),
1061 ( option(ask(Query), Options)
1062 -> asserta(wrap_first_answer_in_create_event(CreateEvent, Extra)),
1063 option(template(Template), Options, Query),
1064 option(chunk(Chunk), Options, 1),
1065 option(bindings(Bindings), Options, []),
1066 pengine_ask(Self, Query,
1067 [ template(Template),
1068 chunk(Chunk),
1069 bindings(Bindings)
1070 ])
1071 ; Extra = [],
1072 pengine_reply(CreateEvent)
1073 ),
1074 pengine_main_loop(Self).
1075
1076
1081
1082fix_streams :-
1083 fix_stream(current_output).
1084
1085fix_stream(Name) :-
1086 is_cgi_stream(Name),
1087 !,
1088 debug(pengine(stream), '~w is a CGI stream!', [Name]),
1089 set_stream(user_output, alias(Name)).
1090fix_stream(_).
1091
1098
1099pengine_prepare_source(Module:Application, Options) :-
1100 setting(Application:program_space, SpaceLimit),
1101 set_module(Module:program_space(SpaceLimit)),
1102 delete_import_module(Module, user),
1103 add_import_module(Module, Application, start),
1104 catch(prep_module(Module, Application, Options), Error, true),
1105 ( var(Error)
1106 -> true
1107 ; send_error(Error),
1108 throw(prepare_source_failed)
1109 ).
1110
1111prep_module(Module, Application, Options) :-
1112 maplist(copy_flag(Module, Application), [var_prefix]),
1113 forall(prepare_module(Module, Application, Options), true),
1114 setup_call_cleanup(
1115 '$set_source_module'(OldModule, Module),
1116 maplist(process_create_option(Module), Options),
1117 '$set_source_module'(OldModule)).
1118
1119copy_flag(Module, Application, Flag) :-
1120 current_prolog_flag(Application:Flag, Value),
1121 !,
1122 set_prolog_flag(Module:Flag, Value).
1123copy_flag(_, _, _).
1124
1125process_create_option(Application, src_text(Text)) :-
1126 !,
1127 pengine_src_text(Text, Application).
1128process_create_option(Application, src_url(URL)) :-
1129 !,
1130 pengine_src_url(URL, Application).
1131process_create_option(_, _).
1132
1133
1152
1153
1154pengine_main_loop(ID) :-
1155 catch(guarded_main_loop(ID), abort_query, pengine_aborted(ID)).
1156
1157pengine_aborted(ID) :-
1158 thread_self(Self),
1159 debug(pengine(abort), 'Aborting ~p (thread ~p)', [ID, Self]),
1160 empty_queue,
1161 destroy_or_continue(abort(ID)).
1162
1163
1173
1174guarded_main_loop(ID) :-
1175 pengine_request(Request),
1176 ( Request = destroy
1177 -> debug(pengine(transition), '~q: 2 = ~q => 1', [ID, destroy]),
1178 pengine_terminate(ID)
1179 ; Request = ask(Goal, Options)
1180 -> debug(pengine(transition), '~q: 2 = ~q => 3', [ID, ask(Goal)]),
1181 ask(ID, Goal, Options)
1182 ; debug(pengine(transition), '~q: 2 = ~q => 2', [ID, protocol_error]),
1183 pengine_reply(error(ID, error(protocol_error, _))),
1184 guarded_main_loop(ID)
1185 ).
1186
1187
1188pengine_terminate(ID) :-
1189 pengine_reply(destroy(ID)),
1190 thread_self(Me), 1191 thread_detach(Me).
1192
1193
1201
1202solve(Chunk, Template, Goal, ID) :-
1203 prolog_current_choice(Choice),
1204 State = count(Chunk),
1205 statistics(cputime, Epoch),
1206 Time = time(Epoch),
1207 ( call_cleanup(catch(findnsols_no_empty(State, Template, Goal, Result),
1208 Error, true),
1209 Det = true),
1210 arg(1, Time, T0),
1211 statistics(cputime, T1),
1212 CPUTime is T1-T0,
1213 ( var(Error)
1214 -> projection(Projection),
1215 ( var(Det)
1216 -> pengine_reply(success(ID, Result, Projection,
1217 CPUTime, true)),
1218 more_solutions(ID, Choice, State, Time)
1219 ; !, 1220 destroy_or_continue(success(ID, Result, Projection,
1221 CPUTime, false))
1222 )
1223 ; !, 1224 ( Error == abort_query
1225 -> throw(Error)
1226 ; destroy_or_continue(error(ID, Error))
1227 )
1228 )
1229 ; !, 1230 arg(1, Time, T0),
1231 statistics(cputime, T1),
1232 CPUTime is T1-T0,
1233 destroy_or_continue(failure(ID, CPUTime))
1234 ).
1235solve(_, _, _, _). 1236
1237projection(Projection) :-
1238 nb_current('$variable_names', Bindings),
1239 !,
1240 maplist(var_name, Bindings, Projection).
1241projection([]).
1242
1243
1244findnsols_no_empty(N, Template, Goal, List) :-
1245 findnsols(N, Template, Goal, List),
1246 List \== [].
1247
1248destroy_or_continue(Event) :-
1249 arg(1, Event, ID),
1250 ( pengine_property(ID, destroy(true))
1251 -> thread_self(Me),
1252 thread_detach(Me),
1253 pengine_reply(destroy(ID, Event))
1254 ; pengine_reply(Event),
1255 garbage_collect, 1256 trim_stacks,
1257 guarded_main_loop(ID)
1258 ).
1259
1275
1276more_solutions(ID, Choice, State, Time) :-
1277 pengine_request(Event),
1278 more_solutions(Event, ID, Choice, State, Time).
1279
1280more_solutions(stop, ID, _Choice, _State, _Time) :-
1281 !,
1282 debug(pengine(transition), '~q: 6 = ~q => 7', [ID, stop]),
1283 destroy_or_continue(stop(ID)).
1284more_solutions(next, ID, _Choice, _State, Time) :-
1285 !,
1286 debug(pengine(transition), '~q: 6 = ~q => 3', [ID, next]),
1287 statistics(cputime, T0),
1288 nb_setarg(1, Time, T0),
1289 fail.
1290more_solutions(next(Count), ID, _Choice, State, Time) :-
1291 Count > 0,
1292 !,
1293 debug(pengine(transition), '~q: 6 = ~q => 3', [ID, next(Count)]),
1294 nb_setarg(1, State, Count),
1295 statistics(cputime, T0),
1296 nb_setarg(1, Time, T0),
1297 fail.
1298more_solutions(ask(Goal, Options), ID, Choice, _State, _Time) :-
1299 !,
1300 debug(pengine(transition), '~q: 6 = ~q => 3', [ID, ask(Goal)]),
1301 prolog_cut_to(Choice),
1302 ask(ID, Goal, Options).
1303more_solutions(destroy, ID, _Choice, _State, _Time) :-
1304 !,
1305 debug(pengine(transition), '~q: 6 = ~q => 1', [ID, destroy]),
1306 pengine_terminate(ID).
1307more_solutions(Event, ID, Choice, State, Time) :-
1308 debug(pengine(transition), '~q: 6 = ~q => 6', [ID, protocol_error(Event)]),
1309 pengine_reply(error(ID, error(protocol_error, _))),
1310 more_solutions(ID, Choice, State, Time).
1311
1317
1318ask(ID, Goal, Options) :-
1319 catch(prepare_goal(ID, Goal, Goal1, Options), Error, true),
1320 !,
1321 ( var(Error)
1322 -> option(template(Template), Options, Goal),
1323 option(chunk(N), Options, 1),
1324 solve(N, Template, Goal1, ID)
1325 ; pengine_reply(error(ID, Error)),
1326 guarded_main_loop(ID)
1327 ).
1328
1340
1341prepare_goal(ID, Goal0, Module:Goal, Options) :-
1342 option(bindings(Bindings), Options, []),
1343 b_setval('$variable_names', Bindings),
1344 ( prepare_goal(Goal0, Goal1, Options)
1345 -> true
1346 ; Goal1 = Goal0
1347 ),
1348 get_pengine_module(ID, Module),
1349 setup_call_cleanup(
1350 '$set_source_module'(Old, Module),
1351 expand_goal(Goal1, Goal),
1352 '$set_source_module'(_, Old)),
1353 ( pengine_not_sandboxed(ID)
1354 -> true
1355 ; get_pengine_application(ID, App),
1356 setting(App:safe_goal_limit, Limit),
1357 catch(call_with_time_limit(
1358 Limit,
1359 safe_goal(Module:Goal)), E, true)
1360 -> ( var(E)
1361 -> true
1362 ; E = time_limit_exceeded
1363 -> throw(error(sandbox(time_limit_exceeded, Limit),_))
1364 ; throw(E)
1365 )
1366 ).
1367
1368
1378
1379
1385
1386pengine_not_sandboxed(ID) :-
1387 pengine_user(ID, User),
1388 pengine_property(ID, application(App)),
1389 not_sandboxed(User, App),
1390 !.
1391
1404
1405
1411
1412pengine_pull_response(Pengine, Options) :-
1413 pengine_remote(Pengine, Server),
1414 !,
1415 remote_pengine_pull_response(Server, Pengine, Options).
1416pengine_pull_response(_ID, _Options).
1417
1418
1424
1425pengine_input(Prompt, Term) :-
1426 pengine_self(Self),
1427 pengine_parent(Parent),
1428 pengine_reply(Parent, prompt(Self, Prompt)),
1429 pengine_request(Request),
1430 ( Request = input(Input)
1431 -> Term = Input
1432 ; Request == destroy
1433 -> abort
1434 ; throw(error(protocol_error,_))
1435 ).
1436
1437
1451
1452pengine_respond(Pengine, Input, Options) :-
1453 pengine_send(Pengine, input(Input), Options).
1454
1455
1461
1462send_error(error(Formal, context(prolog_stack(Frames), Message))) :-
1463 is_list(Frames),
1464 !,
1465 with_output_to(string(Stack),
1466 print_prolog_backtrace(current_output, Frames)),
1467 pengine_self(Self),
1468 replace_blobs(Formal, Formal1),
1469 replace_blobs(Message, Message1),
1470 pengine_reply(error(Self, error(Formal1,
1471 context(prolog_stack(Stack), Message1)))).
1472send_error(Error) :-
1473 pengine_self(Self),
1474 replace_blobs(Error, Error1),
1475 pengine_reply(error(Self, Error1)).
1476
1482
1483replace_blobs(Blob, Atom) :-
1484 blob(Blob, Type), Type \== text,
1485 !,
1486 format(atom(Atom), '~p', [Blob]).
1487replace_blobs(Term0, Term) :-
1488 compound(Term0),
1489 !,
1490 compound_name_arguments(Term0, Name, Args0),
1491 maplist(replace_blobs, Args0, Args),
1492 compound_name_arguments(Term, Name, Args).
1493replace_blobs(Term, Term).
1494
1495
1498
1499
1500remote_pengine_create(BaseURL, Options) :-
1501 partition(pengine_create_option, Options, PengineOptions0, RestOptions),
1502 ( option(ask(Query), PengineOptions0),
1503 \+ option(template(_Template), PengineOptions0)
1504 -> PengineOptions = [template(Query)|PengineOptions0]
1505 ; PengineOptions = PengineOptions0
1506 ),
1507 options_to_dict(PengineOptions, PostData),
1508 remote_post_rec(BaseURL, create, PostData, Reply, RestOptions),
1509 arg(1, Reply, ID),
1510 ( option(id(ID2), Options)
1511 -> ID = ID2
1512 ; true
1513 ),
1514 option(alias(Name), Options, ID),
1515 assert(child(Name, ID)),
1516 ( ( functor(Reply, create, _) 1517 ; functor(Reply, output, _) 1518 )
1519 -> option(application(Application), PengineOptions, pengine_sandbox),
1520 option(destroy(Destroy), PengineOptions, true),
1521 pengine_register_remote(ID, BaseURL, Application, Destroy)
1522 ; true
1523 ),
1524 thread_self(Queue),
1525 pengine_reply(Queue, Reply).
1526
1527options_to_dict(Options, Dict) :-
1528 select_option(ask(Ask), Options, Options1),
1529 select_option(template(Template), Options1, Options2),
1530 !,
1531 no_numbered_var_in(Ask+Template),
1532 findall(AskString-TemplateString,
1533 ask_template_to_strings(Ask, Template, AskString, TemplateString),
1534 [ AskString-TemplateString ]),
1535 options_to_dict(Options2, Dict0),
1536 Dict = Dict0.put(_{ask:AskString,template:TemplateString}).
1537options_to_dict(Options, Dict) :-
1538 maplist(prolog_option, Options, Options1),
1539 dict_create(Dict, _, Options1).
1540
1541no_numbered_var_in(Term) :-
1542 sub_term(Sub, Term),
1543 subsumes_term('$VAR'(_), Sub),
1544 !,
1545 domain_error(numbered_vars_free_term, Term).
1546no_numbered_var_in(_).
1547
1548ask_template_to_strings(Ask, Template, AskString, TemplateString) :-
1549 numbervars(Ask+Template, 0, _),
1550 WOpts = [ numbervars(true), ignore_ops(true), quoted(true) ],
1551 format(string(AskTemplate), '~W\n~W', [ Ask, WOpts,
1552 Template, WOpts
1553 ]),
1554 split_string(AskTemplate, "\n", "", [AskString, TemplateString]).
1555
1556prolog_option(Option0, Option) :-
1557 create_option_type(Option0, term),
1558 !,
1559 Option0 =.. [Name,Value],
1560 format(string(String), '~k', [Value]),
1561 Option =.. [Name,String].
1562prolog_option(Option, Option).
1563
1564create_option_type(ask(_), term).
1565create_option_type(template(_), term).
1566create_option_type(application(_), atom).
1567
1568remote_pengine_send(BaseURL, ID, Event, Options) :-
1569 remote_send_rec(BaseURL, send, ID, [event=Event], Reply, Options),
1570 thread_self(Queue),
1571 pengine_reply(Queue, Reply).
1572
1573remote_pengine_pull_response(BaseURL, ID, Options) :-
1574 remote_send_rec(BaseURL, pull_response, ID, [], Reply, Options),
1575 thread_self(Queue),
1576 pengine_reply(Queue, Reply).
1577
1578remote_pengine_abort(BaseURL, ID, Options) :-
1579 remote_send_rec(BaseURL, abort, ID, [], Reply, Options),
1580 thread_self(Queue),
1581 pengine_reply(Queue, Reply).
1582
1587
1588remote_send_rec(Server, Action, ID, [event=Event], Reply, Options) :-
1589 !,
1590 server_url(Server, Action, [id=ID], URL),
1591 http_open(URL, Stream, 1592 [ post(prolog(Event)) 1593 | Options
1594 ]),
1595 call_cleanup(
1596 read_prolog_reply(Stream, Reply),
1597 close(Stream)).
1598remote_send_rec(Server, Action, ID, Params, Reply, Options) :-
1599 server_url(Server, Action, [id=ID|Params], URL),
1600 http_open(URL, Stream, Options),
1601 call_cleanup(
1602 read_prolog_reply(Stream, Reply),
1603 close(Stream)).
1604
1605remote_post_rec(Server, Action, Data, Reply, Options) :-
1606 server_url(Server, Action, [], URL),
1607 probe(Action, URL),
1608 http_open(URL, Stream,
1609 [ post(json(Data))
1610 | Options
1611 ]),
1612 call_cleanup(
1613 read_prolog_reply(Stream, Reply),
1614 close(Stream)).
1615
1621
1622probe(create, URL) :-
1623 !,
1624 http_open(URL, Stream, [method(options)]),
1625 close(Stream).
1626probe(_, _).
1627
1628read_prolog_reply(In, Reply) :-
1629 set_stream(In, encoding(utf8)),
1630 read(In, Reply0),
1631 rebind_cycles(Reply0, Reply).
1632
1633rebind_cycles(@(Reply, Bindings), Reply) :-
1634 is_list(Bindings),
1635 !,
1636 maplist(bind, Bindings).
1637rebind_cycles(Reply, Reply).
1638
1639bind(Var = Value) :-
1640 Var = Value.
1641
1642server_url(Server, Action, Params, URL) :-
1643 uri_components(Server, Components0),
1644 uri_query_components(Query, Params),
1645 uri_data(path, Components0, Path0),
1646 atom_concat('pengine/', Action, PAction),
1647 directory_file_path(Path0, PAction, Path),
1648 uri_data(path, Components0, Path, Components),
1649 uri_data(search, Components, Query),
1650 uri_components(URL, Components).
1651
1652
1670
1671pengine_event(Event) :-
1672 pengine_event(Event, []).
1673
1674pengine_event(Event, Options) :-
1675 thread_self(Self),
1676 option(listen(Id), Options, _),
1677 ( thread_get_message(Self, pengine_event(Id, Event), Options)
1678 -> true
1679 ; Event = timeout
1680 ),
1681 update_remote_destroy(Event).
1682
1683update_remote_destroy(Event) :-
1684 destroy_event(Event),
1685 arg(1, Event, Id),
1686 pengine_remote(Id, _Server),
1687 !,
1688 pengine_unregister_remote(Id).
1689update_remote_destroy(_).
1690
1691destroy_event(destroy(_)).
1692destroy_event(destroy(_,_)).
1693destroy_event(create(_,Features)) :-
1694 memberchk(answer(Answer), Features),
1695 !,
1696 nonvar(Answer),
1697 destroy_event(Answer).
1698
1699
1725
1726pengine_event_loop(Closure, Options) :-
1727 child(_,_),
1728 !,
1729 pengine_event(Event),
1730 ( option(autoforward(all), Options) 1731 -> forall(child(_,ID), pengine_send(ID, Event))
1732 ; true
1733 ),
1734 pengine_event_loop(Event, Closure, Options).
1735pengine_event_loop(_, _).
1736
1737:- meta_predicate
1738 pengine_process_event(+, 1, -, +). 1739
1740pengine_event_loop(Event, Closure, Options) :-
1741 pengine_process_event(Event, Closure, Continue, Options),
1742 ( Continue == true
1743 -> pengine_event_loop(Closure, Options)
1744 ; true
1745 ).
1746
1747pengine_process_event(create(ID, T), Closure, Continue, Options) :-
1748 debug(pengine(transition), '~q: 1 = /~q => 2', [ID, create(T)]),
1749 ( select(answer(First), T, T1)
1750 -> ignore(call(Closure, create(ID, T1))),
1751 pengine_process_event(First, Closure, Continue, Options)
1752 ; ignore(call(Closure, create(ID, T))),
1753 Continue = true
1754 ).
1755pengine_process_event(output(ID, Msg), Closure, true, _Options) :-
1756 debug(pengine(transition), '~q: 3 = /~q => 4', [ID, output(Msg)]),
1757 ignore(call(Closure, output(ID, Msg))),
1758 pengine_pull_response(ID, []).
1759pengine_process_event(debug(ID, Msg), Closure, true, _Options) :-
1760 debug(pengine(transition), '~q: 3 = /~q => 4', [ID, debug(Msg)]),
1761 ignore(call(Closure, debug(ID, Msg))),
1762 pengine_pull_response(ID, []).
1763pengine_process_event(prompt(ID, Term), Closure, true, _Options) :-
1764 debug(pengine(transition), '~q: 3 = /~q => 5', [ID, prompt(Term)]),
1765 ignore(call(Closure, prompt(ID, Term))).
1766pengine_process_event(success(ID, Sol, _Proj, _Time, More), Closure, true, _) :-
1767 debug(pengine(transition), '~q: 3 = /~q => 6/2', [ID, success(Sol, More)]),
1768 ignore(call(Closure, success(ID, Sol, More))).
1769pengine_process_event(failure(ID, _Time), Closure, true, _Options) :-
1770 debug(pengine(transition), '~q: 3 = /~q => 2', [ID, failure]),
1771 ignore(call(Closure, failure(ID))).
1772pengine_process_event(error(ID, Error), Closure, Continue, _Options) :-
1773 debug(pengine(transition), '~q: 3 = /~q => 2', [ID, error(Error)]),
1774 ( call(Closure, error(ID, Error))
1775 -> Continue = true
1776 ; forall(child(_,Child), pengine_destroy(Child)),
1777 throw(Error)
1778 ).
1779pengine_process_event(stop(ID), Closure, true, _Options) :-
1780 debug(pengine(transition), '~q: 7 = /~q => 2', [ID, stop]),
1781 ignore(call(Closure, stop(ID))).
1782pengine_process_event(destroy(ID, Event), Closure, Continue, Options) :-
1783 pengine_process_event(Event, Closure, _, Options),
1784 pengine_process_event(destroy(ID), Closure, Continue, Options).
1785pengine_process_event(destroy(ID), Closure, true, _Options) :-
1786 retractall(child(_,ID)),
1787 debug(pengine(transition), '~q: 1 = /~q => 0', [ID, destroy]),
1788 ignore(call(Closure, destroy(ID))).
1789
1790
1816
1817pengine_rpc(URL, Query) :-
1818 pengine_rpc(URL, Query, []).
1819
1820pengine_rpc(URL, Query, M:Options0) :-
1821 translate_local_sources(Options0, Options1, M),
1822 ( option(timeout(_), Options1)
1823 -> Options = Options1
1824 ; setting(time_limit, Limit),
1825 Options = [timeout(Limit)|Options1]
1826 ),
1827 term_variables(Query, Vars),
1828 Template =.. [v|Vars],
1829 State = destroy(true), 1830 setup_call_catcher_cleanup(
1831 pengine_create([ ask(Query),
1832 template(Template),
1833 server(URL),
1834 id(Id)
1835 | Options
1836 ]),
1837 wait_event(Template, State, [listen(Id)|Options]),
1838 Why,
1839 pengine_destroy_and_wait(State, Id, Why)).
1840
1841pengine_destroy_and_wait(destroy(true), Id, Why) :-
1842 !,
1843 debug(pengine(rpc), 'Destroying RPC because of ~p', [Why]),
1844 pengine_destroy(Id),
1845 wait_destroy(Id, 10).
1846pengine_destroy_and_wait(_, _, Why) :-
1847 debug(pengine(rpc), 'Not destroying RPC (~p)', [Why]).
1848
1849wait_destroy(Id, _) :-
1850 \+ child(_, Id),
1851 !.
1852wait_destroy(Id, N) :-
1853 pengine_event(Event, [listen(Id),timeout(10)]),
1854 !,
1855 ( destroy_event(Event)
1856 -> retractall(child(_,Id))
1857 ; succ(N1, N)
1858 -> wait_destroy(Id, N1)
1859 ; debug(pengine(rpc), 'RPC did not answer to destroy ~p', [Id]),
1860 pengine_unregister_remote(Id),
1861 retractall(child(_,Id))
1862 ).
1863
1864wait_event(Template, State, Options) :-
1865 pengine_event(Event, Options),
1866 debug(pengine(event), 'Received ~p', [Event]),
1867 process_event(Event, Template, State, Options).
1868
1869process_event(create(_ID, Features), Template, State, Options) :-
1870 memberchk(answer(First), Features),
1871 process_event(First, Template, State, Options).
1872process_event(error(_ID, Error), _Template, _, _Options) :-
1873 throw(Error).
1874process_event(failure(_ID, _Time), _Template, _, _Options) :-
1875 fail.
1876process_event(prompt(ID, Prompt), Template, State, Options) :-
1877 pengine_rpc_prompt(ID, Prompt, Reply),
1878 pengine_send(ID, input(Reply)),
1879 wait_event(Template, State, Options).
1880process_event(output(ID, Term), Template, State, Options) :-
1881 pengine_rpc_output(ID, Term),
1882 pengine_pull_response(ID, Options),
1883 wait_event(Template, State, Options).
1884process_event(debug(ID, Message), Template, State, Options) :-
1885 debug(pengine(debug), '~w', [Message]),
1886 pengine_pull_response(ID, Options),
1887 wait_event(Template, State, Options).
1888process_event(success(_ID, Solutions, _Proj, _Time, false),
1889 Template, _, _Options) :-
1890 !,
1891 member(Template, Solutions).
1892process_event(success(ID, Solutions, _Proj, _Time, true),
1893 Template, State, Options) :-
1894 ( member(Template, Solutions)
1895 ; pengine_next(ID, Options),
1896 wait_event(Template, State, Options)
1897 ).
1898process_event(destroy(ID, Event), Template, State, Options) :-
1899 !,
1900 retractall(child(_,ID)),
1901 nb_setarg(1, State, false),
1902 debug(pengine(destroy), 'State: ~p~n', [State]),
1903 process_event(Event, Template, State, Options).
1905process_event(success(ID, Solutions, Time, More),
1906 Template, State, Options) :-
1907 process_event(success(ID, Solutions, _Proj, Time, More),
1908 Template, State, Options).
1909
1910
1911pengine_rpc_prompt(ID, Prompt, Term) :-
1912 prompt(ID, Prompt, Term0),
1913 !,
1914 Term = Term0.
1915pengine_rpc_prompt(_ID, Prompt, Term) :-
1916 setup_call_cleanup(
1917 prompt(Old, Prompt),
1918 read(Term),
1919 prompt(_, Old)).
1920
1921pengine_rpc_output(ID, Term) :-
1922 output(ID, Term),
1923 !.
1924pengine_rpc_output(_ID, Term) :-
1925 print(Term).
1926
1931
1932:- multifile prompt/3. 1933
1938
1939:- multifile output/2. 1940
1941
1944
1956
1957:- http_handler(root(pengine), http_404([]),
1958 [ id(pengines) ]). 1959:- http_handler(root(pengine/create), http_pengine_create,
1960 [ time_limit(infinite), spawn([]) ]). 1961:- http_handler(root(pengine/send), http_pengine_send,
1962 [ time_limit(infinite), spawn([]) ]). 1963:- http_handler(root(pengine/pull_response), http_pengine_pull_response,
1964 [ time_limit(infinite), spawn([]) ]). 1965:- http_handler(root(pengine/abort), http_pengine_abort, []). 1966:- http_handler(root(pengine/ping), http_pengine_ping, []). 1967:- http_handler(root(pengine/destroy_all), http_pengine_destroy_all, []). 1968
1969:- http_handler(root(pengine/'pengines.js'),
1970 http_reply_file(library('http/web/js/pengines.js'), []), []). 1971:- http_handler(root(pengine/'plterm.css'),
1972 http_reply_file(library('http/web/css/plterm.css'), []), []). 1973
1974
1998
1999http_pengine_create(Request) :-
2000 reply_options(Request, [post]),
2001 !.
2002http_pengine_create(Request) :-
2003 memberchk(content_type(CT), Request),
2004 sub_atom(CT, 0, _, _, 'application/json'),
2005 !,
2006 http_read_json_dict(Request, Dict),
2007 dict_atom_option(format, Dict, Format, prolog),
2008 dict_atom_option(application, Dict, Application, pengine_sandbox),
2009 http_pengine_create(Request, Application, Format, Dict).
2010http_pengine_create(Request) :-
2011 Optional = [optional(true)],
2012 OptString = [string|Optional],
2013 Form = [ format(Format, [default(prolog)]),
2014 application(Application, [default(pengine_sandbox)]),
2015 chunk(_, [integer, default(1)]),
2016 solutions(_, [oneof([all,chunked]), default(chunked)]),
2017 ask(_, OptString),
2018 template(_, OptString),
2019 src_text(_, OptString),
2020 disposition(_, OptString),
2021 src_url(_, Optional)
2022 ],
2023 http_parameters(Request, Form),
2024 form_dict(Form, Dict),
2025 http_pengine_create(Request, Application, Format, Dict).
2026
2027dict_atom_option(Key, Dict, Atom, Default) :-
2028 ( get_dict(Key, Dict, String)
2029 -> atom_string(Atom, String)
2030 ; Atom = Default
2031 ).
2032
2033form_dict(Form, Dict) :-
2034 form_values(Form, Pairs),
2035 dict_pairs(Dict, _, Pairs).
2036
2037form_values([], []).
2038form_values([H|T], Pairs) :-
2039 arg(1, H, Value),
2040 nonvar(Value),
2041 !,
2042 functor(H, Name, _),
2043 Pairs = [Name-Value|PairsT],
2044 form_values(T, PairsT).
2045form_values([_|T], Pairs) :-
2046 form_values(T, Pairs).
2047
2049
2050
2051http_pengine_create(Request, Application, Format, Dict) :-
2052 current_application(Application),
2053 !,
2054 allowed(Request, Application),
2055 authenticate(Request, Application, UserOptions),
2056 dict_to_options(Dict, Application, CreateOptions0),
2057 append(UserOptions, CreateOptions0, CreateOptions),
2058 pengine_uuid(Pengine),
2059 message_queue_create(Queue, [max_size(25)]),
2060 setting(Application:time_limit, TimeLimit),
2061 get_time(Now),
2062 asserta(pengine_queue(Pengine, Queue, TimeLimit, Now)),
2063 broadcast(pengine(create(Pengine, Application, CreateOptions))),
2064 create(Queue, Pengine, CreateOptions, http, Application),
2065 create_wait_and_output_result(Pengine, Queue, Format,
2066 TimeLimit, Dict),
2067 gc_abandoned_queues.
2068http_pengine_create(_Request, Application, Format, _Dict) :-
2069 Error = existence_error(pengine_application, Application),
2070 pengine_uuid(ID),
2071 output_result(Format, error(ID, error(Error, _))).
2072
2073
2074dict_to_options(Dict, Application, CreateOptions) :-
2075 dict_pairs(Dict, _, Pairs),
2076 pairs_create_options(Pairs, Application, CreateOptions).
2077
2078pairs_create_options([], _, []) :- !.
2079pairs_create_options(T0, App, CreateOpts) :-
2080 selectchk(ask-Ask, T0, T1),
2081 selectchk(template-Template, T1, T2),
2082 !,
2083 CreateOpts = [ ask(Ask1), template(Template1), bindings(Bindings) | T ],
2084 format(string(AskTemplate), 't((~s),(~s))', [Ask, Template]),
2085 term_string(t(Ask1,Template1), AskTemplate,
2086 [ variable_names(Bindings),
2087 module(App)
2088 ]),
2089 pairs_create_options(T2, App, T).
2090pairs_create_options([ask-String|T0], App,
2091 [ask(Ask),template(Template),bindings(Bindings1)|T]) :-
2092 !,
2093 term_string(Ask, String,
2094 [ variable_names(Bindings),
2095 module(App)
2096 ]),
2097 exclude(anon, Bindings, Bindings1),
2098 dict_create(Template, json, Bindings1),
2099 pairs_create_options(T0, App, T).
2100pairs_create_options([N-V0|T0], App, [Opt|T]) :-
2101 Opt =.. [N,V],
2102 pengine_create_option(Opt), N \== user,
2103 !,
2104 ( create_option_type(Opt, Type)
2105 -> ( Type == term
2106 -> atom_to_term(V0, V, _)
2107 ; Type == atom
2108 -> atom_string(V, V0)
2109 ; assertion(false)
2110 )
2111 ; V = V0
2112 ),
2113 pairs_create_options(T0, App, T).
2114pairs_create_options([_|T0], App, T) :-
2115 pairs_create_options(T0, App, T).
2116
2117
2126
2127wait_and_output_result(Pengine, Queue, Format, TimeLimit) :-
2128 ( catch(thread_get_message(Queue, pengine_event(_, Event),
2129 [ timeout(TimeLimit)
2130 ]),
2131 Error, true)
2132 -> ( var(Error)
2133 -> debug(pengine(wait), 'Got ~q from ~q', [Event, Queue]),
2134 ignore(destroy_queue_from_http(Pengine, Event, Queue)),
2135 output_result(Format, Event)
2136 ; output_result(Format, died(Pengine))
2137 )
2138 ; time_limit_exceeded(Pengine, Format)
2139 ).
2140
2147
2148create_wait_and_output_result(Pengine, Queue, Format, TimeLimit, Dict) :-
2149 get_dict(solutions, Dict, all),
2150 !,
2151 between(1, infinite, Page),
2152 ( catch(thread_get_message(Queue, pengine_event(_, Event),
2153 [ timeout(TimeLimit)
2154 ]),
2155 Error, true)
2156 -> ( var(Error)
2157 -> debug(pengine(wait), 'Page ~D: got ~q from ~q', [Page, Event, Queue]),
2158 ( destroy_queue_from_http(Pengine, Event, Queue)
2159 -> output_result(Format, page(Page, Event))
2160 ; pengine_thread(Pengine, Thread),
2161 thread_send_message(Thread, pengine_request(next)),
2162 output_result(Format, page(Page, Event), Dict),
2163 fail
2164 )
2165 ; output_result(Format, died(Pengine))
2166 )
2167 ; time_limit_exceeded(Pengine, Format)
2168 ),
2169 !.
2170create_wait_and_output_result(Pengine, Queue, Format, TimeLimit, _Dict) :-
2171 wait_and_output_result(Pengine, Queue, Format, TimeLimit).
2172
2182
2183time_limit_exceeded(Pengine, Format) :-
2184 call_cleanup(
2185 pengine_destroy(Pengine, [force(true)]),
2186 output_result(Format,
2187 destroy(Pengine,
2188 error(Pengine, time_limit_exceeded)))).
2189
2190
2202
2203destroy_queue_from_http(ID, _, Queue) :-
2204 output_queue(ID, Queue, _),
2205 !,
2206 destroy_queue_if_empty(Queue).
2207destroy_queue_from_http(ID, Event, Queue) :-
2208 debug(pengine(destroy), 'DESTROY? ~p', [Event]),
2209 is_destroy_event(Event),
2210 !,
2211 message_queue_property(Queue, size(Waiting)),
2212 debug(pengine(destroy), 'Destroy ~p (waiting ~D)', [Queue, Waiting]),
2213 with_mutex(pengine, sync_destroy_queue_from_http(ID, Queue)).
2214
2215is_destroy_event(destroy(_)).
2216is_destroy_event(destroy(_,_)).
2217is_destroy_event(create(_, Options)) :-
2218 memberchk(answer(Event), Options),
2219 is_destroy_event(Event).
2220
2221destroy_queue_if_empty(Queue) :-
2222 thread_peek_message(Queue, _),
2223 !.
2224destroy_queue_if_empty(Queue) :-
2225 retractall(output_queue(_, Queue, _)),
2226 message_queue_destroy(Queue).
2227
2233
2234:- dynamic
2235 last_gc/1. 2236
2237gc_abandoned_queues :-
2238 consider_queue_gc,
2239 !,
2240 get_time(Now),
2241 ( output_queue(_, Queue, Time),
2242 Now-Time > 15*60,
2243 retract(output_queue(_, Queue, Time)),
2244 message_queue_destroy(Queue),
2245 fail
2246 ; retractall(last_gc(_)),
2247 asserta(last_gc(Now))
2248 ).
2249gc_abandoned_queues.
2250
2251consider_queue_gc :-
2252 predicate_property(output_queue(_,_,_), number_of_clauses(N)),
2253 N > 100,
2254 ( last_gc(Time),
2255 get_time(Now),
2256 Now-Time > 5*60
2257 -> true
2258 ; \+ last_gc(_)
2259 ).
2260
2276
2277:- dynamic output_queue_destroyed/1. 2278
2279sync_destroy_queue_from_http(ID, Queue) :-
2280 ( output_queue(ID, Queue, _)
2281 -> destroy_queue_if_empty(Queue)
2282 ; thread_peek_message(Queue, pengine_event(_, output(_,_)))
2283 -> debug(pengine(destroy), 'Delay destruction of ~p because of output',
2284 [Queue]),
2285 get_time(Now),
2286 asserta(output_queue(ID, Queue, Now))
2287 ; message_queue_destroy(Queue),
2288 asserta(output_queue_destroyed(Queue))
2289 ).
2290
2295
2296sync_destroy_queue_from_pengine(ID, Queue) :-
2297 ( retract(output_queue_destroyed(Queue))
2298 -> true
2299 ; get_time(Now),
2300 asserta(output_queue(ID, Queue, Now))
2301 ),
2302 retractall(pengine_queue(ID, Queue, _, _)).
2303
2304
2305http_pengine_send(Request) :-
2306 reply_options(Request, [get,post]),
2307 !.
2308http_pengine_send(Request) :-
2309 http_parameters(Request,
2310 [ id(ID, [ type(atom) ]),
2311 event(EventString, [optional(true)]),
2312 format(Format, [default(prolog)])
2313 ]),
2314 get_pengine_module(ID, Module),
2315 ( current_module(Module) 2316 -> catch(( read_event(Request, EventString, Module, Event0, Bindings),
2317 fix_bindings(Format, Event0, Bindings, Event1)
2318 ),
2319 Error,
2320 true),
2321 ( var(Error)
2322 -> debug(pengine(event), 'HTTP send: ~p', [Event1]),
2323 ( pengine_thread(ID, Thread)
2324 -> pengine_queue(ID, Queue, TimeLimit, _),
2325 random_delay,
2326 broadcast(pengine(send(ID, Event1))),
2327 thread_send_message(Thread, pengine_request(Event1)),
2328 wait_and_output_result(ID, Queue, Format, TimeLimit)
2329 ; atom(ID)
2330 -> pengine_died(Format, ID)
2331 ; http_404([], Request)
2332 )
2333 ; output_result(Format, error(ID, Error))
2334 )
2335 ; debug(pengine(event), 'Pengine module ~q vanished', [Module]),
2336 discard_post_data(Request),
2337 pengine_died(Format, ID)
2338 ).
2339
2340pengine_died(Format, Pengine) :-
2341 output_result(Format, error(Pengine,
2342 error(existence_error(pengine, Pengine),_))).
2343
2344
2349
2350read_event(_Request, EventString, Module, Event, Bindings) :-
2351 nonvar(EventString),
2352 !,
2353 term_string(Event, EventString,
2354 [ variable_names(Bindings),
2355 module(Module)
2356 ]).
2357read_event(Request, _EventString, Module, Event, Bindings) :-
2358 option(method(post), Request),
2359 http_read_data(Request, Event,
2360 [ content_type('application/x-prolog'),
2361 module(Module),
2362 variable_names(Bindings)
2363 ]).
2364
2368
2369discard_post_data(Request) :-
2370 option(method(post), Request),
2371 !,
2372 setup_call_cleanup(
2373 open_null_stream(NULL),
2374 http_read_data(Request, _, [to(stream(NULL))]),
2375 close(NULL)).
2376discard_post_data(_).
2377
2383
2384fix_bindings(Format,
2385 ask(Goal, Options0), Bindings,
2386 ask(Goal, NewOptions)) :-
2387 json_lang(Format),
2388 !,
2389 exclude(anon, Bindings, NamedBindings),
2390 template(NamedBindings, Template, Options0, Options1),
2391 select_option(chunk(Paging), Options1, Options2, 1),
2392 NewOptions = [ template(Template),
2393 chunk(Paging),
2394 bindings(NamedBindings)
2395 | Options2
2396 ].
2397fix_bindings(_, Command, _, Command).
2398
2399template(_, Template, Options0, Options) :-
2400 select_option(template(Template), Options0, Options),
2401 !.
2402template(Bindings, Template, Options, Options) :-
2403 dict_create(Template, json, Bindings).
2404
2405anon(Name=_) :-
2406 sub_atom(Name, 0, _, _, '_'),
2407 sub_atom(Name, 1, 1, _, Next),
2408 char_type(Next, prolog_var_start).
2409
2410var_name(Name=_, Name).
2411
2412
2416
2417json_lang(json) :- !.
2418json_lang(Format) :-
2419 sub_atom(Format, 0, _, _, 'json-').
2420
2425
2426http_pengine_pull_response(Request) :-
2427 reply_options(Request, [get]),
2428 !.
2429http_pengine_pull_response(Request) :-
2430 http_parameters(Request,
2431 [ id(ID, []),
2432 format(Format, [default(prolog)])
2433 ]),
2434 ( ( pengine_queue(ID, Queue, TimeLimit, _)
2435 -> true
2436 ; output_queue(ID, Queue, _),
2437 TimeLimit = 0
2438 )
2439 -> wait_and_output_result(ID, Queue, Format, TimeLimit)
2440 ; http_404([], Request)
2441 ).
2442
2449
2450http_pengine_abort(Request) :-
2451 reply_options(Request, [get]),
2452 !.
2453http_pengine_abort(Request) :-
2454 http_parameters(Request,
2455 [ id(ID, []),
2456 format(Format, [default(prolog)])
2457 ]),
2458 ( pengine_thread(ID, _Thread),
2459 pengine_queue(ID, Queue, TimeLimit, _)
2460 -> broadcast(pengine(abort(ID))),
2461 abort_pending_output(ID),
2462 pengine_abort(ID),
2463 wait_and_output_result(ID, Queue, Format, TimeLimit)
2464 ; http_404([], Request)
2465 ).
2466
2467http_pengine_destroy_all(Request) :-
2468 reply_options(Request, [get]),
2469 !.
2470http_pengine_destroy_all(Request) :-
2471 http_parameters(Request,
2472 [ ids(IDsAtom, [])
2473 ]),
2474 atomic_list_concat(IDs, ',', IDsAtom),
2475 forall(member(ID, IDs),
2476 pengine_destroy(ID, [force(true)])),
2477 reply_json("ok").
2478
2484
2485http_pengine_ping(Request) :-
2486 reply_options(Request, [get]),
2487 !.
2488http_pengine_ping(Request) :-
2489 http_parameters(Request,
2490 [ id(Pengine, []),
2491 format(Format, [default(prolog)])
2492 ]),
2493 ( pengine_thread(Pengine, Thread),
2494 catch(thread_statistics(Thread, Stats), _, fail)
2495 -> output_result(Format, ping(Pengine, Stats))
2496 ; output_result(Format, died(Pengine))
2497 ).
2498
2499
2505
2506:- dynamic
2507 pengine_replying/2. 2508
2509output_result(Format, Event) :-
2510 arg(1, Event, Pengine),
2511 thread_self(Thread),
2512 setup_call_cleanup(
2513 asserta(pengine_replying(Pengine, Thread), Ref),
2514 catch(output_result(Format, Event, _{}),
2515 pengine_abort_output,
2516 true),
2517 erase(Ref)).
2518
2519output_result(prolog, Event, _) :-
2520 !,
2521 format('Content-type: text/x-prolog; charset=UTF-8~n~n'),
2522 write_term(Event,
2523 [ quoted(true),
2524 ignore_ops(true),
2525 fullstop(true),
2526 blobs(portray),
2527 portray_goal(portray_blob),
2528 nl(true)
2529 ]).
2530output_result(Lang, Event, Dict) :-
2531 write_result(Lang, Event, Dict),
2532 !.
2533output_result(Lang, Event, _) :-
2534 json_lang(Lang),
2535 !,
2536 ( event_term_to_json_data(Event, JSON, Lang)
2537 -> cors_enable,
2538 disable_client_cache,
2539 reply_json(JSON)
2540 ; assertion(event_term_to_json_data(Event, _, Lang))
2541 ).
2542output_result(Lang, _Event, _) :- 2543 domain_error(pengine_format, Lang).
2544
2552
2553:- public portray_blob/2. 2554portray_blob(Blob, _Options) :-
2555 blob(Blob, Type),
2556 writeq('$BLOB'(Type)).
2557
2562
2563abort_pending_output(Pengine) :-
2564 forall(pengine_replying(Pengine, Thread),
2565 abort_output_thread(Thread)).
2566
2567abort_output_thread(Thread) :-
2568 catch(thread_signal(Thread, throw(pengine_abort_output)),
2569 error(existence_error(thread, _), _),
2570 true).
2571
2579
2585
2586disable_client_cache :-
2587 format('Cache-Control: no-cache, no-store, must-revalidate\r\n\c
2588 Pragma: no-cache\r\n\c
2589 Expires: 0\r\n').
2590
2591event_term_to_json_data(Event, JSON, Lang) :-
2592 event_to_json(Event, JSON, Lang),
2593 !.
2594event_term_to_json_data(success(ID, Bindings0, Projection, Time, More),
2595 json{event:success, id:ID, time:Time,
2596 data:Bindings, more:More, projection:Projection},
2597 json) :-
2598 !,
2599 term_to_json(Bindings0, Bindings).
2600event_term_to_json_data(destroy(ID, Event),
2601 json{event:destroy, id:ID, data:JSON},
2602 Style) :-
2603 !,
2604 event_term_to_json_data(Event, JSON, Style).
2605event_term_to_json_data(create(ID, Features0), JSON, Style) :-
2606 !,
2607 ( select(answer(First0), Features0, Features1)
2608 -> event_term_to_json_data(First0, First, Style),
2609 Features = [answer(First)|Features1]
2610 ; Features = Features0
2611 ),
2612 dict_create(JSON, json, [event(create), id(ID)|Features]).
2613event_term_to_json_data(destroy(ID, Event),
2614 json{event:destroy, id:ID, data:JSON}, Style) :-
2615 !,
2616 event_term_to_json_data(Event, JSON, Style).
2617event_term_to_json_data(error(ID, ErrorTerm), Error, _Style) :-
2618 !,
2619 Error0 = json{event:error, id:ID, data:Message},
2620 add_error_details(ErrorTerm, Error0, Error),
2621 message_to_string(ErrorTerm, Message).
2622event_term_to_json_data(failure(ID, Time),
2623 json{event:failure, id:ID, time:Time}, _).
2624event_term_to_json_data(EventTerm, json{event:F, id:ID}, _) :-
2625 functor(EventTerm, F, 1),
2626 !,
2627 arg(1, EventTerm, ID).
2628event_term_to_json_data(EventTerm, json{event:F, id:ID, data:JSON}, _) :-
2629 functor(EventTerm, F, 2),
2630 arg(1, EventTerm, ID),
2631 arg(2, EventTerm, Data),
2632 term_to_json(Data, JSON).
2633
2634:- public add_error_details/3. 2635
2640
2641add_error_details(Error, JSON0, JSON) :-
2642 add_error_code(Error, JSON0, JSON1),
2643 add_error_location(Error, JSON1, JSON).
2644
2655
2656add_error_code(error(existence_error(Type, Obj), _), Error0, Error) :-
2657 atom(Type),
2658 !,
2659 to_atomic(Obj, Value),
2660 Error = Error0.put(_{code:existence_error, arg1:Type, arg2:Value}).
2661add_error_code(error(Formal, _), Error0, Error) :-
2662 callable(Formal),
2663 !,
2664 functor(Formal, Code, _),
2665 Error = Error0.put(code, Code).
2666add_error_code(_, Error, Error).
2667
2669to_atomic(Obj, Atomic) :- atom(Obj), !, Atomic = Obj.
2670to_atomic(Obj, Atomic) :- number(Obj), !, Atomic = Obj.
2671to_atomic(Obj, Atomic) :- string(Obj), !, Atomic = Obj.
2672to_atomic(Obj, Atomic) :- term_string(Obj, Atomic).
2673
2674
2680
2681add_error_location(error(_, file(Path, Line, -1, _CharNo)), Term0, Term) :-
2682 atom(Path), integer(Line),
2683 !,
2684 Term = Term0.put(_{location:_{file:Path, line:Line}}).
2685add_error_location(error(_, file(Path, Line, Ch, _CharNo)), Term0, Term) :-
2686 atom(Path), integer(Line), integer(Ch),
2687 !,
2688 Term = Term0.put(_{location:_{file:Path, line:Line, ch:Ch}}).
2689add_error_location(_, Term, Term).
2690
2691
2699
2701
2702
2703 2706
2711
2712allowed(Request, Application) :-
2713 setting(Application:allow_from, Allow),
2714 match_peer(Request, Allow),
2715 setting(Application:deny_from, Deny),
2716 \+ match_peer(Request, Deny),
2717 !.
2718allowed(Request, _Application) :-
2719 memberchk(request_uri(Here), Request),
2720 throw(http_reply(forbidden(Here))).
2721
2722match_peer(_, Allowed) :-
2723 memberchk(*, Allowed),
2724 !.
2725match_peer(_, []) :- !, fail.
2726match_peer(Request, Allowed) :-
2727 http_peer(Request, Peer),
2728 debug(pengine(allow), 'Peer: ~q, Allow: ~q', [Peer, Allowed]),
2729 ( memberchk(Peer, Allowed)
2730 -> true
2731 ; member(Pattern, Allowed),
2732 match_peer_pattern(Pattern, Peer)
2733 ).
2734
2735match_peer_pattern(Pattern, Peer) :-
2736 ip_term(Pattern, IP),
2737 ip_term(Peer, IP),
2738 !.
2739
2740ip_term(Peer, Pattern) :-
2741 split_string(Peer, ".", "", PartStrings),
2742 ip_pattern(PartStrings, Pattern).
2743
2744ip_pattern([], []).
2745ip_pattern([*], _) :- !.
2746ip_pattern([S|T0], [N|T]) :-
2747 number_string(N, S),
2748 ip_pattern(T0, T).
2749
2750
2755
2756authenticate(Request, Application, UserOptions) :-
2757 authentication_hook(Request, Application, User),
2758 !,
2759 must_be(ground, User),
2760 UserOptions = [user(User)].
2761authenticate(_, _, []).
2762
2782
2783pengine_register_user(Options) :-
2784 option(user(User), Options),
2785 !,
2786 pengine_self(Me),
2787 asserta(pengine_user(Me, User)).
2788pengine_register_user(_).
2789
2790
2798
2799pengine_user(User) :-
2800 pengine_self(Me),
2801 pengine_user(Me, User).
2802
2806
2807reply_options(Request, Allowed) :-
2808 option(method(options), Request),
2809 !,
2810 cors_enable(Request,
2811 [ methods(Allowed)
2812 ]),
2813 format('Content-type: text/plain\r\n'),
2814 format('~n'). 2815
2816
2817 2820
2827
2828pengine_src_text(Src, Module) :-
2829 pengine_self(Self),
2830 format(atom(ID), 'pengine://~w/src', [Self]),
2831 extra_load_options(Self, Options),
2832 setup_call_cleanup(
2833 open_chars_stream(Src, Stream),
2834 load_files(Module:ID,
2835 [ stream(Stream),
2836 module(Module),
2837 silent(true)
2838 | Options
2839 ]),
2840 close(Stream)),
2841 keep_source(Self, ID, Src).
2842
2843system:'#file'(File, _Line) :-
2844 prolog_load_context(stream, Stream),
2845 set_stream(Stream, file_name(File)),
2846 set_stream(Stream, record_position(false)),
2847 set_stream(Stream, record_position(true)).
2848
2856
2857pengine_src_url(URL, Module) :-
2858 pengine_self(Self),
2859 uri_encoded(path, URL, Path),
2860 format(atom(ID), 'pengine://~w/url/~w', [Self, Path]),
2861 extra_load_options(Self, Options),
2862 ( get_pengine_application(Self, Application),
2863 setting(Application:debug_info, false)
2864 -> setup_call_cleanup(
2865 http_open(URL, Stream, []),
2866 ( set_stream(Stream, encoding(utf8)),
2867 load_files(Module:ID,
2868 [ stream(Stream),
2869 module(Module)
2870 | Options
2871 ])
2872 ),
2873 close(Stream))
2874 ; setup_call_cleanup(
2875 http_open(URL, TempStream, []),
2876 ( set_stream(TempStream, encoding(utf8)),
2877 read_string(TempStream, _, Src)
2878 ),
2879 close(TempStream)),
2880 setup_call_cleanup(
2881 open_chars_stream(Src, Stream),
2882 load_files(Module:ID,
2883 [ stream(Stream),
2884 module(Module)
2885 | Options
2886 ]),
2887 close(Stream)),
2888 keep_source(Self, ID, Src)
2889 ).
2890
2891
(Pengine, Options) :-
2893 pengine_not_sandboxed(Pengine),
2894 !,
2895 Options = [].
2896extra_load_options(_, [sandboxed(true)]).
2897
2898
2899keep_source(Pengine, ID, SrcText) :-
2900 get_pengine_application(Pengine, Application),
2901 setting(Application:debug_info, true),
2902 !,
2903 to_string(SrcText, SrcString),
2904 assertz(pengine_data(Pengine, source(ID, SrcString))).
2905keep_source(_, _, _).
2906
2907to_string(String, String) :-
2908 string(String),
2909 !.
2910to_string(Atom, String) :-
2911 atom_string(Atom, String),
2912 !.
2913
2914
2915 2918
2919prolog:error_message(sandbox(time_limit_exceeded, Limit)) -->
2920 [ 'Could not prove safety of your goal within ~f seconds.'-[Limit], nl,
2921 'This is normally caused by an insufficiently instantiated'-[], nl,
2922 'meta-call (e.g., call(Var)) for which it is too expensive to'-[], nl,
2923 'find all possible instantations of Var.'-[]
2924 ]