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-2024, University of Amsterdam 7 VU University Amsterdam 8 CWI, Amsterdam 9 SWI-Prolog Solutions b.v. 10 All rights reserved. 11 12 Redistribution and use in source and binary forms, with or without 13 modification, are permitted provided that the following conditions 14 are met: 15 16 1. Redistributions of source code must retain the above copyright 17 notice, this list of conditions and the following disclaimer. 18 19 2. Redistributions in binary form must reproduce the above copyright 20 notice, this list of conditions and the following disclaimer in 21 the documentation and/or other materials provided with the 22 distribution. 23 24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 25 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 26 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 27 FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 28 COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 29 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 30 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 31 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 32 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 33 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 34 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 35 POSSIBILITY OF SUCH DAMAGE. 36*/ 37 38:- module(make, 39 [ make/0, 40 make_reload_file/1 % +File 41 ]). 42:- autoload(library(apply),[maplist/2]). 43:- autoload(library(check),[list_undefined/0,list_void_declarations/0]). 44:- use_module(library(debug),[debug/3]). 45:- autoload(library(lists),[list_to_set/2,member/2]). 46:- autoload(library(option),[merge_options/3]). 47 48 49:- set_prolog_flag(generate_debug_info, false).
62:- multifile
63 prolog:make_hook/2.
make_hook(before, Files)
make_hook(after, Files)
The hooks are called with an empty list if no files need reloading.
80make :- 81 notrace(make_no_trace). 82 83make_no_trace :- 84 '$update_library_index'([]), 85 findall(File, modified_file(File), Reload0), 86 list_to_set(Reload0, Reload), 87 ( prolog:make_hook(before, Reload) 88 -> true 89 ; true 90 ), 91 print_message(silent, make(reload(Reload))), 92 maplist(make_reload_file, Reload), 93 print_message(silent, make(done(Reload))), 94 ( prolog:make_hook(after, Reload) 95 -> true 96 ; list_undefined, 97 list_void_declarations 98 ).
(*) A file is considered modified if the modification time of the file is at least 1ms later that when it was loaded. The 1ms relaxed matching is used to compensate for inconsistent float handling and possible timing jitter.
111modified_file(File) :- 112 source_file_property(Source, modified(Time)), 113 \+ source_file_property(Source, included_in(_,_)), 114 Time > 0.0, % See source_file/1 115 ( source_file_property(Source, derived_from(File, LoadTime)) 116 -> true 117 ; File = Source, 118 LoadTime = Time 119 ), 120 ( catch(time_file(File, Modified), _, fail), 121 Modified - LoadTime > 0.001 % (*) 122 -> true 123 ; file_includes(Source, Included, IncLoadTime, [Source]), 124 catch(time_file(Included, Modified), _, fail), 125 Modified - IncLoadTime > 0.001 % (*) 126 -> true 127 ). 128 129file_includes(Source, Included, IncLoadTime, Seen) :- 130 source_file_property(Source, includes(Included0, IncLoadTime0)), 131 \+ memberchk(Included0, Seen), 132 ( Included = Included0, 133 IncLoadTime = IncLoadTime0 134 ; file_includes(Included0, Included, IncLoadTime, [Included0|Seen]) 135 ).
144:- public reload_file/1. % Used by PDT 145reload_file(File) :- make_reload_file(File). 146 147make_reload_file(File) :- 148 source_base_name(File, Compile), 149 findall(M-Opts, 150 source_file_property(File, load_context(M, _, Opts)), 151 Modules), 152 ( Modules = [First-OptsFirst|Rest] 153 -> Extra = [ silent(false), 154 register(false) 155 ], 156 merge_options([if(true)|Extra], OptsFirst, OFirst), 157 debug(make, 'Make: First load ~q', [load_files(First:Compile, OFirst)]), 158 load_files(First:Compile, OFirst), 159 forall(member(Context-Opts, Rest), 160 ( merge_options([if(not_loaded)|Extra], Opts, O), 161 debug(make, 'Make: re-import: ~q', 162 [load_files(Context:Compile, O)]), 163 load_files(Context:Compile, O) 164 )) 165 ; load_files(user:Compile) 166 ). 167 168source_base_name(File, Compile) :- 169 file_name_extension(Compile, Ext, File), 170 user:prolog_file_type(Ext, prolog), 171 !. 172source_base_name(File, File).
list_undefined([scan(local)]).
The hook can be used to change program validation, stop or restart services, etc.
Reload modified source files
This module provides the SWI-Prolog `make' facility that synchronises Prolog internal database after loaded files have been edited.