Skip to content

Commit 0d13166

Browse files
musmjmert
andauthored
Move silence errors to midlevel and remove straggling definition of rehash (#810)
* Move silence_errors to mid level * Remove rehash definition that JLD no longer needs * Update src/api_midlevel.jl Co-authored-by: jmert <[email protected]> Co-authored-by: jmert <[email protected]>
1 parent 6883d9d commit 0d13166

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

src/HDF5.jl

-15
Original file line numberDiff line numberDiff line change
@@ -1966,21 +1966,6 @@ function create_external(source::Union{File,Group}, source_relpath, target_filen
19661966
nothing
19671967
end
19681968

1969-
# error handling
1970-
function silence_errors(f::Function)
1971-
estack = H5E_DEFAULT
1972-
func, client_data = h5e_get_auto(estack)
1973-
h5e_set_auto(estack, C_NULL, C_NULL)
1974-
try
1975-
return f()
1976-
finally
1977-
h5e_set_auto(estack, func, client_data)
1978-
end
1979-
end
1980-
1981-
# Define globally because JLD uses this, too
1982-
const rehash! = Base.rehash!
1983-
19841969
# Across initializations of the library, the id of various properties
19851970
# will change. So don't hard-code the id (important for precompilation)
19861971
const UTF8_LINK_PROPERTIES = Ref{Properties}()

src/api_midlevel.jl

+16
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,19 @@ function get_extent_dims(obj::Union{Dataspace,Dataset,Attribute})
4545
obj isa Dataspace || close(dspace)
4646
return dims, maxdims
4747
end
48+
49+
"""
50+
silence_errors(f::Function)
51+
52+
During execution of the function `f`, disable printing of internal HDF5 library error messages.
53+
"""
54+
function silence_errors(f::Function)
55+
estack = H5E_DEFAULT
56+
func, client_data = h5e_get_auto(estack)
57+
h5e_set_auto(estack, C_NULL, C_NULL)
58+
try
59+
return f()
60+
finally
61+
h5e_set_auto(estack, func, client_data)
62+
end
63+
end

0 commit comments

Comments
 (0)