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 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% https://raw.githubusercontent.com/LogtalkDotOrg/logtalk3/master/core/logtalk.lgt
%
% This file is part of Logtalk <http://logtalk.org/>
% Copyright 1998-2016 Paulo Moura <pmoura@logtalk.org>
%
% Licensed under the Apache License, Version 2.0 (the "License");
% you may not use this file except in compliance with the License.
% You may obtain a copy of the License at
%
% http://www.apache.org/licenses/LICENSE-2.0
%
% Unless required by applicable law or agreed to in writing, software
% distributed under the License is distributed on an "AS IS" BASIS,
% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
% See the License for the specific language governing permissions and
% limitations under the License.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% the compiler/runtime must be able to call some of the code generated
% by the compilation of the `logtalk` object directly, thus forcing us
% to fix the code prefix that is used in its compilation
:- set_logtalk_flag(code_prefix, '$').
:- if(current_logtalk_flag(prolog_dialect, lean)).
% avoid a warning when embedding Logtalk in Lean Prolog
:- dynamic('$lgt_parent_file_'/2).
:- endif.
:- object(logtalk).
:- info([
version is 1.2,
author is 'Paulo Moura',
date is 2015/08/26,
comment is 'Built-in object providing message printing, debugging, library, source file, and hacking methods.']).
:- built_in.
:- set_logtalk_flag(context_switching_calls, allow).
:- set_logtalk_flag(dynamic_declarations, deny).
:- set_logtalk_flag(complements, deny).
:- set_logtalk_flag(events, deny).
:- if(current_logtalk_flag(threads, supported)).
:- threaded.
:- endif.
% message printing predicates
:- public(print_message/3).
:- mode(print_message(+nonvar, +nonvar, +nonvar), one).
:- info(print_message/3, [
comment is 'Prints a message of the given kind for the specified component.',
argnames is ['Kind', 'Component', 'Message']
]).
:- public(print_message_tokens/3).
:- mode(print_message_tokens(@stream_or_alias, +atom, @list(nonvar)), one).
:- info(print_message_tokens/3, [
comment is 'Print the messages tokens to the given stream, prefixing each line with the specified atom.',
argnames is ['Stream', 'Prefix', 'Tokens']
]).
:- public(print_message_token/4).
:- multifile(print_message_token/4).
:- dynamic(print_message_token/4).
:- mode(print_message_token(@stream_or_alias, @atom, @nonvar, @list(nonvar)), zero_or_one).
:- info(print_message_token/4, [
comment is 'User-defined hook predicate for printing a message token (at_same_line, nl, flush, Format-Arguments, term(Term,Options), ansi(Attributes,Format,Arguments), begin(Kind,Variable), and end(Variable)).',
argnames is ['Stream', 'Prefix', 'Token', 'Tokens']
]).
:- public(message_tokens//2).
:- multifile(message_tokens//2).
:- dynamic(message_tokens//2).
:- mode(message_tokens(+nonvar, +nonvar), zero_or_one).
:- info(message_tokens//2, [
comment is 'User-defined hook grammar rule for converting a message into a list of tokens (at_same_line, nl, flush, Format-Arguments, term(Term,Options), ansi(Attributes,Format,Arguments), begin(Kind,Variable), and end(Variable)).',
argnames is ['Message', 'Component']
]).
:- public(message_prefix_stream/4).
:- multifile(message_prefix_stream/4).
:- dynamic(message_prefix_stream/4).
:- mode(message_prefix_stream(?nonvar, ?nonvar, ?atom, ?stream_or_alias), zero_or_more).
:- info(message_prefix_stream/4, [
comment is 'Message line prefix and output stream to be used when printing a message given its kind and component.',
argnames is ['Kind', 'Component', 'Prefix', 'Stream']
]).
:- public(message_hook/4).
:- multifile(message_hook/4).
:- dynamic(message_hook/4).
:- mode(message_hook(+nonvar, +nonvar, +nonvar, +list(nonvar)), zero_or_one).
:- info(message_hook/4, [
comment is 'User-defined hook predicate for intercepting message printing calls.',
argnames is ['Message', 'Kind', 'Component', 'Tokens']
]).
% question asking predicates
:- public(ask_question/5).
:- meta_predicate(ask_question(*, *, *, 1, *)).
:- mode(ask_question(+nonvar, +nonvar, +nonvar, +callable, -term), one).
:- info(ask_question/5, [
comment is 'Asks a question and reads the answer until the check predicate is true.',
argnames is ['Kind', 'Component', 'Question', 'Check', 'Answer']
]).
:- public(question_hook/6).
:- multifile(question_hook/6).
:- dynamic(question_hook/6).
:- meta_predicate(question_hook(*, *, *, *, 1, *)).
:- mode(question_hook(+nonvar, +nonvar, +nonvar, +list(nonvar), +callable, -term), zero_or_one).
:- info(question_hook/6, [
comment is 'User-defined hook predicate for intercepting question asking calls.',
argnames is ['Question', 'Kind', 'Component', 'Tokens', 'Check', 'Answer']
]).
:- public(question_prompt_stream/4).
:- multifile(question_prompt_stream/4).
:- dynamic(question_prompt_stream/4).
:- mode(question_prompt_stream(?nonvar, ?nonvar, ?atom, ?stream_or_alias), zero_or_more).
:- info(question_prompt_stream/4, [
comment is 'Prompt and input stream to be used when asking a question given its kind and component.',
argnames is ['Kind', 'Component', 'Prompt', 'Stream']
]).
% debugging predicates
:- public(trace_event/2).
:- multifile(trace_event/2).
:- dynamic(trace_event/2).
:- mode(trace_event(@callable, @execution_context), zero).
:- info(trace_event/2, [
comment is 'Trace event handler. The runtime calls all trace event handlers using a failure-driven loop before calling the debug event handler.',
argnames is ['Event', 'ExecutionContext']
]).
:- public(debug_handler_provider/1).
:- multifile(debug_handler_provider/1).
:- mode(debug_handler_provider(?object_identifier), zero_or_one).
:- info(debug_handler_provider/1, [
comment is 'Declares an object as the debug handler provider. There should be at most one debug handler provider loaded at any given moment.',
argnames is ['Provider']
]).
% workaround the lack of support for static multifile predicates in Qu-Prolog and XSB
:- if((current_logtalk_flag(prolog_dialect, Dialect), (Dialect==xsb; Dialect==qp))).
:- dynamic(debug_handler_provider/1).
:- endif.
:- public(debug_handler/2).
:- multifile(debug_handler/2).
:- mode(debug_handler(?entity_identifier, ?atom), zero_or_more).
:- info(debug_handler/2, [
comment is 'Debug event handler. The defined events are unification events - fact(Entity,Fact,Clause,Line) and rule(Entity,Head,Clause,Line) - and goal events - top_goal(Goal,CompiledGoal) and goal(Goal,CompiledGoal).',
argnames is ['Event', 'ExecutionContext']
]).
% workaround the lack of support for static multifile predicates in Qu-Prolog and XSB
:- if((current_logtalk_flag(prolog_dialect, Dialect), (Dialect==xsb; Dialect==qp))).
:- dynamic(debug_handler/2).
:- endif.
% file and library predicates
:- public(expand_library_path/2).
:- mode(expand_library_path(+atom, ?atom), zero_or_one).
:- info(expand_library_path/2, [
comment is 'Expands a library name into its full path. Uses a depth bound to prevent loops.',
argnames is ['Library', 'Path']
]).
:- public(loaded_file/1).
:- mode(loaded_file(?atom), zero_or_more).
:- info(loaded_file/1, [
comment is 'Enumerates, by backtracking, all loaded files, returning their full paths.',
argnames is ['Path']
]).
:- public(loaded_file_property/2).
:- mode(loaded_file_property(?atom, ?compound), zero_or_more).
:- info(loaded_file_property/2, [
comment is 'Enumerates, by backtracking, all loaded file properties. Valid properties are: basename/1, directory/1, mode/1, flags/1, text_properties/1 (encoding/1 and bom/1), target/1, modified/1, parent/1, library/1, object/1, protocol/1, and category/1.',
argnames is ['Path', 'Property']
]).
% hacking predicates
:- public(compile_aux_clauses/1).
:- mode(compile_aux_clauses(@list(clause)), one).
:- info(compile_aux_clauses/1, [
comment is 'Compiles a list of auxiliary clauses.',
argnames is ['Clauses']
]).
:- public(entity_prefix/2).
:- mode(entity_prefix(?entity_identifier, ?atom), zero_or_one).
:- info(entity_prefix/2, [
comment is 'Converts between an entity identifier and the entity prefix that is used for its compiled code. When none of the arguments is instantiated, it returns the identifier and the prefix of the entity under compilation, if any.',
argnames is ['Entity', 'Prefix']
]).
:- public(compile_predicate_heads/4).
:- mode(compile_predicate_heads(@list(callable), ?entity_identifier, -list(callable), @execution_context), zero_or_one).
:- mode(compile_predicate_heads(@conjunction(callable), ?entity_identifier, -conjunction(callable), @execution_context), zero_or_one).
:- mode(compile_predicate_heads(@callable, ?entity_identifier, -callable, @execution_context), zero_or_one).
:- info(compile_predicate_heads/4, [
comment is 'Compiles clause heads. The heads are compiled in the context of the entity under compilation when the entity argument is not instantiated.',
argnames is ['Heads', 'Entity', 'CompiledHeads', 'ExecutionContext']
]).
:- public(compile_predicate_indicators/3).
:- mode(compile_predicate_indicators(@list(predicate_indicator), ?entity_identifier, -list(predicate_indicator)), zero_or_one).
:- mode(compile_predicate_indicators(@conjunction(predicate_indicator), ?entity_identifier, -conjunction(predicate_indicator)), zero_or_one).
:- mode(compile_predicate_indicators(@predicate_indicator, ?entity_identifier, -predicate_indicator), zero_or_one).
:- info(compile_predicate_indicators/3, [
comment is 'Compiles predicate indicators. The predicate are compiled in the context of the entity under compilation when the entity argument is not instantiated.',
argnames is ['PredicateIndicators', 'Entity', 'CompiledPredicateIndicators']
]).
:- public(decompile_predicate_heads/4).
:- mode(decompile_predicate_heads(@list(callable), -entity_identifier, -atom, -list(callable)), zero_or_one).
:- mode(decompile_predicate_heads(@conjunction(callable), -entity_identifier, -atom, -conjunction(callable)), zero_or_one).
:- mode(decompile_predicate_heads(@callable, -entity_identifier, -atom, -callable), zero_or_one).
:- info(decompile_predicate_heads/4, [
comment is 'Decompiles clause heads. All compiled clause heads must belong to the same entity, which must be loaded.',
argnames is ['CompiledHeads', 'Entity', 'Type', 'Heads']
]).
:- public(decompile_predicate_indicators/4).
:- mode(decompile_predicate_indicators(@list(predicate_indicator), -entity_identifier, -atom, -list(predicate_indicator)), zero_or_one).
:- mode(decompile_predicate_indicators(@conjunction(predicate_indicator), -entity_identifier, -atom, -conjunction(predicate_indicator)), zero_or_one).
:- mode(decompile_predicate_indicators(@predicate_indicator, -entity_identifier, -atom, -predicate_indicator), zero_or_one).
:- info(decompile_predicate_indicators/4, [
comment is 'Decompiles predicate indicators. All compiled predicate indicators must belong to the same entity, which must be loaded.',
argnames is ['CompiledPredicateIndicators', 'Entity', 'Type', 'PredicateIndicators']
]).
:- public(execution_context/7).
:- mode(execution_context(?nonvar, ?entity_identifier, ?object_identifier, ?object_identifier, ?object_identifier, @list(callable), @list(callable)), zero_or_one).
:- info(execution_context/7, [
comment is 'Execution context term data. Execution context terms should be considered opaque terms subject to change without notice.',
argnames is ['ExecutionContext', 'Entity', 'Sender', 'This', 'Self', 'MetaCallContext', 'Stack']
]).
print_message(Kind, Component, Message) :-
message_term_to_tokens(Message, Kind, Component, Tokens),
( nonvar(Message),
message_hook(Message, Kind, Component, Tokens) ->
% message intercepted; assume that the message is printed
true
; default_print_message(Kind, Component, Tokens)
).
% message_term_to_tokens(@term, @term, @term, -list)
%
% translates a message term to tokens
message_term_to_tokens(Message, Kind, Component, Tokens) :-
( var(Message) ->
Tokens = ['Non-instantiated ~q message for component ~q!'-[Kind, Component], nl]
; phrase(message_tokens(Message, Component), Tokens) ->
true
; Tokens = ['Unknown ~q message for component ~q: ~q'-[Kind, Component, Message], nl]
).
% default_print_message(+atom_or_compound, +atom, +compound, +list, +compound)
%
% print a message that was not intercepted by the user
default_print_message(silent, _, _) :-
!.
default_print_message(silent(_), _, _) :-
!.
default_print_message(banner, _, _) :-
\+ current_logtalk_flag(report, on),
!.
default_print_message(comment, _, _) :-
\+ current_logtalk_flag(report, on),
!.
default_print_message(comment(_), _, _) :-
\+ current_logtalk_flag(report, on),
!.
default_print_message(warning, _, _) :-
current_logtalk_flag(report, off),
!.
default_print_message(warning(_), _, _) :-
current_logtalk_flag(report, off),
!.
default_print_message(Kind, Component, Tokens) :-
( message_prefix_stream(Kind, Component, Prefix, Stream) ->
true
; % no user-defined prefix and stream; use default definition
default_message_prefix_stream(Kind, Prefix, Stream) ->
true
; % no such kind of message; use "information" instead
default_message_prefix_stream(information, Prefix, Stream)
),
% add begin/2 and end/1 tokens to, respectively, the start and the end of the list of tokens
% but pass them using discrete arguments instead of doing an expensive list append operation;
% these two tokens can be intercepted by the user for supporting e.g. message coloring
functor(Kind, Functor, _),
print_message_tokens_([begin(Functor,Ctx), Prefix-[]| Tokens], Stream, Prefix),
print_message_tokens_([end(Ctx)], Stream, Prefix).
% default_message_prefix_stream(?atom_or_compound, ?atom, ?stream_or_alias)
%
% default definitions for any component for the line prefix and output stream used
% when printing messages; the definitions used here are based on Quintus Prolog and
% are also used in other Prolog compilers
default_message_prefix_stream(banner, '', user_output).
default_message_prefix_stream(help, '', user_output).
default_message_prefix_stream(question, '', user_output).
default_message_prefix_stream(information, '% ', user_output).
default_message_prefix_stream(information(_), '% ', user_output).
default_message_prefix_stream(comment, '% ', user_output).
default_message_prefix_stream(comment(_), '% ', user_output).
default_message_prefix_stream(warning, '* ', user_error).
default_message_prefix_stream(warning(_), '* ', user_error).
default_message_prefix_stream(error, '! ', user_error).
default_message_prefix_stream(error(_), '! ', user_error).
print_message_tokens(Stream, Prefix, Tokens) :-
( Tokens = [at_same_line| _] ->
% continuation message
print_message_tokens_(Tokens, Stream, Prefix)
; Tokens = [begin(Kind, Context)| Rest] ->
% write the prefix after the begin/2 token
print_message_tokens_([begin(Kind, Context), Prefix-[]| Rest], Stream, Prefix)
; % write first line prefix
write(Stream, Prefix),
print_message_tokens_(Tokens, Stream, Prefix)
).
% if the list of tokens unifies with (-), assume it's a variable and ignore it
print_message_tokens_((-), _, _).
print_message_tokens_([], _, _).
print_message_tokens_([Token| Tokens], Stream, Prefix) :-
( print_message_token(Stream, Prefix, Token, Tokens) ->
% token printing intercepted by user-defined code
true
; % no user-defined token printing; use Logtalk default
default_print_message_token(Token, Tokens, Stream, Prefix) ->
true
; % unsupported token
writeq(Stream, Token)
),
print_message_tokens_(Tokens, Stream, Prefix).
% if a token unifies with (-), assume it's a variable and ignore it
default_print_message_token((-), _, _, _).
default_print_message_token(at_same_line, _, _, _).
default_print_message_token(nl, Tokens, Stream, Prefix) :-
( Tokens == [] ->
nl(Stream)
; Tokens = [end(_)] ->
nl(Stream)
; nl(Stream),
write(Stream, Prefix)
).
default_print_message_token(flush, _, Stream, _) :-
flush_output(Stream).
default_print_message_token(Format-Arguments, _, Stream, _) :-
{format(Stream, Format, Arguments)}.
default_print_message_token(term(Term, Options), _, Stream, _) :-
{write_term(Stream, Term, Options)}.
% the following tokens were first introduced by SWI-Prolog; we use default definitions
% for compatibility when running Logtalk with other back-end Prolog compilers
default_print_message_token(ansi(_, Format, Arguments), _, Stream, _) :-
{format(Stream, Format, Arguments)}.
default_print_message_token(begin(_, _), _, _, _).
default_print_message_token(end(_), _, _, _).
ask_question(Kind, Component, Question, Check, Answer) :-
message_term_to_tokens(Question, Kind, Component, Tokens),
( question_hook(Question, Kind, Component, Tokens, Check, Answer) ->
% question asking intercepted; assume that the question was answered
true
; % print the question text
default_print_message(Kind, Component, Tokens),
% find the output stream for printing the question prompt
( message_prefix_stream(Kind, Component, _, OutputStream) ->
true
; % no user-defined prefix and stream; use default definition
default_message_prefix_stream(Kind, _, OutputStream) ->
true
; % no such kind of message; use "information" instead
default_message_prefix_stream(information, _, OutputStream)
),
% find the prompt and the input stream
( question_prompt_stream(Kind, Component, Prompt, InputStream) ->
true
; default_question_prompt_stream(Kind, _, Prompt, InputStream) ->
true
; % no such kind of question; use "question" instead
default_question_prompt_stream(question, _, Prompt, InputStream)
),
repeat,
write(OutputStream, Prompt),
read(InputStream, Answer),
call(Check, Answer),
!
).
default_question_prompt_stream(question, _, '> ', user_input).
expand_library_path(Library, Path) :-
{'$lgt_expand_library_path'(Library, Path)}.
loaded_file(Path) :-
{'$lgt_loaded_file_'(Basename, Directory, _, _, _, _, _)},
atom_concat(Directory, Basename, Path).
loaded_file_property(Path, Property) :-
( var(Path) ->
{'$lgt_loaded_file_'(Basename, Directory, Mode, Flags, TextProperties, PrologFile, TimeStamp)},
atom_concat(Directory, Basename, Path)
; {'$lgt_loaded_file_'(Basename, Directory, Mode, Flags, TextProperties, PrologFile, TimeStamp)},
atom_concat(Directory, Basename, Path),
!
),
loaded_file_property(Property, Basename, Directory, Mode, Flags, TextProperties, PrologFile, TimeStamp).
loaded_file_property(basename(Basename), Basename, _, _, _, _, _, _).
loaded_file_property(directory(Directory), _, Directory, _, _, _, _, _).
loaded_file_property(mode(Mode), _, _, Mode, _, _, _, _).
loaded_file_property(flags(Flags), _, _, _, Flags, _, _, _).
loaded_file_property(text_properties(TextProperties), _, _, _, _, TextProperties, _, _).
loaded_file_property(target(PrologFile), _, _, _, _, _, PrologFile, _).
loaded_file_property(modified(TimeStamp), _, _, _, _, _, _, TimeStamp).
loaded_file_property(parent(Parent), Basename, Directory, _, _, _, _, _) :-
atom_concat(Directory, Basename, Path),
{'$lgt_parent_file_'(Path, Parent)}.
loaded_file_property(object(Object), Basename, Directory, _, _, _, _, _) :-
{'$lgt_current_object_'(Object, _, _, _, _, _, _, _, _, _, _),
'$lgt_entity_property_'(Object, file_lines(Basename, Directory, _, _))}.
loaded_file_property(protocol(Protocol), Basename, Directory, _, _, _, _, _) :-
{'$lgt_current_protocol_'(Protocol, _, _, _, _),
'$lgt_entity_property_'(Protocol, file_lines(Basename, Directory, _, _))}.
loaded_file_property(category(Category), Basename, Directory, _, _, _, _, _) :-
{'$lgt_current_category_'(Category, _, _, _, _, _),
'$lgt_entity_property_'(Category, file_lines(Basename, Directory, _, _))}.
loaded_file_property(library(Library), _, Directory, _, _, _, _, _) :-
logtalk_library_path(Library, _),
{'$lgt_expand_library_path'(Library, Directory)}, !.
compile_aux_clauses(Clauses) :-
{'$lgt_compile_aux_clauses'(Clauses)}.
entity_prefix(Entity, Prefix) :-
{'$lgt_entity_prefix'(Entity, Prefix)}.
compile_predicate_heads(Heads, Entity, CompiledHeads, ExecutionContext) :-
{'$lgt_compile_predicate_heads'(Heads, Entity, CompiledHeads, ExecutionContext)}.
compile_predicate_indicators(PredicateIndicators, Entity, CompiledPredicateIndicators) :-
{'$lgt_compile_predicate_indicators'(PredicateIndicators, Entity, CompiledPredicateIndicators)}.
decompile_predicate_indicators(CompiledPredicateIndicators, Entity, Type, PredicateIndicators) :-
{'$lgt_decompile_predicate_indicators'(CompiledPredicateIndicators, Entity, Type, PredicateIndicators)}.
decompile_predicate_heads(THeads, Entity, Type, Heads) :-
{'$lgt_decompile_predicate_heads'(THeads, Entity, Type, Heads)}.
execution_context(ExecutionContext, Entity, Sender, This, Self, MetaCallContext, Stack) :-
{'$lgt_execution_context'(ExecutionContext, Entity, Sender, This, Self, MetaCallContext, Stack)}.
:- end_object.
:- if(current_logtalk_flag(prolog_dialect, gnu)).
% workaround apparent gplc bug when dealing with multifile predicates
:- multifile(logtalk_library_path/2).
:- dynamic(logtalk_library_path/2).
:- multifile('$lgt_current_protocol_'/5).
:- dynamic('$lgt_current_protocol_'/5).
:- multifile('$lgt_current_category_'/6).
:- dynamic('$lgt_current_category_'/6).
:- elif(current_logtalk_flag(prolog_dialect, xsb)).
% workaround XSB atom-based module system
:- import(from(/(format,3), format)).
:- endif.
|