2
2
3
3
abstract type AbstractMsg end
4
4
5
- let REF_ID:: Int = 1
6
- global next_ref_id
7
- next_ref_id () = (id = REF_ID; REF_ID += 1 ; id)
8
- end
5
+ const REF_ID = Ref (1 )
6
+ next_ref_id () = (id = REF_ID[]; REF_ID[] = id+ 1 ; id)
9
7
10
8
struct RRID
11
9
whence:: Int
80
78
# of approximately 10%. Can be removed once module Serializer
81
79
# has been suitably improved.
82
80
83
- # replace CallMsg{Mode} with specific invocations
84
- const msgtypes = filter! (x -> x != CallMsg, subtypes (AbstractMsg))
85
- push! (msgtypes, CallMsg{:call }, CallMsg{:call_fetch })
81
+ const msgtypes = Any[CallWaitMsg, IdentifySocketAckMsg, IdentifySocketMsg,
82
+ JoinCompleteMsg, JoinPGRPMsg, RemoteDoMsg, ResultMsg,
83
+ CallMsg{:call }, CallMsg{:call_fetch }]
86
84
87
85
for (idx, tname) in enumerate (msgtypes)
88
- nflds = length (fieldnames (tname))
89
- @eval begin
90
- function serialize (s:: AbstractSerializer , o:: $tname )
91
- write (s. io, UInt8 ($ idx))
92
- for fld in fieldnames ($ tname)
93
- serialize (s, getfield (o, fld))
94
- end
95
- end
96
-
97
- function deserialize_msg (s:: AbstractSerializer , :: Type{$tname} )
98
- data= Array {Any,1} ($ nflds)
99
- for i in 1 : $ nflds
100
- data[i] = deserialize (s)
101
- end
102
- return $ tname (data... )
103
- end
86
+ exprs = Any[ :(serialize (s, o.$ fld)) for fld in fieldnames (tname) ]
87
+ @eval function serialize_msg (s:: AbstractSerializer , o:: $tname )
88
+ write (s. io, UInt8 ($ idx))
89
+ $ (exprs... )
90
+ return nothing
104
91
end
105
92
end
106
93
107
- function deserialize_msg (s:: AbstractSerializer )
108
- idx = read (s. io, UInt8)
109
- t = msgtypes[idx]
110
- return eval (current_module (), Expr (:body , Expr (:return , Expr (:call , deserialize_msg, QuoteNode (s), QuoteNode (t)))))
94
+ let msg_cases = :(assert (false ))
95
+ for i = length (msgtypes): - 1 : 1
96
+ mti = msgtypes[i]
97
+ msg_cases = :(if idx == $ i
98
+ return $ (Expr (:call , QuoteNode (mti), fill (:(deserialize (s)), nfields (mti))... ))
99
+ else
100
+ $ msg_cases
101
+ end )
102
+ end
103
+ @eval function deserialize_msg (s:: AbstractSerializer )
104
+ idx = read (s. io, UInt8)
105
+ $ msg_cases
106
+ end
111
107
end
112
108
113
109
function send_msg_unknown (s:: IO , header, msg)
@@ -171,8 +167,7 @@ function serialize_hdr_raw(io, hdr)
171
167
end
172
168
173
169
function deserialize_hdr_raw (io)
174
- data = Array {Int,1} (4 )
175
- read! (io, data)
170
+ data = read (io, Ref {NTuple{4,Int}} ())[]
176
171
return MsgHeader (RRID (data[1 ], data[2 ]), RRID (data[3 ], data[4 ]))
177
172
end
178
173
@@ -183,7 +178,7 @@ function send_msg_(w::Worker, header, msg, now::Bool)
183
178
try
184
179
reset_state (w. w_serializer)
185
180
serialize_hdr_raw (io, header)
186
- eval ( current_module (), Expr ( :body , Expr ( :return , Expr ( :call , serialize, QuoteNode ( w. w_serializer), QuoteNode ( msg)))) ) # io is wrapped in w_serializer
181
+ invokelatest (serialize_msg, w. w_serializer, msg) # io is wrapped in w_serializer
187
182
write (io, MSG_BOUNDARY)
188
183
189
184
if ! now && w. gcflag
0 commit comments