@@ -45,6 +45,9 @@ type state struct {
45
45
addresses map [string ]bool
46
46
finished chan bool
47
47
done bool
48
+ fullDone bool // true only when exp received - to stop sending out
49
+ ticker * time.Ticker
50
+ doneCh chan bool
48
51
}
49
52
50
53
func newState (net handel.Network , id , total , exp , probExp int ) * state {
@@ -57,6 +60,8 @@ func newState(net handel.Network, id, total, exp, probExp int) *state {
57
60
readys : make (map [int ]bool ),
58
61
addresses : make (map [string ]bool ),
59
62
finished : make (chan bool , 1 ),
63
+ ticker : time .NewTicker (wait ),
64
+ doneCh : make (chan bool , 1 ),
60
65
}
61
66
}
62
67
@@ -92,31 +97,45 @@ func (s *state) newMessage(msg *syncMessage) {
92
97
}
93
98
}
94
99
95
- // send the messagesssss
96
- outgoing := & syncMessage { State : s . id }
97
- buff , err := outgoing . ToBytes ()
98
- if err != nil {
99
- panic ( err )
100
+ // start sending if we were not before
101
+ if ! s . done {
102
+ s . done = true
103
+ s . finished <- true
104
+ go s . sendLoop ( )
100
105
}
101
- packet := & handel.Packet {MultiSig : buff }
102
- ids := make ([]handel.Identity , 0 , len (s .addresses ))
103
- for address := range s .addresses {
104
- id := handel .NewStaticIdentity (0 , address , nil )
105
- ids = append (ids , id )
106
+
107
+ // only stop when we got all signature, after 5 sec
108
+ if len (s .readys ) >= s .exp && ! s .fullDone {
109
+ s .fullDone = true
110
+ go func () {
111
+ time .Sleep (5 * time .Second )
112
+ s .ticker .Stop ()
113
+ s .doneCh <- true
114
+ }()
106
115
}
107
- go func () {
108
- if len (s .readys ) >= s .probExp {
109
- if len (s .finished ) == 0 {
110
- s .finished <- true
111
- }
112
- s .done = true
113
- }
114
- for i := 0 ; i < retrials ; i ++ {
115
- s .n .Send (ids , packet )
116
- time .Sleep (1 * time .Second )
116
+ }
117
+
118
+ func (s * state ) sendLoop () {
119
+ for {
120
+ select {
121
+ case <- s .doneCh :
122
+ return
123
+ case <- s .ticker .C :
117
124
}
118
- }()
119
125
126
+ outgoing := & syncMessage {State : s .id }
127
+ buff , err := outgoing .ToBytes ()
128
+ if err != nil {
129
+ panic (err )
130
+ }
131
+ packet := & handel.Packet {MultiSig : buff }
132
+ ids := make ([]handel.Identity , 0 , len (s .addresses ))
133
+ for address := range s .addresses {
134
+ id := handel .NewStaticIdentity (0 , address , nil )
135
+ ids = append (ids , id )
136
+ }
137
+ s .n .Send (ids , packet )
138
+ }
120
139
}
121
140
122
141
func (s * state ) String () string {
@@ -207,6 +226,8 @@ type slaveState struct {
207
226
sent bool
208
227
finished chan bool
209
228
done bool
229
+ ticker * time.Ticker
230
+ doneCh chan bool
210
231
}
211
232
212
233
func newSlaveState (n handel.Network , master , addr string , id int ) * slaveState {
@@ -216,6 +237,8 @@ func newSlaveState(n handel.Network, master, addr string, id int) *slaveState {
216
237
master : master ,
217
238
addr : addr ,
218
239
finished : make (chan bool , 1 ),
240
+ ticker : time .NewTicker (wait ),
241
+ doneCh : make (chan bool , 1 ),
219
242
}
220
243
}
221
244
@@ -224,7 +247,7 @@ func (s *slaveState) WaitFinish() chan bool {
224
247
}
225
248
226
249
func (s * slaveState ) signal (ids []int ) {
227
- for i := 0 ; i < retrials ; i ++ {
250
+ send := func () {
228
251
msg := & syncMessage {State : s .id , IDs : ids , Address : s .addr }
229
252
buff , err := msg .ToBytes ()
230
253
if err != nil {
@@ -233,31 +256,30 @@ func (s *slaveState) signal(ids []int) {
233
256
packet := & handel.Packet {MultiSig : buff }
234
257
id := handel .NewStaticIdentity (0 , s .master , nil )
235
258
s .n .Send ([]handel.Identity {id }, packet )
236
- time .Sleep (wait )
237
- if s .isDone () {
259
+ }
260
+ send ()
261
+ for {
262
+ select {
263
+ case <- s .doneCh :
238
264
return
265
+ case <- s .ticker .C :
239
266
}
267
+ send ()
240
268
}
241
269
}
242
270
243
- func (s * slaveState ) isDone () bool {
244
- s .Lock ()
245
- defer s .Unlock ()
246
- return s .done
247
- }
248
-
249
271
func (s * slaveState ) newMessage (msg * syncMessage ) {
250
272
if msg .State != s .id {
251
273
panic ("this is not normal" )
252
274
}
253
-
254
275
s .Lock ()
255
276
defer s .Unlock ()
256
277
if s .done {
257
278
return
258
279
}
259
280
s .done = true
260
281
s .finished <- true
282
+ close (s .doneCh )
261
283
}
262
284
263
285
// NewSyncSlave returns a Sync to use as a node in the system to synchronize
@@ -277,8 +299,7 @@ func NewSyncSlave(own, master string, ids []int) *SyncSlave {
277
299
return slave
278
300
}
279
301
280
- const retrials = 5
281
- const wait = 1 * time .Second
302
+ const wait = 500 * time .Millisecond
282
303
283
304
// WaitMaster first signals the master node for this state and returns the channel
284
305
// that gets signaled when the master sends back a message with the same id.
0 commit comments