forked from JuliaLang/julia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeepcopy.jl
63 lines (54 loc) · 1.73 KB
/
deepcopy.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# deep copying
# Note: deepcopy_internal(::Any, ::ObjectIdDict) is
# only exposed for specialization by libraries
deepcopy(x) = deepcopy_internal(x, ObjectIdDict())
deepcopy_internal(x::Union(Symbol,LambdaStaticData,TopNode,QuoteNode,
DataType,UnionType),
stackdict::ObjectIdDict) = x
deepcopy_internal(x::Tuple, stackdict::ObjectIdDict) =
ntuple(length(x), i->deepcopy_internal(x[i], stackdict))
deepcopy_internal(x::Module, stackdict::ObjectIdDict) = error("deepcopy of Modules not supported")
function deepcopy_internal(x::Function, stackdict::ObjectIdDict)
if isa(x.env, Union(MethodTable, Symbol)) || x.env === ()
return x
end
invoke(deepcopy_internal, (Any, ObjectIdDict), x, stackdict)
end
function deepcopy_internal(x, stackdict::ObjectIdDict)
if haskey(stackdict, x)
return stackdict[x]
end
_deepcopy_t(x, typeof(x), stackdict)
end
function _deepcopy_t(x, T::DataType, stackdict::ObjectIdDict)
if T.names===() || !T.mutable
return x
end
ret = ccall(:jl_new_struct_uninit, Any, (Any,), T)
stackdict[x] = ret
for f in T.names
if isdefined(x,f)
ret.(f) = deepcopy_internal(x.(f), stackdict)
end
end
return ret
end
function deepcopy_internal(x::Array, stackdict::ObjectIdDict)
if haskey(stackdict, x)
return stackdict[x]
end
_deepcopy_array_t(x, eltype(x), stackdict)
end
function _deepcopy_array_t(x, T, stackdict::ObjectIdDict)
if isbits(T)
return copy(x)
end
dest = similar(x)
stackdict[x] = dest
for i=1:length(x)
if isdefined(x,i)
arrayset(dest, deepcopy_internal(x[i], stackdict), i)
end
end
return dest
end