1
1
using Base: PkgId, loaded_modules, package_callbacks
2
2
using Base. Meta: isexpr
3
+ if isdefined (Base, :mapany )
4
+ const mapany = Base. mapany
5
+ else
6
+ mapany (f, A:: AbstractVector ) = map! (f, Vector {Any} (undef, length (A)), A)
7
+ end
3
8
4
9
export @require
5
10
6
11
isprecompiling () = ccall (:jl_generating_output , Cint, ()) == 1
7
12
8
- loaded (pkg) = haskey (Base. loaded_modules, pkg)
13
+ loaded (pkg:: PkgId ) = haskey (Base. loaded_modules, pkg)
9
14
10
15
const notified_pkgs = [Base. PkgId (UUID (0x295af30fe4ad537b898300126c2a3abe ), " Revise" )]
11
16
12
17
const _callbacks = Dict {PkgId, Vector{Function}} ()
13
- callbacks (pkg) = get! (Vector{Function}, _callbacks, pkg)
18
+ callbacks (pkg:: PkgId ) = get! (Vector{Function}, _callbacks, pkg)
14
19
15
- listenpkg (@nospecialize (f), pkg) =
20
+ listenpkg (@nospecialize (f), pkg:: PkgId ) =
16
21
loaded (pkg) ? f () : push! (callbacks (pkg), f)
17
22
18
- function loadpkg (pkg:: Base. PkgId )
23
+ function loadpkg (pkg:: PkgId )
19
24
if haskey (_callbacks, pkg)
20
25
fs = _callbacks[pkg]
21
26
delete! (_callbacks, pkg)
22
27
foreach (Base. invokelatest, fs)
23
28
end
24
29
end
25
30
26
- function withpath (@nospecialize (f), path)
31
+ function withpath (@nospecialize (f), path:: String )
27
32
tls = task_local_storage ()
28
33
hassource = haskey (tls, :SOURCE_PATH )
29
34
hassource && (path′ = tls[:SOURCE_PATH ])
@@ -37,19 +42,19 @@ function withpath(@nospecialize(f), path)
37
42
end
38
43
end
39
44
40
- function err (@nospecialize (f), listener, mod )
45
+ function err (@nospecialize (f), listener:: Module , modname :: String )
41
46
try
42
47
f ()
43
48
catch exc
44
- @warn " Error requiring `$mod ` from `$listener `" exception= (exc,catch_backtrace ())
49
+ @warn " Error requiring `$modname ` from `$listener `" exception= (exc,catch_backtrace ())
45
50
end
46
51
end
47
52
48
- function parsepkg (ex)
53
+ function parsepkg (ex:: Expr )
49
54
isexpr (ex, :(= )) || @goto fail
50
55
mod, id = ex. args
51
56
(mod isa Symbol && id isa String) || @goto fail
52
- return id, String (mod)
57
+ return id:: String , String (mod:: Symbol )
53
58
@label fail
54
59
error (" Requires syntax is: `@require Pkg=\" uuid\" `" )
55
60
end
@@ -67,29 +72,29 @@ function withnotifications(@nospecialize(args...))
67
72
return nothing
68
73
end
69
74
70
- function replace_include (ex, source)
71
- if isexpr (ex, :call ) && ex. args[1 ] == :include && ex. args[2 ] isa String
72
- return Expr (:macrocall , :($ Requires.$ (Symbol (" @include" ))), source, ex. args[2 ])
73
- elseif ex isa Expr
74
- Expr (ex. head, replace_include .(ex. args, (source,))... )
75
- else
76
- return ex
75
+ function replace_include (ex:: Expr , source:: LineNumberNode )
76
+ if ex. head == :call && ex. args[1 ] === :include && ex. args[2 ] isa String
77
+ return Expr (:macrocall , :($ Requires.$ (Symbol (" @include" ))), source, ex. args[2 ]:: String )
77
78
end
79
+ return Expr (ex. head, (mapany (ex. args) do arg
80
+ isa (arg, Expr) ? replace_include (arg, source) : arg
81
+ end ). .. )
78
82
end
79
83
80
- macro require (pkg, expr)
84
+ macro require (pkg:: Union{Symbol,Expr} , expr)
81
85
pkg isa Symbol &&
82
86
return Expr (:macrocall , Symbol (" @warn" ), __source__,
83
87
" Requires now needs a UUID; please see the readme for changes in 0.7." )
84
- id , modname = parsepkg (pkg)
85
- pkg = :(Base. PkgId (Base. UUID ($ id ), $ modname))
86
- expr = replace_include (expr, __source__)
88
+ idstr , modname = parsepkg (pkg)
89
+ pkg = :(Base. PkgId (Base. UUID ($ idstr ), $ modname))
90
+ expr = isa (expr, Expr) ? replace_include (expr, __source__) : expr
87
91
expr = macroexpand (__module__, expr)
92
+ srcfile = string (__source__. file)
88
93
quote
89
94
if ! isprecompiling ()
90
95
listenpkg ($ pkg) do
91
- $ withnotifications ($ ( string (__source__ . file)) , $ __module__, $ id , $ modname, $ (esc (Expr (:quote , expr))))
92
- withpath ($ ( string (__source__ . file)) ) do
96
+ $ withnotifications ($ srcfile , $ __module__, $ idstr , $ modname, $ (esc (Expr (:quote , expr))))
97
+ withpath ($ srcfile ) do
93
98
err ($ __module__, $ modname) do
94
99
$ (esc (:(eval ($ (Expr (:quote , Expr (:block ,
95
100
:(const $ (Symbol (modname)) = Base. require ($ pkg)),
0 commit comments