1/*  Part of Extended Libraries for SWI-Prolog
    2
    3    Author:        Edison Mera
    4    E-mail:        efmera@gmail.com
    5    WWW:           https://github.com/edisonm/xlibrary
    6    Copyright (C): 2014, Process Design Center, Breda, The Netherlands.
    7    All rights reserved.
    8
    9    Redistribution and use in source and binary forms, with or without
   10    modification, are permitted provided that the following conditions
   11    are met:
   12
   13    1. Redistributions of source code must retain the above copyright
   14       notice, this list of conditions and the following disclaimer.
   15
   16    2. Redistributions in binary form must reproduce the above copyright
   17       notice, this list of conditions and the following disclaimer in
   18       the documentation and/or other materials provided with the
   19       distribution.
   20
   21    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   22    "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   23    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
   24    FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
   25    COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
   26    INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
   27    BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
   28    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
   29    CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   30    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
   31    ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   32    POSSIBILITY OF SUCH DAMAGE.
   33*/
   34
   35:- module(interface,
   36          [ bind_interface/2,
   37            end_interface/4
   38          ]).   39
   40:- use_module(library(lists)).   41:- use_module(library(apply)).   42:- use_module(library(error)).   43:- reexport(library(compound_expand)).   44:- init_expansors.   45
   46:- multifile
   47    '$interface'/1,
   48    '$interface'/2,
   49    '$implementation'/2.   50
   51% Warning: an interface module can not contain dynamic predicates, since dynamic
   52% predicates are generated automatically to perform the binding
   53
   54not_interface(M, F/A) :-
   55    current_predicate(M:F/A),
   56    functor(H, F, A),
   57    \+ predicate_property(M:H, dynamic),
   58    \+ predicate_property(M:H, imported_from(_)).
   59
   60this_interface(Interface, DIL) -->
   61    [interface:'$interface'(Interface, DIL)].
   62
   63decl_dynbridge(DIL) -->
   64    findall((:- dynamic F/A),
   65            member(F/A, DIL)).
   66
   67end_interface(Interface, DIL) -->
   68    this_interface(Interface, DIL),
   69    decl_dynbridge(DIL).
   70
   71term_expansion_decl(implements(Alias), Clauses) :-
   72    '$current_source_module'(Implementation),
   73    Implementation:use_module(Alias, []), % Ensure that the module is loaded
   74    absolute_file_name(Alias, File, [file_type(prolog), access(read)]),
   75    module_property(Interface, file(File)),
   76    term_expansion_decl(implements_mod(Interface), Clauses).
   77term_expansion_decl(implements_mod(Interface), Clauses) :-
   78    '$current_source_module'(Implementation),
   79    '$interface'(Interface, PIL),
   80    phrase(( [interface:'$implementation'(Implementation, Interface)],
   81             findall((:- meta_predicate Implementation:Spec),
   82                     ( member(F/A, PIL),
   83                       functor(Pred, F, A),
   84                       predicate_property(Interface:Pred, meta_predicate(Spec))
   85                     )),
   86             findall((:- export(PI)), member(PI, PIL))
   87           ), Clauses).
   88term_expansion_decl(interfaces(Alias), Clauses) :-
   89    '$current_source_module'(Interface),
   90    Interface:use_module(Alias, []),
   91    absolute_file_name(Alias, File, [file_type(prolog), access(read)]),
   92    module_property(Implementation, file(File)),
   93    term_expansion_decl(interfaces_mod(Implementation), Clauses).
   94term_expansion_decl(interfaces_mod(Implementation), Clauses) :-
   95    '$current_source_module'(Interface),
   96    phrase(interfaces_mod_clauses(Interface, Implementation), Clauses).
   97term_expansion_decl(interface, interface:'$interface'(Interface)) :- 
   98    '$current_source_module'(Interface).
   99
  100interfaces_mod_clauses(Interface, Implementation) -->
  101    {module_property(Implementation, exports(PIL))},
  102    findall((:- export(PI)), member(PI, PIL)),
  103    end_interface(Interface, PIL).
  104
  105term_expansion((:- Decl), Clauses) :-
  106    term_expansion_decl(Decl, Clauses).
  107term_expansion(end_of_file, Clauses) :-
  108    '$current_source_module'(Interface),
  109    '$interface'(Interface),
  110    module_property(Interface, file(File)),
  111    prolog_load_context(source, File),
  112    module_property(Interface, exports(PIL)),
  113    exclude(not_interface(Interface), PIL, DIL),
  114    phrase(end_interface(Interface, DIL), Clauses, [end_of_file]).
  115
  116prolog:called_by(Pred, Interface, Context, PredL) :-
  117    '$interface'(Interface, DIL),
  118    member(F/A, DIL),
  119    functor(Pred, F, A),
  120    findall(@(Implementation:Pred, Context),
  121            interface:'$implementation'(Implementation, Interface),
  122            PredL),
  123    PredL \= [].
 bind_interface(+Interface:atom, +Implementation:atom) is semidet
Connects Interface with Implementation.
  129bind_interface(Interface, Implementation) :-
  130    ( '$interface'(Interface, DIL)
  131    ->true
  132    ; existence_error(interface, Interface)
  133    ),
  134    ( '$implementation'(Implementation, Interface)
  135    ->true
  136    ; ( '$implementation'(Implementation, _)
  137      ->existence_error(implementation, Implementation)
  138      ; existence_error(binding, Interface->Implementation)
  139      )
  140    ),
  141    forall(( member(F/A, DIL),
  142             functor(H, F, A)
  143           ),
  144           ( retractall(Interface:H),
  145             Implementation:assertz((Interface:H :- H))))