Skip to content

Commit

Permalink
Merge pull request #604 from JuliaIO/fixobjectidpreservation
Browse files Browse the repository at this point in the history
v0.5.4 Hotfix for #603
  • Loading branch information
JonasIsensee committed Sep 24, 2024
2 parents 32a49c0 + c6948cc commit bc774d3
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.5.4
- Important correctness fix when storing very many equally sized objects
that may get GC'ed while storing is in progress! (#603)

## 0.5.3
- Bugfix for `<: Function` structs

Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "JLD2"
uuid = "033835bb-8acc-5ee8-8aae-3f567f8a3819"
version = "0.5.3"
version = "0.5.4"

[deps]
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
Expand Down
2 changes: 1 addition & 1 deletion src/JLD2.jl
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ mutable struct JLDFile{T<:IO}
disable_commit::Bool
datatype_locations::OrderedDict{RelOffset,CommittedDatatype}
datatypes::Vector{H5Datatype}
datatype_wsession::JLDWriteSession{Dict{UInt,RelOffset}}
datatype_wsession::JLDWriteSession{Dict{UInt,Tuple{RelOffset,WeakRef}}}
typemap::Dict{String, Any}
jlh5type::IdDict{Any,Any}
h5jltype::IdDict{Any,Any}
Expand Down
20 changes: 10 additions & 10 deletions src/types.jl
Original file line number Diff line number Diff line change
Expand Up @@ -112,25 +112,25 @@ A `JLDWriteSession` keeps track of references to serialized objects. If `T` is a
written dataset. If it is `Union{}`, then references are not tracked, and objects
referenced multiple times are written multiple times.
"""
struct JLDWriteSession{T<:Union{Dict{UInt,RelOffset},Union{}}}
struct JLDWriteSession{T<:Union{Dict{UInt,Tuple{RelOffset,WeakRef}},Union{}}}
h5offset::T
JLDWriteSession{T}() where T = new()
JLDWriteSession{T}(h5offset, objects) where T = new(h5offset)
JLDWriteSession{T}() where T = new{T}()
JLDWriteSession(h5offset::T) where T = new{T}(h5offset)
end
JLDWriteSession() = JLDWriteSession{Dict{UInt,RelOffset}}(Dict{UInt,RelOffset}(), Any[])
JLDWriteSession() = JLDWriteSession(Dict{UInt,Tuple{RelOffset,WeakRef}}())
track!(::JLDWriteSession{Union{}}, args...) = nothing
function track!(s::JLDWriteSession, data, offset::RelOffset)
if ismutabletype(typeof(data))
s.h5offset[objectid(data)] = offset
s.h5offset[objectid(data)] = (offset, WeakRef(data))
end
nothing
end
get_tracked(wsession::JLDWriteSession{Union{}}, data) = UNDEFINED_ADDRESS
get_tracked(::JLDWriteSession{Union{}}, data) = UNDEFINED_ADDRESS
function get_tracked(wsession::JLDWriteSession, data)
if ismutabletype(typeof(data))
return get(wsession.h5offset, objectid(data), UNDEFINED_ADDRESS)
end
return UNDEFINED_ADDRESS
!ismutabletype(typeof(data)) && return UNDEFINED_ADDRESS
offset, wref = get(wsession.h5offset, objectid(data), (UNDEFINED_ADDRESS, WeakRef(nothing)))
isnothing(wref.value) && return UNDEFINED_ADDRESS
return offset
end
"""
GlobalHeap
Expand Down
37 changes: 37 additions & 0 deletions test/loadsave.jl
Original file line number Diff line number Diff line change
Expand Up @@ -801,3 +801,40 @@ end
loaded_foo = load(tempfile, "foo")
@test loaded_foo isa Foo601
end


@testset "Issue #603 - reused objectids" begin
fn = joinpath(mktempdir(), "issue603_reused_objectids.jld2")

function create_large_dict(levels::Int, items_per_level::Int, item_size::Int)
# Create a nested dictionary with the specified number of levels
function create_nested_dict(current_level, max_level)
if current_level > max_level
return Dict("x" => rand(Int, item_size))
else
return Dict(
string(i) => create_nested_dict(current_level + 1, max_level)
for i in 1:items_per_level
)
end
end
# Create the top-level dictionary
return create_nested_dict(1, levels)
end

obj = create_large_dict(3, 30, 1);
jldsave(fn; obj)
res = load(fn, "obj")
function recursive_test(obj, res)
@test length(keys(obj)) == length(keys(res))
for (k, v) in obj
@test haskey(res, k)
if isa(v, Dict)
recursive_test(v, res[k])
else
@test v == res[k]
end
end
end
recursive_test(obj, res)
end

2 comments on commit bc774d3

@JonasIsensee
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

Fix correctness bug in certain edge case introduced in v0.4.53
Please update!

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/115826

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.4 -m "<description of version>" bc774d330d85eca39380802ecf567008371f5a69
git push origin v0.5.4

Please sign in to comment.