View source with formatted comments or as raw
    1/*  Part of SWI-Prolog
    2
    3    Author:        Jan Wielemaker
    4    E-mail:        J.Wielemaker@vu.nl
    5    WWW:           http://www.swi-prolog.org
    6    Copyright (c)  2003-2014, University of Amsterdam
    7                              VU University Amsterdam
    8    All rights reserved.
    9
   10    Redistribution and use in source and binary forms, with or without
   11    modification, are permitted provided that the following conditions
   12    are met:
   13
   14    1. Redistributions of source code must retain the above copyright
   15       notice, this list of conditions and the following disclaimer.
   16
   17    2. Redistributions in binary form must reproduce the above copyright
   18       notice, this list of conditions and the following disclaimer in
   19       the documentation and/or other materials provided with the
   20       distribution.
   21
   22    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   23    "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   24    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
   25    FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
   26    COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
   27    INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
   28    BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
   29    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
   30    CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   31    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
   32    ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   33    POSSIBILITY OF SUCH DAMAGE.
   34*/
   35
   36:- module(make,
   37          [ make/0
   38          ]).   39:- use_module(library(check)).   40:- use_module(library(lists)).   41:- use_module(library(option)).   42:- use_module(library(debug)).   43:- set_prolog_flag(generate_debug_info, false).   44
   45/** <module>  Reload modified source files
   46
   47This module provides the SWI-Prolog   `make'  facility that synchronises
   48Prolog internal database after loaded files have been edited.
   49
   50@bug    Dependency tracking is incomplete.  Notably, there is no
   51        dependency tracking if compilation of one module depends
   52        on goal_expansion/2 or term_expansion/2 rules provided by
   53        another.
   54*/
   55
   56:- multifile
   57    prolog:make_hook/2.   58
   59
   60%!  make
   61%
   62%   Reload all source files that have   been changed since they were
   63%   loaded. This predicate peforms the following steps:
   64%
   65%     1. Compute the set of files that need to be reloaded.
   66%     2. Call the hook prolog:make_hook(before, Files)
   67%     3. Reload the files
   68%     4. Call the hook prolog:make_hook(after, Files)
   69%     5. If (4) fails, call list_undefined/0.
   70%
   71%   The hooks are called  with  an  empty   list  if  no  files need
   72%   reloading.
   73
   74make :-
   75    notrace(make_no_trace).
   76
   77make_no_trace :-
   78    '$update_library_index',
   79    findall(File, modified_file(File), Reload0),
   80    list_to_set(Reload0, Reload),
   81    (   prolog:make_hook(before, Reload)
   82    ->  true
   83    ;   true
   84    ),
   85    print_message(silent, make(reload(Reload))),
   86    maplist(reload_file, Reload),
   87    print_message(silent, make(done(Reload))),
   88    (   prolog:make_hook(after, Reload)
   89    ->  true
   90    ;   list_undefined,
   91        list_void_declarations
   92    ).
   93
   94%!  modified_file(-File) is nondet.
   95%
   96%   True when File is modified after it has been loaded.
   97%
   98%   (*) A file is considered modified if   the  modification time of the
   99%   file is at least 1ms later that when  it was loaded. The 1ms relaxed
  100%   matching is used to compensate for   inconsistent float handling and
  101%   possible timing jitter.
  102%
  103%   @see https://github.com/SWI-Prolog/swipl-devel/issues/303
  104
  105modified_file(File) :-
  106    source_file_property(Source, modified(Time)),
  107    \+ source_file_property(Source, included_in(_,_)),
  108    Time > 0.0,                     % See source_file/1
  109    (   source_file_property(Source, derived_from(File, LoadTime))
  110    ->  true
  111    ;   File = Source,
  112        LoadTime = Time
  113    ),
  114    (   catch(time_file(File, Modified), _, fail),
  115        Modified - LoadTime > 0.001             % (*)
  116    ->  true
  117    ;   source_file_property(Source, includes(Included, IncLoadTime)),
  118        catch(time_file(Included, Modified), _, fail),
  119        Modified - IncLoadTime > 0.001          % (*)
  120    ->  true
  121    ).
  122
  123
  124%!  reload_file(File)
  125%
  126%   Reload file into the proper module.
  127%
  128%   @bug    If modules import each other, we must load them in the
  129%           proper order for import/export dependencies.
  130
  131:- public reload_file/1.                % Used by PDT
  132
  133reload_file(File) :-
  134    source_base_name(File, Compile),
  135    findall(M-Opts,
  136            source_file_property(File, load_context(M, _, Opts)),
  137            Modules),
  138    (   Modules = [First-OptsFirst|Rest]
  139    ->  Extra = [ silent(false),
  140                  register(false)
  141                ],
  142        merge_options([if(true)|Extra], OptsFirst, OFirst),
  143        debug(make, 'Make: First load ~q', [load_files(First:Compile, OFirst)]),
  144        load_files(First:Compile, OFirst),
  145        forall(member(Context-Opts, Rest),
  146               ( merge_options([if(not_loaded)|Extra], Opts, O),
  147                 debug(make, 'Make: re-import: ~q',
  148                       [load_files(Context:Compile, O)]),
  149                 load_files(Context:Compile, O)
  150               ))
  151    ;   load_files(user:Compile)
  152    ).
  153
  154source_base_name(File, Compile) :-
  155    file_name_extension(Compile, Ext, File),
  156    user:prolog_file_type(Ext, prolog),
  157    !.
  158source_base_name(File, File).
  159
  160
  161%!  prolog:make_hook(+When, +Files) is semidet.
  162%
  163%   This hook is called by make/0. It   is called with the following
  164%   values for When:
  165%
  166%     - before
  167%     The hook is called before reloading starts. The default
  168%     action is to do nothing.
  169%
  170%     - after
  171%     The hook is called after reloading completed.  The default
  172%     action is to call list_undefined/1 as:
  173%
  174%       ==
  175%       list_undefined([scan(local)]).
  176%       ==
  177%
  178%   The hook can be  used  to   change  program  validation, stop or
  179%   restart services, etc.
  180%
  181%   @arg Files is a list holding the canonical file names of the
  182%        files that need to be reloaded.  This list can be empty.