Skip to content

Commit c588de6

Browse files
KristofferCtopolarity
authored andcommitted
Revert "Extensions: make loading of extensions independent of what packages are in the sysimage (JuliaLang#52841)"
This reverts commit 08d229f.
1 parent 580b2b8 commit c588de6

File tree

6 files changed

+5
-41
lines changed

6 files changed

+5
-41
lines changed

base/Base.jl

-1
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,6 @@ function __init__()
602602
init_load_path()
603603
init_active_project()
604604
append!(empty!(_sysimage_modules), keys(loaded_modules))
605-
empty!(explicit_loaded_modules)
606605
empty!(loaded_precompiles) # If we load a packageimage when building the image this might not be empty
607606
for (mod, key) in module_keys
608607
push!(get!(Vector{Module}, loaded_precompiles, key), mod)

base/loading.jl

+4-10
Original file line numberDiff line numberDiff line change
@@ -1518,7 +1518,7 @@ function _insert_extension_triggers(parent::PkgId, extensions::Dict{String, Any}
15181518
uuid_trigger = UUID(totaldeps[trigger]::String)
15191519
trigger_id = PkgId(uuid_trigger, trigger)
15201520
push!(trigger_ids, trigger_id)
1521-
if !haskey(explicit_loaded_modules, trigger_id) || haskey(package_locks, trigger_id)
1521+
if !haskey(Base.loaded_modules, trigger_id) || haskey(package_locks, trigger_id)
15221522
trigger1 = get!(Vector{ExtensionId}, EXT_DORMITORY, trigger_id)
15231523
push!(trigger1, gid)
15241524
else
@@ -2392,9 +2392,8 @@ function __require_prelocked(uuidkey::PkgId, env=nothing)
23922392
insert_extension_triggers(uuidkey)
23932393
# After successfully loading, notify downstream consumers
23942394
run_package_callbacks(uuidkey)
2395-
elseif !haskey(explicit_loaded_modules, uuidkey)
2396-
explicit_loaded_modules[uuidkey] = m
2397-
run_package_callbacks(uuidkey)
2395+
else
2396+
newm = root_module(uuidkey)
23982397
end
23992398
return m
24002399
end
@@ -2407,7 +2406,6 @@ end
24072406
PkgOrigin() = PkgOrigin(nothing, nothing, nothing)
24082407
const pkgorigins = Dict{PkgId,PkgOrigin}()
24092408

2410-
const explicit_loaded_modules = Dict{PkgId,Module}() # Emptied on Julia start
24112409
const loaded_modules = Dict{PkgId,Module}() # available to be explicitly loaded
24122410
const loaded_precompiles = Dict{PkgId,Vector{Module}}() # extended (complete) list of modules, available to be loaded
24132411
const loaded_modules_order = Vector{Module}()
@@ -2448,7 +2446,6 @@ end
24482446
end
24492447
maybe_loaded_precompile(key, module_build_id(m)) === nothing && push!(loaded_modules_order, m)
24502448
loaded_modules[key] = m
2451-
explicit_loaded_modules[key] = m
24522449
module_keys[m] = key
24532450
end
24542451
nothing
@@ -2480,9 +2477,6 @@ loaded_modules_array() = @lock require_lock copy(loaded_modules_order)
24802477
# after unreference_module, a subsequent require call will try to load a new copy of it, if stale
24812478
# reload(m) = (unreference_module(m); require(m))
24822479
function unreference_module(key::PkgId)
2483-
if haskey(explicit_loaded_modules, key)
2484-
m = pop!(explicit_loaded_modules, key)
2485-
end
24862480
if haskey(loaded_modules, key)
24872481
m = pop!(loaded_modules, key)
24882482
# need to ensure all modules are GC rooted; will still be referenced
@@ -3046,7 +3040,7 @@ function compilecache(pkg::PkgId, path::String, internal_stderr::IO = stderr, in
30463040
# build up the list of modules that we want the precompile process to preserve
30473041
if keep_loaded_modules
30483042
concrete_deps = copy(_concrete_dependencies)
3049-
for (pkgreq, modreq) in loaded_modules # TODO: convert all relevant staleness heuristics to use explicit_loaded_modules instead
3043+
for (pkgreq, modreq) in loaded_modules
30503044
if !(pkgreq === Main || pkgreq === Core || pkgreq === Base)
30513045
push!(concrete_deps, pkgreq => module_build_id(modreq))
30523046
end

test/loading.jl

-19
Original file line numberDiff line numberDiff line change
@@ -1118,25 +1118,6 @@ end
11181118
run(cmd_proj_ext)
11191119
end
11201120

1121-
# Sysimage extensions
1122-
# The test below requires that LinearAlgebra is in the sysimage and that it has not been loaded yet.
1123-
# if it gets moved out, this test will need to be updated.
1124-
# We run this test in a new process so we are not vulnerable to a previous test having loaded LinearAlgebra
1125-
sysimg_ext_test_code = """
1126-
uuid_key = Base.PkgId(Base.UUID("37e2e46d-f89d-539d-b4ee-838fcccc9c8e"), "LinearAlgebra")
1127-
Base.in_sysimage(uuid_key) || error("LinearAlgebra not in sysimage")
1128-
haskey(Base.explicit_loaded_modules, uuid_key) && error("LinearAlgebra already loaded")
1129-
using HasExtensions
1130-
Base.get_extension(HasExtensions, :LinearAlgebraExt) === nothing || error("unexpectedly got an extension")
1131-
using LinearAlgebra
1132-
haskey(Base.explicit_loaded_modules, uuid_key) || error("LinearAlgebra not loaded")
1133-
Base.get_extension(HasExtensions, :LinearAlgebraExt) isa Module || error("expected extension to load")
1134-
"""
1135-
cmd = `$(Base.julia_cmd()) --startup-file=no -e $sysimg_ext_test_code`
1136-
cmd = addenv(cmd, "JULIA_LOAD_PATH" => join([proj, "@stdlib"], sep))
1137-
run(cmd)
1138-
1139-
11401121
# Extensions in implicit environments
11411122
old_load_path = copy(LOAD_PATH)
11421123
try

test/project/Extensions/HasDepWithExtensions.jl/Manifest.toml

+1-6
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,12 @@ deps = ["ExtDep3"]
2525
path = "../HasExtensions.jl"
2626
uuid = "4d3288b3-3afc-4bb6-85f3-489fffe514c8"
2727
version = "0.1.0"
28+
weakdeps = ["ExtDep", "ExtDep2"]
2829

2930
[deps.HasExtensions.extensions]
3031
Extension = "ExtDep"
3132
ExtensionDep = "ExtDep3"
3233
ExtensionFolder = ["ExtDep", "ExtDep2"]
33-
LinearAlgebraExt = "LinearAlgebra"
34-
35-
[deps.HasExtensions.weakdeps]
36-
ExtDep = "fa069be4-f60b-4d4c-8b95-f8008775090c"
37-
ExtDep2 = "55982ee5-2ad5-4c40-8cfe-5e9e1b01500d"
38-
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
3934

4035
[[deps.SomeOtherPackage]]
4136
path = "../SomeOtherPackage"

test/project/Extensions/HasExtensions.jl/Project.toml

-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,8 @@ ExtDep3 = "a5541f1e-a556-4fdc-af15-097880d743a1"
88
[weakdeps]
99
ExtDep = "fa069be4-f60b-4d4c-8b95-f8008775090c"
1010
ExtDep2 = "55982ee5-2ad5-4c40-8cfe-5e9e1b01500d"
11-
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1211

1312
[extensions]
1413
Extension = "ExtDep"
1514
ExtensionDep = "ExtDep3"
1615
ExtensionFolder = ["ExtDep", "ExtDep2"]
17-
LinearAlgebraExt = "LinearAlgebra"

test/project/Extensions/HasExtensions.jl/ext/LinearAlgebraExt.jl

-3
This file was deleted.

0 commit comments

Comments
 (0)